HEX
Server: LiteSpeed
System: Linux eko108.isimtescil.net 4.18.0-477.21.1.lve.1.el8.x86_64 #1 SMP Tue Sep 5 23:08:35 UTC 2023 x86_64
User: uyarreklamcomtr (11202)
PHP: 7.4.33
Disabled: opcache_get_status
Upload Files
File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/aioseo-broken-link-checker.php.tar
uyarreklam.com.tr/httpdocs/wp-content/plugins/broken-link-checker-seo/aioseo-broken-link-checker.php000064400000005231151534516500032625 0ustar00var/www/vhosts<?php
/**
 * Plugin Name: Broken Link Checker by AIOSEO
 * Plugin URI:  https://aioseo.com/broken-link-checker
 * Description: Monitor and test all internal and external links on your site for broken links. By AIOSEO, the original SEO plugin for WordPress.
 * Author:      All in One SEO Team
 * Author URI:  https://aioseo.com
 * Version:     1.2.5
 * Text Domain: aioseo-broken-link-checker
 * Domain Path: languages
 *
 * Broken Link Checker by AIOSEO is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 2 of the License, or
 * any later version.
 *
 * Broken Link Checker by AIOSEO is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Broken Link Checker by AIOSEO. If not, see <https://www.gnu.org/licenses/>.
 *
 * @since     1.0.0
 * @author    All in One SEO
 * @license   GPL-3.0+
 * @package   AIOSEO\BrokenLinkChecker
 * @copyright Copyright © 2025, All in One SEO
 */

// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ! defined( 'AIOSEO_BROKEN_LINK_CHECKER_PHP_VERSION_DIR' ) ) {
	define( 'AIOSEO_BROKEN_LINK_CHECKER_PHP_VERSION_DIR', basename( dirname( __FILE__ ) ) );
}

require_once dirname( __FILE__ ) . '/app/init/init.php';

// Check if this plugin should be disabled.
if ( aioseo_blc_is_plugin_disabled() ) {
	return;
}

require_once dirname( __FILE__ ) . '/app/init/notices.php';

// We require PHP 7.0 or higher for the whole plugin to work.
if ( version_compare( PHP_VERSION, '7.0', '<' ) ) {
	add_action( 'admin_notices', 'aioseo_broken_link_checker_php_notice' );

	// Do not process the plugin code further.
	return;
}

// We require WP 5.3+ for the whole plugin to work.
global $wp_version; // phpcs:ignore Squiz.NamingConventions.ValidVariableName
if ( version_compare( $wp_version, '5.3', '<' ) ) { // phpcs:ignore Squiz.NamingConventions.ValidVariableName
	add_action( 'admin_notices', 'aioseo_broken_link_checker_wordpress_notice' );

	// Do not process the plugin code further.
	return;
}

// Plugin constants.
if ( ! defined( 'AIOSEO_BROKEN_LINK_CHECKER_DIR' ) ) {
	define( 'AIOSEO_BROKEN_LINK_CHECKER_DIR', __DIR__ );
}
if ( ! defined( 'AIOSEO_BROKEN_LINK_CHECKER_FILE' ) ) {
	define( 'AIOSEO_BROKEN_LINK_CHECKER_FILE', __FILE__ );
}

// Define the class and the function.
require_once dirname( __FILE__ ) . '/app/BrokenLinkChecker.php';

