From d44f176e42e0b7227398947cbd931169521d8496 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 12:58:16 +0000 Subject: [PATCH 01/11] GitHub Actions(deps): Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/cypress-matrix.yml | 2 +- .github/workflows/cypress-tests-beta.yml | 2 +- .github/workflows/cypress-tests.yml | 4 ++-- .github/workflows/lint-php.yml | 2 +- .github/workflows/upload-artifact-on-push.yml | 4 ++-- .github/workflows/upload-asset-on-release.yml | 4 ++-- .github/workflows/wp-i18n.yml | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/cypress-matrix.yml b/.github/workflows/cypress-matrix.yml index ecc960d1..7d33d056 100644 --- a/.github/workflows/cypress-matrix.yml +++ b/.github/workflows/cypress-matrix.yml @@ -66,7 +66,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache Composer vendor directory - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} diff --git a/.github/workflows/cypress-tests-beta.yml b/.github/workflows/cypress-tests-beta.yml index 4cf53df4..cf6a8f9b 100644 --- a/.github/workflows/cypress-tests-beta.yml +++ b/.github/workflows/cypress-tests-beta.yml @@ -47,7 +47,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache Composer vendor directory - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} diff --git a/.github/workflows/cypress-tests.yml b/.github/workflows/cypress-tests.yml index 51a3f30d..b83d9e81 100644 --- a/.github/workflows/cypress-tests.yml +++ b/.github/workflows/cypress-tests.yml @@ -57,7 +57,7 @@ jobs: run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT - name: Cache node modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.npm-cache.outputs.dir }} key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -69,7 +69,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache Composer vendor directory - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} diff --git a/.github/workflows/lint-php.yml b/.github/workflows/lint-php.yml index db2e1f4c..6fa195e0 100644 --- a/.github/workflows/lint-php.yml +++ b/.github/workflows/lint-php.yml @@ -42,7 +42,7 @@ jobs: if: "!! env.GIT_DIFF" - name: Cache Composer vendor directory - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} diff --git a/.github/workflows/upload-artifact-on-push.yml b/.github/workflows/upload-artifact-on-push.yml index 746c35fc..28cba37b 100644 --- a/.github/workflows/upload-artifact-on-push.yml +++ b/.github/workflows/upload-artifact-on-push.yml @@ -53,7 +53,7 @@ jobs: run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT - name: Cache node modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.npm-cache.outputs.dir }} key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -65,7 +65,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache Composer vendor directory - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} diff --git a/.github/workflows/upload-asset-on-release.yml b/.github/workflows/upload-asset-on-release.yml index a09878bc..3d5f7061 100644 --- a/.github/workflows/upload-asset-on-release.yml +++ b/.github/workflows/upload-asset-on-release.yml @@ -63,7 +63,7 @@ jobs: run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT - name: Cache node modules - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.npm-cache.outputs.dir }} key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -75,7 +75,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache Composer vendor directory - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} diff --git a/.github/workflows/wp-i18n.yml b/.github/workflows/wp-i18n.yml index 5d8519e7..aec2f11b 100644 --- a/.github/workflows/wp-i18n.yml +++ b/.github/workflows/wp-i18n.yml @@ -38,7 +38,7 @@ jobs: run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache Composer vendor directory - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} From 237f7977b19810eeb33dd922def5ae9f27428c0f Mon Sep 17 00:00:00 2001 From: Micah Wood Date: Thu, 18 Jan 2024 15:21:48 -0500 Subject: [PATCH 02/11] Prep release 2.6.0 --- bootstrap.php | 1 + composer.json | 2 +- composer.lock | 40 ++++----- cypress.config.js | 71 ++++++++-------- inc/RestApi/SettingsController.php | 11 ++- inc/upgrades/1.0.3.php | 13 --- package-lock.json | 68 ++++++--------- package.json | 8 +- src/app/components/site-info/index.js | 114 +++++++++++++------------- wp-plugin-hostgator.php | 32 ++++---- 10 files changed, 168 insertions(+), 192 deletions(-) delete mode 100644 inc/upgrades/1.0.3.php diff --git a/bootstrap.php b/bootstrap.php index a47e7223..40071fd5 100644 --- a/bootstrap.php +++ b/bootstrap.php @@ -11,6 +11,7 @@ use WP_Forge\UpgradeHandler\UpgradeHandler; use NewfoldLabs\WP\ModuleLoader\Container; use NewfoldLabs\WP\ModuleLoader\Plugin; + use function NewfoldLabs\WP\ModuleLoader\container as setContainer; // Composer autoloader diff --git a/composer.json b/composer.json index cfd53d87..10c968d9 100644 --- a/composer.json +++ b/composer.json @@ -69,7 +69,7 @@ "newfold-labs/wp-module-coming-soon": "^1.1.15", "newfold-labs/wp-module-data": "^2.4.16", "newfold-labs/wp-module-deactivation": "^1.0.4", - "newfold-labs/wp-module-ecommerce": "^1.3.19", + "newfold-labs/wp-module-ecommerce": "v1.3.18", "newfold-labs/wp-module-global-ctb": "^1.0.9", "newfold-labs/wp-module-help-center": "^1.0.22", "newfold-labs/wp-module-loader": "^1.0.10", diff --git a/composer.lock b/composer.lock index 062bede0..5158b324 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "3e6ce7cd7949892d27633a01f639707b", + "content-hash": "3bb28ccf5fe6e6425882af39ab927679", "packages": [ { "name": "doctrine/inflector", @@ -237,16 +237,16 @@ }, { "name": "newfold-labs/wp-module-coming-soon", - "version": "1.1.15", + "version": "1.1.17", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-coming-soon.git", - "reference": "09e5a9bac43102bb0ebc2547b0952a85b17c6138" + "reference": "eac606ade15a8da188b6997ad72003ca7a47ffab" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-coming-soon/zipball/09e5a9bac43102bb0ebc2547b0952a85b17c6138", - "reference": "09e5a9bac43102bb0ebc2547b0952a85b17c6138", + "url": "https://api.github.com/repos/newfold-labs/wp-module-coming-soon/zipball/eac606ade15a8da188b6997ad72003ca7a47ffab", + "reference": "eac606ade15a8da188b6997ad72003ca7a47ffab", "shasum": "" }, "require": { @@ -283,10 +283,10 @@ ], "description": "Coming Soon module for WordPress sites.", "support": { - "source": "https://github.com/newfold-labs/wp-module-coming-soon/tree/1.1.15", + "source": "https://github.com/newfold-labs/wp-module-coming-soon/tree/1.1.17", "issues": "https://github.com/newfold-labs/wp-module-coming-soon/issues" }, - "time": "2024-01-16T16:23:29+00:00" + "time": "2024-01-18T01:07:49+00:00" }, { "name": "newfold-labs/wp-module-data", @@ -400,16 +400,16 @@ }, { "name": "newfold-labs/wp-module-ecommerce", - "version": "v1.3.19", + "version": "v1.3.18", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-ecommerce.git", - "reference": "d3999bad6e8ac64660f2e272895219674e2bc2b3" + "reference": "4d7681e4e311072281ebdbd7d551c8132639416c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-ecommerce/zipball/d3999bad6e8ac64660f2e272895219674e2bc2b3", - "reference": "d3999bad6e8ac64660f2e272895219674e2bc2b3", + "url": "https://api.github.com/repos/newfold-labs/wp-module-ecommerce/zipball/4d7681e4e311072281ebdbd7d551c8132639416c", + "reference": "4d7681e4e311072281ebdbd7d551c8132639416c", "shasum": "" }, "require": { @@ -452,10 +452,10 @@ ], "description": "Brand Agnostic eCommerce Experience", "support": { - "source": "https://github.com/newfold-labs/wp-module-ecommerce/tree/v1.3.19", + "source": "https://github.com/newfold-labs/wp-module-ecommerce/tree/v1.3.18", "issues": "https://github.com/newfold-labs/wp-module-ecommerce/issues" }, - "time": "2024-01-12T13:10:30+00:00" + "time": "2024-01-11T22:51:14+00:00" }, { "name": "newfold-labs/wp-module-global-ctb", @@ -509,16 +509,16 @@ }, { "name": "newfold-labs/wp-module-help-center", - "version": "1.0.22", + "version": "1.0.23", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-help-center.git", - "reference": "43a61428a420a91066e39c6a8491f0efcae73d26" + "reference": "a41e0126ed61bde0b494e4f242d99df0e81766b9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-help-center/zipball/43a61428a420a91066e39c6a8491f0efcae73d26", - "reference": "43a61428a420a91066e39c6a8491f0efcae73d26", + "url": "https://api.github.com/repos/newfold-labs/wp-module-help-center/zipball/a41e0126ed61bde0b494e4f242d99df0e81766b9", + "reference": "a41e0126ed61bde0b494e4f242d99df0e81766b9", "shasum": "" }, "require": { @@ -548,10 +548,10 @@ ], "description": "HelpCenter", "support": { - "source": "https://github.com/newfold-labs/wp-module-help-center/tree/1.0.22", + "source": "https://github.com/newfold-labs/wp-module-help-center/tree/1.0.23", "issues": "https://github.com/newfold-labs/wp-module-help-center/issues" }, - "time": "2024-01-12T17:29:18+00:00" + "time": "2024-01-17T20:32:44+00:00" }, { "name": "newfold-labs/wp-module-install-checker", @@ -2818,5 +2818,5 @@ "platform-overrides": { "php": "7.1.0" }, - "plugin-api-version": "2.6.0" + "plugin-api-version": "2.3.0" } diff --git a/cypress.config.js b/cypress.config.js index 60d7d105..d0a9674d 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -1,23 +1,23 @@ -const { defineConfig } = require('cypress') -const { phpVersion, core } = require('./.wp-env.json') +const {defineConfig} = require('cypress') +const {phpVersion, core} = require('./.wp-env.json') const wpVersion = /[^/]*$/.exec(core)[0] module.exports = defineConfig({ - projectId: "kuks2q", - env: { - wpUsername: 'admin', - wpPassword: 'password', + projectId: 'kuks2q', + env: { + wpUsername: 'admin', + wpPassword: 'password', wpVersion, phpVersion, - pluginId: 'hostgator', - appId: 'hgwp', - }, - downloadsFolder: 'tests/cypress/downloads', - fixturesFolder: 'tests/cypress/fixtures', - screenshotsFolder: 'tests/cypress/screenshots', - video: true, - videosFolder: 'tests/cypress/videos', - chromeWebSecurity: false, + pluginId: 'hostgator', + appId: 'hgwp', + }, + downloadsFolder: 'tests/cypress/downloads', + fixturesFolder: 'tests/cypress/fixtures', + screenshotsFolder: 'tests/cypress/screenshots', + video: true, + videosFolder: 'tests/cypress/videos', + chromeWebSecurity: false, viewportWidth: 1024, viewportHeight: 768, blockHosts: [ @@ -25,25 +25,26 @@ module.exports = defineConfig({ '*jnn-pa.googleapis.com', '*youtube.com', ], - e2e: { - // We've imported your old cypress plugins here. - // You may want to clean this up later by importing these. - setupNodeEvents(on, config) { - return require('./tests/cypress/plugins/index.js')(on, config) - }, - baseUrl: 'http://localhost:8880', - specPattern: [ - 'tests/cypress/integration/**/*.cy.{js,jsx,ts,tsx}', - 'vendor/newfold-labs/**/tests/cypress/integration/**/*.cy.{js,jsx,ts,tsx}', - ], - supportFile: 'tests/cypress/support/index.js', - testIsolation: false, + e2e: { + // We've imported your old cypress plugins here. + // You may want to clean this up later by importing these. + setupNodeEvents(on, config) { + return require('./tests/cypress/plugins/index.js')(on, config) + }, + baseUrl: 'http://localhost:8880', + specPattern: [ + 'tests/cypress/integration/**/*.cy.{js,jsx,ts,tsx}', + 'vendor/newfold-labs/**/tests/cypress/integration/**/*.cy.{js,jsx,ts,tsx}', + ], + supportFile: 'tests/cypress/support/index.js', + testIsolation: false, excludeSpecPattern: [ - 'vendor/newfold-labs/**/tests/cypress/integration/wp-module-support/*.cy.js', // skip any module's wp-module-support files - 'vendor/newfold-labs/wp-module-onboarding/tests/cypress/integration/', // skipping onboarding tests until they add multi-lingual support or onboarding is activated for all lanugages - 'vendor/newfold-labs/wp-module-patterns/tests/cypress/integration/', // skip pattern tests for now - ], - }, - retries: 1, - experimentalMemoryManagement: true, + 'vendor/newfold-labs/**/tests/cypress/integration/wp-module-support/*.cy.js', // skip any module's wp-module-support files + 'vendor/newfold-labs/wp-module-onboarding/tests/cypress/integration/', // skipping onboarding tests until they add multi-lingual support or onboarding is activated for all lanugages + 'vendor/newfold-labs/wp-module-patterns/tests/cypress/integration/', // skip pattern tests for now + 'vendor/newfold-labs/**/tests/cypress/integration/wp-module-support/*.cy.js', // skip any module's wp-module-support files + ], + }, + retries: 1, + experimentalMemoryManagement: true, }) diff --git a/inc/RestApi/SettingsController.php b/inc/RestApi/SettingsController.php index b68f20ae..8403e663 100644 --- a/inc/RestApi/SettingsController.php +++ b/inc/RestApi/SettingsController.php @@ -2,6 +2,8 @@ namespace HostGator\RestApi; +use function NewfoldLabs\WP\ModuleLoader\container; + /** * Class SettingsController */ @@ -67,8 +69,11 @@ public function update_item( $request ) { $new_value = $params[ $setting ]; switch ( $setting ) { case 'comingSoon': - $new_value = ( $new_value ) ? 'true' : 'false'; - update_option( 'nfd_coming_soon', $new_value ); + if ( $new_value ) { + container()->get( 'comingSoon' )->enable(); + } else { + container()->get( 'comingSoon' )->disable(); + } break; case 'autoUpdatesMajorCore': $new_value = ( $new_value ) ? 'true' : 'false'; @@ -169,7 +174,7 @@ public function get_current_settings() { } $settings = array( - 'comingSoon' => ( 'true' === get_option( 'nfd_coming_soon', 'false' ) ), + 'comingSoon' => container()->get( 'comingSoon' )->is_enabled(), 'autoUpdatesAll' => $major && $plugins && $themes, 'autoUpdatesMajorCore' => $major, 'autoUpdatesMinorCore' => $minor, diff --git a/inc/upgrades/1.0.3.php b/inc/upgrades/1.0.3.php deleted file mode 100644 index 3ae79cd2..00000000 --- a/inc/upgrades/1.0.3.php +++ /dev/null @@ -1,13 +0,0 @@ -=14.0.0" @@ -29667,14 +29657,13 @@ } }, "cypress": { - "version": "13.6.2", - "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.6.2.tgz", - "integrity": "sha512-TW3bGdPU4BrfvMQYv1z3oMqj71YI4AlgJgnrycicmPZAXtvywVFZW9DAToshO65D97rCWfG/kqMFsYB6Kp91gQ==", + "version": "13.6.3", + "resolved": "https://registry.npmjs.org/cypress/-/cypress-13.6.3.tgz", + "integrity": "sha512-d/pZvgwjAyZsoyJ3FOsJT5lDsqnxQ/clMqnNc++rkHjbkkiF2h9s0JsZSyyH4QXhVFW3zPFg82jD25roFLOdZA==", "dev": true, "requires": { "@cypress/request": "^3.0.0", "@cypress/xvfb": "^1.2.4", - "@types/node": "^18.17.5", "@types/sinonjs__fake-timers": "8.1.1", "@types/sizzle": "^2.3.2", "arch": "^2.2.0", @@ -29717,15 +29706,6 @@ "yauzl": "^2.10.0" }, "dependencies": { - "@types/node": { - "version": "18.18.9", - "resolved": "https://registry.npmjs.org/@types/node/-/node-18.18.9.tgz", - "integrity": "sha512-0f5klcuImLnG4Qreu9hPj/rEfFq6YRc5n2mAjSsH+ec/mJL+3voBH0+8T7o8RpFjH7ovc+TRsL/c7OYIQsPTfQ==", - "dev": true, - "requires": { - "undici-types": "~5.26.4" - } - }, "commander": { "version": "6.2.1", "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", @@ -36660,20 +36640,20 @@ "integrity": "sha512-sBtMIEy/9oI+Xf2o7IdWdkTokpZSPo9TWn60gqWKPG3BXg44Rg3FCIMiIjmgvRUF4eQptw6pqYTUhYwkeVSxXA==" }, "react-router": { - "version": "6.21.2", - "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.21.2.tgz", - "integrity": "sha512-jJcgiwDsnaHIeC+IN7atO0XiSRCrOsQAHHbChtJxmgqG2IaYQXSnhqGb5vk2CU/wBQA12Zt+TkbuJjIn65gzbA==", + "version": "6.21.3", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.21.3.tgz", + "integrity": "sha512-a0H638ZXULv1OdkmiK6s6itNhoy33ywxmUFT/xtSoVyf9VnC7n7+VT4LjVzdIHSaF5TIh9ylUgxMXksHTgGrKg==", "requires": { "@remix-run/router": "1.14.2" } }, "react-router-dom": { - "version": "6.21.2", - "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.21.2.tgz", - "integrity": "sha512-tE13UukgUOh2/sqYr6jPzZTzmzc70aGRP4pAjG2if0IP3aUT+sBtAKUJh0qMh0zylJHGLmzS+XWVaON4UklHeg==", + "version": "6.21.3", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.21.3.tgz", + "integrity": "sha512-kNzubk7n4YHSrErzjLK72j0B5i969GsuCGazRl3G6j1zqZBLjuSlYBdVdkDOgzGdPIffUOc9nmgiadTEVoq91g==", "requires": { "@remix-run/router": "1.14.2", - "react-router": "6.21.2" + "react-router": "6.21.3" } }, "react-spring": { diff --git a/package.json b/package.json index 436e8817..93adf9e8 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "wp-plugin-hostgator", "description": "WordPress plugin that integrates your WordPress site with the HostGator control panel, including performance, security, and update features.", "license": "GPL-2.0-or-later", - "version": "2.5.1", + "version": "2.6.0", "private": true, "contributors": [ "Abdulrahman Al Ani (https://alani.dev/)", @@ -27,7 +27,7 @@ "lodash": "^4.17.21", "react": "^18.2.0", "react-error-boundary": "^4.0.12", - "react-router-dom": "^6.21.2", + "react-router-dom": "^6.21.3", "react-use": "^17.4.3" }, "devDependencies": { @@ -36,7 +36,7 @@ "@testing-library/cypress": "^10.0.1", "@wordpress/env": "^9.1.0", "@wordpress/scripts": "^26.19.0", - "cypress": "^13.6.2", + "cypress": "^13.6.3", "cypress-axe": "1.5.0", "node-wp-i18n": "^1.2.7", "tailwindcss": "^3.4.1" @@ -75,4 +75,4 @@ "test:e2e": "npx cypress run", "test:unit": "wp-scripts test-unit-js" } -} \ No newline at end of file +} diff --git a/src/app/components/site-info/index.js b/src/app/components/site-info/index.js index ed3f14e1..dc2d69d0 100644 --- a/src/app/components/site-info/index.js +++ b/src/app/components/site-info/index.js @@ -1,64 +1,66 @@ -import { LockClosedIcon, LockOpenIcon } from "@heroicons/react/24/outline"; -import { NewfoldRuntime } from "@newfold-labs/wp-module-runtime"; -import { Button } from "@newfold/ui-component-library"; -import { HostgatorIcon, WordPressIcon } from "../icons"; -import { getLinkPerRegion } from '../../util/helpers'; +import {LockClosedIcon, LockOpenIcon} from "@heroicons/react/24/outline"; +import {decodeEntities} from '@wordpress/html-entities'; +import {NewfoldRuntime} from "@newfold-labs/wp-module-runtime"; +import {Button} from "@newfold/ui-component-library"; +import {HostgatorIcon, WordPressIcon} from "../icons"; +import {getLinkPerRegion} from '../../util/helpers'; export const SiteInfoBar = () => { - const { url, title } = NewfoldRuntime.siteDetails; - const parsedUrl = new URL(url); - const siteDomain = parsedUrl.hostname; - const hasSSL = parsedUrl.protocol.includes("https"); - const isEcommerce = NewfoldRuntime.hasCapability("isEcommerce"); - const isStore = window.location.href?.includes("store"); + const {url, title} = NewfoldRuntime.siteDetails; + const parsedUrl = new URL(url); + const siteDomain = parsedUrl.hostname; + const hasSSL = parsedUrl.protocol.includes("https"); + const isEcommerce = NewfoldRuntime.hasCapability("isEcommerce"); + const isStore = window.location.href?.includes("store"); - const renderPadLock = () => { - if (hasSSL) { - return - } + const renderPadLock = () => { + if (hasSSL) { + return + } - return - } + return + } - return ( -
-
+ return ( +
+
-
-

{title}

-
-
- {renderPadLock()} - {siteDomain} -
-
-
+
+

{decodeEntities(title)}

+
+
+ {renderPadLock()} + {siteDomain} +
+
+
-
- - -
- -
-
- ); +
+ + +
+ +
+
+ ); } \ No newline at end of file diff --git a/wp-plugin-hostgator.php b/wp-plugin-hostgator.php index ef3acb19..fe66b7c6 100644 --- a/wp-plugin-hostgator.php +++ b/wp-plugin-hostgator.php @@ -4,7 +4,7 @@ * * @package HostGatorWordPressPlugin * @author Newfold Digital - * @copyright Copyright 2023 by Newfold Digital - All rights reserved. + * @copyright Copyright 2024 by Newfold Digital - All rights reserved. * @license GPL-2.0-or-later * * @wordpress-plugin @@ -12,10 +12,10 @@ * Plugin URI: https://hostgator.com * Update URI: https://github.com/newfold-labs/wp-plugin-hostgator/ * Description: WordPress plugin that integrates a WordPress site with the HostGator control panel, including performance, security, and update features. - * Version: 2.5.1 - * Requires at least: 4.7 - * Requires PHP: 5.6 - * Tested up to: 6.4.1 + * Version: 2.6.0 + * Requires at least: 6.0 + * Requires PHP: 7.1 + * Tested up to: 6.4.2 * Author: HostGator * Author URI: https://hostgator.com * Text Domain: wp-plugin-hostgator @@ -28,21 +28,21 @@ // Do not allow multiple copies of the HostGator Plugin to be active if ( defined( 'HOSTGATOR_PLUGIN_VERSION' ) ) { - exit; + return; } // Define constants -define( 'HOSTGATOR_PLUGIN_VERSION', '2.5.1' ); +define( 'HOSTGATOR_PLUGIN_VERSION', '2.6.0' ); define( 'HOSTGATOR_PLUGIN_FILE', __FILE__ ); define( 'HOSTGATOR_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); define( 'HOSTGATOR_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); +define( 'HOSTGATOR_BUILD_DIR', HOSTGATOR_PLUGIN_DIR . 'build/' . HOSTGATOR_PLUGIN_VERSION ); +define( 'HOSTGATOR_BUILD_URL', HOSTGATOR_PLUGIN_URL . 'build/' . HOSTGATOR_PLUGIN_VERSION ); + if ( ! defined( 'NFD_HIIVE_URL' ) ) { define( 'NFD_HIIVE_URL', 'https://hiive.cloud/api' ); } -define( 'HOSTGATOR_BUILD_DIR', HOSTGATOR_PLUGIN_DIR . 'build/' . HOSTGATOR_PLUGIN_VERSION ); -define( 'HOSTGATOR_BUILD_URL', HOSTGATOR_PLUGIN_URL . 'build/' . HOSTGATOR_PLUGIN_VERSION ); - global $pagenow; if ( 'plugins.php' === $pagenow ) { @@ -50,13 +50,13 @@ $plugin_check = new HG_Plugin_PHP_Compat_Check( __FILE__ ); - $plugin_check->min_php_version = '5.3'; - $plugin_check->min_wp_version = '4.7'; + $plugin_check->min_php_version = '7.1'; + $plugin_check->min_wp_version = '6.0'; $plugin_check->check_plugin_requirements(); } -// Check NFD plugin incompaatibilities +// Check NFD plugin incompatibilities require_once HOSTGATOR_PLUGIN_DIR . '/inc/plugin-nfd-compat-check.php'; $nfd_plugins_check = new NFD_Plugin_Compat_Check( HOSTGATOR_PLUGIN_FILE ); // Defer to Incompatible plugin, self-deactivate @@ -69,9 +69,9 @@ 'The MOJO Plugin' => 'wp-plugin-mojo/wp-plugin-mojo.php', 'The Web.com Plugin' => 'wp-plugin-web/wp-plugin-web.php', ); -$pass_nfd_check = $nfd_plugins_check->check_plugin_requirements(); +$pass_nfd_check = $nfd_plugins_check->check_plugin_requirements(); // Check PHP version before initializing to prevent errors if plugin is incompatible. -if ( $pass_nfd_check && version_compare( PHP_VERSION, '5.3', '>=' ) ) { - require dirname( __FILE__ ) . '/bootstrap.php'; +if ( $pass_nfd_check && version_compare( PHP_VERSION, '7.1', '>=' ) ) { + require __DIR__ . '/bootstrap.php'; } From 10a8235c77f4217b0d49b3d1e3aa0dbbd596e262 Mon Sep 17 00:00:00 2001 From: Micah Wood Date: Thu, 18 Jan 2024 16:33:06 -0500 Subject: [PATCH 03/11] Fix composer validation --- composer.lock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.lock b/composer.lock index 5158b324..4a01251f 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "3bb28ccf5fe6e6425882af39ab927679", + "content-hash": "d9955e76c108d5015c7f2ed63b54dee1", "packages": [ { "name": "doctrine/inflector", From b8265814a3f1e072abb356d3c0c24e2ef5ded912 Mon Sep 17 00:00:00 2001 From: Micah Wood Date: Mon, 22 Jan 2024 17:46:14 -0500 Subject: [PATCH 04/11] Update to data module 2.4.17 --- composer.lock | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/composer.lock b/composer.lock index 4a01251f..cae99544 100644 --- a/composer.lock +++ b/composer.lock @@ -290,16 +290,16 @@ }, { "name": "newfold-labs/wp-module-data", - "version": "2.4.16", + "version": "2.4.17", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-data.git", - "reference": "633712f1d717c564f62bd6cfc4e70d56959d8a22" + "reference": "b544541bf20067d83b1a2ac4feb815e69ef113b3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-data/zipball/633712f1d717c564f62bd6cfc4e70d56959d8a22", - "reference": "633712f1d717c564f62bd6cfc4e70d56959d8a22", + "url": "https://api.github.com/repos/newfold-labs/wp-module-data/zipball/b544541bf20067d83b1a2ac4feb815e69ef113b3", + "reference": "b544541bf20067d83b1a2ac4feb815e69ef113b3", "shasum": "" }, "require": { @@ -332,10 +332,10 @@ ], "description": "Newfold Data Module", "support": { - "source": "https://github.com/newfold-labs/wp-module-data/tree/2.4.16", + "source": "https://github.com/newfold-labs/wp-module-data/tree/2.4.17", "issues": "https://github.com/newfold-labs/wp-module-data/issues" }, - "time": "2024-01-08T20:37:18+00:00" + "time": "2024-01-22T22:35:26+00:00" }, { "name": "newfold-labs/wp-module-deactivation", From c07b1d201f680d9d6b103e40ecff0d2359454310 Mon Sep 17 00:00:00 2001 From: Micah Wood Date: Mon, 22 Jan 2024 17:49:28 -0500 Subject: [PATCH 05/11] Bump version to 2.6.1 --- package.json | 2 +- wp-plugin-hostgator.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 93adf9e8..ae277441 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "wp-plugin-hostgator", "description": "WordPress plugin that integrates your WordPress site with the HostGator control panel, including performance, security, and update features.", "license": "GPL-2.0-or-later", - "version": "2.6.0", + "version": "2.6.1", "private": true, "contributors": [ "Abdulrahman Al Ani (https://alani.dev/)", diff --git a/wp-plugin-hostgator.php b/wp-plugin-hostgator.php index fe66b7c6..e2a647af 100644 --- a/wp-plugin-hostgator.php +++ b/wp-plugin-hostgator.php @@ -12,7 +12,7 @@ * Plugin URI: https://hostgator.com * Update URI: https://github.com/newfold-labs/wp-plugin-hostgator/ * Description: WordPress plugin that integrates a WordPress site with the HostGator control panel, including performance, security, and update features. - * Version: 2.6.0 + * Version: 2.6.1 * Requires at least: 6.0 * Requires PHP: 7.1 * Tested up to: 6.4.2 @@ -32,7 +32,7 @@ } // Define constants -define( 'HOSTGATOR_PLUGIN_VERSION', '2.6.0' ); +define( 'HOSTGATOR_PLUGIN_VERSION', '2.6.1' ); define( 'HOSTGATOR_PLUGIN_FILE', __FILE__ ); define( 'HOSTGATOR_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); define( 'HOSTGATOR_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); From 724498a753658e221e18b75ee9fc12e74bdcac84 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 25 Jan 2024 13:04:37 +0000 Subject: [PATCH 06/11] Composer(deps): Bump newfold-labs/wp-module-data from 2.4.17 to 2.4.18 Bumps [newfold-labs/wp-module-data](https://github.com/newfold-labs/wp-module-data) from 2.4.17 to 2.4.18. - [Release notes](https://github.com/newfold-labs/wp-module-data/releases) - [Commits](https://github.com/newfold-labs/wp-module-data/compare/2.4.17...2.4.18) --- updated-dependencies: - dependency-name: newfold-labs/wp-module-data dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- composer.json | 2 +- composer.lock | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/composer.json b/composer.json index 218fffaf..7b1cc800 100644 --- a/composer.json +++ b/composer.json @@ -67,7 +67,7 @@ "require": { "doctrine/inflector": "1.4.4 as 1.3.1", "newfold-labs/wp-module-coming-soon": "^1.1.15", - "newfold-labs/wp-module-data": "^2.4.16", + "newfold-labs/wp-module-data": "^2.4.18", "newfold-labs/wp-module-deactivation": "^1.0.4", "newfold-labs/wp-module-ecommerce": "v1.3.18", "newfold-labs/wp-module-global-ctb": "^1.0.9", diff --git a/composer.lock b/composer.lock index cae99544..175ce8f5 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "d9955e76c108d5015c7f2ed63b54dee1", + "content-hash": "2679f37cf280675b413e940c9609c8bf", "packages": [ { "name": "doctrine/inflector", @@ -290,16 +290,16 @@ }, { "name": "newfold-labs/wp-module-data", - "version": "2.4.17", + "version": "2.4.18", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-data.git", - "reference": "b544541bf20067d83b1a2ac4feb815e69ef113b3" + "reference": "f7bdfc1f70a2608c1ddaa6e3273221a880b794ed" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-data/zipball/b544541bf20067d83b1a2ac4feb815e69ef113b3", - "reference": "b544541bf20067d83b1a2ac4feb815e69ef113b3", + "url": "https://api.github.com/repos/newfold-labs/wp-module-data/zipball/f7bdfc1f70a2608c1ddaa6e3273221a880b794ed", + "reference": "f7bdfc1f70a2608c1ddaa6e3273221a880b794ed", "shasum": "" }, "require": { @@ -332,10 +332,10 @@ ], "description": "Newfold Data Module", "support": { - "source": "https://github.com/newfold-labs/wp-module-data/tree/2.4.17", + "source": "https://github.com/newfold-labs/wp-module-data/tree/2.4.18", "issues": "https://github.com/newfold-labs/wp-module-data/issues" }, - "time": "2024-01-22T22:35:26+00:00" + "time": "2024-01-24T21:36:38+00:00" }, { "name": "newfold-labs/wp-module-deactivation", @@ -2818,5 +2818,5 @@ "platform-overrides": { "php": "7.1.0" }, - "plugin-api-version": "2.3.0" + "plugin-api-version": "2.6.0" } From ec1aecf19a38b4d5adc2c520e8a49c68493e2672 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 Jan 2024 22:31:02 +0000 Subject: [PATCH 07/11] Composer(deps): Bump newfold-labs/wp-module-patterns Bumps [newfold-labs/wp-module-patterns](https://github.com/newfold-labs/wp-module-patterns) from 0.1.12 to 0.1.13. - [Release notes](https://github.com/newfold-labs/wp-module-patterns/releases) - [Commits](https://github.com/newfold-labs/wp-module-patterns/compare/0.1.12...0.1.13) --- updated-dependencies: - dependency-name: newfold-labs/wp-module-patterns dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- composer.json | 2 +- composer.lock | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/composer.json b/composer.json index 7b1cc800..3549dd63 100644 --- a/composer.json +++ b/composer.json @@ -76,7 +76,7 @@ "newfold-labs/wp-module-marketplace": "^2.2.0", "newfold-labs/wp-module-notifications": "^1.2.2", "newfold-labs/wp-module-onboarding": "^1.12.0", - "newfold-labs/wp-module-patterns": "^0.1.12", + "newfold-labs/wp-module-patterns": "^0.1.13", "newfold-labs/wp-module-performance": "^1.3.0", "newfold-labs/wp-module-runtime": "^1.0.7", "newfold-labs/wp-module-secure-passwords": "^1.1", diff --git a/composer.lock b/composer.lock index 175ce8f5..ebdff4ad 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "2679f37cf280675b413e940c9609c8bf", + "content-hash": "4609ecd3c37c4b55a506471eaa9f89e2", "packages": [ { "name": "doctrine/inflector", @@ -886,16 +886,16 @@ }, { "name": "newfold-labs/wp-module-patterns", - "version": "0.1.12", + "version": "0.1.13", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-patterns.git", - "reference": "6f4189c97a9e37f24531af8cfae986041d4b613b" + "reference": "e270df68693808a662ec86943c778a907936cdd9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-patterns/zipball/6f4189c97a9e37f24531af8cfae986041d4b613b", - "reference": "6f4189c97a9e37f24531af8cfae986041d4b613b", + "url": "https://api.github.com/repos/newfold-labs/wp-module-patterns/zipball/e270df68693808a662ec86943c778a907936cdd9", + "reference": "e270df68693808a662ec86943c778a907936cdd9", "shasum": "" }, "require-dev": { @@ -929,10 +929,10 @@ ], "description": "WordPress Cloud Patterns", "support": { - "source": "https://github.com/newfold-labs/wp-module-patterns/tree/0.1.12", + "source": "https://github.com/newfold-labs/wp-module-patterns/tree/0.1.13", "issues": "https://github.com/newfold-labs/wp-module-patterns/issues" }, - "time": "2024-01-03T21:56:57+00:00" + "time": "2024-01-22T16:46:37+00:00" }, { "name": "newfold-labs/wp-module-performance", From 91b2647064159b8967678e88f237fd5602c6d0c5 Mon Sep 17 00:00:00 2001 From: Evan Mullins Date: Fri, 26 Jan 2024 17:31:30 -0500 Subject: [PATCH 08/11] version bump to 2.6.2 --- package.json | 2 +- wp-plugin-hostgator.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index ae277441..032086f2 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "wp-plugin-hostgator", "description": "WordPress plugin that integrates your WordPress site with the HostGator control panel, including performance, security, and update features.", "license": "GPL-2.0-or-later", - "version": "2.6.1", + "version": "2.6.2", "private": true, "contributors": [ "Abdulrahman Al Ani (https://alani.dev/)", diff --git a/wp-plugin-hostgator.php b/wp-plugin-hostgator.php index e2a647af..bf1115cb 100644 --- a/wp-plugin-hostgator.php +++ b/wp-plugin-hostgator.php @@ -12,7 +12,7 @@ * Plugin URI: https://hostgator.com * Update URI: https://github.com/newfold-labs/wp-plugin-hostgator/ * Description: WordPress plugin that integrates a WordPress site with the HostGator control panel, including performance, security, and update features. - * Version: 2.6.1 + * Version: 2.6.2 * Requires at least: 6.0 * Requires PHP: 7.1 * Tested up to: 6.4.2 @@ -32,7 +32,7 @@ } // Define constants -define( 'HOSTGATOR_PLUGIN_VERSION', '2.6.1' ); +define( 'HOSTGATOR_PLUGIN_VERSION', '2.6.2' ); define( 'HOSTGATOR_PLUGIN_FILE', __FILE__ ); define( 'HOSTGATOR_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); define( 'HOSTGATOR_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); From bfb351392bc83b2859cd05a9cae7b2c3c9e9a5e3 Mon Sep 17 00:00:00 2001 From: Evan Mullins Date: Fri, 26 Jan 2024 17:33:47 -0500 Subject: [PATCH 09/11] update coming soon module to v 1.1.18 --- composer.json | 2 +- composer.lock | 15 ++++++++------- 2 files changed, 9 insertions(+), 8 deletions(-) diff --git a/composer.json b/composer.json index 3549dd63..49d60dd7 100644 --- a/composer.json +++ b/composer.json @@ -66,7 +66,7 @@ }, "require": { "doctrine/inflector": "1.4.4 as 1.3.1", - "newfold-labs/wp-module-coming-soon": "^1.1.15", + "newfold-labs/wp-module-coming-soon": "^1.1.18", "newfold-labs/wp-module-data": "^2.4.18", "newfold-labs/wp-module-deactivation": "^1.0.4", "newfold-labs/wp-module-ecommerce": "v1.3.18", diff --git a/composer.lock b/composer.lock index ebdff4ad..8534fd74 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "4609ecd3c37c4b55a506471eaa9f89e2", + "content-hash": "ec578e405401ae77b926c319ff7d94ab", "packages": [ { "name": "doctrine/inflector", @@ -237,19 +237,20 @@ }, { "name": "newfold-labs/wp-module-coming-soon", - "version": "1.1.17", + "version": "1.1.18", "source": { "type": "git", "url": "https://github.com/newfold-labs/wp-module-coming-soon.git", - "reference": "eac606ade15a8da188b6997ad72003ca7a47ffab" + "reference": "0c0126bf277a8126bf1993a456dc5ba931fab35b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/newfold-labs/wp-module-coming-soon/zipball/eac606ade15a8da188b6997ad72003ca7a47ffab", - "reference": "eac606ade15a8da188b6997ad72003ca7a47ffab", + "url": "https://api.github.com/repos/newfold-labs/wp-module-coming-soon/zipball/0c0126bf277a8126bf1993a456dc5ba931fab35b", + "reference": "0c0126bf277a8126bf1993a456dc5ba931fab35b", "shasum": "" }, "require": { + "newfold-labs/wp-module-data": ">=2.4.18", "wp-forge/wp-upgrade-handler": "^1.0" }, "require-dev": { @@ -283,10 +284,10 @@ ], "description": "Coming Soon module for WordPress sites.", "support": { - "source": "https://github.com/newfold-labs/wp-module-coming-soon/tree/1.1.17", + "source": "https://github.com/newfold-labs/wp-module-coming-soon/tree/1.1.18", "issues": "https://github.com/newfold-labs/wp-module-coming-soon/issues" }, - "time": "2024-01-18T01:07:49+00:00" + "time": "2024-01-26T22:14:54+00:00" }, { "name": "newfold-labs/wp-module-data", From 2f389b77e9f25c16c1d083c6772bd6ad99a7c474 Mon Sep 17 00:00:00 2001 From: Evan Mullins Date: Fri, 26 Jan 2024 17:51:21 -0500 Subject: [PATCH 10/11] coming soon settings component updates --- src/app/pages/settings/comingSoon.js | 25 +++++++++++++++++++++---- src/app/stylesheet.scss | 6 +++++- 2 files changed, 26 insertions(+), 5 deletions(-) diff --git a/src/app/pages/settings/comingSoon.js b/src/app/pages/settings/comingSoon.js index c5bc8512..b26ea2bf 100644 --- a/src/app/pages/settings/comingSoon.js +++ b/src/app/pages/settings/comingSoon.js @@ -37,8 +37,12 @@ const ComingSoon = () => { const getStatus = () => { return ( comingSoon - ? {__('Coming Soon', 'wp-plugin-hostgator')} - : {__('Live', 'wp-plugin-hostgator')} + ? + {__('Not Live', 'wp-plugin-hostgator')} + + : + {__('Live', 'wp-plugin-hostgator')} + ); }; @@ -53,6 +57,19 @@ const ComingSoon = () => { }); }; + const getComingSoonSectionDescription = () => { + return comingSoon + ? __( + 'Turn off your "Coming Soon" page when you are ready to launch your website.', + 'wp-plugin-bluehost' + ) + : __( + 'Turn on your "Coming Soon" page when you need to make major changes to your website.', + 'wp-plugin-bluehost' + ); + }; + + const notifySuccess = () => { notify.push("coming-soon-toggle-notice", { title: getComingSoonNoticeTitle(), @@ -79,12 +96,12 @@ const ComingSoon = () => { return (
Date: Fri, 26 Jan 2024 17:52:29 -0500 Subject: [PATCH 11/11] i18n updates --- ...ugin-hostgator-es_MX-hostgator-script.json | 17 +- languages/wp-plugin-hostgator-es_MX.po | 202 ++++++++++++++++- ...ugin-hostgator-pt_BR-hostgator-script.json | 17 +- languages/wp-plugin-hostgator-pt_BR.po | 202 ++++++++++++++++- languages/wp-plugin-hostgator.pot | 204 +++++++++++++++++- 5 files changed, 594 insertions(+), 48 deletions(-) diff --git a/languages/wp-plugin-hostgator-es_MX-hostgator-script.json b/languages/wp-plugin-hostgator-es_MX-hostgator-script.json index 2b806694..58d5a48e 100644 --- a/languages/wp-plugin-hostgator-es_MX-hostgator-script.json +++ b/languages/wp-plugin-hostgator-es_MX-hostgator-script.json @@ -1,7 +1,7 @@ { "translation-revision-date": "2023-08-24 18:27", "generator": "WP-CLI\/2.9.0", - "source": "build\/2.6.0\/index.js", + "source": "build\/2.6.2\/index.js", "domain": "messages", "locale_data": { "messages": { @@ -283,9 +283,6 @@ "Keeping automatic updates on ensures timely security fixes and the latest features.": [ "Mantener las actualizaciones autom\u00e1ticas activadas garantiza correcciones de seguridad oportunas y las \u00faltimas funciones." ], - "Still building your site? Need to make a big change?": [ - "\u00bfTodav\u00eda est\u00e1s construyendo tu sitio? \u00bfNecesitas hacer un cambio importante?" - ], "Your Hostgator Coming Soon page lets you hide your site from visitors while you make the magic happen.": [ "Tu p\u00e1gina de 'Pr\u00f3ximamente' de Hostgator te permite ocultar tu sitio a los visitantes mientras haces que la magia suceda." ], @@ -408,15 +405,9 @@ "Site Status": [ "" ], - "Coming Soon": [ - "" - ], "Live": [ "" ], - "Coming soon page": [ - "" - ], "Cancel": [ "" ], @@ -551,6 +542,12 @@ ], "Working...": [ "" + ], + "Not Live": [ + "" + ], + "Coming Soon page": [ + "" ] } } diff --git a/languages/wp-plugin-hostgator-es_MX.po b/languages/wp-plugin-hostgator-es_MX.po index 51ba711d..dffce6dc 100644 --- a/languages/wp-plugin-hostgator-es_MX.po +++ b/languages/wp-plugin-hostgator-es_MX.po @@ -38,65 +38,70 @@ msgstr "Plugin WordPress que integra un sitio web a WordPress con el panel de co msgid "HostGator" msgstr "HostGator" -#: bootstrap.php:21 +#: bootstrap.php:22 msgid "Please install the HostGator Plugin dependencies." msgstr "Instale las dependencias del Plugin HostGator." -#: bootstrap.php:68 +#: bootstrap.php:69 msgid "A New WordPress Site" msgstr "Un Nuevo Sitio Web WordPress" -#: bootstrap.php:69 +#: bootstrap.php:70 msgid "Coming Soon!" msgstr "¡Muy Pronto!" #. translators: %1$s is replaced with opening link tag taking you to hostgator.com/wordpress, %2$s is replaced with closing link tag, %3$s is replaced with opening link tag taking you to login page, %4$s is replaced with closing link tag, %5$s is replaced with opening link tag taking you to portal.hostgator.com, %6$s is replaced with closing link tag -#: bootstrap.php:72 +#: bootstrap.php:73 msgid "A %1$sHostGator%2$s powered website. Is this your website? Log in to %3$sWordPress%4$s or %5$sHostgator%6$s." msgstr "Un sitio web creado por %1$sHostGator%2$s. ¿Este sitio web es suyo? Inicie sesión en %3$sWordPress%4$s o %5$sHostGator%6$s." #. translators: %s: Blog name -#: bootstrap.php:82 +#: bootstrap.php:83 msgid "%s — Coming Soon" msgstr "¡Muy Pronto!" -#: bootstrap.php:85 +#: bootstrap.php:86 msgid "Coming Soon Active" msgstr "Muy Pronto Activo" #. translators: %1$s is replaced with the opening link tag and %2$s is replaced with the closing link tag, %3$s is the opening link tag to preview the page, %4$s is the closing link tag. -#: bootstrap.php:88 +#: bootstrap.php:89 msgid "Your site is currently displaying a %1$scoming soon page%2$s. Once you are ready, %3$slaunch your site%4$s." msgstr "Su sitio web está mostrando actualmente una %1$spágina de muy pronto%2$s. Una vez que esté listo, %3$slance su sitio web%4$s." -#: bootstrap.php:89 +#: bootstrap.php:90 msgid "Preview the coming soon landing page" msgstr "Obtener una vista previa de la próxima página de destino" #: inc/Admin.php:62 #: inc/Admin.php:312 #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Home" msgstr "Pagina principal" #: inc/Admin.php:64 #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Marketplace" msgstr "Mercado en Línea" #: inc/Admin.php:65 #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Performance" msgstr "Rendimiento" #: inc/Admin.php:66 #: inc/Admin.php:313 #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Settings" msgstr "Configuraciones" #: inc/Admin.php:68 #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Help" msgstr "Ayuda" @@ -151,7 +156,7 @@ msgid "The \"%s\" plugin has been deactivated." msgstr "El plugin \"%s\" ha sido desactivado." #: inc/RestApi/CachingController.php:63 -#: inc/RestApi/SettingsController.php:199 +#: inc/RestApi/SettingsController.php:204 msgid "Sorry, you are not allowed to access this endpoint." msgstr "Lo sentimos, no tienes permiso para acceder a este punto final de comunicación." @@ -167,346 +172,432 @@ msgid "Auto-updates enabled" msgstr "Actualizaciones automáticas habilitadas" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Hostgator WordPress Plugin" msgstr "Plugin de HostGator para WordPress" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Oh No, An Error!" msgstr "¡Oh no, un error!" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "You found an error, please refresh the page and try again!" msgstr "Ha encontrado un error, ¡actualice la página e inténtalo de nuevo!" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "If the error persists, please contact support." msgstr "Si persiste el error, póngase en contacto con el soporte." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid " Error code: " msgstr " Código de error: " #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Phone" msgstr "Teléfono" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Give us a ring at (866) 96-GATOR" msgstr "Llámenos al (866) 96-GATOR" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Call Us" msgstr "Llámenos" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Chat" msgstr "Chat" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Have a question? We're here 24/7/365" msgstr "¿Tiene alguna pregunta? Estamos aquí 24/7/365" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Live Chat" msgstr "Chat En Vivo" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Tweet" msgstr "Tweet" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Tweet us at @hgsupport for support" msgstr "Envíenos un tweet a @hgsupport para obtener ayuda" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Tweet Us" msgstr "Envíenos un tweet" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Knowledge Base" msgstr "Base de Conocimientos" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Know what the pros know." msgstr "Sepa lo que saben los profesionales." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Find Answers" msgstr "Encontre Respuestas" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Blog" msgstr "Blog" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Get our tips and in-depth articles." msgstr "Obtenga nuestros consejos y artículos detallados." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Learn Stuff" msgstr "Aprenda Cosas" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Video Tutorials" msgstr "Tutoriales en Vídeo" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Step-by-step tutorials and additional guides." msgstr "Tutoriales paso a paso y guías adicionales." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Watch Now" msgstr "Vea Ahora" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Themes" msgstr "Temas" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "There's nothing here!" msgstr "¡No hay nada aquí!" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "We are available 24/7 to help answer questions and solve your problems." msgstr "Estamos disponibles las 24 horas, los 7 días de la semana, para ayudar a responder preguntas y resolver tus problemas." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Settings and Performance" msgstr "Configuración y Rendimiento" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Customize & fine-tune your site." msgstr "Personalice y ajuste su sitio web." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Manage Settings" msgstr "Administrar Configuraciones" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Manage your site settings. You can ajdust automatic updates, comments, revisions and more." msgstr "Administre la configuración de su sitio web. Es posible ajustar actualizaciones automáticas, comentarios, revisiones y más." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Manage site performance and caching settings as well as clear the site cache." msgstr "Administre el rendimiento del sitio web y la configuración de almacenamiento en caché, así como borre el caché del sitio web." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Visit Marketplace" msgstr "Visite al Sitio de Comércio en Línea" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Add site services, themes or plugins from the marketplace." msgstr "Añada servicios de sitio web, temas o plugins desde el sitio de comércio en línea." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Website Content" msgstr "Contenido del Sitio Web" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Create, manage & sort your story." msgstr "Cree, administre y ordene su historia." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "New Post" msgstr "Nueva publicación" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Write a new blog post." msgstr "Escriba una nueva publicación de blog." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Pages" msgstr "Páginas" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "New Page" msgstr "Nueva Página" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Add fresh pages to your website." msgstr "Añada páginas nuevas a su sitio web." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Categories" msgstr "Categorías" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Manage Categories" msgstr "Administre las Categorías" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Organize existing content into categories." msgstr "Organice el contenido existente en categorías." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Web Hosting" msgstr "Hosting" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Access & manage your HostGator account." msgstr "Acceda y administre su cuenta HostGator." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Manage Sites" msgstr "Administre Sitios Web" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Manage your site from the control panel. You can create backups, set security, and improve performance." msgstr "Administre su sitio web desde el panel de control. Es posible crear copias de seguridad, configurar la seguridad y mejorar el rendimiento." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Email" msgstr "Correo Electrónico" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Manage Email" msgstr "Administre el Correo Electrónico" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Create email accounts, compose, send, and receive your email from the control panel." msgstr "Cree cuentas de correo electrónico, redacte, envíe y reciba su correo electrónico desde el panel de control." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Domains" msgstr "Dominios" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Find a Domain" msgstr "Encuentre un Dominio" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Find a new domain and assign it to your site or start a new site with a fresh domain." msgstr "Encuentre un nuevo dominio y asígnelo a su sitio web o inicie un nuevo sitio web con un dominio nuevo." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Get Help" msgstr "Obtenga Ayuda" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "24/7/365 support. We work when you work." msgstr "Soporte 24/7/365. Trabajamos cuando usted trabaja." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Explore our featured collection of tools and services." msgstr "Explora nuestra destacada colección de herramientas y servicios." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Oops, there was an error loading the marketplace, please try again later." msgstr "Ups, hubo un error al cargar. Por favor, inténtalo de nuevo más tarde." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Sorry, no marketplace items. Please, try again later." msgstr "Lo siento, no hay elementos en el mercado. Por favor, inténtalo de nuevo más tarde." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Load More" msgstr "Cargar más" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "This is where you can manage cache settings for your website." msgstr "Aquí es donde puedes gestionar la configuración de caché para tu sitio web." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Disabled" msgstr "Deshabilitado" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "No cache enabled." msgstr "Sin caché habilitado." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Every page load is fresh." msgstr "Cada carga de página es fresca." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Not recommended." msgstr "No recomendado." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Assets Only" msgstr "Solo activos" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cache static assets like images and the appearance of your site for 1 hour." msgstr "Almacene en caché activos estáticos como imágenes y la apariencia de su sitio web durante 1 hora." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Recommended for ecommerce and sites that update frequently or display info in real-time." msgstr "Recomendado para comercio electrónico y sitios web que se actualizan con frecuencia o muestran información en tiempo real." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cache enabled for assets only." msgstr "Caché habilitada solo para activos." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Assets & Web Pages" msgstr "Activos y Páginas Web" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cache static assets for 24 hours and web pages for 2 hours." msgstr "Caché activos estáticos durante 24 horas y páginas web durante 2 horas." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Recommended for blogs, educational sites, and sites that update at least weekly." msgstr "Recomendado para blogs, sitios web educativos y sitios web que se actualizan al menos semanalmente." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cache enabled for assets and pages." msgstr "Caché habilitada para activos y páginas." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Assets & Web Pages - Extended" msgstr "Activos y Páginas Web - Extendidos" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cache enabled for assets and pages (extended)." msgstr "Caché habilitada para recursos y páginas (extendido)." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cache setting saved" msgstr "Configuración de caché guardada" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Clear Cache" msgstr "Limpiar Caché" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cache cleared" msgstr "Caché Borrado" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Clear All Cache Now" msgstr "Limpiar Todo Caché Ahora" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "We automatically clear your cache as you work (creating content, changing settings, installing plugins and more). But you can manually clear it here to be confident it's fresh." msgstr "Limpiamos automáticamente tu caché mientras trabajas (creando contenido, cambiando configuraciones, instalando complementos y más). Pero puedes borrarlo manualmente aquí para estar seguro de que está fresco." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Boost speed and performance by storing a copy of your website content, files, and images online so the pages of your website load faster for your visitors." msgstr "Aumente la velocidad y el rendimiento almacenando una copia del contenido, los archivos y las imágenes de su sitio web en línea para que las páginas de su sitio web se carguen más rápido para sus visitantes." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Oops! Something went wrong. Please try again." msgstr "¡Ups! Algo salió mal. Por favor, inténtalo de nuevo." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Manage All Updates" msgstr "Gestionar Todas las Actualizaciones" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "WordPress Core" msgstr "Núcleo de WordPress" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Plugins" msgstr "Plugins" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Automatic Updates" msgstr "Actualizaciones Automáticas" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Keeping automatic updates on ensures timely security fixes and the latest features." msgstr "Mantener las actualizaciones automáticas activadas garantiza correcciones de seguridad oportunas y las últimas funciones." @@ -515,170 +606,209 @@ msgid "Still building your site? Need to make a big change?" msgstr "¿Todavía estás construyendo tu sitio? ¿Necesitas hacer un cambio importante?" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Your Hostgator Coming Soon page lets you hide your site from visitors while you make the magic happen." msgstr "Tu página de 'Próximamente' de Hostgator te permite ocultar tu sitio a los visitantes mientras haces que la magia suceda." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Your website is currently displaying a \"Coming Soon\" page." msgstr "Tu sitio web actualmente muestra una página de \"Próximamente\"." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Disable comments for older posts" msgstr "Deshabilitar comentarios para publicaciones antiguas" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Comments setting saved " msgstr "Configuración de comentarios guardada " #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Comments on posts are disabled after " msgstr "Los comentarios sobre los mensajes están desactivados después de " #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid " day." msgid_plural " days." msgstr[0] " día." msgstr[1] " días." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Close comments after " msgstr "Cerrar comentarios después de " #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Comments setting saved." msgstr "Configuración de comentarios guardada." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Posts will display " msgstr "Las publicaciones se mostrarán " #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid " comment at a time." msgid_plural " comments at a time." msgstr[0] " comentario a la vez." msgstr[1] " comentarios a la vez." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Display " msgstr "Mostrar " #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid " comments per page." msgstr " comentarios por página." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Comments" msgstr "Comentarios" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Comments allow visitors to provide feedback and respond to your posts or pages." msgstr "Los comentarios permiten a los visitantes proporcionar retroalimentación y responder a tus publicaciones o páginas." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Post revision setting saved " msgstr "Configuración de revisión de post guardado " #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Posts will save " msgstr "Las publicaciones se guardarán " #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid " revision." msgid_plural " revisions." msgstr[0] " revisión." msgstr[1] " revisiones." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Number of revisions posts can save " msgstr "Número de publicaciones de revisiones que pueden guardar " #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Saving drafts and updating published content creates revisions. Make changes with confidence, knowing you can take " msgstr "Guardar borradores y actualizar contenido publicado crea revisiones. Realiza cambios con confianza, sabiendo que puedes tomar " #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid " step back." msgid_plural " steps back." msgstr[0] " paso atrás." msgstr[1] " pasos atrás." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Trash setting saved " msgstr "Configuración de papelera guardada " #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "The trash will automatically empty every " msgstr "La papelera se vacía automáticamente cada " #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid " week." msgid_plural " weeks." msgstr[0] " semana." msgstr[1] " semanas." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Trash emptying frequency " msgstr "Frecuencia de vaciado de basura " #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Content Options" msgstr "Opciones de Contenido" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Controls for content revisions and how often to empty the trash." msgstr "Controles para revisiones de contenido y con qué frecuencia vaciar la papelera." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "This is where you can manage common settings for your website." msgstr "Aquí es donde puedes gestionar las configuraciones comunes para tu sitio web." #: inc/Admin.php:63 #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Store" msgstr "" #: inc/Admin.php:67 #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Staging" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "HostGator Account" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Products" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Sales & Discounts" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Store Details" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "More" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Manage Domain" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cache static assets for 1 week and web pages for 8 hours." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Recommended for sites that update a few times a month or less like porfolios or brochure sites." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cache Level" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Site Status" msgstr "" @@ -687,6 +817,7 @@ msgid "Coming Soon" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Live" msgstr "" @@ -695,181 +826,234 @@ msgid "Coming soon page" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cancel" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Clone" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Confirm Clone Action" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "This will overwrite anything in staging and update it to an exact clone of the current production site. Are you sure you want to proceed?" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cloned to Staging" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cloning production to staging, this should take about a minute." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Clone to staging" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Created" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Staging Created" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Creating a staging site, this should take about a minute." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Create staging site" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Currently editing" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Delete" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Confirm Delete" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "This will permanently delete staging site. Are you sure you want to proceed? You can recreate another staging site at any time, but any specific changes you've made to this staging site will be lost." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Deleted Staging" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Deleting the staging site, this should take about a minute." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Delete Staging Site" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Deploy" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Deploy all changes" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Confirm Deployment" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Deploy database only" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "This will deploy staging to production and overwrite current production site. Are you sure you want to proceed?" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Deploy files only" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Deployed" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Deploying from staging to production, this should take about a minute." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Deploy Site" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Error" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Not currently editing" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Proceed" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Production Site" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Staging Site" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "A staging site is a duplicate of your live site, offering a secure environment to experiment, test updates, and deploy when ready." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Switch" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Switching" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Switch to Production" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "This will navigate you to the production environment" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Loading the production environment now." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Switching to the production environment, this should take about a minute." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Switch to Staging" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "This will navigate you to the staging environment" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Loading the staging environment now." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Switching to the staging environment, this should take about a minute." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "An unknown error has occurred." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Working..." msgstr "" + +#: build/2.6.2/index.js:1 +msgid "Not Live" +msgstr "" + +#: build/2.6.2/index.js:1 +msgid "Coming Soon page" +msgstr "" diff --git a/languages/wp-plugin-hostgator-pt_BR-hostgator-script.json b/languages/wp-plugin-hostgator-pt_BR-hostgator-script.json index 36da82db..9bb21577 100644 --- a/languages/wp-plugin-hostgator-pt_BR-hostgator-script.json +++ b/languages/wp-plugin-hostgator-pt_BR-hostgator-script.json @@ -1,7 +1,7 @@ { "translation-revision-date": "2023-11-30 17:37", "generator": "WP-CLI\/2.9.0", - "source": "build\/2.6.0\/index.js", + "source": "build\/2.6.2\/index.js", "domain": "messages", "locale_data": { "messages": { @@ -319,18 +319,9 @@ "Site Status": [ "Status do Site" ], - "Coming Soon": [ - "Em Breve" - ], "Live": [ "Ativa" ], - "Still building your site? Need to make a big change?": [ - "Ainda construindo seu site? Precisa fazer uma grande mudan\u00e7a?" - ], - "Coming soon page": [ - "P\u00e1gina em breve" - ], "Your Hostgator Coming Soon page lets you hide your site from visitors while you make the magic happen.": [ "Sua p\u00e1gina de 'Em Breve' da Hostgator permite ocultar seu site dos visitantes enquanto voc\u00ea faz a m\u00e1gica acontecer." ], @@ -551,6 +542,12 @@ ], "Working...": [ "Trabalhando..." + ], + "Not Live": [ + "" + ], + "Coming Soon page": [ + "" ] } } diff --git a/languages/wp-plugin-hostgator-pt_BR.po b/languages/wp-plugin-hostgator-pt_BR.po index 20b8d337..a4ce1858 100644 --- a/languages/wp-plugin-hostgator-pt_BR.po +++ b/languages/wp-plugin-hostgator-pt_BR.po @@ -38,75 +38,82 @@ msgstr "Plugin WordPress que integra um site WordPress com o painel de controle msgid "HostGator" msgstr "HostGator" -#: bootstrap.php:21 +#: bootstrap.php:22 msgid "Please install the HostGator Plugin dependencies." msgstr "Por favor instale as dependências do Plugin HostGator." -#: bootstrap.php:68 +#: bootstrap.php:69 msgid "A New WordPress Site" msgstr "Um Novo Site WordPress" -#: bootstrap.php:69 +#: bootstrap.php:70 msgid "Coming Soon!" msgstr "Em Breve!" #. translators: %1$s is replaced with opening link tag taking you to hostgator.com/wordpress, %2$s is replaced with closing link tag, %3$s is replaced with opening link tag taking you to login page, %4$s is replaced with closing link tag, %5$s is replaced with opening link tag taking you to portal.hostgator.com, %6$s is replaced with closing link tag -#: bootstrap.php:72 +#: bootstrap.php:73 msgid "A %1$sHostGator%2$s powered website. Is this your website? Log in to %3$sWordPress%4$s or %5$sHostgator%6$s." msgstr "Um site alimentado por %1$sHostGator%2$s. Este é o seu site? Inicie sessão em %3$sWordPress%4$s ou %5$sHostgator%6$s." #. translators: %s: Blog name -#: bootstrap.php:82 +#: bootstrap.php:83 msgid "%s — Coming Soon" msgstr "%s — Em Breve" -#: bootstrap.php:85 +#: bootstrap.php:86 msgid "Coming Soon Active" msgstr "Ativo Em Breve" #. translators: %1$s is replaced with the opening link tag and %2$s is replaced with the closing link tag, %3$s is the opening link tag to preview the page, %4$s is the closing link tag. -#: bootstrap.php:88 +#: bootstrap.php:89 msgid "Your site is currently displaying a %1$scoming soon page%2$s. Once you are ready, %3$slaunch your site%4$s." msgstr "Seu site está exibindo uma %1$spágina em breve%2$s. Assim que estiver pronto, %3$lance seu site%4$s." -#: bootstrap.php:89 +#: bootstrap.php:90 msgid "Preview the coming soon landing page" msgstr "Visualize a página de destino em breve" #: inc/Admin.php:62 #: inc/Admin.php:312 #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Home" msgstr "Início" #: inc/Admin.php:63 #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Store" msgstr "Loja" #: inc/Admin.php:64 #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Marketplace" msgstr "Mercado" #: inc/Admin.php:65 #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Performance" msgstr "Desempenho" #: inc/Admin.php:66 #: inc/Admin.php:313 #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Settings" msgstr "Configurações" #: inc/Admin.php:67 #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Staging" msgstr "Encenação" #: inc/Admin.php:68 #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Help" msgstr "Ajuda" @@ -161,7 +168,7 @@ msgid "The \"%s\" plugin has been deactivated." msgstr "O\"%s\" plugin foi desativado." #: inc/RestApi/CachingController.php:63 -#: inc/RestApi/SettingsController.php:199 +#: inc/RestApi/SettingsController.php:204 msgid "Sorry, you are not allowed to access this endpoint." msgstr "Desculpe, você não tem permissão para acessar este endpoint." @@ -177,386 +184,482 @@ msgid "Auto-updates enabled" msgstr "Atualizações automáticas habilitadas" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Hostgator WordPress Plugin" msgstr "Plugin do HostGator para WordPress" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Oh No, An Error!" msgstr "Oh, Não, Um Erro!" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "You found an error, please refresh the page and try again!" msgstr "Você encontrou um erro, por favor atualize a página e tente novamente!" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "If the error persists, please contact support." msgstr "Se o erro persistir, por favor contate o suporte." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid " Error code: " msgstr " Código de erro: " #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "HostGator Account" msgstr "Conta de HostGator" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Phone" msgstr "Telefone" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Give us a ring at (866) 96-GATOR" msgstr "Ligue para nós" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Call Us" msgstr "Ligue para nós" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Chat" msgstr "Chat" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Have a question? We're here 24/7/365" msgstr "Tem uma dúvida? Estamos aqui 24/7" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Live Chat" msgstr "Chat ao Vivo" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Tweet" msgstr "Tweet" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Tweet us at @hgsupport for support" msgstr "Envie um tweet para @hgsupport para suporte" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Tweet Us" msgstr "Tweet-nos" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Knowledge Base" msgstr "Base de Conhecimento" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Know what the pros know." msgstr "Saiba o que os profissionais sabem." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Find Answers" msgstr "Encontre Respostas" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Blog" msgstr "Blog" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Get our tips and in-depth articles." msgstr "Receba nossas dicas e artigos detalhados." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Learn Stuff" msgstr "Aprenda Coisas" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Video Tutorials" msgstr "Vídeos Tutoriais" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Step-by-step tutorials and additional guides." msgstr "Tutoriais passo a passo e guias adicionais." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Watch Now" msgstr "Assista Agora" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "There's nothing here!" msgstr "Não há nada aqui!" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Products" msgstr "Produtos" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Sales & Discounts" msgstr "Vendas & Descontos" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Store Details" msgstr "Detalhes da Loja" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "We are available 24/7 to help answer questions and solve your problems." msgstr "Estamos disponíveis 24/7 para ajudar a responder perguntas e resolver seus problemas." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "More" msgstr "Mais" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Settings and Performance" msgstr "Configurações e Desempenho" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Customize & fine-tune your site." msgstr "Personalize & ajuste seu site." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Manage Settings" msgstr "Gerenciar Configurações" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Manage your site settings. You can ajdust automatic updates, comments, revisions and more." msgstr "Gerencie as configurações do seu site. Você pode ajustar atualizações automáticas, comentários, revisões e muito mais." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Manage site performance and caching settings as well as clear the site cache." msgstr "Gerencie o desempenho do site e as configurações de cache, bem como limpe o cache do site." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Visit Marketplace" msgstr "Visite o Mercado" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Add site services, themes or plugins from the marketplace." msgstr "Adicione serviços de site, temas ou plugins da loja." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Website Content" msgstr "Conteúdo do Site" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Create, manage & sort your story." msgstr "Crie, gerencie e classifique seu conteúdo." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "New Post" msgstr "Nova postagem" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Write a new blog post." msgstr "Escreva uma nova postagem no blog." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Pages" msgstr "Páginas" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "New Page" msgstr "Nova Página" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Add fresh pages to your website." msgstr "Adicione novas páginas ao seu site." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Categories" msgstr "Categorias" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Manage Categories" msgstr "Gerenciar Categorias" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Organize existing content into categories." msgstr "Organize o conteúdo existente em categorias." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Web Hosting" msgstr "Hospedagem de Sites" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Access & manage your HostGator account." msgstr "Acesse & gerencie sua conta HostGator." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Manage Sites" msgstr "Gerenciar Sites" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Manage your site from the control panel. You can create backups, set security, and improve performance." msgstr "Gerencie seu site a partir do painel de controle. Você pode criar backups, definir a segurança e melhorar o desempenho." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Email" msgstr "E-mail" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Manage Email" msgstr "Gerenciar E-mail" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Create email accounts, compose, send, and receive your email from the control panel." msgstr "Crie contas de e-mail, componha, envie e receba seu e-mail no painel de controle." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Domains" msgstr "Domínios" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Manage Domain" msgstr "Gerenciar Domínio" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Find a Domain" msgstr "Encontre um Domínio" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Find a new domain and assign it to your site or start a new site with a fresh domain." msgstr "Encontre um novo domínio e atribua-o ao seu site ou inicie um novo site com um novo domínio." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Get Help" msgstr "Obter Ajuda" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "24/7/365 support. We work when you work." msgstr "Suporte 24/7/365. Nós trabalhamos quando você trabalha." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Explore our featured collection of tools and services." msgstr "Explore nossa coleção em destaque de ferramentas e serviços." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Oops, there was an error loading the marketplace, please try again later." msgstr "Oops, ocorreu um erro ao carregar. Por favor, tente novamente mais tarde." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Sorry, no marketplace items. Please, try again later." msgstr "Desculpe, sem itens no mercado. Por favor, tente novamente mais tarde." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Load More" msgstr "Carregar mais" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "No cache enabled." msgstr "Nenhum cache ativado." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Every page load is fresh." msgstr "Cada carregamento de página é novo/fresco." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Disabled" msgstr "Desativado" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Not recommended." msgstr "Não recomendado." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cache static assets like images and the appearance of your site for 1 hour." msgstr "Recurso de caches estáticos, como imagens e a aparência do seu site, por 1 hora." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Assets Only" msgstr "Somente Recursos" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cache enabled for assets only." msgstr "Cache ativado apenas para recursos." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Recommended for ecommerce and sites that update frequently or display info in real-time." msgstr "Recomendado para comércio eletrônico e sites que são atualizados com frequência ou exibem informações em tempo real." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cache static assets for 24 hours and web pages for 2 hours." msgstr "Recurso de caches estáticos por 24 horas e páginas da web por 2 horas." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Assets & Web Pages" msgstr "Recursos & Páginas da Web" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cache enabled for assets and pages." msgstr "Cache ativado para ativos e páginas." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Recommended for blogs, educational sites, and sites that update at least weekly." msgstr "Recomendado para blogs, sites educacionais e sites que são atualizados pelo menos uma vez por semana." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cache static assets for 1 week and web pages for 8 hours." msgstr "Recurso de caches estáticos por 1 semana e páginas da web por 8 horas." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Assets & Web Pages - Extended" msgstr "Recursos & Páginas da Web - Estendido" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cache enabled for assets and pages (extended)." msgstr "Cache ativado para recursos e páginas (estendido)." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Recommended for sites that update a few times a month or less like porfolios or brochure sites." msgstr "Recomendado para sites que atualizam algumas vezes por mês ou menos, como porfólios ou sites de correio." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Boost speed and performance by storing a copy of your website content, files, and images online so the pages of your website load faster for your visitors." msgstr "Aumente a velocidade e o desempenho armazenando uma cópia do conteúdo, arquivos e imagens do seu site on-line para que as páginas do seu site sejam carregadas mais rapidamente para seus visitantes." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cache setting saved" msgstr "Configurações de cache salvas" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cache Level" msgstr "Levels de Cache" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Clear All Cache Now" msgstr "Limpar Todo o Cache Agora" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "We automatically clear your cache as you work (creating content, changing settings, installing plugins and more). But you can manually clear it here to be confident it's fresh." msgstr "Limpamos automaticamente o seu cache enquanto você trabalha (criando conteúdo, alterando configurações, instalando plugins e mais). Mas você pode limpá-lo manualmente aqui para ter certeza de que está atualizado." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cache cleared" msgstr "Cache limpo" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Clear Cache" msgstr "Limpar Cache" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "This is where you can manage cache settings for your website." msgstr "Aqui é onde você pode gerenciar as configurações de cache para o seu site." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Manage All Updates" msgstr "Gerenciar Todas as Atualizações" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "WordPress Core" msgstr "Núcleo de WordPress" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Plugins" msgstr "Plugins" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Themes" msgstr "Temas" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Automatic Updates" msgstr "Atualizações Automáticas" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Keeping automatic updates on ensures timely security fixes and the latest features." msgstr "Mantendo as atualizações automáticas ativadas, você garante correções de segurança oportunas e os recursos mais recentes." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Oops! Something went wrong. Please try again." msgstr "Oops! Algo deu errado. Por favor, tente novamente." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Site Status" msgstr "Status do Site" @@ -565,6 +668,7 @@ msgid "Coming Soon" msgstr "Em Breve" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Live" msgstr "Ativa" @@ -577,299 +681,379 @@ msgid "Coming soon page" msgstr "Página em breve" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Your Hostgator Coming Soon page lets you hide your site from visitors while you make the magic happen." msgstr "Sua página de 'Em Breve' da Hostgator permite ocultar seu site dos visitantes enquanto você faz a mágica acontecer." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Your website is currently displaying a \"Coming Soon\" page." msgstr "Seu site está atualmente exibindo uma página de \"Em Breve\"." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Disable comments for older posts" msgstr "Desabilitar comentários de postagens mais antigas" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Comments setting saved " msgstr "Configuração de comentários salva " #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Comments on posts are disabled after " msgstr "Os comentários em postagens são desativados após " #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid " day." msgid_plural " days." msgstr[0] " dia." msgstr[1] " dias." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Close comments after " msgstr "Fechar comentários após " #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Comments setting saved." msgstr "Configuração de comentários salva." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Posts will display " msgstr "As postagens serão exibidas " #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid " comment at a time." msgid_plural " comments at a time." msgstr[0] " comentário por vez." msgstr[1] " comentários por vez." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Display " msgstr "Exibir " #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid " comments per page." msgstr " comentários por página." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Comments" msgstr "Comentários" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Comments allow visitors to provide feedback and respond to your posts or pages." msgstr "Os comentários permitem que os visitantes forneçam feedback e respondam às suas postagens ou páginas." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Post revision setting saved " msgstr "Configuração de revisão de post salvo " #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Posts will save " msgstr "Posts serão salvos " #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid " revision." msgid_plural " revisions." msgstr[0] " revisão." msgstr[1] " revisões." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Number of revisions posts can save " msgstr "Número de posts de revisões pode salvar " #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Saving drafts and updating published content creates revisions. Make changes with confidence, knowing you can take " msgstr "Salvar rascunhos e atualizar conteúdo publicado cria revisões. Faça alterações com confiança, sabendo que você pode " #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid " step back." msgid_plural " steps back." msgstr[0] " passo de volta." msgstr[1] " passos de volta." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Trash setting saved " msgstr "Configuração de Lixeira salva " #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "The trash will automatically empty every " msgstr "A lixeira será automaticamente vazia a cada " #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid " week." msgid_plural " weeks." msgstr[0] " semana." msgstr[1] " semanas." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Trash emptying frequency " msgstr "Frequência da lixeira vazia " #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Content Options" msgstr "Opções de Conteúdo" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Controls for content revisions and how often to empty the trash." msgstr "Controles para revisões de conteúdo e com que frequência esvaziar a lixeira." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "This is where you can manage common settings for your website." msgstr "Aqui é onde você pode gerenciar as configurações comuns para o seu site." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cancel" msgstr "Cancelar" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Clone" msgstr "Clonar" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Confirm Clone Action" msgstr "Confirmar Ação de Clonar" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "This will overwrite anything in staging and update it to an exact clone of the current production site. Are you sure you want to proceed?" msgstr "Isto irá sobrescrever qualquer coisa em Staging e atualizá-lo para um clone exato do site de produção atual. Tem certeza que deseja continuar?" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cloned to Staging" msgstr "Clonado para Encenação" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cloning production to staging, this should take about a minute." msgstr "A clonagem da produção para a fase de estagnação, o que deve demorar cerca de um momento." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Clone to staging" msgstr "Clonado para Encenação" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Created" msgstr "Criado" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Staging Created" msgstr "Encenação criada" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Creating a staging site, this should take about a minute." msgstr "Criando um encenação site, isso deve levar cerca de um minuto." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Create staging site" msgstr "Criar encenação site" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Currently editing" msgstr "Atualmente editando" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Delete" msgstr "Deletar" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Confirm Delete" msgstr "Confirme Deletar" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "This will permanently delete staging site. Are you sure you want to proceed? You can recreate another staging site at any time, but any specific changes you've made to this staging site will be lost." msgstr "Isto irá excluir o site de encenação permanentemente. Tem certeza que deseja continuar? Você pode recriar outro site de encenação a qualquer momento, mas quaisquer alterações específicas feitas neste site serão perdidas." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Deleted Staging" msgstr "Deletado Encenação" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Deleting the staging site, this should take about a minute." msgstr "Criando um encenação site, isso deve levar cerca de um minuto." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Delete Staging Site" msgstr "Deletar Encenação Site" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Deploy" msgstr "Implantar" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Deploy all changes" msgstr "Implementar todas as alterações" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Confirm Deployment" msgstr "Confirmar Implantação" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Deploy database only" msgstr "Apenas implantar banco de dados" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "This will deploy staging to production and overwrite current production site. Are you sure you want to proceed?" msgstr "Isto irá implantar o staging para produção e sobrescrever o site de produção atual. Tem certeza que deseja continuar?" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Deploy files only" msgstr "Implantar apenas arquivos" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Deployed" msgstr "Implantado" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Deploying from staging to production, this should take about a minute." msgstr "Implantando da fase para a produção, isto deve levar cerca de um minuto." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Deploy Site" msgstr "Site Implantar" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Error" msgstr "Erro" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Not currently editing" msgstr "Não está editando atualmente" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Proceed" msgstr "Continuar" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Production Site" msgstr "Site de Produção" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Staging Site" msgstr "Site Encenação" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "A staging site is a duplicate of your live site, offering a secure environment to experiment, test updates, and deploy when ready." msgstr "Um site encenação é uma duplicata do seu site ao vivo, oferecendo um ambiente seguro para experimentar, testar atualizações e implantar quando estiver pronto." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Switch" msgstr "Trocar" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Switching" msgstr "Trocando" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Switch to Production" msgstr "Trocar para Produção" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "This will navigate you to the production environment" msgstr "Isto irá navegar para o site de produção" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Loading the production environment now." msgstr "Carregando site de produção agora." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Switching to the production environment, this should take about a minute." msgstr "Troca para o site de produção, isso deve levar cerca de um minuto." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Switch to Staging" msgstr "Trocar para Encenação" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "This will navigate you to the staging environment" msgstr "Isto irá navegar para o site de encenação" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Loading the staging environment now." msgstr "Carregando o site de encenação agora." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Switching to the staging environment, this should take about a minute." msgstr "Troca para o site de encenação, isso deve levar cerca de um minuto." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "An unknown error has occurred." msgstr "Um erro desconhecido ocorreu." #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Working..." msgstr "Trabalhando..." + +#: build/2.6.2/index.js:1 +msgid "Not Live" +msgstr "" + +#: build/2.6.2/index.js:1 +msgid "Coming Soon page" +msgstr "" diff --git a/languages/wp-plugin-hostgator.pot b/languages/wp-plugin-hostgator.pot index b47cd8ee..eec6af47 100644 --- a/languages/wp-plugin-hostgator.pot +++ b/languages/wp-plugin-hostgator.pot @@ -2,7 +2,7 @@ # This file is distributed under the GPL 2.0 or later. msgid "" msgstr "" -"Project-Id-Version: The HostGator Plugin 2.6.0\n" +"Project-Id-Version: The HostGator Plugin 2.6.2\n" "Report-Msgid-Bugs-To: https://github.com/newfold-labs/wp-plugin-hostgator/issues\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -33,75 +33,82 @@ msgstr "" msgid "HostGator" msgstr "" -#: bootstrap.php:21 +#: bootstrap.php:22 msgid "Please install the HostGator Plugin dependencies." msgstr "" -#: bootstrap.php:68 +#: bootstrap.php:69 msgid "A New WordPress Site" msgstr "" -#: bootstrap.php:69 +#: bootstrap.php:70 msgid "Coming Soon!" msgstr "" #. translators: %1$s is replaced with opening link tag taking you to hostgator.com/wordpress, %2$s is replaced with closing link tag, %3$s is replaced with opening link tag taking you to login page, %4$s is replaced with closing link tag, %5$s is replaced with opening link tag taking you to portal.hostgator.com, %6$s is replaced with closing link tag -#: bootstrap.php:72 +#: bootstrap.php:73 msgid "A %1$sHostGator%2$s powered website. Is this your website? Log in to %3$sWordPress%4$s or %5$sHostgator%6$s." msgstr "" #. translators: %s: Blog name -#: bootstrap.php:82 +#: bootstrap.php:83 msgid "%s — Coming Soon" msgstr "" -#: bootstrap.php:85 +#: bootstrap.php:86 msgid "Coming Soon Active" msgstr "" #. translators: %1$s is replaced with the opening link tag and %2$s is replaced with the closing link tag, %3$s is the opening link tag to preview the page, %4$s is the closing link tag. -#: bootstrap.php:88 +#: bootstrap.php:89 msgid "Your site is currently displaying a %1$scoming soon page%2$s. Once you are ready, %3$slaunch your site%4$s." msgstr "" -#: bootstrap.php:89 +#: bootstrap.php:90 msgid "Preview the coming soon landing page" msgstr "" #: inc/Admin.php:62 #: inc/Admin.php:312 #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Home" msgstr "" #: inc/Admin.php:63 #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Store" msgstr "" #: inc/Admin.php:64 #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Marketplace" msgstr "" #: inc/Admin.php:65 #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Performance" msgstr "" #: inc/Admin.php:66 #: inc/Admin.php:313 #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Settings" msgstr "" #: inc/Admin.php:67 #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Staging" msgstr "" #: inc/Admin.php:68 #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Help" msgstr "" @@ -156,7 +163,7 @@ msgid "The \"%s\" plugin has been deactivated." msgstr "" #: inc/RestApi/CachingController.php:63 -#: inc/RestApi/SettingsController.php:199 +#: inc/RestApi/SettingsController.php:204 msgid "Sorry, you are not allowed to access this endpoint." msgstr "" @@ -172,386 +179,482 @@ msgid "Auto-updates enabled" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Hostgator WordPress Plugin" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Oh No, An Error!" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "You found an error, please refresh the page and try again!" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "If the error persists, please contact support." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid " Error code: " msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "HostGator Account" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Phone" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Give us a ring at (866) 96-GATOR" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Call Us" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Chat" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Have a question? We're here 24/7/365" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Live Chat" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Tweet" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Tweet us at @hgsupport for support" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Tweet Us" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Knowledge Base" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Know what the pros know." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Find Answers" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Blog" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Get our tips and in-depth articles." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Learn Stuff" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Video Tutorials" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Step-by-step tutorials and additional guides." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Watch Now" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "There's nothing here!" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Products" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Sales & Discounts" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Store Details" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "We are available 24/7 to help answer questions and solve your problems." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "More" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Settings and Performance" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Customize & fine-tune your site." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Manage Settings" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Manage your site settings. You can ajdust automatic updates, comments, revisions and more." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Manage site performance and caching settings as well as clear the site cache." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Visit Marketplace" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Add site services, themes or plugins from the marketplace." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Website Content" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Create, manage & sort your story." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "New Post" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Write a new blog post." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Pages" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "New Page" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Add fresh pages to your website." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Categories" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Manage Categories" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Organize existing content into categories." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Web Hosting" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Access & manage your HostGator account." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Manage Sites" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Manage your site from the control panel. You can create backups, set security, and improve performance." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Email" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Manage Email" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Create email accounts, compose, send, and receive your email from the control panel." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Domains" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Manage Domain" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Find a Domain" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Find a new domain and assign it to your site or start a new site with a fresh domain." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Get Help" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "24/7/365 support. We work when you work." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Explore our featured collection of tools and services." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Oops, there was an error loading the marketplace, please try again later." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Sorry, no marketplace items. Please, try again later." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Load More" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "No cache enabled." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Every page load is fresh." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Disabled" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Not recommended." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cache static assets like images and the appearance of your site for 1 hour." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Assets Only" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cache enabled for assets only." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Recommended for ecommerce and sites that update frequently or display info in real-time." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cache static assets for 24 hours and web pages for 2 hours." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Assets & Web Pages" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cache enabled for assets and pages." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Recommended for blogs, educational sites, and sites that update at least weekly." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cache static assets for 1 week and web pages for 8 hours." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Assets & Web Pages - Extended" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cache enabled for assets and pages (extended)." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Recommended for sites that update a few times a month or less like porfolios or brochure sites." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Boost speed and performance by storing a copy of your website content, files, and images online so the pages of your website load faster for your visitors." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cache setting saved" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cache Level" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Clear All Cache Now" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "We automatically clear your cache as you work (creating content, changing settings, installing plugins and more). But you can manually clear it here to be confident it's fresh." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cache cleared" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Clear Cache" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "This is where you can manage cache settings for your website." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Manage All Updates" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "WordPress Core" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Plugins" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Themes" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Automatic Updates" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Keeping automatic updates on ensures timely security fixes and the latest features." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Oops! Something went wrong. Please try again." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Site Status" msgstr "" @@ -560,6 +663,7 @@ msgid "Coming Soon" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Live" msgstr "" @@ -572,299 +676,379 @@ msgid "Coming soon page" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Your Hostgator Coming Soon page lets you hide your site from visitors while you make the magic happen." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Your website is currently displaying a \"Coming Soon\" page." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Disable comments for older posts" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Comments setting saved " msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Comments on posts are disabled after " msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid " day." msgid_plural " days." msgstr[0] "" msgstr[1] "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Close comments after " msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Comments setting saved." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Posts will display " msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid " comment at a time." msgid_plural " comments at a time." msgstr[0] "" msgstr[1] "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Display " msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid " comments per page." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Comments" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Comments allow visitors to provide feedback and respond to your posts or pages." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Post revision setting saved " msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Posts will save " msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid " revision." msgid_plural " revisions." msgstr[0] "" msgstr[1] "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Number of revisions posts can save " msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Saving drafts and updating published content creates revisions. Make changes with confidence, knowing you can take " msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid " step back." msgid_plural " steps back." msgstr[0] "" msgstr[1] "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Trash setting saved " msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "The trash will automatically empty every " msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid " week." msgid_plural " weeks." msgstr[0] "" msgstr[1] "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Trash emptying frequency " msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Content Options" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Controls for content revisions and how often to empty the trash." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "This is where you can manage common settings for your website." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cancel" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Clone" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Confirm Clone Action" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "This will overwrite anything in staging and update it to an exact clone of the current production site. Are you sure you want to proceed?" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cloned to Staging" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Cloning production to staging, this should take about a minute." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Clone to staging" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Created" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Staging Created" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Creating a staging site, this should take about a minute." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Create staging site" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Currently editing" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Delete" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Confirm Delete" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "This will permanently delete staging site. Are you sure you want to proceed? You can recreate another staging site at any time, but any specific changes you've made to this staging site will be lost." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Deleted Staging" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Deleting the staging site, this should take about a minute." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Delete Staging Site" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Deploy" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Deploy all changes" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Confirm Deployment" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Deploy database only" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "This will deploy staging to production and overwrite current production site. Are you sure you want to proceed?" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Deploy files only" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Deployed" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Deploying from staging to production, this should take about a minute." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Deploy Site" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Error" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Not currently editing" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Proceed" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Production Site" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Staging Site" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "A staging site is a duplicate of your live site, offering a secure environment to experiment, test updates, and deploy when ready." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Switch" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Switching" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Switch to Production" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "This will navigate you to the production environment" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Loading the production environment now." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Switching to the production environment, this should take about a minute." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Switch to Staging" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "This will navigate you to the staging environment" msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Loading the staging environment now." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Switching to the staging environment, this should take about a minute." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "An unknown error has occurred." msgstr "" #: build/2.6.0/index.js:1 +#: build/2.6.2/index.js:1 msgid "Working..." msgstr "" + +#: build/2.6.2/index.js:1 +msgid "Not Live" +msgstr "" + +#: build/2.6.2/index.js:1 +msgid "Coming Soon page" +msgstr ""