You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

50 lines
2.1 KiB

8 years ago
<?php
/**
* Class AIOSP_Common_Strings
*
* This is just for Pro strings to be translated.
*
* @package All-in-One-SEO-Pack
*/
class AIOSP_Common_Strings {
/**
* AIOSP_Common_Strings constructor.
*
* We'll just put all the strings in the contruct for lack of a better.
*/
private function __construct() {
// Video sitemap strings.
__( 'Video Sitemap', 'all-in-one-seo-pack' );
__( 'Show Only Posts With Videos', 'all-in-one-seo-pack' );
__( 'Scan Posts For Videos', 'all-in-one-seo-pack' );
__( 'Restrict Access to Video Sitemap', 'all-in-one-seo-pack' );
__( 'Press the Scan button to scan your posts for videos! Do this if video content from a post or posts is not showing up in your sitemap.', 'all-in-one-seo-pack' );
__( 'If checked, only posts that have videos in them will be displayed on the sitemap.', 'all-in-one-seo-pack' );
__( 'Enable this option to only allow access to your sitemap by site administrators and major search engines.', 'all-in-one-seo-pack' );
__( 'You do not have access to this page; try logging in as an administrator.', 'all-in-one-seo-pack' );
__( 'Scan', 'all-in-one-seo-pack' );
// These are functions_class strings.
__( 'Finished scanning posts', 'all-in-one-seo-pack' );
// Update checker strings (incomplete... need to separate out html).
__( 'Purchase one now', 'all-in-one-seo-pack' );
__( 'License Key is not set yet or invalid. ', 'all-in-one-seo-pack' );
__( ' Need a license key?', 'all-in-one-seo-pack' );
__( 'Notice: ', 'all-in-one-seo-pack' );
__( 'Manage Licenses', 'all-in-one-seo-pack' );
// These are Pro option strings.
__( 'Show SEO News', 'all-in-one-seo-pack' );
__( 'Display Menu In Admin Bar:', 'all-in-one-seo-pack' );
__( 'Display Menu At The Top:', 'all-in-one-seo-pack' );
__( 'This displays an SEO News widget on the dashboard.', 'all-in-one-seo-pack' );
__( 'Check this to add All in One SEO Pack to the Admin Bar for easy access to your SEO settings.', 'all-in-one-seo-pack' );
__( 'Check this to move the All in One SEO Pack menu item to the top of your WordPress Dashboard menu.', 'all-in-one-seo-pack' );
}
}