mirror of
https://github.com/estruyf/vscode-front-matter.git
synced 2026-07-05 17:31:22 +02:00
68 lines
3.5 KiB
TypeScript
68 lines
3.5 KiB
TypeScript
import { Extension } from "../constants/extension";
|
|
|
|
|
|
export const strings = {
|
|
// CTA
|
|
cta_title: "Headless CMS running in VS Code",
|
|
cta_title_sr: " that helps managing your static sites and Markdown based sites. Supports Hugo, Jekyll, Docusaurus, NextJs, Gatsby, and more.",
|
|
cta_description: "Why leave your editor if it can give you all power to manage your static sites? Front Matter is a headless CMS that lets you create, edit, and preview your Markdown based content straight within Visual Studio Code.",
|
|
cta_button_primary: "Get the extension",
|
|
cta_button_secondary: "Read our docs",
|
|
|
|
// Generators
|
|
generators_title: "Built for any static-site generator you might like",
|
|
generators_more: "and many more...",
|
|
|
|
// Hero
|
|
hero_title: "Bringing the CMS to your editor",
|
|
hero_description: "Why would you leave your editor when you can perform all tasks straight from within it?",
|
|
hero_description_second: "We at Front Matter believe that you should keep using what you like. For us, this is Visual Studio Code. Use the same editor you use to code, but with unique features to make it suitable for writing and managing your Markdown articles.",
|
|
hero_button_primary: "Get started",
|
|
|
|
// Testimonials
|
|
testimonials_title: "What others are saying",
|
|
testimonials_description: "We love Front Matter and we're excited to share it with the world.",
|
|
|
|
// Features
|
|
features_title: "Features",
|
|
features_description: "Check out our main features which help you manage your static-site",
|
|
features_cta_title: "Missing a feature?",
|
|
features_cta_button: "Tell us what you need",
|
|
|
|
// Feature
|
|
feature_title_1: "Offline management",
|
|
feature_description_1: "A Content Management System built to run within Visual Studio Code. No dependencies on any website or API. Write wherever you are, commit when you are online.",
|
|
|
|
feature_title_2: "Full site/page preview",
|
|
feature_description_2: "Allow showing your site and page previews within Visual Studio Code without the need of opening a browser.",
|
|
|
|
feature_title_3: "Content dashboard",
|
|
feature_description_3: "Our page dashboard allows you to search, filter, sort, and group all your static site pages.",
|
|
|
|
feature_title_4: "SEO Checks",
|
|
feature_description_4: "Our search engine optimization checks allow you to write better articles. We show you more information about your title, description, content, keywords, and more.",
|
|
|
|
feature_title_5: "Use it the way you want it",
|
|
feature_description_5: "All of the functionalities are configurable to your needs. You can define how you want to use Front Matter in your editor experience.",
|
|
|
|
feature_title_6: "Extensibility",
|
|
feature_description_6: "Add your actions with our custom scripting capability. For instance, you can use a script and hook it up to the extension if you want to generate preview images. If we do not support it, you can build it and share it with us.",
|
|
|
|
// Sponsors
|
|
sponsors_title: "Special thanks to our sponsor",
|
|
|
|
// Documentation
|
|
documentation_title: "Documentation",
|
|
documentation_description: `Get to know more about how you can use ${Extension.name} with our documentation.`,
|
|
|
|
// Showcase
|
|
showcase_title: "Showcase",
|
|
showcase_description: "Check out our showcase of sites using Front Matter.",
|
|
|
|
// Changelog
|
|
changelog_title: "Changelog",
|
|
changelog_description: "Check out our changelog for Front Matter.",
|
|
changelog_page_title: `Latest updates`,
|
|
changelog_page_description: `An overview of all updates from the ${Extension.name} extension`,
|
|
};
|