mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
✨ Added i18n support to search - ready for translator work! (#21055)
ref https://github.com/TryGhost/Ghost/issues/16628 This adds translation support to search, which should be the last missing piece of i18n support for Ghost's frontend 🎉 - Translation (t) helper added to sodo-search. - Ghost head tweaked to include data-locale. - All (I hope) strings in sodo-search wrapped in the t helper. - Possibly poor-quality French translation strings added. --------- Co-authored-by: Vikas Potluri <vikaspotluri123.github@gmail.com>
This commit is contained in:
parent
e397046fb5
commit
2a2d7bb9ad
53 changed files with 490 additions and 70 deletions
|
@ -3,6 +3,7 @@ import './App.css';
|
|||
import AppContext from './AppContext';
|
||||
import PopupModal from './components/PopupModal';
|
||||
import SearchIndex from './search-index.js';
|
||||
import i18nLib from '@tryghost/i18n';
|
||||
|
||||
export default class App extends React.Component {
|
||||
constructor(props) {
|
||||
|
@ -13,11 +14,15 @@ export default class App extends React.Component {
|
|||
apiKey: props.apiKey
|
||||
});
|
||||
|
||||
const i18nLanguage = this.props.locale || 'en';
|
||||
const i18n = i18nLib(i18nLanguage, 'search');
|
||||
|
||||
this.state = {
|
||||
searchIndex,
|
||||
showPopup: false,
|
||||
indexStarted: false,
|
||||
indexComplete: false
|
||||
indexComplete: false,
|
||||
t: i18n.t
|
||||
};
|
||||
|
||||
this.inputRef = React.createRef();
|
||||
|
@ -163,7 +168,8 @@ export default class App extends React.Component {
|
|||
...data
|
||||
});
|
||||
}
|
||||
}
|
||||
},
|
||||
t: this.state.t
|
||||
}}>
|
||||
<PopupModal />
|
||||
</AppContext.Provider>
|
||||
|
|
|
@ -13,7 +13,8 @@ const AppContext = React.createContext({
|
|||
dispatch: (_action, _data) => {},
|
||||
searchIndex: null,
|
||||
indexComplete: false,
|
||||
searchValue: ''
|
||||
searchValue: '',
|
||||
t: () => {}
|
||||
});
|
||||
|
||||
export default AppContext;
|
||||
|
|
|
@ -71,7 +71,7 @@ class PopupContent extends React.Component {
|
|||
}
|
||||
|
||||
function SearchBox() {
|
||||
const {searchValue, dispatch, inputRef} = useContext(AppContext);
|
||||
const {searchValue, dispatch, inputRef, t} = useContext(AppContext);
|
||||
const containerRef = useRef(null);
|
||||
useEffect(() => {
|
||||
setTimeout(() => {
|
||||
|
@ -117,7 +117,7 @@ function SearchBox() {
|
|||
}
|
||||
}}
|
||||
className='grow -my-5 py-5 -ml-3 pl-3 text-[1.65rem] focus-visible:outline-none placeholder:text-gray-400 outline-none truncate'
|
||||
placeholder='Search posts, tags and authors'
|
||||
placeholder={t('Search posts, tags and authors')}
|
||||
/>
|
||||
<Loading />
|
||||
<CancelButton />
|
||||
|
@ -154,7 +154,7 @@ function Loading() {
|
|||
}
|
||||
|
||||
function CancelButton() {
|
||||
const {dispatch} = useContext(AppContext);
|
||||
const {dispatch, t} = useContext(AppContext);
|
||||
|
||||
return (
|
||||
<button
|
||||
|
@ -165,7 +165,7 @@ function CancelButton() {
|
|||
});
|
||||
}}
|
||||
>
|
||||
Cancel
|
||||
{t('Cancel')}
|
||||
</button>
|
||||
);
|
||||
}
|
||||
|
@ -195,6 +195,8 @@ function TagListItem({tag, selectedResult, setSelectedResult}) {
|
|||
}
|
||||
|
||||
function TagResults({tags, selectedResult, setSelectedResult}) {
|
||||
const {t} = useContext(AppContext);
|
||||
|
||||
if (!tags?.length) {
|
||||
return null;
|
||||
}
|
||||
|
@ -210,7 +212,7 @@ function TagResults({tags, selectedResult, setSelectedResult}) {
|
|||
});
|
||||
return (
|
||||
<div className='border-t border-gray-200 py-3 px-4 sm:px-7'>
|
||||
<h1 className='uppercase text-xs text-neutral-400 font-semibold mb-1 tracking-wide'>Tags</h1>
|
||||
<h1 className='uppercase text-xs text-neutral-400 font-semibold mb-1 tracking-wide'>{t('Tags')}</h1>
|
||||
{TagItems}
|
||||
</div>
|
||||
);
|
||||
|
@ -355,6 +357,8 @@ function HighlightWord({word, isExcerpt}) {
|
|||
}
|
||||
|
||||
function ShowMoreButton({posts, maxPosts, setMaxPosts}) {
|
||||
const {t} = useContext(AppContext);
|
||||
|
||||
if (!posts?.length || maxPosts >= posts?.length) {
|
||||
return null;
|
||||
}
|
||||
|
@ -366,12 +370,13 @@ function ShowMoreButton({posts, maxPosts, setMaxPosts}) {
|
|||
setMaxPosts(updatedMaxPosts);
|
||||
}}
|
||||
>
|
||||
Show more results
|
||||
{t('Show more results')}
|
||||
</button>
|
||||
);
|
||||
}
|
||||
|
||||
function PostResults({posts, selectedResult, setSelectedResult}) {
|
||||
const {t} = useContext(AppContext);
|
||||
const [maxPosts, setMaxPosts] = useState(DEFAULT_MAX_POSTS);
|
||||
useEffect(() => {
|
||||
setMaxPosts(DEFAULT_MAX_POSTS);
|
||||
|
@ -392,7 +397,7 @@ function PostResults({posts, selectedResult, setSelectedResult}) {
|
|||
});
|
||||
return (
|
||||
<div className='border-t border-neutral-200 py-3 px-4 sm:px-7'>
|
||||
<h1 className='uppercase text-xs text-neutral-400 font-semibold mb-1 tracking-wide'>Posts</h1>
|
||||
<h1 className='uppercase text-xs text-neutral-400 font-semibold mb-1 tracking-wide'>{t('Posts')}</h1>
|
||||
{PostItems}
|
||||
<ShowMoreButton setMaxPosts={setMaxPosts} maxPosts={maxPosts} posts={posts} />
|
||||
</div>
|
||||
|
@ -437,6 +442,8 @@ function AuthorAvatar({name, avatar}) {
|
|||
}
|
||||
|
||||
function AuthorResults({authors, selectedResult, setSelectedResult}) {
|
||||
const {t} = useContext(AppContext);
|
||||
|
||||
if (!authors?.length) {
|
||||
return null;
|
||||
}
|
||||
|
@ -453,7 +460,7 @@ function AuthorResults({authors, selectedResult, setSelectedResult}) {
|
|||
|
||||
return (
|
||||
<div className='border-t border-neutral-200 py-3 px-4 sm:px-7'>
|
||||
<h1 className='uppercase text-xs text-neutral-400 font-semibold mb-1 tracking-wide'>Authors</h1>
|
||||
<h1 className='uppercase text-xs text-neutral-400 font-semibold mb-1 tracking-wide'>{t('Authors')}</h1>
|
||||
{AuthorItems}
|
||||
</div>
|
||||
);
|
||||
|
@ -572,9 +579,10 @@ function Results({posts, authors, tags}) {
|
|||
}
|
||||
|
||||
function NoResultsBox() {
|
||||
const {t} = useContext(AppContext);
|
||||
return (
|
||||
<div className='py-4 px-7'>
|
||||
<p className='text-[1.65rem] text-neutral-400 leading-normal'>No matches found</p>
|
||||
<p className='text-[1.65rem] text-neutral-400 leading-normal'>{t('No matches found')}</p>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
@ -20,7 +20,8 @@ function getSiteData() {
|
|||
const adminUrl = scriptTag.dataset.sodoSearch;
|
||||
const apiKey = scriptTag.dataset.key;
|
||||
const stylesUrl = scriptTag.dataset.styles;
|
||||
return {adminUrl, apiKey, stylesUrl};
|
||||
const locale = scriptTag.dataset.locale || 'en';
|
||||
return {adminUrl, apiKey, stylesUrl, locale};
|
||||
}
|
||||
return {};
|
||||
}
|
||||
|
@ -30,14 +31,14 @@ function setup() {
|
|||
}
|
||||
|
||||
function init() {
|
||||
const {adminUrl, apiKey, stylesUrl} = getSiteData();
|
||||
const {adminUrl, apiKey, stylesUrl, locale} = getSiteData();
|
||||
const adminBaseUrl = (adminUrl || window.location.origin)?.replace(/\/+$/, '');
|
||||
setup();
|
||||
ReactDOM.render(
|
||||
<React.StrictMode>
|
||||
<App
|
||||
adminUrl={adminBaseUrl} apiKey={apiKey}
|
||||
stylesUrl={stylesUrl}
|
||||
stylesUrl={stylesUrl} locale={locale}
|
||||
/>
|
||||
</React.StrictMode>,
|
||||
document.getElementById(ROOT_DIV_ID)
|
||||
|
|
|
@ -86,7 +86,8 @@ function getSearchHelper(frontendKey) {
|
|||
const attrs = {
|
||||
key: frontendKey,
|
||||
styles: stylesUrl,
|
||||
'sodo-search': adminUrl
|
||||
'sodo-search': adminUrl,
|
||||
locale: settingsCache.get('locale') || 'en'
|
||||
};
|
||||
const dataAttrs = getDataAttributes(attrs);
|
||||
let helper = `<script defer src="${scriptUrl}" ${dataAttrs} crossorigin="anonymous"></script>`;
|
||||
|
|
|
@ -131,7 +131,7 @@ Object {
|
|||
.gh-post-upgrade-cta a.gh-btn:hover {
|
||||
opacity: 0.92;
|
||||
}</style>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://127.0.0.1:2369/webmentions/receive/\\" rel=\\"webmention\\">
|
||||
<script defer src=\\"/public/member-attribution.min.js?v=asset-hash\\"></script><style>:root {--ghost-accent-color: #123456;}</style>",
|
||||
|
@ -275,7 +275,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://127.0.0.1:2369/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -286,7 +286,7 @@ Object {
|
|||
"rendered": "<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" crossorigin=\\"anonymous\\"></script><style>:root {--ghost-accent-color: #site-setting;}</style>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script><style>:root {--ghost-accent-color: #site-setting;}</style>
|
||||
|
||||
<link href=\\"http://127.0.0.1:2369/webmentions/receive/\\" rel=\\"webmention\\">
|
||||
<style>:root {--ghost-accent-color: #site-code-injection}</style>
|
||||
|
@ -299,7 +299,7 @@ Object {
|
|||
"rendered": "<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" crossorigin=\\"anonymous\\"></script><style>:root {--ghost-accent-color: #123456;}</style>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script><style>:root {--ghost-accent-color: #123456;}</style>
|
||||
|
||||
<link href=\\"http://127.0.0.1:2369/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -373,7 +373,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" crossorigin=\\"anonymous\\"></script><style>:root {--ghost-accent-color: #123456;}</style>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script><style>:root {--ghost-accent-color: #123456;}</style>
|
||||
|
||||
<link href=\\"http://127.0.0.1:2369/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -446,7 +446,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://127.0.0.1:2369/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -839,7 +839,7 @@ Object {
|
|||
.gh-post-upgrade-cta a.gh-btn:hover {
|
||||
opacity: 0.92;
|
||||
}</style>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://127.0.0.1:2369/webmentions/receive/\\" rel=\\"webmention\\">
|
||||
<script defer src=\\"/public/member-attribution.min.js?v=asset-hash\\"></script>",
|
||||
|
@ -953,7 +953,7 @@ Object {
|
|||
.gh-post-upgrade-cta a.gh-btn:hover {
|
||||
opacity: 0.92;
|
||||
}</style>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://127.0.0.1:2369/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -1022,7 +1022,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://127.0.0.1:2369/webmentions/receive/\\" rel=\\"webmention\\">
|
||||
<script defer src=\\"https://unpkg.com/@tinybirdco/flock.js\\" data-host=\\"https://api.tinybird.co\\" data-token=\\"tinybird_token\\" tb_site_uuid=\\"tb_test_site_uuid\\" tb_post_uuid=\\"post_uuid\\" tb_member_uuid=\\"undefined\\" tb_member_status=\\"undefined\\"></script>",
|
||||
|
@ -1092,7 +1092,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 4.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://127.0.0.1:2369/webmentions/receive/\\" rel=\\"webmention\\">
|
||||
<script defer src=\\"https://unpkg.com/@tinybirdco/flock.js\\" data-host=\\"https://api.tinybird.co\\" data-token=\\"tinybird_token\\" tb_site_uuid=\\"tb_test_site_uuid\\" tb_post_uuid=\\"post_uuid\\" tb_member_uuid=\\"member_uuid\\" tb_member_status=\\"free\\"></script>",
|
||||
|
@ -1143,7 +1143,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 4.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://127.0.0.1:2369/webmentions/receive/\\" rel=\\"webmention\\">
|
||||
<script defer src=\\"https://unpkg.com/@tinybirdco/flock.js\\" data-host=\\"https://api.tinybird.co\\" data-token=\\"tinybird_token\\" tb_site_uuid=\\"tb_test_site_uuid\\" tb_post_uuid=\\"undefined\\" tb_member_uuid=\\"member_uuid\\" tb_member_status=\\"paid\\"></script>",
|
||||
|
@ -1194,7 +1194,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 4.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://127.0.0.1:2369/webmentions/receive/\\" rel=\\"webmention\\">
|
||||
<script defer src=\\"https://unpkg.com/@tinybirdco/flock.js\\" data-host=\\"https://api.tinybird.co\\" data-token=\\"tinybird_token\\" tb_site_uuid=\\"tb_test_site_uuid\\" tb_post_uuid=\\"undefined\\" tb_member_uuid=\\"undefined\\" tb_member_status=\\"undefined\\"></script>",
|
||||
|
@ -1308,7 +1308,7 @@ Object {
|
|||
.gh-post-upgrade-cta a.gh-btn:hover {
|
||||
opacity: 0.92;
|
||||
}</style>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://127.0.0.1:2369/webmentions/receive/\\" rel=\\"webmention\\">
|
||||
<script defer src=\\"/public/member-attribution.min.js?v=asset-hash\\"></script>",
|
||||
|
@ -1422,7 +1422,7 @@ Object {
|
|||
.gh-post-upgrade-cta a.gh-btn:hover {
|
||||
opacity: 0.92;
|
||||
}</style><script async src=\\"https://js.stripe.com/v3/\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://127.0.0.1:2369/webmentions/receive/\\" rel=\\"webmention\\">
|
||||
<script defer src=\\"/public/member-attribution.min.js?v=asset-hash\\"></script>",
|
||||
|
@ -1473,7 +1473,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 4.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://127.0.0.1:2369/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -1586,7 +1586,7 @@ Object {
|
|||
.gh-post-upgrade-cta a.gh-btn:hover {
|
||||
opacity: 0.92;
|
||||
}</style>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://127.0.0.1:2369/webmentions/receive/\\" rel=\\"webmention\\">
|
||||
<script defer src=\\"/public/member-attribution.min.js?v=asset-hash\\"></script>",
|
||||
|
@ -1637,7 +1637,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 4.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://127.0.0.1:2369/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://127.0.0.1:2369/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -1651,7 +1651,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/site/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/site/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/site/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/site/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -1665,7 +1665,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">
|
||||
<style>body {background: red;}</style>",
|
||||
|
@ -1680,7 +1680,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">
|
||||
<style>body {background: red;}</style>",
|
||||
|
@ -1695,7 +1695,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">
|
||||
<style>body {background: red;}</style>
|
||||
|
@ -1711,7 +1711,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">
|
||||
<style>body {background: red;}</style>",
|
||||
|
@ -1796,7 +1796,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/site/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/site/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/site/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -1812,7 +1812,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -1838,7 +1838,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost \\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -1888,7 +1888,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -1901,7 +1901,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -1914,7 +1914,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -1974,7 +1974,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">
|
||||
<script defer src=\\"/public/comment-counts.min.js?v=asset-hash\\" data-ghost-comments-counts-api=\\"http://localhost:65530/members/api/comments/counts/\\"></script>",
|
||||
|
@ -2025,7 +2025,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">
|
||||
<script defer src=\\"/public/comment-counts.min.js?v=asset-hash\\" data-ghost-comments-counts-api=\\"http://localhost:65530/members/api/comments/counts/\\"></script>",
|
||||
|
@ -2048,7 +2048,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -2113,7 +2113,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -2163,7 +2163,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -2185,7 +2185,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.9\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -2198,7 +2198,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -2213,7 +2213,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -2228,7 +2228,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -2280,7 +2280,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -2330,7 +2330,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -2411,7 +2411,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -2537,7 +2537,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -2618,7 +2618,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -2699,7 +2699,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -2768,7 +2768,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -2841,7 +2841,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -2914,7 +2914,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -2987,7 +2987,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -3061,7 +3061,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -3127,7 +3127,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -3175,7 +3175,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
@ -3227,7 +3227,7 @@ Object {
|
|||
<meta name=\\"generator\\" content=\\"Ghost 0.3\\">
|
||||
<link rel=\\"alternate\\" type=\\"application/rss+xml\\" title=\\"Ghost\\" href=\\"http://localhost:65530/rss/\\">
|
||||
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" crossorigin=\\"anonymous\\"></script>
|
||||
<script defer src=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/sodo-search.min.js\\" data-key=\\"xyz\\" data-styles=\\"https://cdn.jsdelivr.net/ghost/sodo-search@~[[VERSION]]/umd/main.css\\" data-sodo-search=\\"http://localhost:65530/\\" data-locale=\\"en\\" crossorigin=\\"anonymous\\"></script>
|
||||
|
||||
<link href=\\"http://localhost:65530/webmentions/receive/\\" rel=\\"webmention\\">",
|
||||
}
|
||||
|
|
|
@ -49,7 +49,7 @@ const SUPPORTED_LOCALES = [
|
|||
|
||||
/**
|
||||
* @param {string} [lng]
|
||||
* @param {'ghost'|'portal'|'test'|'signup-form'|'comments'} ns
|
||||
* @param {'ghost'|'portal'|'test'|'signup-form'|'comments'|'search'} ns
|
||||
*/
|
||||
module.exports = (lng = 'en', ns = 'portal') => {
|
||||
const i18nextInstance = i18next.createInstance();
|
||||
|
|
9
ghost/i18n/locales/af/search.json
Normal file
9
ghost/i18n/locales/af/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/bg/search.json
Normal file
9
ghost/i18n/locales/bg/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/bs/search.json
Normal file
9
ghost/i18n/locales/bs/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/ca/search.json
Normal file
9
ghost/i18n/locales/ca/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
|
@ -13,6 +13,7 @@
|
|||
"Already a member?": "A link displayed on signup screen, inviting people to log in if they have already signed up previously",
|
||||
"An unexpected error occured. Please try again or <a>contact support</a> if the error persists.": "Notification if an unexpected error occurs.",
|
||||
"Anonymous": "Comment placed by a member without a name",
|
||||
"Authors": "",
|
||||
"Back": "A button to return to the previous page",
|
||||
"Back to Log in": "A button to return to the login screen",
|
||||
"Become a member of {{publication}} to start commenting.": "A call to action letting people know they need to sign up before commenting",
|
||||
|
@ -118,6 +119,7 @@
|
|||
"Need more help? Contact support": "A link to contact support",
|
||||
"Neurosurgeon": "Example of an expertise of a person used in comments when editing your expertise",
|
||||
"Newsletters can be disabled on your account for two reasons: A previous email was marked as spam, or attempting to send an email resulted in a permanent failure (bounce).": "A paragraph in the email suppression FAQ",
|
||||
"No matches found": "",
|
||||
"Not receiving emails?": "A link in portal to take members to an FAQ area about what to do if you're not receiving emails",
|
||||
"Now check your email!": "A confirmation message after logging in or signing up",
|
||||
"Once resubscribed, if you still don't see emails in your inbox, check your spam folder. Some inbox providers keep a record of previous spam complaints and will continue to flag emails. If this happens, mark the latest newsletter as 'Not spam' to move it back to your primary inbox.": "A paragraph in the email suppression FAQ",
|
||||
|
@ -137,6 +139,7 @@
|
|||
"Please enter a valid email address": "Err message when an email address is invalid",
|
||||
"Please enter {{fieldName}}": "Error message when a required field is missing",
|
||||
"Please fill in required fields": "Error message when a required field is missing",
|
||||
"Posts": "",
|
||||
"Price": "A label to indicate price of a tier",
|
||||
"Re-enable emails": "A button for members to turn-back-on emails, if they have been previously disabled as a result of delivery failures",
|
||||
"Recommendations": "A suggestion by/for another site of interest to users",
|
||||
|
@ -148,6 +151,7 @@
|
|||
"Report this comment?": "Title of the modal to report a comment",
|
||||
"Retry": "When something goes wrong, this link allows people to re-attempt the same action",
|
||||
"Save": "A button to save",
|
||||
"Search posts, tags and authors": "",
|
||||
"Secure sign in link for {{siteTitle}}": "The subject line of member login emails",
|
||||
"See you soon!": "A sign-off/ending to a signup email",
|
||||
"Send an email and say hi!": "A section title in email receiving FAQ",
|
||||
|
@ -162,6 +166,7 @@
|
|||
"Show 1 previous comment": "Button in comments app to load previous comments, when there is only one",
|
||||
"Show all": "Show all recommendations",
|
||||
"Show comment": "Context menu action for a comment, for administrators",
|
||||
"Show more results": "",
|
||||
"Show {{amount}} more replies": "Button text to load more replies for a comment",
|
||||
"Show {{amount}} previous comments": "Button in comments appto load previous comments",
|
||||
"Sign in": "A button to sign in",
|
||||
|
@ -186,6 +191,7 @@
|
|||
"Success! Your account is fully activated, you now have access to all content.": "Notification text when a user has activated their email and can access content",
|
||||
"Success! Your email is updated.": "Notification text when a user has updated their email address",
|
||||
"Successfully unsubscribed": "A confirmation message when a member clicks an unsubscribe link",
|
||||
"Tags": "",
|
||||
"Tap the link below to complete the signup process for {{siteTitle}}, and be automatically signed in:": "Descriptive text in signup emails, right before the button to confirm signup",
|
||||
"Thank you for signing up to {{siteTitle}}!": "A success message, confirming that a member has 'signed up' and created an account",
|
||||
"Thank you for subscribing to {{siteTitle}}!": "A success message, confirming that a member has 'subscribed' to a newsletter",
|
||||
|
|
9
ghost/i18n/locales/cs/search.json
Normal file
9
ghost/i18n/locales/cs/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/da/search.json
Normal file
9
ghost/i18n/locales/da/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/de/search.json
Normal file
9
ghost/i18n/locales/de/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/en/search.json
Normal file
9
ghost/i18n/locales/en/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/eo/search.json
Normal file
9
ghost/i18n/locales/eo/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/es/search.json
Normal file
9
ghost/i18n/locales/es/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/fa/search.json
Normal file
9
ghost/i18n/locales/fa/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/fi/search.json
Normal file
9
ghost/i18n/locales/fi/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/fr/search.json
Normal file
9
ghost/i18n/locales/fr/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "Auteurs",
|
||||
"Cancel": "Annuler",
|
||||
"No matches found": "Aucun résultat trouvé",
|
||||
"Posts": "Articles",
|
||||
"Search posts, tags and authors": "Rechercher des articles, des catégories et des auteurs",
|
||||
"Show more results": "Plus de résultats",
|
||||
"Tags": "Catégories"
|
||||
}
|
9
ghost/i18n/locales/gd/search.json
Normal file
9
ghost/i18n/locales/gd/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/hr/search.json
Normal file
9
ghost/i18n/locales/hr/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/hu/search.json
Normal file
9
ghost/i18n/locales/hu/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/id/search.json
Normal file
9
ghost/i18n/locales/id/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/is/search.json
Normal file
9
ghost/i18n/locales/is/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/it/search.json
Normal file
9
ghost/i18n/locales/it/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/ja/search.json
Normal file
9
ghost/i18n/locales/ja/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/ko/search.json
Normal file
9
ghost/i18n/locales/ko/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/lt/search.json
Normal file
9
ghost/i18n/locales/lt/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/mn/search.json
Normal file
9
ghost/i18n/locales/mn/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/ms/search.json
Normal file
9
ghost/i18n/locales/ms/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/nl/search.json
Normal file
9
ghost/i18n/locales/nl/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/nn/search.json
Normal file
9
ghost/i18n/locales/nn/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/no/search.json
Normal file
9
ghost/i18n/locales/no/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/pl/search.json
Normal file
9
ghost/i18n/locales/pl/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/pt-BR/search.json
Normal file
9
ghost/i18n/locales/pt-BR/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/pt/search.json
Normal file
9
ghost/i18n/locales/pt/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/ro/search.json
Normal file
9
ghost/i18n/locales/ro/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/ru/search.json
Normal file
9
ghost/i18n/locales/ru/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/si/search.json
Normal file
9
ghost/i18n/locales/si/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/sk/search.json
Normal file
9
ghost/i18n/locales/sk/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/sl/search.json
Normal file
9
ghost/i18n/locales/sl/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/sq/search.json
Normal file
9
ghost/i18n/locales/sq/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/sr/search.json
Normal file
9
ghost/i18n/locales/sr/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/sv/search.json
Normal file
9
ghost/i18n/locales/sv/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/tr/search.json
Normal file
9
ghost/i18n/locales/tr/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/uk/search.json
Normal file
9
ghost/i18n/locales/uk/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/uz/search.json
Normal file
9
ghost/i18n/locales/uz/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/vi/search.json
Normal file
9
ghost/i18n/locales/vi/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/zh-Hant/search.json
Normal file
9
ghost/i18n/locales/zh-Hant/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
9
ghost/i18n/locales/zh/search.json
Normal file
9
ghost/i18n/locales/zh/search.json
Normal file
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"Authors": "",
|
||||
"Cancel": "",
|
||||
"No matches found": "",
|
||||
"Posts": "",
|
||||
"Search posts, tags and authors": "",
|
||||
"Show more results": "",
|
||||
"Tags": ""
|
||||
}
|
|
@ -13,11 +13,12 @@
|
|||
"lint:code": "eslint *.js lib/ --ext .js --cache",
|
||||
"lint": "yarn lint:code && yarn lint:test",
|
||||
"lint:test": "eslint -c test/.eslintrc.js test/ --ext .js --cache",
|
||||
"translate": "yarn translate:ghost && yarn translate:portal && yarn translate:signup-form && yarn translate:comments && node generate-context.js",
|
||||
"translate": "yarn translate:ghost && yarn translate:portal && yarn translate:signup-form && yarn translate:comments && yarn translate:search && node generate-context.js",
|
||||
"translate:ghost": "NAMESPACE=ghost i18next '../core/core/{frontend,server,shared}/**/*.{js,jsx}'",
|
||||
"translate:portal": "NAMESPACE=portal i18next '../../apps/portal/src/**/*.{js,jsx}'",
|
||||
"translate:signup-form": "NAMESPACE=signup-form i18next '../../apps/signup-form/src/**/*.{ts,tsx}'",
|
||||
"translate:comments": "NAMESPACE=comments i18next '../../apps/comments-ui/src/**/*.{ts,tsx}'"
|
||||
"translate:comments": "NAMESPACE=comments i18next '../../apps/comments-ui/src/**/*.{ts,tsx}'",
|
||||
"translate:search": "NAMESPACE=search i18next '../../apps/sodo-search/src/**/*.{js,jsx,ts,tsx}'"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
|
|
Loading…
Add table
Reference in a new issue