diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..a4a7427 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,51 @@ +name: Deploy to GitHub Pages + +on: + push: + branches: + - master + # Review gh actions docs if you want to further define triggers, paths, etc + # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on + +jobs: + build: + name: Build Docusaurus + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - uses: actions/setup-node@v4 + with: + node-version: 18 + cache: npm + + - name: Install dependencies + run: npm ci + - name: Build website + run: npm run build + + - name: Upload Build Artifact + uses: actions/upload-pages-artifact@v3 + with: + path: build + + deploy: + name: Deploy to GitHub Pages + needs: build + + # Grant GITHUB_TOKEN the permissions required to make a Pages deployment + permissions: + pages: write # to deploy to Pages + id-token: write # to verify the deployment originates from an appropriate source + + # Deploy to the github-pages environment + environment: + name: github-pages + url: ${{ steps.deployment.outputs.page_url }} + + runs-on: ubuntu-latest + steps: + - name: Deploy to GitHub Pages + id: deployment + uses: actions/deploy-pages@v4 \ No newline at end of file diff --git a/.github/workflows/test-deploy.yml b/.github/workflows/test-deploy.yml new file mode 100644 index 0000000..5deae4c --- /dev/null +++ b/.github/workflows/test-deploy.yml @@ -0,0 +1,27 @@ +name: Test deployment + +on: + pull_request: + branches: + - master + # Review gh actions docs if you want to further define triggers, paths, etc + # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on + +jobs: + test-deploy: + name: Test deployment + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + with: + fetch-depth: 0 + - uses: actions/setup-node@v4 + with: + node-version: 18 + cache: npm + + + - name: Install dependencies + run: npm ci + - name: Test build website + run: npm run build \ No newline at end of file diff --git a/docusaurus.config.js b/docusaurus.config.js index 7aa9069..83fcc22 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -1,179 +1,179 @@ // @ts-check // Note: type annotations allow type checking and IDEs autocompletion -const lightCodeTheme = require('prism-react-renderer/themes/github'); -const darkCodeTheme = require('prism-react-renderer/themes/dracula'); +const lightCodeTheme = require("prism-react-renderer/themes/github"); +const darkCodeTheme = require("prism-react-renderer/themes/dracula"); /** @type {import('@docusaurus/types').Config} */ const config = { - title: 'Jumoo docs', - tagline: 'Documentation for jumoo products', - url: 'https://docs.jumoo.co.uk', - baseUrl: '/', - onBrokenLinks: 'warn', - onBrokenMarkdownLinks: 'warn', - favicon: 'img/favicon.ico', - organizationName: 'Jumoo', // Usually your GitHub org/user name. - projectName: 'jumoodocs', // Usually your repo name. + title: "Jumoo docs", + tagline: "Documentation for jumoo products", + url: "https://docs.jumoo.co.uk/", + baseUrl: "/", + onBrokenLinks: "warn", + onBrokenMarkdownLinks: "warn", + favicon: "img/favicon.ico", + organizationName: "Jumoo", // Usually your GitHub org/user name. + projectName: "jumoodocs", // Usually your repo name. presets: [ [ - 'classic', + "classic", /** @type {import('@docusaurus/preset-classic').Options} */ ({ docs: { - path: 'usync', - lastVersion: 'current', - routeBasePath: 'usync', - sidebarPath: require.resolve('./sidebars.js'), + path: "usync", + lastVersion: "current", + routeBasePath: "usync", + sidebarPath: require.resolve("./sidebars.js"), // Please change this to your repo. - - editUrl: 'https://github.com/Jumoo/jumoo-docs/edit/master', + + editUrl: "https://github.com/Jumoo/jumoo-docs/edit/master", versions: { current: { - label: 'v15.x - Umbraco 15' + label: "v15.x - Umbraco 15", }, - "13.x" : { - label: 'v13.x - Umbraco 13', - banner: 'none' + "13.x": { + label: "v13.x - Umbraco 13", + banner: "none", }, "12.x": { - label: 'v12.x - Umbraco 12', - banner: 'unmaintained' - }, - + label: "v12.x - Umbraco 12", + banner: "unmaintained", + }, + "10.x": { - label: 'v10.x - Umbraco 10', - banner: 'none' - }, + label: "v10.x - Umbraco 10", + banner: "none", + }, "8.x": { - label: 'v8.x - Umbraco 8', - banner: 'none' - } - } + label: "v8.x - Umbraco 8", + banner: "none", + }, + }, }, theme: { - customCss: require.resolve('./src/css/custom.css'), + customCss: require.resolve("./src/css/custom.css"), }, }), ], ], plugins: [ [ - '@docusaurus/plugin-content-docs', + "@docusaurus/plugin-content-docs", { - id: 'tm', - path: 'tm', - routeBasePath: 'tm', - editUrl: 'https://github.com/Jumoo/jumoo-docs/edit/master', - sidebarPath: require.resolve('./sidebars.js'), - lastVersion: 'current', + id: "tm", + path: "tm", + routeBasePath: "tm", + editUrl: "https://github.com/Jumoo/jumoo-docs/edit/master", + sidebarPath: require.resolve("./sidebars.js"), + lastVersion: "current", versions: { current: { - label: 'v15.x - Umbraco 15' + label: "v15.x - Umbraco 15", }, "13.x": { - label: 'v13.x - Umbraco 13', - banner: 'none' - }, + label: "v13.x - Umbraco 13", + banner: "none", + }, "12.x": { - label: 'v12.x - Umbraco 12', - banner: 'unmaintained' - }, - - "10.x": { - label: 'v10.x - Umbraco 10', - banner: 'none' - }, - "8.x": { - label: 'v8.x - Umbraco 8', - banner: 'none' - } - } - } - ] + label: "v12.x - Umbraco 12", + banner: "unmaintained", + }, + + "10.x": { + label: "v10.x - Umbraco 10", + banner: "none", + }, + "8.x": { + label: "v8.x - Umbraco 8", + banner: "none", + }, + }, + }, + ], ], themeConfig: /** @type {import('@docusaurus/preset-classic').ThemeConfig} */ ({ navbar: { - title: 'JumooDocs', + title: "JumooDocs", logo: { - alt: 'jumoo-logo', - src: 'img/jumoo.png', + alt: "jumoo-logo", + src: "img/jumoo.png", }, items: [ { - type: 'doc', - docId: 'intro', - position: 'left', - label: 'uSync', + type: "doc", + docId: "intro", + position: "left", + label: "uSync", }, { - type: 'doc', - docsPluginId : 'tm', - docId: 'intro', - position: 'left', - label: 'Translation manager' - }, + type: "doc", + docsPluginId: "tm", + docId: "intro", + position: "left", + label: "Translation manager", + }, { - type: 'docsVersionDropdown', - position: 'right', + type: "docsVersionDropdown", + position: "right", dropdownActiveClassDisabled: true, - }, + }, { - type: 'docsVersionDropdown', - position: 'right', + type: "docsVersionDropdown", + position: "right", dropdownActiveClassDisabled: true, - docsPluginId: 'tm' - }, + docsPluginId: "tm", + }, { - href: 'https://github.com/Jumoo/jumoo-docs/', - label: 'GitHub', - position: 'right', + href: "https://github.com/Jumoo/jumoo-docs/", + label: "GitHub", + position: "right", }, ], }, footer: { - style: 'dark', + style: "dark", links: [ { - title: 'Docs', + title: "Docs", items: [ { - label: 'uSync', - to: '/usync/intro', + label: "uSync", + to: "/usync/intro", }, { - label: 'Translation Manager', - to: '/tm/', + label: "Translation Manager", + to: "/tm/", }, ], }, { - title: 'About', + title: "About", items: [ { - label: 'Jumoo', - href: 'https://jumoo.co.uk', + label: "Jumoo", + href: "https://jumoo.co.uk", }, { - label: 'Products', - href: 'https://jumoo.co.uk/products.php', + label: "Products", + href: "https://jumoo.co.uk/products.php", }, { - label: 'Blog', - href: 'https://jumoo.co.uk/blog', + label: "Blog", + href: "https://jumoo.co.uk/blog", }, ], }, { - title: 'More', + title: "More", items: [ { - label: 'GitHub', - href: 'https://github.com/Jumoo/jumoo-docs', + label: "GitHub", + href: "https://github.com/Jumoo/jumoo-docs", }, ], }, @@ -181,7 +181,7 @@ const config = { copyright: `Copyright © ${new Date().getFullYear()} Jumoo.`, }, prism: { - additionalLanguages: ['powershell', 'csharp'], + additionalLanguages: ["powershell", "csharp"], theme: lightCodeTheme, darkTheme: darkCodeTheme, }, diff --git a/src/components/HomepageFeatures/index.js b/src/components/HomepageFeatures/index.js index 7be0188..bf8cd43 100644 --- a/src/components/HomepageFeatures/index.js +++ b/src/components/HomepageFeatures/index.js @@ -7,8 +7,8 @@ import Link from '@docusaurus/Link'; const FeatureList = [ { title: 'uSync / uSync.Complete', - img: '/img/complete-256.png', - link: '/usync/intro', + img: 'img/complete-256.png', + link: 'usync/intro', description: ( <> uSync lets you keep your Umbraco sites in sync by reading and writing settings to and from the disk @@ -17,8 +17,8 @@ const FeatureList = [ }, { title: 'Translation Manager', - img: '/img/tmlogo.png', - link: '/tm', + img: 'img/tmlogo.png', + link: 'tm', description: ( <> Translation Manager provides a quick and simple way to get your Umbraco website translated and works diff --git a/tm/02.getStarted/10.licence.md b/tm/02.getStarted/10.licence.md index 6af8f72..1ef0987 100644 --- a/tm/02.getStarted/10.licence.md +++ b/tm/02.getStarted/10.licence.md @@ -14,7 +14,7 @@ Go to the website https://jumoo.co.uk/translate/purchase ## Add Licence Key to the Site -![Licence page](licenceLocation.png) +![Licence page](licencelocation.png) You will find the licence key in Settings -> Translation Manager -> licence. diff --git a/tm/03.userGuide/01.send.md b/tm/03.userGuide/01.send.md index 2929e93..30c8b31 100644 --- a/tm/03.userGuide/01.send.md +++ b/tm/03.userGuide/01.send.md @@ -28,7 +28,7 @@ You will then see the send to translate dialog. ## Create Translations for... This is the [translation connector](../reference/fundementals/connector) options dialog. -![Connector options](connectorOptions.png) +![Connector options](connectoroptions.png) :::tip Depending on the translation connectors you have installed you might see different options here. diff --git a/tm/03.userGuide/02.check.md b/tm/03.userGuide/02.check.md index f739d38..d87499b 100644 --- a/tm/03.userGuide/02.check.md +++ b/tm/03.userGuide/02.check.md @@ -18,7 +18,7 @@ Within *Submitted* you can check jobs grouped by language or individually. ![Submitted jobs](translationjobs.png) -To look at the details of a job, click on it in the list. When you are viewing that job's page you can click the *Check* button, and it will check to see whether the job has been returned by translators. +To look at the details of a job, click on it in the list. When you are viewing that job's page you can click the *Check* button, and it will check to see if the job has been returned by translators. ![Check button](checkbutton.png) diff --git a/tm/03.userGuide/04.create.md b/tm/03.userGuide/04.create.md index 6721861..3954edb 100644 --- a/tm/03.userGuide/04.create.md +++ b/tm/03.userGuide/04.create.md @@ -6,7 +6,7 @@ A translation set defines which parts of the content are to be included in trans - Settings -> Translation Manager -> Sets -![Create set button](createSet.png) +![Create set button](createset.png) - Click the *Create* button to create a a new translation set. diff --git a/tm/04.extending/00.Extending.md b/tm/04.Extending/00.Extending.md similarity index 100% rename from tm/04.extending/00.Extending.md rename to tm/04.Extending/00.Extending.md diff --git a/tm/04.extending/01.connectors/01.connector.md b/tm/04.Extending/01.connectors/01.connector.md similarity index 100% rename from tm/04.extending/01.connectors/01.connector.md rename to tm/04.Extending/01.connectors/01.connector.md diff --git a/tm/04.extending/01.connectors/02.XLIFF/00.xliff.md b/tm/04.Extending/01.connectors/02.XLIFF/00.xliff.md similarity index 100% rename from tm/04.extending/01.connectors/02.XLIFF/00.xliff.md rename to tm/04.Extending/01.connectors/02.XLIFF/00.xliff.md diff --git a/tm/04.extending/01.connectors/02.XLIFF/01.config.md b/tm/04.Extending/01.connectors/02.XLIFF/01.config.md similarity index 100% rename from tm/04.extending/01.connectors/02.XLIFF/01.config.md rename to tm/04.Extending/01.connectors/02.XLIFF/01.config.md diff --git a/tm/04.extending/01.connectors/02.XLIFF/01.download.md b/tm/04.Extending/01.connectors/02.XLIFF/01.download.md similarity index 100% rename from tm/04.extending/01.connectors/02.XLIFF/01.download.md rename to tm/04.Extending/01.connectors/02.XLIFF/01.download.md diff --git a/tm/04.extending/01.connectors/02.XLIFF/02.Upload.md b/tm/04.Extending/01.connectors/02.XLIFF/02.Upload.md similarity index 100% rename from tm/04.extending/01.connectors/02.XLIFF/02.Upload.md rename to tm/04.Extending/01.connectors/02.XLIFF/02.Upload.md diff --git a/tm/04.extending/01.connectors/02.XLIFF/XliffProcess.png b/tm/04.Extending/01.connectors/02.XLIFF/XliffProcess.png similarity index 100% rename from tm/04.extending/01.connectors/02.XLIFF/XliffProcess.png rename to tm/04.Extending/01.connectors/02.XLIFF/XliffProcess.png diff --git a/tm/04.extending/01.connectors/02.XLIFF/_category_.json b/tm/04.Extending/01.connectors/02.XLIFF/_category_.json similarity index 100% rename from tm/04.extending/01.connectors/02.XLIFF/_category_.json rename to tm/04.Extending/01.connectors/02.XLIFF/_category_.json diff --git a/tm/04.extending/01.connectors/02.XLIFF/downloadfile.png b/tm/04.Extending/01.connectors/02.XLIFF/downloadfile.png similarity index 100% rename from tm/04.extending/01.connectors/02.XLIFF/downloadfile.png rename to tm/04.Extending/01.connectors/02.XLIFF/downloadfile.png diff --git a/tm/04.extending/01.connectors/02.XLIFF/missingjob.png b/tm/04.Extending/01.connectors/02.XLIFF/missingjob.png similarity index 100% rename from tm/04.extending/01.connectors/02.XLIFF/missingjob.png rename to tm/04.Extending/01.connectors/02.XLIFF/missingjob.png diff --git a/tm/04.extending/01.connectors/02.XLIFF/options_format.png b/tm/04.Extending/01.connectors/02.XLIFF/options_format.png similarity index 100% rename from tm/04.extending/01.connectors/02.XLIFF/options_format.png rename to tm/04.Extending/01.connectors/02.XLIFF/options_format.png diff --git a/tm/04.extending/01.connectors/02.XLIFF/options_name.png b/tm/04.Extending/01.connectors/02.XLIFF/options_name.png similarity index 100% rename from tm/04.extending/01.connectors/02.XLIFF/options_name.png rename to tm/04.Extending/01.connectors/02.XLIFF/options_name.png diff --git a/tm/04.extending/01.connectors/02.XLIFF/options_processing.png b/tm/04.Extending/01.connectors/02.XLIFF/options_processing.png similarity index 100% rename from tm/04.extending/01.connectors/02.XLIFF/options_processing.png rename to tm/04.Extending/01.connectors/02.XLIFF/options_processing.png diff --git a/tm/04.extending/01.connectors/02.XLIFF/targeterror.png b/tm/04.Extending/01.connectors/02.XLIFF/targeterror.png similarity index 100% rename from tm/04.extending/01.connectors/02.XLIFF/targeterror.png rename to tm/04.Extending/01.connectors/02.XLIFF/targeterror.png diff --git a/tm/04.extending/01.connectors/02.XLIFF/uploadfile.png b/tm/04.Extending/01.connectors/02.XLIFF/uploadfile.png similarity index 100% rename from tm/04.extending/01.connectors/02.XLIFF/uploadfile.png rename to tm/04.Extending/01.connectors/02.XLIFF/uploadfile.png diff --git a/tm/04.extending/01.connectors/03.Passthrough.md b/tm/04.Extending/01.connectors/03.Passthrough.md similarity index 100% rename from tm/04.extending/01.connectors/03.Passthrough.md rename to tm/04.Extending/01.connectors/03.Passthrough.md diff --git a/tm/04.extending/01.connectors/04.Google.md b/tm/04.Extending/01.connectors/04.Google.md similarity index 100% rename from tm/04.extending/01.connectors/04.Google.md rename to tm/04.Extending/01.connectors/04.Google.md diff --git a/tm/04.extending/01.connectors/05.Microsoft.md b/tm/04.Extending/01.connectors/05.Microsoft.md similarity index 97% rename from tm/04.extending/01.connectors/05.Microsoft.md rename to tm/04.Extending/01.connectors/05.Microsoft.md index 3ba1348..bb3c729 100644 --- a/tm/04.extending/01.connectors/05.Microsoft.md +++ b/tm/04.Extending/01.connectors/05.Microsoft.md @@ -1,7 +1,7 @@ --- title: Microsoft Translator API --- -![Microsoft Translator Page](microsoftRegion.png) +![Microsoft Translator Page](microsoftregion.png) [Microsoft Translator API](https://www.microsoft.com/en-us/translator/business/translator-api/), will machine translate your job to any supported language, and return it fully translated. diff --git a/tm/04.extending/01.connectors/06.deepL/06.deepl.md b/tm/04.Extending/01.connectors/06.deepL/06.deepl.md similarity index 100% rename from tm/04.extending/01.connectors/06.deepL/06.deepl.md rename to tm/04.Extending/01.connectors/06.deepL/06.deepl.md diff --git a/tm/04.extending/01.connectors/06.deepL/12.deepLGloss.md b/tm/04.Extending/01.connectors/06.deepL/12.deepLGloss.md similarity index 100% rename from tm/04.extending/01.connectors/06.deepL/12.deepLGloss.md rename to tm/04.Extending/01.connectors/06.deepL/12.deepLGloss.md diff --git a/tm/04.extending/01.connectors/06.deepL/advSetting.png b/tm/04.Extending/01.connectors/06.deepL/advSetting.png similarity index 100% rename from tm/04.extending/01.connectors/06.deepL/advSetting.png rename to tm/04.Extending/01.connectors/06.deepL/advSetting.png diff --git a/tm/04.extending/01.connectors/06.deepL/deeplSettings.png b/tm/04.Extending/01.connectors/06.deepL/deeplSettings.png similarity index 100% rename from tm/04.extending/01.connectors/06.deepL/deeplSettings.png rename to tm/04.Extending/01.connectors/06.deepL/deeplSettings.png diff --git a/tm/04.extending/01.connectors/06.deepL/glossaries.png b/tm/04.Extending/01.connectors/06.deepL/glossaries.png similarity index 100% rename from tm/04.extending/01.connectors/06.deepL/glossaries.png rename to tm/04.Extending/01.connectors/06.deepL/glossaries.png diff --git a/tm/04.extending/01.connectors/06.deepL/langMap.png b/tm/04.Extending/01.connectors/06.deepL/langMap.png similarity index 100% rename from tm/04.extending/01.connectors/06.deepL/langMap.png rename to tm/04.Extending/01.connectors/06.deepL/langMap.png diff --git a/tm/04.extending/01.connectors/06.deepL/transConfig.png b/tm/04.Extending/01.connectors/06.deepL/transConfig.png similarity index 100% rename from tm/04.extending/01.connectors/06.deepL/transConfig.png rename to tm/04.Extending/01.connectors/06.deepL/transConfig.png diff --git a/tm/04.extending/01.connectors/07.CrowdinConnector/01.crowdin.md b/tm/04.Extending/01.connectors/07.CrowdinConnector/01.crowdin.md similarity index 100% rename from tm/04.extending/01.connectors/07.CrowdinConnector/01.crowdin.md rename to tm/04.Extending/01.connectors/07.CrowdinConnector/01.crowdin.md diff --git a/tm/04.extending/01.connectors/07.CrowdinConnector/02.using.md b/tm/04.Extending/01.connectors/07.CrowdinConnector/02.using.md similarity index 100% rename from tm/04.extending/01.connectors/07.CrowdinConnector/02.using.md rename to tm/04.Extending/01.connectors/07.CrowdinConnector/02.using.md diff --git a/tm/04.extending/01.connectors/07.CrowdinConnector/_category_.json b/tm/04.Extending/01.connectors/07.CrowdinConnector/_category_.json similarity index 100% rename from tm/04.extending/01.connectors/07.CrowdinConnector/_category_.json rename to tm/04.Extending/01.connectors/07.CrowdinConnector/_category_.json diff --git a/tm/04.extending/01.connectors/07.CrowdinConnector/crowdin_account.png b/tm/04.Extending/01.connectors/07.CrowdinConnector/crowdin_account.png similarity index 100% rename from tm/04.extending/01.connectors/07.CrowdinConnector/crowdin_account.png rename to tm/04.Extending/01.connectors/07.CrowdinConnector/crowdin_account.png diff --git a/tm/04.extending/01.connectors/07.CrowdinConnector/crowdin_newtoken.png b/tm/04.Extending/01.connectors/07.CrowdinConnector/crowdin_newtoken.png similarity index 100% rename from tm/04.extending/01.connectors/07.CrowdinConnector/crowdin_newtoken.png rename to tm/04.Extending/01.connectors/07.CrowdinConnector/crowdin_newtoken.png diff --git a/tm/04.extending/01.connectors/07.CrowdinConnector/crowdin_token.png b/tm/04.Extending/01.connectors/07.CrowdinConnector/crowdin_token.png similarity index 100% rename from tm/04.extending/01.connectors/07.CrowdinConnector/crowdin_token.png rename to tm/04.Extending/01.connectors/07.CrowdinConnector/crowdin_token.png diff --git a/tm/04.extending/01.connectors/07.CrowdinConnector/crowdin_tokensetup.png b/tm/04.Extending/01.connectors/07.CrowdinConnector/crowdin_tokensetup.png similarity index 100% rename from tm/04.extending/01.connectors/07.CrowdinConnector/crowdin_tokensetup.png rename to tm/04.Extending/01.connectors/07.CrowdinConnector/crowdin_tokensetup.png diff --git a/tm/04.extending/01.connectors/07.CrowdinConnector/tm_accesstoken.png b/tm/04.Extending/01.connectors/07.CrowdinConnector/tm_accesstoken.png similarity index 100% rename from tm/04.extending/01.connectors/07.CrowdinConnector/tm_accesstoken.png rename to tm/04.Extending/01.connectors/07.CrowdinConnector/tm_accesstoken.png diff --git a/tm/04.extending/01.connectors/07.CrowdinConnector/tm_defaults.png b/tm/04.Extending/01.connectors/07.CrowdinConnector/tm_defaults.png similarity index 100% rename from tm/04.extending/01.connectors/07.CrowdinConnector/tm_defaults.png rename to tm/04.Extending/01.connectors/07.CrowdinConnector/tm_defaults.png diff --git a/tm/04.extending/01.connectors/07.CrowdinConnector/tm_mappings.png b/tm/04.Extending/01.connectors/07.CrowdinConnector/tm_mappings.png similarity index 100% rename from tm/04.extending/01.connectors/07.CrowdinConnector/tm_mappings.png rename to tm/04.Extending/01.connectors/07.CrowdinConnector/tm_mappings.png diff --git a/tm/04.extending/01.connectors/07.CrowdinConnector/tm_send_job.png b/tm/04.Extending/01.connectors/07.CrowdinConnector/tm_send_job.png similarity index 100% rename from tm/04.extending/01.connectors/07.CrowdinConnector/tm_send_job.png rename to tm/04.Extending/01.connectors/07.CrowdinConnector/tm_send_job.png diff --git a/tm/04.extending/01.connectors/07.CrowdinConnector/tm_send_options.png b/tm/04.Extending/01.connectors/07.CrowdinConnector/tm_send_options.png similarity index 100% rename from tm/04.extending/01.connectors/07.CrowdinConnector/tm_send_options.png rename to tm/04.Extending/01.connectors/07.CrowdinConnector/tm_send_options.png diff --git a/tm/04.extending/01.connectors/07.languageWire.md b/tm/04.Extending/01.connectors/07.languageWire.md similarity index 100% rename from tm/04.extending/01.connectors/07.languageWire.md rename to tm/04.Extending/01.connectors/07.languageWire.md diff --git a/tm/04.extending/01.connectors/08.Lionbridge.md b/tm/04.Extending/01.connectors/08.Lionbridge.md similarity index 100% rename from tm/04.extending/01.connectors/08.Lionbridge.md rename to tm/04.Extending/01.connectors/08.Lionbridge.md diff --git a/tm/04.extending/01.connectors/10.Smartcat.md b/tm/04.Extending/01.connectors/10.Smartcat.md similarity index 100% rename from tm/04.extending/01.connectors/10.Smartcat.md rename to tm/04.Extending/01.connectors/10.Smartcat.md diff --git a/tm/04.extending/01.connectors/APIKeyGoogle.png b/tm/04.Extending/01.connectors/APIKeyGoogle.png similarity index 100% rename from tm/04.extending/01.connectors/APIKeyGoogle.png rename to tm/04.Extending/01.connectors/APIKeyGoogle.png diff --git a/tm/04.extending/01.connectors/GoogleRefer.png b/tm/04.Extending/01.connectors/GoogleRefer.png similarity index 100% rename from tm/04.extending/01.connectors/GoogleRefer.png rename to tm/04.Extending/01.connectors/GoogleRefer.png diff --git a/tm/04.extending/01.connectors/_category_.json b/tm/04.Extending/01.connectors/_category_.json similarity index 100% rename from tm/04.extending/01.connectors/_category_.json rename to tm/04.Extending/01.connectors/_category_.json diff --git a/tm/04.extending/01.connectors/deepl.png b/tm/04.Extending/01.connectors/deepl.png similarity index 100% rename from tm/04.extending/01.connectors/deepl.png rename to tm/04.Extending/01.connectors/deepl.png diff --git a/tm/04.extending/01.connectors/desktop.ini b/tm/04.Extending/01.connectors/desktop.ini similarity index 100% rename from tm/04.extending/01.connectors/desktop.ini rename to tm/04.Extending/01.connectors/desktop.ini diff --git a/tm/04.extending/01.connectors/image.png b/tm/04.Extending/01.connectors/image.png similarity index 100% rename from tm/04.extending/01.connectors/image.png rename to tm/04.Extending/01.connectors/image.png diff --git a/tm/04.extending/01.connectors/languageWire.png b/tm/04.Extending/01.connectors/languageWire.png similarity index 100% rename from tm/04.extending/01.connectors/languageWire.png rename to tm/04.Extending/01.connectors/languageWire.png diff --git a/tm/04.extending/01.connectors/lionbridge.png b/tm/04.Extending/01.connectors/lionbridge.png similarity index 100% rename from tm/04.extending/01.connectors/lionbridge.png rename to tm/04.Extending/01.connectors/lionbridge.png diff --git a/tm/04.extending/01.connectors/microsoftpage.png b/tm/04.Extending/01.connectors/microsoftpage.png similarity index 100% rename from tm/04.extending/01.connectors/microsoftpage.png rename to tm/04.Extending/01.connectors/microsoftpage.png diff --git a/tm/04.Extending/01.connectors/microsoftRegion.PNG b/tm/04.Extending/01.connectors/microsoftregion.png similarity index 100% rename from tm/04.Extending/01.connectors/microsoftRegion.PNG rename to tm/04.Extending/01.connectors/microsoftregion.png diff --git a/tm/04.extending/01.connectors/smartcatDebug.png b/tm/04.Extending/01.connectors/smartcatDebug.png similarity index 100% rename from tm/04.extending/01.connectors/smartcatDebug.png rename to tm/04.Extending/01.connectors/smartcatDebug.png diff --git a/tm/04.extending/01.connectors/smartcatHTML.png b/tm/04.Extending/01.connectors/smartcatHTML.png similarity index 100% rename from tm/04.extending/01.connectors/smartcatHTML.png rename to tm/04.Extending/01.connectors/smartcatHTML.png diff --git a/tm/04.extending/01.connectors/smartcatLanguage.png b/tm/04.Extending/01.connectors/smartcatLanguage.png similarity index 100% rename from tm/04.extending/01.connectors/smartcatLanguage.png rename to tm/04.Extending/01.connectors/smartcatLanguage.png diff --git a/tm/04.extending/01.connectors/smartcatSettings.png b/tm/04.Extending/01.connectors/smartcatSettings.png similarity index 100% rename from tm/04.extending/01.connectors/smartcatSettings.png rename to tm/04.Extending/01.connectors/smartcatSettings.png diff --git a/tm/04.extending/02.mapping/01.index.mdx b/tm/04.Extending/02.mapping/01.index.mdx similarity index 100% rename from tm/04.extending/02.mapping/01.index.mdx rename to tm/04.Extending/02.mapping/01.index.mdx diff --git a/tm/04.extending/02.mapping/02.custom.md b/tm/04.Extending/02.mapping/02.custom.md similarity index 100% rename from tm/04.extending/02.mapping/02.custom.md rename to tm/04.Extending/02.mapping/02.custom.md diff --git a/tm/04.extending/02.mapping/03.json.mdx b/tm/04.Extending/02.mapping/03.json.mdx similarity index 100% rename from tm/04.extending/02.mapping/03.json.mdx rename to tm/04.Extending/02.mapping/03.json.mdx diff --git a/tm/04.extending/02.mapping/_category_.json b/tm/04.Extending/02.mapping/_category_.json similarity index 100% rename from tm/04.extending/02.mapping/_category_.json rename to tm/04.Extending/02.mapping/_category_.json diff --git a/tm/04.extending/03.models/04.ITranslationProvider.md b/tm/04.Extending/03.models/04.ITranslationProvider.md similarity index 100% rename from tm/04.extending/03.models/04.ITranslationProvider.md rename to tm/04.Extending/03.models/04.ITranslationProvider.md diff --git a/tm/04.extending/03.models/05.IValueMapper.md b/tm/04.Extending/03.models/05.IValueMapper.md similarity index 100% rename from tm/04.extending/03.models/05.IValueMapper.md rename to tm/04.Extending/03.models/05.IValueMapper.md diff --git a/tm/04.extending/03.models/06.TranslationProviderViews.md b/tm/04.Extending/03.models/06.TranslationProviderViews.md similarity index 100% rename from tm/04.extending/03.models/06.TranslationProviderViews.md rename to tm/04.Extending/03.models/06.TranslationProviderViews.md diff --git a/tm/04.extending/03.models/07.XliffSerializers.md b/tm/04.Extending/03.models/07.XliffSerializers.md similarity index 100% rename from tm/04.extending/03.models/07.XliffSerializers.md rename to tm/04.Extending/03.models/07.XliffSerializers.md diff --git a/tm/04.extending/03.models/08.TranslationJob.md b/tm/04.Extending/03.models/08.TranslationJob.md similarity index 100% rename from tm/04.extending/03.models/08.TranslationJob.md rename to tm/04.Extending/03.models/08.TranslationJob.md diff --git a/tm/04.extending/03.models/09.TranslationProperty.md b/tm/04.Extending/03.models/09.TranslationProperty.md similarity index 100% rename from tm/04.extending/03.models/09.TranslationProperty.md rename to tm/04.Extending/03.models/09.TranslationProperty.md diff --git a/tm/04.extending/03.models/10.TranslationValue.md b/tm/04.Extending/03.models/10.TranslationValue.md similarity index 100% rename from tm/04.extending/03.models/10.TranslationValue.md rename to tm/04.Extending/03.models/10.TranslationValue.md diff --git a/tm/04.extending/03.models/TranslationNode.md b/tm/04.Extending/03.models/TranslationNode.md similarity index 100% rename from tm/04.extending/03.models/TranslationNode.md rename to tm/04.Extending/03.models/TranslationNode.md diff --git a/tm/04.extending/03.models/_category_.json b/tm/04.Extending/03.models/_category_.json similarity index 100% rename from tm/04.extending/03.models/_category_.json rename to tm/04.Extending/03.models/_category_.json diff --git a/tm/04.extending/senddialog.png b/tm/04.Extending/senddialog.png similarity index 100% rename from tm/04.extending/senddialog.png rename to tm/04.Extending/senddialog.png diff --git a/tm_versioned_docs/version-12.x/03.userGuide/04.create.md b/tm_versioned_docs/version-12.x/03.userGuide/04.create.md index 700274f..69b215f 100644 --- a/tm_versioned_docs/version-12.x/03.userGuide/04.create.md +++ b/tm_versioned_docs/version-12.x/03.userGuide/04.create.md @@ -6,7 +6,7 @@ A translation set defines which parts of the content are to be included in trans - Settings -> Translation Manager -> Sets -![Create set button](createSet.png) +![Create set button](createset.png) - Click the *Create* button to create a a new translation set. diff --git a/tm_versioned_docs/version-12.x/04.extending/01.connectors/02.XLIFF/01.config.md b/tm_versioned_docs/version-12.x/04.extending/01.connectors/02.XLIFF/01.config.md index 3582b06..6389e0e 100644 --- a/tm_versioned_docs/version-12.x/04.extending/01.connectors/02.XLIFF/01.config.md +++ b/tm_versioned_docs/version-12.x/04.extending/01.connectors/02.XLIFF/01.config.md @@ -46,7 +46,7 @@ The formatting options control how the XLIFF file is formatted: The processing options control how any returned XLIFF files are processed -![Processing options](xliffProcess.png) +![Processing options](XliffProcess.png) | Option | Note | | - | - | diff --git a/tm_versioned_docs/version-13.x/03.userGuide/04.create.md b/tm_versioned_docs/version-13.x/03.userGuide/04.create.md index 700274f..69b215f 100644 --- a/tm_versioned_docs/version-13.x/03.userGuide/04.create.md +++ b/tm_versioned_docs/version-13.x/03.userGuide/04.create.md @@ -6,7 +6,7 @@ A translation set defines which parts of the content are to be included in trans - Settings -> Translation Manager -> Sets -![Create set button](createSet.png) +![Create set button](createset.png) - Click the *Create* button to create a a new translation set. diff --git a/tm_versioned_docs/version-13.x/04.Extending/01.connectors/02.XLIFF/01.config.md b/tm_versioned_docs/version-13.x/04.Extending/01.connectors/02.XLIFF/01.config.md index 3582b06..6389e0e 100644 --- a/tm_versioned_docs/version-13.x/04.Extending/01.connectors/02.XLIFF/01.config.md +++ b/tm_versioned_docs/version-13.x/04.Extending/01.connectors/02.XLIFF/01.config.md @@ -46,7 +46,7 @@ The formatting options control how the XLIFF file is formatted: The processing options control how any returned XLIFF files are processed -![Processing options](xliffProcess.png) +![Processing options](XliffProcess.png) | Option | Note | | - | - | diff --git a/usync/03.Forms.mdx b/usync/03.Forms.mdx index 5073d7a..f86d76a 100644 --- a/usync/03.Forms.mdx +++ b/usync/03.Forms.mdx @@ -2,10 +2,6 @@ title: uSync.Forms --- -:::warning Feature does not exist in V15 -This feature does not exist in version 15. -::: - To install and use uSync.Forms you will first need to install [Umbraco Forms](https://umbraco.com/products/add-ons/forms/). ## Installation @@ -57,7 +53,7 @@ Once uSync.Forms is installed, You should see the Forms entry on the uSync dashb If you have uSync.Complete you can right click on a form to push or pull it. -![Forms Menu with the "Push Items" and "Pull Items" buttons highlighted](pullPush.Png) +![Forms Menu with the "Push Items" and "Pull Items" buttons highlighted](pullPush.png) diff --git a/versioned_docs/version-12.x/02.complete/03.guides/02.Exporter/02.exporter.md b/versioned_docs/version-12.x/02.complete/03.guides/02.Exporter/02.exporter.md index 28f436c..009b4e0 100644 --- a/versioned_docs/version-12.x/02.complete/03.guides/02.Exporter/02.exporter.md +++ b/versioned_docs/version-12.x/02.complete/03.guides/02.Exporter/02.exporter.md @@ -4,7 +4,7 @@ title: uSync.Exporter uSync.Exporter provides a dashboard and context menu items that let you build your own 'SyncPack' exports. It contains just the elements you need, in order to move items between Umbraco instances. -![Exporter Dashboard](exporterMenu.png) +![Exporter Dashboard](ExporterMenu.png) ## Options When creating an export, you will be presented with several options. diff --git a/versioned_docs/version-12.x/03.Forms.mdx b/versioned_docs/version-12.x/03.Forms.mdx index f4e7c9e..f86d76a 100644 --- a/versioned_docs/version-12.x/03.Forms.mdx +++ b/versioned_docs/version-12.x/03.Forms.mdx @@ -53,7 +53,7 @@ Once uSync.Forms is installed, You should see the Forms entry on the uSync dashb If you have uSync.Complete you can right click on a form to push or pull it. -![Forms Menu with the "Push Items" and "Pull Items" buttons highlighted](pullPush.Png) +![Forms Menu with the "Push Items" and "Pull Items" buttons highlighted](pullPush.png) diff --git a/versioned_docs/version-13.x/02.complete/03.guides/02.Exporter/02.exporter.md b/versioned_docs/version-13.x/02.complete/03.guides/02.Exporter/02.exporter.md index 8e9e063..66f1188 100644 --- a/versioned_docs/version-13.x/02.complete/03.guides/02.Exporter/02.exporter.md +++ b/versioned_docs/version-13.x/02.complete/03.guides/02.Exporter/02.exporter.md @@ -5,7 +5,7 @@ title: uSync.Exporter uSync.Exporter provides a dashboard and context menu items that let you build your own 'SyncPack' exports. It contains just the elements you need, in order to move items between Umbraco instances. -![Exporter Dashboard](exporterMenu.png) +![Exporter Dashboard](ExporterMenu.png) # Options When creating an export, you will be presented with several options. diff --git a/versioned_docs/version-13.x/03.Forms.mdx b/versioned_docs/version-13.x/03.Forms.mdx index f4e7c9e..f86d76a 100644 --- a/versioned_docs/version-13.x/03.Forms.mdx +++ b/versioned_docs/version-13.x/03.Forms.mdx @@ -53,7 +53,7 @@ Once uSync.Forms is installed, You should see the Forms entry on the uSync dashb If you have uSync.Complete you can right click on a form to push or pull it. -![Forms Menu with the "Push Items" and "Pull Items" buttons highlighted](pullPush.Png) +![Forms Menu with the "Push Items" and "Pull Items" buttons highlighted](pullPush.png)