aioseoBrokenLinkChecker();httpdocs/wp-content/plugins/broken-link-checker-seo/languages/aioseo-broken-link-checker.php000064400000125001151542714070034572 0ustar00var/www/vhosts/uyarreklam.com.tr<?php
// phpcs:ignore Generic.Files.LineLength.MaxExceeded
/* THIS IS A GENERATED FILE. DO NOT EDIT DIRECTLY. */
$generated_i18n_strings = [
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:107
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:112
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:117
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:122
	__( '(re)check', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:251
	__( '(Re)check', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/InfoColumn.vue:108
	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/InfoColumn.vue:143
	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/InfoColumn.vue:56
	// Translators: 1 - An amount of days.
	_n( '%1$d day', '%1$d days', 0, 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/InfoColumn.vue:113
	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/InfoColumn.vue:148
	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/InfoColumn.vue:61
	// Translators: 1 - An amount of hours.
	_n( '%1$d hour', '%1$d hours', 0, 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/InfoColumn.vue:66
	// Translators: 1 - An amount of minutes.
	_n( '%1$d minute', '%1$d minutes', 0, 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/InfoColumn.vue:71
	// Translators: 1 - An amount of seconds.
	_n( '%1$d second', '%1$d seconds', 0, 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/seo-settings/views/SeoSettings.vue:68
	// Translators: 1 - A plugin name (e.g. "MonsterInsights", "Broken Link Checker", etc.).
	__( '%1$s has an intuitive setup wizard to guide you through the setup process.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/standalone/setup-wizard/views/Welcome.vue:34
	// Translators: 1 - The plugin name ("Broken Link Checker").
	__( '%1$s indexes all links on your site in order to detect broken and redirected links. Before we can start indexing, you first need to connect your account. It only takes a few minutes!', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:67
	// Translators: 1 - The plugin name ("All in One SEO"), 2 - Company name ("Awesome Motive").
	__( '%1$s is brought to you by %2$s, the same team that’s behind the largest WordPress resource site, WPBeginner, the most popular lead-generation software, OptinMonster, the best WordPress analytics plugin, MonsterInsights and many more.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/seo-settings/views/SeoSettings.vue:52
	// Translators: 1 - A plugin name (e.g. "MonsterInsights", "Broken Link Checker", etc.).
	__( '%1$s is the perfect WordPress SEO plugin for YOU. Here’s why over 3,000,000+ smart business owners, marketers, and web developers love %2$s plugin for WordPress, and you will too!', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/RedirectsCtaModal.vue:16
	__( '404 Monitoring', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:375
	__( 'A simple & powerful event calendar plugin for WordPress that comes with all the event management features including payments, scheduling, timezones, ticketing, recurring events, and more.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/router/paths.js:17
	__( 'About Us', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:76
	__( 'Activate', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/seo-settings/views/SeoSettings.vue:47
	// Reference: /src/vue/pages/seo-settings/views/SeoSettings.vue:58
	// Translators: 1 - A plugin name (e.g. "MonsterInsights", "Broken Link Checker", etc.).
	__( 'Activate %1$s', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:81
	__( 'Activated', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/Settings.vue:60
	__( 'Add any domains you want to exclude from being checked, one per line. Do not include the scheme or "www" part of the domain (e.g. enter "aioseo.com" instead of "https://aioseo.com" or "www.aioseo.com").', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:98
	__( 'Add Redirect', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/seo-settings/views/SeoSettings.vue:77
	__( 'Advanced SEO Modules', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/Settings.vue:42
	__( 'Advanced Settings', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/license/Index.vue:140
	// Reference: /src/vue/components/license/Index.vue:155
	// Reference: /src/vue/components/license/Index.vue:165
	__( 'An unknown error occurred, please try again later.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/EditRow.vue:34
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinksTable.vue:46
	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/PostsColumn.vue:69
	__( 'Anchor', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/seo-settings/views/SeoSettings.vue:79
	__( 'And More...', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/common/notifications/Review2.vue:45
	// Translators: 1 - The plugin short name ("AIOSEO").
	__( 'Are you enjoying %1$s?', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:111
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:135
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:159
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:183
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinksTable.vue:69
	// Translators: 1 -An action verb ("delete", "dismiss", "recheck", etc.).
	__( 'Are you sure you want to %1$s these URLs?', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/PostsColumn.vue:73
	// Translators: 1 -An action verb ("delete", "dismiss", "recheck", etc.).
	__( 'Are you sure you want to %1$s this post?', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:106
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:130
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:154
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:178
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinksTable.vue:64
	// Translators: 1 -An action verb ("delete", "dismiss", "recheck", etc.).
	__( 'Are you sure you want to %1$s this URL?', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/RedirectsCtaModal.vue:14
	__( 'Automatic Redirects', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/LinkStatusDetail.vue:31
	__( 'Back to All Links', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/Cta.vue:24
	// Reference: /src/vue/standalone/setup-wizard/views/Connect.vue:39
	// Translators: 1 - The plugin name ("Broken Link Checker").
	__( 'Before you can start using %1$s, you need to connect the plugin to your account.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:218
	__( 'Boost your sales and conversions by up to 15% with real-time social proof notifications. TrustPulse helps you show live user activity and purchases to help convince other users to purchase.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/router/paths.js:17
	__( 'Broken Links', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/seo-settings/views/SeoSettings.vue:37
	// Translators: 1 - "AIOSEO".
	__( 'Built by the team behind %1$s.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/EditRow.vue:33
	__( 'Cancel', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:94
	__( 'Check', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/Settings.vue:79
	// Translators: 1 - The plugin name ("Broken Link Checker").
	__( 'Check this if you would like to remove ALL %1$s data upon plugin deletion. All data will be unrecoverable.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/Settings.vue:48
	// Translators: 1 - Opening HTML span tag, 2 - Closing HTML span tag.
	__( 'Choose whether broken links should be marked on the frontend when you are logged in. Broken links will be underlined in red like %1$sthis%2$s.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/standalone/setup-wizard/views/Success.vue:43
	__( 'Congratulations, your site is now connected!', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/standalone/setup-wizard/router/paths.js:26
	__( 'Connect', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/license/Index.vue:50
	__( 'Connect to an Existing Account', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:312
	__( 'Connect with your visitors after they leave your website with the leading web push notification software. Over 10,000+ businesses worldwide use PushEngage to send 15 billion notifications each month.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/Cta.vue:19
	// Reference: /src/vue/standalone/setup-wizard/views/Connect.vue:34
	// Translators: 1 - The plugin name ("Broken Link Checker").
	__( 'Connect Your Site with %1$s', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/license/Index.vue:104
	__( 'Connect Your Site with Broken Link Checker', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/license/Index.vue:117
	__( 'Could not connect site to Broken Link Checker. Please try again later.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/license/Index.vue:49
	__( 'Create a Free Account', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:82
	__( 'Deactivated', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/PostsColumn.vue:74
	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/PostsColumn.vue:79
	__( 'delete', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/PostsColumn.vue:67
	__( 'Delete', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/core/Header.vue:60
	__( 'Depending on the number of links that need to be checked, this process can take some time. You can safely leave this page and check back later.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/core/Header.vue:56
	__( 'Depending on the number of posts being scanned, this process can take some time. You can safely leave this page and check back later.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/plugins/constants.js:11
	__( 'Disabled', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/license/Index.vue:57
	__( 'Disconnect', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:131
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:136
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:141
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:146
	__( 'dismiss', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/common/notifications/Review2.vue:31
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:254
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:96
	__( 'Dismiss', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/Settings.vue:54
	__( 'Don\'t update the modified date for a page/post when a link is updated.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:244
	__( 'Easily display Facebook content on your WordPress site without writing any code. Comes with multiple templates, ability to embed albums, group content, reviews, live videos, comments, and reactions.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:261
	__( 'Easily display Instagram content on your WordPress site without writing any code. Comes with multiple templates, ability to show content from multiple accounts, hashtags, and more. Trusted by 1 million websites.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:278
	__( 'Easily display Twitter content in WordPress without writing any code. Comes with multiple layouts, ability to combine multiple Twitter feeds, Twitter card support, tweet moderation, and more.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:295
	__( 'Easily display YouTube videos on your WordPress site without writing any code. Comes with multiple layouts, ability to embed live streams, video filtering, ability to combine multiple channel videos, and more.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/PostsColumn.vue:90
	// Translators: 1 - The singular label for a post type (e.g 'Post', 'Page', 'Product', etc.).
	__( 'Edit %1$s', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/LinksTable.vue:58
	__( 'Edit Anchor', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/PostsColumn.vue:94
	__( 'Edit Post', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:92
	__( 'Edit URL', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/plugins/constants.js:12
	__( 'Enabled', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/InfoColumn.vue:40
	__( 'Error', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/Settings.vue:59
	__( 'Exclude Domains', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/Settings.vue:58
	__( 'Exclude Posts', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/RedirectsCtaModal.vue:13
	__( 'Fast Server Redirects', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/InfoColumn.vue:36
	__( 'Final URL', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/standalone/setup-wizard/views/Success.vue:48
	__( 'Follow on Twitter', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/standalone/setup-wizard/views/Success.vue:49
	__( 'Follow on YouTube', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/RedirectsCtaModal.vue:17
	__( 'Full Site Redirects', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:184
	__( 'Future proof your WordPress customizations with the most popular code snippet management plugin for WordPress. Trusted by over 1,500,000+ websites for easily adding code to WordPress right from the admin area.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/Settings.vue:41
	__( 'General Settings', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/common/notifications/Review2.vue:36
	__( 'Give feedback', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/composables/SetupWizard.js:7
	__( 'Go Back', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/Cta.vue:16
	__( 'Go to Settings', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/standalone/setup-wizard/views/Connect.vue:42
	// Reference: /src/vue/standalone/setup-wizard/views/Success.vue:44
	// Reference: /src/vue/standalone/setup-wizard/views/Welcome.vue:38
	__( 'Go to the Broken Links Report', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/standalone/setup-wizard/views/Success.vue:45
	__( 'Here\'s what to do next:', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/common/notifications/Review2.vue:52
	// Translators: 1 - The plugin name ("Broken Link Checker").
	__( 'Hey, we noticed you have been using %1$s for some time - that’s awesome! Could you please do us a BIG favor and give it a 5-star rating on WordPress to help us spread the word and boost our motivation?', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/plugins/constants.js:9
	__( 'Hide', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/Settings.vue:45
	__( 'Highlight Broken Links', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/InfoColumn.vue:37
	__( 'HTTP Status Code', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:167
	__( 'Improve your WordPress email deliverability and make sure that your website emails reach user’s inbox with the #1 SMTP plugin for WordPress. Over 3 million websites use it to fix WordPress email issues.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/plugins/constants.js:13
	__( 'Include', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/Settings.vue:66
	__( 'Include All Post Statuses', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/Settings.vue:57
	__( 'Include All Post Types', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:75
	__( 'Install Free Plugin', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:107
	__( 'Instantly get more subscribers, leads, and sales with the #1 conversion optimization toolkit. Create high converting popups, announcement bars, spin a wheel, and more with smart targeting and personalization.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/seo-settings/views/SeoSettings.vue:75
	__( 'Internal Link Assistant', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/seo-settings/views/SeoSettings.vue:42
	// Translators: 1 - "AIOSEO".
	__( 'Join 3,000,000+ Professionals who use %1$s to Improve Their Website Search Rankings.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/standalone/setup-wizard/views/Success.vue:47
	__( 'Join on Facebook', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/standalone/setup-wizard/views/Success.vue:46
	__( 'Join our Community', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/seo-settings/views/SeoSettings.vue:71
	__( 'Launch Setup Wizard', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:401
	__( 'Leading WordPress backup & site migration plugin. Over 1,500,000+ smart website owners use Duplicator to make reliable and secure WordPress backups to protect their websites. It also makes website migration really easy.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/plugins/constants.js:10
	__( 'Learn More', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/standalone/setup-wizard/views/Welcome.vue:37
	__( 'Let\'s Get Started', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/settings/LicenseKey.vue:13
	__( 'License Key', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/Settings.vue:53
	__( 'Limit Modified Date', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/InfoColumn.vue:35
	__( 'Link Last Checked', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/router/paths.js:38
	__( 'Link Status Detail', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/InfoColumn.vue:34
	__( 'Link Text', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/Settings.vue:43
	__( 'Link Tweaks', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/core/Header.vue:59
	__( 'Links are being checked for the first time', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/LinkStatusDetail.vue:32
	__( 'Loading...', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:77
	__( 'Manage', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/InfoColumn.vue:42
	__( 'N/A', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/plugins/constants.js:4
	__( 'No', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/LinksTable.vue:57
	__( 'No results found.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/common/notifications/Review2.vue:37
	__( 'No thanks', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:125
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:149
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:173
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:197
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinksTable.vue:83
	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/PostsColumn.vue:82
	__( 'No, I changed my mind', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/common/notifications/Review2.vue:35
	__( 'Nope, maybe later', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:83
	__( 'Not Installed', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/common/notifications/Review2.vue:33
	__( 'Not Really...', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/Settings.vue:44
	__( 'Note: These settings only apply to the content of posts; not comments or custom fields.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/plugins/constants.js:6
	__( 'Off', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/common/notifications/Review2.vue:34
	__( 'Ok, you deserve it', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/plugins/constants.js:7
	__( 'On', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/seo-settings/views/SeoSettings.vue:73
	__( 'On-Page SEO Analysis', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/license/Index.vue:51
	__( 'OR', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:64
	__( 'Our goal is to take the pain out of optimizing your website for search engines.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:63
	__( 'Over the years, we found that most other WordPress SEO plugins were bloated, buggy, slow, and very hard to use. So we designed our plugin as an easy and powerful tool.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/Settings.vue:56
	__( 'Post Statuses', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/LinksTable.vue:41
	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/InfoColumn.vue:32
	__( 'Post Title', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/Settings.vue:55
	__( 'Post Types', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:229
	__( 'Posts', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/core/Header.vue:55
	__( 'Posts are being scanned for links', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:95
	__( 'Recheck', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/InfoColumn.vue:38
	__( 'Redirect Count', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/RedirectsCtaModal.vue:15
	__( 'Redirect Monitoring', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/seo-settings/views/SeoSettings.vue:76
	__( 'Redirection Manager', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/RedirectsCtaModal.vue:19
	__( 'Redirection Manager by AIOSEO is a premium addon that lets you easily create redirects for broken links to avoid confusing search engines & users and prevent losing backlinks.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/plugins/constants.js:14
	__( 'Remove', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/InfoColumn.vue:41
	__( 'Response Headers', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/InfoColumn.vue:39
	__( 'Response Time', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/seo-settings/views/SeoSettings.vue:74
	__( 'Rich Snippets Schema', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/composables/SetupWizard.js:8
	__( 'Save and Continue', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/core/main/Index.vue:57
	// Reference: /src/vue/components/core/main/Tabs.vue:48
	__( 'Save Changes', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:100
	__( 'Scanning for links...', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/InfoColumn.vue:43
	__( 'seconds', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/Settings.vue:69
	// Translators: 1 - The plugin name ("Broken Link Checker").
	__( 'Select which Post Statuses you want to enable %1$s for.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/Settings.vue:63
	// Translators: 1 - The plugin name ("Broken Link Checker").
	__( 'Select which Post Types you want to enable %1$s for.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/seo-settings/views/SeoSettings.vue:78
	__( 'SEO Optimizer', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/seo-settings/router/paths.js:17
	__( 'SEO Settings', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/router/paths.js:27
	__( 'Settings', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/seo-settings/views/SeoSettings.vue:63
	// Translators: 1 - A plugin name (e.g. "MonsterInsights", "Broken Link Checker", etc.).
	__( 'Setup %1$s', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/plugins/constants.js:8
	__( 'Show', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/RedirectsCtaModal.vue:18
	__( 'Site Aliases', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/composables/SetupWizard.js:6
	__( 'Skip this Step', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:234
	__( 'Status', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/InfoColumn.vue:31
	__( 'Status Details', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:79
	__( 'Status:', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/Settings.vue:52
	__( 'Stop search engines from following broken links', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/standalone/setup-wizard/router/paths.js:35
	__( 'Success', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:331
	__( 'The #1 affiliate management plugin for WordPress. Easily create an affiliate program for your eCommerce store or membership site within minutes and start growing your sales with the power of referral marketing.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:341
	__( 'The #1 Stripe payments plugin for WordPress. Start accepting one-time and recurring payments on your WordPress site without setting up a shopping cart. No code required.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:116
	__( 'The best drag & drop WordPress form builder. Easily create beautiful contact forms, surveys, payment forms, and more with our 1000+ form templates. Trusted by over 6 million websites as the best forms plugin.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:358
	__( 'The best WordPress eCommerce plugin for selling digital downloads. Start selling eBooks, software, music, digital art, and more within minutes. Accept payments, manage subscriptions, advanced access control, and more.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:150
	__( 'The ExactMetrics Google Analytics for WordPress plugin helps you properly setup all the powerful Google Analytics tracking features without writing any code or hiring a developer.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:201
	__( 'The fastest drag & drop landing page builder for WordPress. Create custom landing pages without writing code, connect them with your CRM, collect subscribers, and grow your audience. Trusted by 1 million sites.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:133
	__( 'The leading WordPress analytics plugin that shows you how people find and use your website, so you can make data driven decisions to grow your business. Properly set up Google Analytics without writing code.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/license/Index.vue:147
	__( 'The license key provided is disabled. Please use a different key.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/license/Index.vue:149
	__( 'The license key provided is expired. Please renew your license or use a different key.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/license/Index.vue:145
	__( 'The license key provided is invalid. Please use a different key.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:376
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinksTable.vue:219
	// Translators: 1 - Opening HTML link tag, 2 - Closing HTML link tag.
	__( 'The link could not be removed successfully. Please try again or remove the link by %1$sediting the post%2$s manually.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:482
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinksTable.vue:264
	__( 'The link could not be updated successfully. Please try again or update the link by %1$sediting the post%2$s manually.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:372
	__( 'The links could not be removed successfully. Please try again or remove the links by editing the posts manually.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:321
	__( 'The most advanced WordPress search plugin. Customize your WordPress search algorithm, reorder search results, track search metrics, and everything you need to leverage search to grow your business.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:90
	__( 'The original WordPress SEO plugin. Improve your WordPress SEO rankings and traffic with our comprehensive SEO tools and smart SEO optimizations!', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/license/Index.vue:153
	__( 'There was an error connecting to the licensing API. Please try again later.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:124
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:148
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:172
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:196
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinksTable.vue:82
	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/PostsColumn.vue:81
	__( 'This action cannot be undone.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:99
	__( 'This is your links quota, which is reset every month. Every URL on your site that is actively monitored counts against your quota. In addition, when you forcefully recheck a URL, one point will be deducted from your quota.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/license/Index.vue:151
	__( 'This license has reached the maximum number of activations. Please deactivate it from another site or purchase a new license.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/InfoColumn.vue:126
	// Translators: 1 - An amount of time (e.g. "2 days" or "1 hour, 2 minutes and 3 seconds"), 2 - An amount of days (e.g. "2 days").
	__( 'This link has been broken for %1$s. It will be checked again in %2$s.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/InfoColumn.vue:133
	// Translators: 1 - An amount of time (e.g. "2 days" or "1 hour, 2 minutes and 3 seconds").
	__( 'This link has been broken for %1$s. It will be checked again today.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/StatusColumn.vue:32
	__( 'This link is broken!', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/StatusColumn.vue:30
	__( 'This link is working perfectly!', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/StatusColumn.vue:31
	__( 'This link is working with a redirect.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/StatusColumn.vue:33
	__( 'This link still needs to be checked.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/InfoColumn.vue:162
	// Translators: 1 - An amount of days.
	__( 'This link will be checked again in %1$s.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/InfoColumn.vue:166
	__( 'This link will be checked again today.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/PostsColumn.vue:68
	__( 'Title', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/composables/LicenseUpgrade.js:16
	__( 'To unlock a higher quota, consider', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/license/Index.vue:76
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:213
	// Translators: 1 - "upgrading to Pro".
	__( 'To unlock a higher quota, consider %1$s.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/StatusColumn.vue:35
	__( 'to unlock support for external links.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:392
	__( 'Top-rated WordPress donation and fundraising plugin. Over 10,000+ non-profit organizations and website owners use Charitable to create fundraising campaigns and raise more money online.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:227
	__( 'Turn your website visitors into brand ambassadors! Easily grow your email list, website traffic, and social media followers with the most powerful giveaways & contests plugin for WordPress.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:155
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:160
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:165
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:170
	__( 'undismiss', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:256
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:97
	__( 'Undismiss', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/Settings.vue:74
	// Translators: 1 - The plugin name ("Broken Link Checker").
	__( 'Uninstall %1$s', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:179
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:184
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:189
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:194
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinksTable.vue:65
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinksTable.vue:70
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinksTable.vue:75
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinksTable.vue:80
	__( 'unlink', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:250
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:93
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinksTable.vue:52
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinksTable.vue:59
	__( 'Unlink', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/RedirectsCtaModal.vue:12
	__( 'Unlock AIOSEO Redirects on Your Site', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/RedirectsCtaModal.vue:20
	__( 'Unlock Redirects', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/EditRow.vue:32
	__( 'Update', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/StatusColumn.vue:34
	__( 'Upgrade to Pro', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/composables/LicenseUpgrade.js:37
	__( 'Upgrade Your Broken Link Checker License', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/composables/LicenseUpgrade.js:18
	__( 'upgrading to a higher plan', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/composables/LicenseUpgrade.js:17
	__( 'upgrading to Pro', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/EditRow.vue:35
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:221
	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/InfoColumn.vue:33
	__( 'URL', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/PostsColumn.vue:101
	// Translators: 1 - The singular label for a post type (e.g 'Post', 'Page', 'Product', etc.).
	__( 'View %1$s', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/PostsColumn.vue:116
	// Translators: 1 - A number of posts.
	__( 'View %d Posts', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/LinksTable.vue:101
	// Translators: 1 - Total number of posts.
	__( 'View All %1$s Posts', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/PostsColumn.vue:105
	__( 'View Post', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/standalone/setup-wizard/router/paths.js:17
	__( 'Welcome', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:59
	// Translators: 1 - The plugin name ("All in One SEO"), 2 - The plugin name ("All in One SEO").
	__( 'Welcome to %1$s', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/standalone/setup-wizard/views/Welcome.vue:29
	// Translators: 1 - The plugin name ("Broken Link Checker").
	__( 'Welcome to the %1$s Setup Wizard!', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/plugins/constants.js:5
	__( 'Yes', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/common/notifications/Review2.vue:32
	__( 'Yes, I love it!', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:121
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:145
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:169
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:193
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinksTable.vue:79
	// Translators: 1 -An action verb ("delete", "dismiss", "recheck", etc.).
	__( 'Yes, I want to %1$s these URLs', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/columns/PostsColumn.vue:78
	// Translators: 1 -An action verb ("delete", "dismiss", "recheck", etc.).
	__( 'Yes, I want to %1$s this post', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:116
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:140
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:164
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinkStatusTable.vue:188
	// Reference: /src/vue/pages/links/views/partials/broken-links/LinksTable.vue:74
	// Translators: 1 -An action verb ("delete", "dismiss", "recheck", etc.).
	__( 'Yes, I want to %1$s this URL', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/license/Index.vue:84
	// Translators: 1 - The number of links, 2 - The expiration date.
	__( 'You have a total quota of %1$s links, which renews on %2$s.', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/components/license/Index.vue:58
	__( 'Your account is connected!', 'aioseo-broken-link-checker' ),

	// Reference: /src/vue/pages/about/views/AboutUs.vue:71
	__( 'Yup, we know a thing or two about building awesome products that customers love.', 'aioseo-broken-link-checker' ),
];