Version Description
Download this release
Release Info
Developer | supercleanse |
Plugin | Shortlinks by Pretty Links – Best WordPress Link Tracking Plugin |
Version | 2.1.2 |
Comparing to | |
See all releases |
Code changes from version 2.1.1 to 2.1.2
- app/controllers/PrliAppController.php +26 -26
- app/controllers/PrliUpdateController.php +2 -2
- app/models/PrliUtils.php +2 -2
- app/views/admin/popups/upgrade.php +1 -1
- app/views/admin/update/activation_warning.php +5 -5
- app/views/admin/update/addon_popup.php +1 -1
- app/views/admin/update/edge_updates.php +1 -1
- app/views/admin/update/license.php +7 -7
- app/views/admin/update/ui.php +1 -1
- app/views/links/form.php +3 -3
- app/views/links/list.php +1 -1
- app/views/links/new.php +1 -1
- app/views/options/form.php +1 -1
- app/views/shared/nav.php +2 -2
- app/views/widgets/widget.php +1 -1
- i18n/pretty-link.pot +57 -58
- i18n/prettylinkpro-es_ES.mo +0 -0
- i18n/prettylinkpro-es_ES.po +49 -49
- images/pl-logo-horiz-RGB.svg +68 -58
- pretty-link.php +3 -3
- readme.txt +16 -68
app/controllers/PrliAppController.php
CHANGED
@@ -33,24 +33,24 @@ class PrliAppController extends PrliBaseController {
|
|
33 |
$role = $plp_options->min_role;
|
34 |
|
35 |
$prli_menu_hook = add_menu_page(
|
36 |
-
__('Pretty
|
37 |
-
__('Pretty
|
38 |
$role, 'pretty-link',
|
39 |
'PrliLinksController::route',
|
40 |
PRLI_IMAGES_URL.'/pretty-link-small.png'
|
41 |
);
|
42 |
|
43 |
-
$
|
44 |
'pretty-link',
|
45 |
-
__('Pretty
|
46 |
-
__('Pretty
|
47 |
$role, 'pretty-link',
|
48 |
'PrliLinksController::route'
|
49 |
);
|
50 |
|
51 |
$prli_add_links_menu_hook = add_submenu_page(
|
52 |
'pretty-link',
|
53 |
-
__('Pretty
|
54 |
__('Add New Link', 'pretty-link'),
|
55 |
$role, 'add-new-pretty-link',
|
56 |
'PrliLinksController::new_link'
|
@@ -59,7 +59,7 @@ class PrliAppController extends PrliBaseController {
|
|
59 |
$groups_ctrl = new PrliGroupsController();
|
60 |
add_submenu_page(
|
61 |
'pretty-link',
|
62 |
-
__('Pretty
|
63 |
__('Groups', 'pretty-link'),
|
64 |
$role, 'pretty-link-groups',
|
65 |
array( $groups_ctrl, 'route' )
|
@@ -69,7 +69,7 @@ class PrliAppController extends PrliBaseController {
|
|
69 |
$clicks_ctrl = new PrliClicksController();
|
70 |
add_submenu_page(
|
71 |
'pretty-link',
|
72 |
-
__('Pretty
|
73 |
__('Clicks', 'pretty-link'),
|
74 |
$role, 'pretty-link-clicks',
|
75 |
array( $clicks_ctrl, 'route' )
|
@@ -79,7 +79,7 @@ class PrliAppController extends PrliBaseController {
|
|
79 |
$routes_ctrl = new PrliToolsController();
|
80 |
add_submenu_page(
|
81 |
'pretty-link',
|
82 |
-
__('Pretty
|
83 |
__('Tools', 'pretty-link'),
|
84 |
$role, 'pretty-link-tools',
|
85 |
array($routes_ctrl,'route')
|
@@ -88,7 +88,7 @@ class PrliAppController extends PrliBaseController {
|
|
88 |
$options_ctrl = new PrliOptionsController();
|
89 |
add_submenu_page(
|
90 |
'pretty-link',
|
91 |
-
__('Pretty
|
92 |
__('Options', 'pretty-link'),
|
93 |
$role, 'pretty-link-options',
|
94 |
array( $options_ctrl, 'route' )
|
@@ -113,18 +113,18 @@ class PrliAppController extends PrliBaseController {
|
|
113 |
$pllinks = array();
|
114 |
|
115 |
if($plp_update->is_installed_and_activated()) {
|
116 |
-
$pllinks[] = '<a href="https://
|
117 |
$pllinks[] = '<a href="'. esc_url( get_admin_url(null, 'admin.php?page=pretty-link-updates') ) .'">'.__('Activate', 'pretty-link').'</a>';
|
118 |
}
|
119 |
else if($plp_update->is_installed()) {
|
120 |
$pllinks[] = '<a href="'. esc_url( get_admin_url(null, 'admin.php?page=pretty-link-updates') ) .'" class="prli-menu-green">'.__('Activate Pro License', 'pretty-link').'</a>';
|
121 |
-
$pllinks[] = '<a href="https://
|
122 |
-
$pllinks[] = '<a href="https://
|
123 |
}
|
124 |
else {
|
125 |
-
$pllinks[] = '<a href="https://
|
126 |
$pllinks[] = '<a href="'. esc_url( get_admin_url(null, 'admin.php?page=pretty-link-updates') ) .'" class="prli-menu-green">'.__('Activate Pro License', 'pretty-link').'</a>';
|
127 |
-
$pllinks[] = '<a href="https://
|
128 |
}
|
129 |
|
130 |
return array_merge($pllinks, $links);
|
@@ -193,7 +193,7 @@ class PrliAppController extends PrliBaseController {
|
|
193 |
);
|
194 |
}
|
195 |
|
196 |
-
if( in_array( $hook, array( 'toplevel_page_pretty-link', 'pretty-
|
197 |
wp_enqueue_style( 'prli-admin-links', PRLI_CSS_URL . '/prli-admin-links.css', array(), PRLI_VERSION );
|
198 |
wp_enqueue_script( 'jquery-clippy', PRLI_JS_URL . '/jquery.clippy.js', array('jquery'), PRLI_VERSION );
|
199 |
|
@@ -203,27 +203,27 @@ class PrliAppController extends PrliBaseController {
|
|
203 |
wp_localize_script( 'prli-admin-link-list', 'PrliLink', array('clippy_url' => PRLI_JS_URL.'/clippy.swf') );
|
204 |
}
|
205 |
|
206 |
-
if( $hook === 'pretty-
|
207 |
wp_enqueue_style('pl-groups', PRLI_CSS_URL.'/admin_groups.css', null, PRLI_VERSION);
|
208 |
wp_enqueue_script('pl-groups', PRLI_JS_URL.'/admin_groups.js', array('jquery'), PRLI_VERSION);
|
209 |
}
|
210 |
|
211 |
-
if( $hook === 'pretty-
|
212 |
wp_enqueue_style('pl-options', PRLI_CSS_URL.'/admin_options.css', null, PRLI_VERSION);
|
213 |
wp_enqueue_script('pl-options', PRLI_JS_URL.'/admin_options.js', array('jquery'), PRLI_VERSION);
|
214 |
}
|
215 |
|
216 |
if(in_array($hook, array(
|
217 |
'toplevel_page_pretty-link',
|
218 |
-
'pretty-
|
219 |
-
'pretty-
|
220 |
-
'pretty-
|
221 |
))) {
|
222 |
wp_enqueue_style('pl-settings-table', PRLI_CSS_URL.'/settings_table.css', null, PRLI_VERSION);
|
223 |
wp_enqueue_script('pl-settings-table', PRLI_JS_URL.'/settings_table.js', array('jquery'), PRLI_VERSION);
|
224 |
}
|
225 |
|
226 |
-
if( $hook === 'pretty-
|
227 |
wp_enqueue_script('google-visualization-api', 'https://www.google.com/jsapi', null, PRLI_VERSION);
|
228 |
wp_enqueue_style('pl-reports', PRLI_CSS_URL.'/admin_reports.css', null, PRLI_VERSION);
|
229 |
wp_enqueue_script('pl-reports', PRLI_JS_URL.'/admin_reports.js', array('jquery','google-visualization-api'), PRLI_VERSION);
|
@@ -277,14 +277,14 @@ class PrliAppController extends PrliBaseController {
|
|
277 |
$reinstall_url = wp_nonce_url('update.php?action=upgrade-plugin&plugin=pretty-link/pretty-link.php', 'upgrade-plugin_pretty-link/pretty-link.php');
|
278 |
?>
|
279 |
|
280 |
-
<div class="updated notice notice-success"><p><strong><?php printf(__('You\'re almost done!<br/>%1$sFinish your Re-Install of Pretty
|
281 |
<?php
|
282 |
}
|
283 |
|
284 |
if(isset($_GET['action']) and $_GET['action'] == 'pro-uninstall') {
|
285 |
$prli_utils->uninstall_pro();
|
286 |
?>
|
287 |
-
<div class="updated notice notice-success is-dismissible"><p><strong><?php _e('Pretty
|
288 |
<?php
|
289 |
}
|
290 |
|
@@ -384,7 +384,7 @@ class PrliAppController extends PrliBaseController {
|
|
384 |
<tr class="plugin-update-tr active" id="pretty-link-upgrade" data-slug="pretty-link" data-plugin="pretty-link/pretty-link.php">
|
385 |
<td colspan="3" class="plugin-update colspanchange">
|
386 |
<div class="update-message notice inline notice-error notice-alt">
|
387 |
-
<p><?php printf(__('Your Pretty
|
388 |
</div>
|
389 |
</td>
|
390 |
</tr>
|
@@ -405,7 +405,7 @@ class PrliAppController extends PrliBaseController {
|
|
405 |
$inst_install_url = wp_nonce_url('update.php?action=upgrade-plugin&plugin=' . PRLI_PLUGIN_SLUG, 'upgrade-plugin_' . PRLI_PLUGIN_SLUG);
|
406 |
|
407 |
?>
|
408 |
-
<div class="error" style="padding-top: 5px; padding-bottom: 5px;"><?php printf(__('Your Pretty
|
409 |
<?php
|
410 |
}
|
411 |
}
|
33 |
$role = $plp_options->min_role;
|
34 |
|
35 |
$prli_menu_hook = add_menu_page(
|
36 |
+
__('Pretty Links | Manage Pretty Links', 'pretty-link'),
|
37 |
+
__('Pretty Links', 'pretty-link'),
|
38 |
$role, 'pretty-link',
|
39 |
'PrliLinksController::route',
|
40 |
PRLI_IMAGES_URL.'/pretty-link-small.png'
|
41 |
);
|
42 |
|
43 |
+
$prli_menu_hook = add_submenu_page(
|
44 |
'pretty-link',
|
45 |
+
__('Pretty Links | Manage Pretty Links', 'pretty-link'),
|
46 |
+
__('Pretty Links', 'pretty-link'),
|
47 |
$role, 'pretty-link',
|
48 |
'PrliLinksController::route'
|
49 |
);
|
50 |
|
51 |
$prli_add_links_menu_hook = add_submenu_page(
|
52 |
'pretty-link',
|
53 |
+
__('Pretty Links | Add New Link', 'pretty-link'),
|
54 |
__('Add New Link', 'pretty-link'),
|
55 |
$role, 'add-new-pretty-link',
|
56 |
'PrliLinksController::new_link'
|
59 |
$groups_ctrl = new PrliGroupsController();
|
60 |
add_submenu_page(
|
61 |
'pretty-link',
|
62 |
+
__('Pretty Links | Groups', 'pretty-link'),
|
63 |
__('Groups', 'pretty-link'),
|
64 |
$role, 'pretty-link-groups',
|
65 |
array( $groups_ctrl, 'route' )
|
69 |
$clicks_ctrl = new PrliClicksController();
|
70 |
add_submenu_page(
|
71 |
'pretty-link',
|
72 |
+
__('Pretty Links | Clicks', 'pretty-link'),
|
73 |
__('Clicks', 'pretty-link'),
|
74 |
$role, 'pretty-link-clicks',
|
75 |
array( $clicks_ctrl, 'route' )
|
79 |
$routes_ctrl = new PrliToolsController();
|
80 |
add_submenu_page(
|
81 |
'pretty-link',
|
82 |
+
__('Pretty Links | Tools', 'pretty-link'),
|
83 |
__('Tools', 'pretty-link'),
|
84 |
$role, 'pretty-link-tools',
|
85 |
array($routes_ctrl,'route')
|
88 |
$options_ctrl = new PrliOptionsController();
|
89 |
add_submenu_page(
|
90 |
'pretty-link',
|
91 |
+
__('Pretty Links | Options', 'pretty-link'),
|
92 |
__('Options', 'pretty-link'),
|
93 |
$role, 'pretty-link-options',
|
94 |
array( $options_ctrl, 'route' )
|
113 |
$pllinks = array();
|
114 |
|
115 |
if($plp_update->is_installed_and_activated()) {
|
116 |
+
$pllinks[] = '<a href="https://prettylinks.com/pl/plugin-actions/activated/docs" target="_blank">'.__('Docs', 'pretty-link').'</a>';
|
117 |
$pllinks[] = '<a href="'. esc_url( get_admin_url(null, 'admin.php?page=pretty-link-updates') ) .'">'.__('Activate', 'pretty-link').'</a>';
|
118 |
}
|
119 |
else if($plp_update->is_installed()) {
|
120 |
$pllinks[] = '<a href="'. esc_url( get_admin_url(null, 'admin.php?page=pretty-link-updates') ) .'" class="prli-menu-green">'.__('Activate Pro License', 'pretty-link').'</a>';
|
121 |
+
$pllinks[] = '<a href="https://prettylinks.com/pl/plugin-actions/installed/buy" target="_blank" class="prli-menu-red">'.__('Buy', 'pretty-link').'</a>';
|
122 |
+
$pllinks[] = '<a href="https://prettylinks.com/pl/plugin-actions/installed/docs" target="_blank">'.__('Docs', 'pretty-link').'</a>';
|
123 |
}
|
124 |
else {
|
125 |
+
$pllinks[] = '<a href="https://prettylinks.com/pl/plugin-actions/lite/upgrade" class="prli-menu-red" target="_blank">'.__('Upgrade to Pro', 'pretty-link').'</a>';
|
126 |
$pllinks[] = '<a href="'. esc_url( get_admin_url(null, 'admin.php?page=pretty-link-updates') ) .'" class="prli-menu-green">'.__('Activate Pro License', 'pretty-link').'</a>';
|
127 |
+
$pllinks[] = '<a href="https://prettylinks.com/pl/plugin-actions/lite/docs" target="_blank">'.__('Docs', 'pretty-link').'</a>';
|
128 |
}
|
129 |
|
130 |
return array_merge($pllinks, $links);
|
193 |
);
|
194 |
}
|
195 |
|
196 |
+
if( in_array( $hook, array( 'toplevel_page_pretty-link', 'pretty-links_page_add-new-pretty-link' ) ) ) {
|
197 |
wp_enqueue_style( 'prli-admin-links', PRLI_CSS_URL . '/prli-admin-links.css', array(), PRLI_VERSION );
|
198 |
wp_enqueue_script( 'jquery-clippy', PRLI_JS_URL . '/jquery.clippy.js', array('jquery'), PRLI_VERSION );
|
199 |
|
203 |
wp_localize_script( 'prli-admin-link-list', 'PrliLink', array('clippy_url' => PRLI_JS_URL.'/clippy.swf') );
|
204 |
}
|
205 |
|
206 |
+
if( $hook === 'pretty-links_page_pretty-link-groups' ) {
|
207 |
wp_enqueue_style('pl-groups', PRLI_CSS_URL.'/admin_groups.css', null, PRLI_VERSION);
|
208 |
wp_enqueue_script('pl-groups', PRLI_JS_URL.'/admin_groups.js', array('jquery'), PRLI_VERSION);
|
209 |
}
|
210 |
|
211 |
+
if( $hook === 'pretty-links_page_pretty-link-options' ) {
|
212 |
wp_enqueue_style('pl-options', PRLI_CSS_URL.'/admin_options.css', null, PRLI_VERSION);
|
213 |
wp_enqueue_script('pl-options', PRLI_JS_URL.'/admin_options.js', array('jquery'), PRLI_VERSION);
|
214 |
}
|
215 |
|
216 |
if(in_array($hook, array(
|
217 |
'toplevel_page_pretty-link',
|
218 |
+
'pretty-links_page_add-new-pretty-link',
|
219 |
+
'pretty-links_page_pretty-link-tools',
|
220 |
+
'pretty-links_page_pretty-link-options'
|
221 |
))) {
|
222 |
wp_enqueue_style('pl-settings-table', PRLI_CSS_URL.'/settings_table.css', null, PRLI_VERSION);
|
223 |
wp_enqueue_script('pl-settings-table', PRLI_JS_URL.'/settings_table.js', array('jquery'), PRLI_VERSION);
|
224 |
}
|
225 |
|
226 |
+
if( $hook === 'pretty-links_page_pretty-link-clicks' ) {
|
227 |
wp_enqueue_script('google-visualization-api', 'https://www.google.com/jsapi', null, PRLI_VERSION);
|
228 |
wp_enqueue_style('pl-reports', PRLI_CSS_URL.'/admin_reports.css', null, PRLI_VERSION);
|
229 |
wp_enqueue_script('pl-reports', PRLI_JS_URL.'/admin_reports.js', array('jquery','google-visualization-api'), PRLI_VERSION);
|
277 |
$reinstall_url = wp_nonce_url('update.php?action=upgrade-plugin&plugin=pretty-link/pretty-link.php', 'upgrade-plugin_pretty-link/pretty-link.php');
|
278 |
?>
|
279 |
|
280 |
+
<div class="updated notice notice-success"><p><strong><?php printf(__('You\'re almost done!<br/>%1$sFinish your Re-Install of Pretty Links Pro%2$s', 'pretty-link'), '<a href="'.$reinstall_url.'">', '</a>'); ?></strong></p></div>
|
281 |
<?php
|
282 |
}
|
283 |
|
284 |
if(isset($_GET['action']) and $_GET['action'] == 'pro-uninstall') {
|
285 |
$prli_utils->uninstall_pro();
|
286 |
?>
|
287 |
+
<div class="updated notice notice-success is-dismissible"><p><strong><?php _e('Pretty Links Pro Successfully Uninstalled.' , 'pretty-link'); ?></strong></p></div>
|
288 |
<?php
|
289 |
}
|
290 |
|
384 |
<tr class="plugin-update-tr active" id="pretty-link-upgrade" data-slug="pretty-link" data-plugin="pretty-link/pretty-link.php">
|
385 |
<td colspan="3" class="plugin-update colspanchange">
|
386 |
<div class="update-message notice inline notice-error notice-alt">
|
387 |
+
<p><?php printf(__('Your Pretty Links Pro installation isn\'t quite complete yet. %1$sAutomatically Upgrade to Enable Pretty Links Pro%2$s', 'pretty-link'), '<a href="'.$inst_install_url.'">', '</a>'); ?></p>
|
388 |
</div>
|
389 |
</td>
|
390 |
</tr>
|
405 |
$inst_install_url = wp_nonce_url('update.php?action=upgrade-plugin&plugin=' . PRLI_PLUGIN_SLUG, 'upgrade-plugin_' . PRLI_PLUGIN_SLUG);
|
406 |
|
407 |
?>
|
408 |
+
<div class="error" style="padding-top: 5px; padding-bottom: 5px;"><?php printf(__('Your Pretty Links Pro installation isn\'t quite complete yet.<br/>%1$sAutomatically Upgrade to Enable Pretty Links Pro%2$s', 'pretty-link'), '<a href="'.$inst_install_url.'">','</a>'); ?></div>
|
409 |
<?php
|
410 |
}
|
411 |
}
|
app/controllers/PrliUpdateController.php
CHANGED
@@ -281,7 +281,7 @@ class PrliUpdateController {
|
|
281 |
'id' => $curr_version,
|
282 |
'slug' => 'pretty-link',
|
283 |
'new_version' => $curr_version,
|
284 |
-
'url' => 'https://
|
285 |
'package' => $download_url
|
286 |
);
|
287 |
}
|
@@ -389,7 +389,7 @@ class PrliUpdateController {
|
|
389 |
}
|
390 |
|
391 |
public function enqueue_scripts($hook) {
|
392 |
-
if($hook == 'pretty-
|
393 |
wp_register_style('prli-settings-table', PRLI_CSS_URL.'/settings_table.css', array(), PRLI_VERSION);
|
394 |
wp_enqueue_style('prli-activate-css', PRLI_CSS_URL.'/admin-activate.css', array('prli-settings-table'), PRLI_VERSION);
|
395 |
|
281 |
'id' => $curr_version,
|
282 |
'slug' => 'pretty-link',
|
283 |
'new_version' => $curr_version,
|
284 |
+
'url' => 'https://prettylinks.com/pl/update/url',
|
285 |
'package' => $download_url
|
286 |
);
|
287 |
}
|
389 |
}
|
390 |
|
391 |
public function enqueue_scripts($hook) {
|
392 |
+
if($hook == 'pretty-links_page_pretty-link-updates') {
|
393 |
wp_register_style('prli-settings-table', PRLI_CSS_URL.'/settings_table.css', array(), PRLI_VERSION);
|
394 |
wp_enqueue_style('prli-activate-css', PRLI_CSS_URL.'/admin-activate.css', array('prli-settings-table'), PRLI_VERSION);
|
395 |
|
app/models/PrliUtils.php
CHANGED
@@ -560,7 +560,7 @@ class PrliUtils {
|
|
560 |
$upgrade_path = ABSPATH . 'wp-admin/includes/upgrade.php';
|
561 |
require_once($upgrade_path);
|
562 |
|
563 |
-
// Pretty
|
564 |
$keywords_table = "{$wpdb->prefix}prli_keywords";
|
565 |
$post_keywords_table = "{$wpdb->prefix}prli_post_keywords";
|
566 |
$post_urls_table = "{$wpdb->prefix}prli_post_urls";
|
@@ -813,7 +813,7 @@ class PrliUtils {
|
|
813 |
|
814 |
if($db_version and $db_version < 8)
|
815 |
{
|
816 |
-
// Install / Upgrade Pretty
|
817 |
$plp_username = get_option( 'prlipro_username' );
|
818 |
$plp_password = get_option( 'prlipro_password' );
|
819 |
|
560 |
$upgrade_path = ABSPATH . 'wp-admin/includes/upgrade.php';
|
561 |
require_once($upgrade_path);
|
562 |
|
563 |
+
// Pretty Links Pro Tables
|
564 |
$keywords_table = "{$wpdb->prefix}prli_keywords";
|
565 |
$post_keywords_table = "{$wpdb->prefix}prli_post_keywords";
|
566 |
$post_urls_table = "{$wpdb->prefix}prli_post_urls";
|
813 |
|
814 |
if($db_version and $db_version < 8)
|
815 |
{
|
816 |
+
// Install / Upgrade Pretty Links Pro
|
817 |
$plp_username = get_option( 'prlipro_username' );
|
818 |
$plp_password = get_option( 'prlipro_password' );
|
819 |
|
app/views/admin/popups/upgrade.php
CHANGED
@@ -21,7 +21,7 @@
|
|
21 |
|
22 |
<center>
|
23 |
<button data-popup="upgrade" class="prli-delay-popup button"><?php _e('Remind Me Later', 'pretty-link'); ?></button>
|
24 |
-
<button data-popup="upgrade" data-href="https://
|
25 |
<div> </div>
|
26 |
<a href="" data-popup="upgrade" class="prli-stop-popup"><?php _e('Never Remind Me Again', 'pretty-link'); ?></a>
|
27 |
</center>
|
21 |
|
22 |
<center>
|
23 |
<button data-popup="upgrade" class="prli-delay-popup button"><?php _e('Remind Me Later', 'pretty-link'); ?></button>
|
24 |
+
<button data-popup="upgrade" data-href="https://prettylinks.com/pl/popup/upgrade" class="prli-delay-popup button-primary"><?php _e('Upgrade to Pretty Links Pro', 'pretty-link'); ?></button>
|
25 |
<div> </div>
|
26 |
<a href="" data-popup="upgrade" class="prli-stop-popup"><?php _e('Never Remind Me Again', 'pretty-link'); ?></a>
|
27 |
</center>
|
app/views/admin/update/activation_warning.php
CHANGED
@@ -4,15 +4,15 @@
|
|
4 |
<div class="prli-red-notice"><?php printf(__('Error with PRETTYLINK_LICENSE_KEY: %s', 'pretty-link'), $error); ?></div>
|
5 |
<?php elseif($plp_update->was_activated_with_username_and_password()): ?>
|
6 |
<div class="prli-red-notice">
|
7 |
-
<h2><?php _e('Pretty
|
8 |
-
<p><?php _e('It looks like you used to have Pretty
|
9 |
-
<p><strong><?php printf(__('You can get your license key by logging in at %1$sPrettyLinkPro.com.%2$s', 'pretty-link'), '<a href="https://
|
10 |
<p><?php printf(__('After you paste your license key on the %1$s"Pretty Link" -> "Activate Pro" admin page,%2$s you\'ll start getting updates again.', 'pretty-link'), '<a href="'.$plp_update->activate_page_url().'">','</a>'); ?></p>
|
11 |
</div>
|
12 |
<?php else: ?>
|
13 |
<div class="prli-red-notice">
|
14 |
-
<h2><?php _e('Pretty
|
15 |
-
<p><strong><?php printf(__('You can retrieve or purchase a license key at %1$sPrettyLinkPro.com%2$s to enable automatic updates today.', 'pretty-link'), '<a href="https://
|
16 |
<p><?php printf(__('After you paste your license key on the %1$s"Pretty Link" -> "Activate Pro" admin page,%2$s you\'ll start getting automatic updates.', 'pretty-link'), '<a href="'.$plp_update->activate_page_url().'">','</a>'); ?></p>
|
17 |
</div>
|
18 |
<?php endif; ?>
|
4 |
<div class="prli-red-notice"><?php printf(__('Error with PRETTYLINK_LICENSE_KEY: %s', 'pretty-link'), $error); ?></div>
|
5 |
<?php elseif($plp_update->was_activated_with_username_and_password()): ?>
|
6 |
<div class="prli-red-notice">
|
7 |
+
<h2><?php _e('Pretty Links Pro isn\'t able to get critical automatic updates', 'pretty-link'); ?></h2>
|
8 |
+
<p><?php _e('It looks like you used to have Pretty Links Pro activated with a username and password but now you need a license key to activate it.', 'pretty-link'); ?></p>
|
9 |
+
<p><strong><?php printf(__('You can get your license key by logging in at %1$sPrettyLinkPro.com.%2$s', 'pretty-link'), '<a href="https://prettylinks.com/activation-warning/account" target="_blank">','</a>'); ?></strong></p>
|
10 |
<p><?php printf(__('After you paste your license key on the %1$s"Pretty Link" -> "Activate Pro" admin page,%2$s you\'ll start getting updates again.', 'pretty-link'), '<a href="'.$plp_update->activate_page_url().'">','</a>'); ?></p>
|
11 |
</div>
|
12 |
<?php else: ?>
|
13 |
<div class="prli-red-notice">
|
14 |
+
<h2><?php _e('Pretty Links Pro isn\'t able to get critical automatic updates', 'pretty-link'); ?></h2>
|
15 |
+
<p><strong><?php printf(__('You can retrieve or purchase a license key at %1$sPrettyLinkPro.com%2$s to enable automatic updates today.', 'pretty-link'), '<a href="https://prettylinks.com/pl/activation-warning/buy" target="_blank">','</a>'); ?></strong></p>
|
16 |
<p><?php printf(__('After you paste your license key on the %1$s"Pretty Link" -> "Activate Pro" admin page,%2$s you\'ll start getting automatic updates.', 'pretty-link'), '<a href="'.$plp_update->activate_page_url().'">','</a>'); ?></p>
|
17 |
</div>
|
18 |
<?php endif; ?>
|
app/views/admin/update/addon_popup.php
CHANGED
@@ -9,7 +9,7 @@
|
|
9 |
<p><?php printf(__('And good for you, it looks like you\'ve already got the %1$s Add-on installed. Just click the "Activate %2$s Add-on" button below and you\'ll get all these features back now.', 'pretty-link'), $a->name, $a->name); ?></p>
|
10 |
<?php else: ?>
|
11 |
<p><?php printf(__('Luckily it\'s easy to get these features back now. Just click the "Install %s Add-on" button below.', 'pretty-link'), $a->name); ?></p>
|
12 |
-
<p><?php printf(__('If you have problems with the auto-install please refer to %1$sthe user manual%2$s for manual install instructions.', 'pretty-link'), '<a href="https://
|
13 |
<?php endif; ?>
|
14 |
<br/>
|
15 |
<center>
|
9 |
<p><?php printf(__('And good for you, it looks like you\'ve already got the %1$s Add-on installed. Just click the "Activate %2$s Add-on" button below and you\'ll get all these features back now.', 'pretty-link'), $a->name, $a->name); ?></p>
|
10 |
<?php else: ?>
|
11 |
<p><?php printf(__('Luckily it\'s easy to get these features back now. Just click the "Install %s Add-on" button below.', 'pretty-link'), $a->name); ?></p>
|
12 |
+
<p><?php printf(__('If you have problems with the auto-install please refer to %1$sthe user manual%2$s for manual install instructions.', 'pretty-link'), '<a href="https://prettylinks.com/pl/addon-popup/um/manual-installation" target="_blank">', '</a>'); ?></p>
|
13 |
<?php endif; ?>
|
14 |
<br/>
|
15 |
<center>
|
app/views/admin/update/edge_updates.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php if(!defined('ABSPATH')) {die('You are not allowed to call this page directly.');} ?>
|
2 |
<?php global $plp_update; ?>
|
3 |
<div id="<?php echo $plp_update->edge_updates_str; ?>-wrap">
|
4 |
-
<input type="checkbox" id="<?php echo $plp_update->edge_updates_str; ?>" data-nonce="<?php echo wp_create_nonce('wp-edge-updates'); ?>" <?php checked($plp_update->edge_updates); ?>/> <?php _e('Include Pretty
|
5 |
</div>
|
6 |
|
1 |
<?php if(!defined('ABSPATH')) {die('You are not allowed to call this page directly.');} ?>
|
2 |
<?php global $plp_update; ?>
|
3 |
<div id="<?php echo $plp_update->edge_updates_str; ?>-wrap">
|
4 |
+
<input type="checkbox" id="<?php echo $plp_update->edge_updates_str; ?>" data-nonce="<?php echo wp_create_nonce('wp-edge-updates'); ?>" <?php checked($plp_update->edge_updates); ?>/> <?php _e('Include Pretty Links Pro edge (development) releases in automatic updates (not recommended for production websites)', 'pretty-link'); ?> <img src="<?php echo PRLI_IMAGES_URL . '/square-loader.gif'; ?>" alt="<?php _e('Loading...', 'pretty-link'); ?>" class="prli_loader" />
|
5 |
</div>
|
6 |
|
app/views/admin/update/license.php
CHANGED
@@ -1,16 +1,16 @@
|
|
1 |
<?php if(!defined('ABSPATH')) {die('You are not allowed to call this page directly.');} ?>
|
2 |
<?php global $plp_update; ?>
|
3 |
|
4 |
-
<div class="prli-page-title"><?php _e('Pretty
|
5 |
|
6 |
<?php if( !isset($li) or empty($li) ): ?>
|
7 |
-
<p class="description"><?php printf(__('You must have a License Key to enable automatic updates for Pretty
|
8 |
<form name="activation_form" method="post" action="">
|
9 |
<?php wp_nonce_field('activation_form'); ?>
|
10 |
|
11 |
<table class="form-table">
|
12 |
<tr class="form-field">
|
13 |
-
<td valign="top" width="225px"><?php _e('Enter Your Pretty
|
14 |
<td>
|
15 |
<input type="text" name="<?php echo $plp_update->mothership_license_str; ?>" value="<?php echo (isset($_POST[$plp_update->mothership_license_str])?$_POST[$plp_update->mothership_license_str]:$plp_update->mothership_license); ?>"/>
|
16 |
</td>
|
@@ -27,7 +27,7 @@
|
|
27 |
<div class="prli-page-title"><?php _e('Upgrade to Pro', 'pretty-link'); ?></div>
|
28 |
|
29 |
<div>
|
30 |
-
<?php printf(__('It looks like you haven\'t %1$supgraded to Pretty
|
31 |
</div>
|
32 |
|
33 |
<div> </div>
|
@@ -46,7 +46,7 @@
|
|
46 |
<div> </div>
|
47 |
<div><?php _e('We think you\'ll love it!', 'pretty-link'); ?></div>
|
48 |
<div> </div>
|
49 |
-
<div><a href="https://
|
50 |
<?php endif; ?>
|
51 |
<?php else: ?>
|
52 |
<div class="prli-license-active">
|
@@ -69,7 +69,7 @@
|
|
69 |
<td><?php printf('<b>%1$d of %2$s</b> sites have been activated with this license key', $li['activation_count'], ucwords($li['max_activations'])); ?></td>
|
70 |
</tr>
|
71 |
</table>
|
72 |
-
<div class="prli-deactivate-button"><a href="<?php echo admin_url('admin.php?page=pretty-link-updates&action=deactivate&_wpnonce='.wp_create_nonce('pretty-link_deactivate')); ?>" class="button button-primary" onclick="return confirm('<?php printf(__("Are you sure? Pretty
|
73 |
</div>
|
74 |
<?php if(!$this->is_installed()): ?>
|
75 |
<div><a href="<?php echo $this->update_plugin_url(); ?>" class="button button-primary"><?php _e('Upgrade plugin to Pro', 'pretty-link'); ?></a></div>
|
@@ -77,6 +77,6 @@
|
|
77 |
<?php endif; ?>
|
78 |
<?php require(PRLI_VIEWS_PATH.'/admin/update/edge_updates.php'); ?>
|
79 |
<br/>
|
80 |
-
<div id="prli-version-string"><?php printf(__("You're currently running version %s of Pretty
|
81 |
<?php endif; ?>
|
82 |
|
1 |
<?php if(!defined('ABSPATH')) {die('You are not allowed to call this page directly.');} ?>
|
2 |
<?php global $plp_update; ?>
|
3 |
|
4 |
+
<div class="prli-page-title"><?php _e('Pretty Links Pro License', 'pretty-link'); ?></div>
|
5 |
|
6 |
<?php if( !isset($li) or empty($li) ): ?>
|
7 |
+
<p class="description"><?php printf(__('You must have a License Key to enable automatic updates for Pretty Links Pro. If you don\'t have a License please go to %1$s to get one. If you do have a license you can login at %2$s to manage your licenses and site activations.', 'pretty-link'), '<a href="https://prettylinks.com/pl/license-alert/buy">prettylinks.com</a>', '<a href="https://prettylinks.com/pl/license-alert/login">prettylinks.com/login</a>'); ?></p>
|
8 |
<form name="activation_form" method="post" action="">
|
9 |
<?php wp_nonce_field('activation_form'); ?>
|
10 |
|
11 |
<table class="form-table">
|
12 |
<tr class="form-field">
|
13 |
+
<td valign="top" width="225px"><?php _e('Enter Your Pretty Links Pro License Key:', 'pretty-link'); ?></td>
|
14 |
<td>
|
15 |
<input type="text" name="<?php echo $plp_update->mothership_license_str; ?>" value="<?php echo (isset($_POST[$plp_update->mothership_license_str])?$_POST[$plp_update->mothership_license_str]:$plp_update->mothership_license); ?>"/>
|
16 |
</td>
|
27 |
<div class="prli-page-title"><?php _e('Upgrade to Pro', 'pretty-link'); ?></div>
|
28 |
|
29 |
<div>
|
30 |
+
<?php printf(__('It looks like you haven\'t %1$supgraded to Pretty Links Pro%2$s yet. Here are just a few things you could be doing with pro:', 'pretty-link'),'<a href="https://prettylinks.com/pl/license-alert/upgrade" target="_blank">','</a>') ?>
|
31 |
</div>
|
32 |
|
33 |
<div> </div>
|
46 |
<div> </div>
|
47 |
<div><?php _e('We think you\'ll love it!', 'pretty-link'); ?></div>
|
48 |
<div> </div>
|
49 |
+
<div><a href="https://prettylinks.com/pl/license-alert/upgrade-1" class="button button-primary"><?php _e('Upgrade to Pro today!', 'pretty-link'); ?></a></div>
|
50 |
<?php endif; ?>
|
51 |
<?php else: ?>
|
52 |
<div class="prli-license-active">
|
69 |
<td><?php printf('<b>%1$d of %2$s</b> sites have been activated with this license key', $li['activation_count'], ucwords($li['max_activations'])); ?></td>
|
70 |
</tr>
|
71 |
</table>
|
72 |
+
<div class="prli-deactivate-button"><a href="<?php echo admin_url('admin.php?page=pretty-link-updates&action=deactivate&_wpnonce='.wp_create_nonce('pretty-link_deactivate')); ?>" class="button button-primary" onclick="return confirm('<?php printf(__("Are you sure? Pretty Links Pro will not be functional on %s if this License Key is deactivated.", 'pretty-link'), PrliUtils::site_domain()); ?>');"><?php printf(__('Deactivate License Key on %s', 'pretty-link'), PrliUtils::site_domain()); ?></a></div>
|
73 |
</div>
|
74 |
<?php if(!$this->is_installed()): ?>
|
75 |
<div><a href="<?php echo $this->update_plugin_url(); ?>" class="button button-primary"><?php _e('Upgrade plugin to Pro', 'pretty-link'); ?></a></div>
|
77 |
<?php endif; ?>
|
78 |
<?php require(PRLI_VIEWS_PATH.'/admin/update/edge_updates.php'); ?>
|
79 |
<br/>
|
80 |
+
<div id="prli-version-string"><?php printf(__("You're currently running version %s of Pretty Links Pro", 'pretty-link'), '<b>'.PRLI_VERSION.'</b>'); ?></div>
|
81 |
<?php endif; ?>
|
82 |
|
app/views/admin/update/ui.php
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
<?php if(!defined('ABSPATH')) {die('You are not allowed to call this page directly.');} ?>
|
2 |
<div class="wrap">
|
3 |
-
<?php echo PrliAppHelper::page_title(__('Activate Pretty
|
4 |
<?php require(PRLI_VIEWS_PATH.'/admin/errors.php'); ?>
|
5 |
|
6 |
<div class="prli_spacer"></div>
|
1 |
<?php if(!defined('ABSPATH')) {die('You are not allowed to call this page directly.');} ?>
|
2 |
<div class="wrap">
|
3 |
+
<?php echo PrliAppHelper::page_title(__('Activate Pretty Links Pro', 'pretty-link')); ?>
|
4 |
<?php require(PRLI_VIEWS_PATH.'/admin/errors.php'); ?>
|
5 |
|
6 |
<div class="prli_spacer"></div>
|
app/views/links/form.php
CHANGED
@@ -21,7 +21,7 @@
|
|
21 |
global $plp_update;
|
22 |
if(!$plp_update->is_installed()) {
|
23 |
?>
|
24 |
-
<p class="description"><?php printf(__('Make your life easier by upgrading to %1$sPretty
|
25 |
<?php
|
26 |
} ?>
|
27 |
</td>
|
@@ -218,7 +218,7 @@
|
|
218 |
<h2><?php _e('Oops!', 'pretty-link'); ?></h2>
|
219 |
|
220 |
<div>
|
221 |
-
<?php printf(__('It looks like you haven\'t %1$supgraded to Pretty
|
222 |
</div>
|
223 |
<div> </div>
|
224 |
<ul style="padding-left: 25px;">
|
@@ -234,7 +234,7 @@
|
|
234 |
<div> </div>
|
235 |
<div><?php _e('We think you\'ll love it!', 'pretty-link'); ?></div>
|
236 |
<div> </div>
|
237 |
-
<div><a href="https://
|
238 |
<?php
|
239 |
}
|
240 |
?>
|
21 |
global $plp_update;
|
22 |
if(!$plp_update->is_installed()) {
|
23 |
?>
|
24 |
+
<p class="description"><?php printf(__('Make your life easier by upgrading to %1$sPretty Links Pro%2$s -- get more redirection types, speed, automations and <b>results from your links</b> by %1$sgoing pro today!%2$s', 'pretty-link'),'<a href="https://prettylinks.com/pl/link-form/upgrade" target="_blank">','</a>') ?></p>
|
25 |
<?php
|
26 |
} ?>
|
27 |
</td>
|
218 |
<h2><?php _e('Oops!', 'pretty-link'); ?></h2>
|
219 |
|
220 |
<div>
|
221 |
+
<?php printf(__('It looks like you haven\'t %1$supgraded to Pretty Links Pro%2$s yet. Here are just a few things you could be doing with pro:', 'pretty-link'),'<a href="https://prettylinks.com/pl/link-form/upgrade-1" target="_blank">','</a>') ?>
|
222 |
</div>
|
223 |
<div> </div>
|
224 |
<ul style="padding-left: 25px;">
|
234 |
<div> </div>
|
235 |
<div><?php _e('We think you\'ll love it!', 'pretty-link'); ?></div>
|
236 |
<div> </div>
|
237 |
+
<div><a href="https://prettylinks.com/pl/link-form/upgrade-2" class="button button-primary"><?php _e('Upgrade to Pro today!', 'pretty-link'); ?></a></div>
|
238 |
<?php
|
239 |
}
|
240 |
?>
|
app/views/links/list.php
CHANGED
@@ -9,7 +9,7 @@ $url_params = "&group={$group}&size={$size}&search={$search}"
|
|
9 |
?>
|
10 |
|
11 |
<div class="wrap">
|
12 |
-
<?php echo PrliAppHelper::page_title(__('Links', 'pretty-link')); ?>
|
13 |
<a href="<?php echo admin_url('admin.php?page=add-new-pretty-link'); ?>" class="page-title-action"><?php _e('Add Pretty Link', 'pretty-link'); ?></a>
|
14 |
<hr class="wp-header-end">
|
15 |
|
9 |
?>
|
10 |
|
11 |
<div class="wrap">
|
12 |
+
<?php echo PrliAppHelper::page_title(__('Pretty Links', 'pretty-link')); ?>
|
13 |
<a href="<?php echo admin_url('admin.php?page=add-new-pretty-link'); ?>" class="page-title-action"><?php _e('Add Pretty Link', 'pretty-link'); ?></a>
|
14 |
<hr class="wp-header-end">
|
15 |
|
app/views/links/new.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php if(!defined('ABSPATH')) { die('You are not allowed to call this page directly.'); } ?>
|
2 |
|
3 |
<div class="wrap">
|
4 |
-
<?php echo PrliAppHelper::page_title(__('Add Link', 'pretty-link')); ?>
|
5 |
|
6 |
<?php require(PRLI_VIEWS_PATH.'/shared/errors.php'); ?>
|
7 |
|
1 |
<?php if(!defined('ABSPATH')) { die('You are not allowed to call this page directly.'); } ?>
|
2 |
|
3 |
<div class="wrap">
|
4 |
+
<?php echo PrliAppHelper::page_title(__('Add Pretty Link', 'pretty-link')); ?>
|
5 |
|
6 |
<?php require(PRLI_VIEWS_PATH.'/shared/errors.php'); ?>
|
7 |
|
app/views/options/form.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php if(!defined('ABSPATH')) { die('You are not allowed to call this page directly.'); } ?>
|
2 |
<div class="wrap">
|
3 |
<?php echo PrliAppHelper::page_title(__('Options', 'pretty-link')); ?>
|
4 |
-
<a href="https://
|
5 |
<hr class="wp-header-end">
|
6 |
|
7 |
<?php
|
1 |
<?php if(!defined('ABSPATH')) { die('You are not allowed to call this page directly.'); } ?>
|
2 |
<div class="wrap">
|
3 |
<?php echo PrliAppHelper::page_title(__('Options', 'pretty-link')); ?>
|
4 |
+
<a href="https://prettylinks.com/user-manual-2" class="page-title-action"><?php _e('User Manual', 'pretty-link'); ?></a>
|
5 |
<hr class="wp-header-end">
|
6 |
|
7 |
<?php
|
app/views/shared/nav.php
CHANGED
@@ -3,10 +3,10 @@
|
|
3 |
global $plp_update;
|
4 |
|
5 |
if($plp_update->is_installed()) {
|
6 |
-
$support_link = " | <a href=\"https://
|
7 |
}
|
8 |
else {
|
9 |
-
$support_link = " | <a href=\"https://
|
10 |
}
|
11 |
|
12 |
?>
|
3 |
global $plp_update;
|
4 |
|
5 |
if($plp_update->is_installed()) {
|
6 |
+
$support_link = " | <a href=\"https://prettylinks.com/pl/nav/um\" target=\"_blank\">" . __('Pro Manual', 'pretty-link') . '</a>';
|
7 |
}
|
8 |
else {
|
9 |
+
$support_link = " | <a href=\"https://prettylinks.com/pl/nav/upgrade\" target=\"_blank\">" . __('Upgrade to Pro', 'pretty-link') . '</a>';
|
10 |
}
|
11 |
|
12 |
?>
|
app/views/widgets/widget.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php if(!defined('ABSPATH')) {die('You are not allowed to call this page directly.');} ?>
|
2 |
<div class="wrap">
|
3 |
<p style="text-align: left;">
|
4 |
-
<a href="https://
|
5 |
</p>
|
6 |
|
7 |
<form name="form1" method="post" action="<?php echo admin_url("admin.php?page=pretty-link"); ?>">
|
1 |
<?php if(!defined('ABSPATH')) {die('You are not allowed to call this page directly.');} ?>
|
2 |
<div class="wrap">
|
3 |
<p style="text-align: left;">
|
4 |
+
<a href="https://prettylinks.com/pl/widget/buy"><img style="border: 0px;" src="<?php echo PRLI_IMAGES_URL . '/pl-logo-horiz-RGB.svg'; ?>" width="75%" /></a>
|
5 |
</p>
|
6 |
|
7 |
<form name="form1" method="post" action="<?php echo admin_url("admin.php?page=pretty-link"); ?>">
|
i18n/pretty-link.pot
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
-
# Copyright (C) 2017 Pretty
|
2 |
-
# This file is distributed under the same license as the Pretty
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Pretty
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pretty-link\n"
|
7 |
-
"POT-Creation-Date: 2017-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -14,20 +14,18 @@ msgstr ""
|
|
14 |
|
15 |
#: app/controllers/PrliAppController.php:36
|
16 |
#: app/controllers/PrliAppController.php:45
|
17 |
-
msgid "Pretty
|
18 |
msgstr ""
|
19 |
|
20 |
-
#. #-#-#-#-# pretty-link.pot (Pretty
|
21 |
#. Plugin Name of the plugin/theme
|
22 |
#: app/controllers/PrliAppController.php:37
|
23 |
-
#: app/controllers/PrliAppController.php:46 app/views/links/
|
24 |
-
|
25 |
-
#: pro/app/views/links/prettybar.php:191
|
26 |
-
msgid "Pretty Link"
|
27 |
msgstr ""
|
28 |
|
29 |
#: app/controllers/PrliAppController.php:53
|
30 |
-
msgid "Pretty
|
31 |
msgstr ""
|
32 |
|
33 |
#: app/controllers/PrliAppController.php:54
|
@@ -35,7 +33,7 @@ msgid "Add New Link"
|
|
35 |
msgstr ""
|
36 |
|
37 |
#: app/controllers/PrliAppController.php:62
|
38 |
-
msgid "Pretty
|
39 |
msgstr ""
|
40 |
|
41 |
#: app/controllers/PrliAppController.php:63 app/views/groups/list.php:6
|
@@ -43,7 +41,7 @@ msgid "Groups"
|
|
43 |
msgstr ""
|
44 |
|
45 |
#: app/controllers/PrliAppController.php:72
|
46 |
-
msgid "Pretty
|
47 |
msgstr ""
|
48 |
|
49 |
#: app/controllers/PrliAppController.php:73 app/models/PrliClick.php:259
|
@@ -57,7 +55,7 @@ msgid "Clicks"
|
|
57 |
msgstr ""
|
58 |
|
59 |
#: app/controllers/PrliAppController.php:82
|
60 |
-
msgid "Pretty
|
61 |
msgstr ""
|
62 |
|
63 |
#: app/controllers/PrliAppController.php:83 app/views/tools/form.php:3
|
@@ -65,7 +63,7 @@ msgid "Tools"
|
|
65 |
msgstr ""
|
66 |
|
67 |
#: app/controllers/PrliAppController.php:91
|
68 |
-
msgid "Pretty
|
69 |
msgstr ""
|
70 |
|
71 |
#: app/controllers/PrliAppController.php:92 app/views/options/form.php:3
|
@@ -104,11 +102,11 @@ msgstr ""
|
|
104 |
|
105 |
#: app/controllers/PrliAppController.php:280
|
106 |
msgid ""
|
107 |
-
"You're almost done!<br/>%1$sFinish your Re-Install of Pretty
|
108 |
msgstr ""
|
109 |
|
110 |
#: app/controllers/PrliAppController.php:287
|
111 |
-
msgid "Pretty
|
112 |
msgstr ""
|
113 |
|
114 |
#: app/controllers/PrliAppController.php:348
|
@@ -117,14 +115,14 @@ msgstr ""
|
|
117 |
|
118 |
#: app/controllers/PrliAppController.php:387
|
119 |
msgid ""
|
120 |
-
"Your Pretty
|
121 |
-
"%1$sAutomatically Upgrade to Enable Pretty
|
122 |
msgstr ""
|
123 |
|
124 |
#: app/controllers/PrliAppController.php:408
|
125 |
msgid ""
|
126 |
-
"Your Pretty
|
127 |
-
"%1$sAutomatically Upgrade to Enable Pretty
|
128 |
msgstr ""
|
129 |
|
130 |
#: app/controllers/PrliClicksController.php:89
|
@@ -662,7 +660,7 @@ msgid "We think you'll love it!"
|
|
662 |
msgstr ""
|
663 |
|
664 |
#: app/views/admin/popups/upgrade.php:24
|
665 |
-
msgid "Upgrade to Pretty
|
666 |
msgstr ""
|
667 |
|
668 |
#: app/views/admin/update/activation_warning.php:4
|
@@ -671,13 +669,13 @@ msgstr ""
|
|
671 |
|
672 |
#: app/views/admin/update/activation_warning.php:7
|
673 |
#: app/views/admin/update/activation_warning.php:14
|
674 |
-
msgid "Pretty
|
675 |
msgstr ""
|
676 |
|
677 |
#: app/views/admin/update/activation_warning.php:8
|
678 |
msgid ""
|
679 |
-
"It looks like you used to have Pretty
|
680 |
-
"password but now you need a license key to activate it."
|
681 |
msgstr ""
|
682 |
|
683 |
#: app/views/admin/update/activation_warning.php:9
|
@@ -784,7 +782,7 @@ msgstr ""
|
|
784 |
|
785 |
#: app/views/admin/update/edge_updates.php:4
|
786 |
msgid ""
|
787 |
-
"Include Pretty
|
788 |
"(not recommended for production websites)"
|
789 |
msgstr ""
|
790 |
|
@@ -793,18 +791,19 @@ msgid "Loading..."
|
|
793 |
msgstr ""
|
794 |
|
795 |
#: app/views/admin/update/license.php:4
|
796 |
-
msgid "Pretty
|
797 |
msgstr ""
|
798 |
|
799 |
#: app/views/admin/update/license.php:7
|
800 |
msgid ""
|
801 |
-
"You must have a License Key to enable automatic updates for Pretty
|
802 |
-
"If you don't have a License please go to %1$s to get one. If you do
|
803 |
-
"license you can login at %2$s to manage your licenses and site
|
|
|
804 |
msgstr ""
|
805 |
|
806 |
#: app/views/admin/update/license.php:13
|
807 |
-
msgid "Enter Your Pretty
|
808 |
msgstr ""
|
809 |
|
810 |
#: app/views/admin/update/license.php:20
|
@@ -813,7 +812,7 @@ msgstr ""
|
|
813 |
|
814 |
#: app/views/admin/update/license.php:30 app/views/links/form.php:221
|
815 |
msgid ""
|
816 |
-
"It looks like you haven't %1$supgraded to Pretty
|
817 |
"just a few things you could be doing with pro:"
|
818 |
msgstr ""
|
819 |
|
@@ -847,7 +846,7 @@ msgstr ""
|
|
847 |
|
848 |
#: app/views/admin/update/license.php:72
|
849 |
msgid ""
|
850 |
-
"Are you sure? Pretty
|
851 |
"Key is deactivated."
|
852 |
msgstr ""
|
853 |
|
@@ -860,11 +859,11 @@ msgid "Upgrade plugin to Pro"
|
|
860 |
msgstr ""
|
861 |
|
862 |
#: app/views/admin/update/license.php:80
|
863 |
-
msgid "You're currently running version %s of Pretty
|
864 |
msgstr ""
|
865 |
|
866 |
#: app/views/admin/update/ui.php:3
|
867 |
-
msgid "Activate Pretty
|
868 |
msgstr ""
|
869 |
|
870 |
#: app/views/admin/update/ui.php:16
|
@@ -1052,10 +1051,9 @@ msgid "Add Group"
|
|
1052 |
msgstr ""
|
1053 |
|
1054 |
#: app/views/groups/list.php:40 app/views/groups/list.php:68
|
1055 |
-
#: app/views/groups/list.php:82 app/views/links/list.php:
|
1056 |
-
#: app/views/links/list.php:
|
1057 |
-
#: app/views/
|
1058 |
-
#: pro/app/views/reports/list.php:72
|
1059 |
msgid "Links"
|
1060 |
msgstr ""
|
1061 |
|
@@ -1108,7 +1106,7 @@ msgstr ""
|
|
1108 |
|
1109 |
#: app/views/links/form.php:24
|
1110 |
msgid ""
|
1111 |
-
"Make your life easier by upgrading to %1$sPretty
|
1112 |
"redirection types, speed, automations and <b>results from your links</b> by "
|
1113 |
"%1$sgoing pro today!%2$s"
|
1114 |
msgstr ""
|
@@ -1130,6 +1128,11 @@ msgstr ""
|
|
1130 |
msgid "Pretty Link*"
|
1131 |
msgstr ""
|
1132 |
|
|
|
|
|
|
|
|
|
|
|
1133 |
#: app/views/links/form.php:48
|
1134 |
msgid ""
|
1135 |
"This is how your pretty link will appear. You can edit the Pretty Link slug "
|
@@ -1253,7 +1256,7 @@ msgstr ""
|
|
1253 |
msgid "Oops!"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
-
#: app/views/links/list.php:13
|
1257 |
msgid "Add Pretty Link"
|
1258 |
msgstr ""
|
1259 |
|
@@ -1311,10 +1314,6 @@ msgstr ""
|
|
1311 |
msgid "Target URL:"
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#: app/views/links/new.php:4
|
1315 |
-
msgid "Add Link"
|
1316 |
-
msgstr ""
|
1317 |
-
|
1318 |
#: app/views/options/form.php:4
|
1319 |
msgid "User Manual"
|
1320 |
msgstr ""
|
@@ -1760,7 +1759,7 @@ msgid "Unauthorized"
|
|
1760 |
msgstr ""
|
1761 |
|
1762 |
#: pro/app/controllers/PlpImportExportController.php:12
|
1763 |
-
msgid "Pretty
|
1764 |
msgstr ""
|
1765 |
|
1766 |
#: pro/app/controllers/PlpImportExportController.php:13
|
@@ -1942,11 +1941,11 @@ msgid "Pretty Bar Attribution URL must be a correctly formatted URL"
|
|
1942 |
msgstr ""
|
1943 |
|
1944 |
#: pro/app/controllers/PlpPostsController.php:50
|
1945 |
-
msgid "Pretty
|
1946 |
msgstr ""
|
1947 |
|
1948 |
#: pro/app/controllers/PlpPostsController.php:54
|
1949 |
-
msgid "Pretty
|
1950 |
msgstr ""
|
1951 |
|
1952 |
#: pro/app/controllers/PlpPrettyBarController.php:50
|
@@ -2009,7 +2008,7 @@ msgid "Shrink"
|
|
2009 |
msgstr ""
|
2010 |
|
2011 |
#: pro/app/controllers/PlpReportsController.php:12
|
2012 |
-
msgid "Pretty
|
2013 |
msgstr ""
|
2014 |
|
2015 |
#: pro/app/controllers/PlpReportsController.php:13
|
@@ -2139,7 +2138,7 @@ msgid "At least one link must be selected for analysis."
|
|
2139 |
msgstr ""
|
2140 |
|
2141 |
#: pro/app/models/PlpReport.php:244
|
2142 |
-
msgid "Pretty
|
2143 |
msgstr ""
|
2144 |
|
2145 |
#: pro/app/models/PlpReport.php:244
|
@@ -2155,7 +2154,7 @@ msgid "Conversions"
|
|
2155 |
msgstr ""
|
2156 |
|
2157 |
#: pro/app/models/PlpReport.php:385
|
2158 |
-
msgid "Pretty
|
2159 |
msgstr ""
|
2160 |
|
2161 |
#: pro/app/models/PlpReport.php:397 pro/app/models/PlpReport.php:404
|
@@ -2198,7 +2197,7 @@ msgid ""
|
|
2198 |
"There are two ways to import a file.<br/><br/>1) Importing to update "
|
2199 |
"existing links and<br/><br/>2) Importing to generate new links. When "
|
2200 |
"Importing to generate new links, you must delete the \"id\" column from the "
|
2201 |
-
"CSV before importing. If the \"id\" column is present, Pretty
|
2202 |
"attempt to update existing links."
|
2203 |
msgstr ""
|
2204 |
|
@@ -3359,8 +3358,8 @@ msgstr ""
|
|
3359 |
msgid ""
|
3360 |
"Check this to hide the pretty link attribution link on the pretty bar.<br/"
|
3361 |
"><br/><strong>Wait, before you do this, you might want to leave this un-"
|
3362 |
-
"checked and set the alternate URL of this link to your <em>Pretty
|
3363 |
-
"em> <a href=\"https://
|
3364 |
"\">Affiliate URL</a> to earn a few bucks while you are at it."
|
3365 |
msgstr ""
|
3366 |
|
@@ -3375,8 +3374,8 @@ msgstr ""
|
|
3375 |
#: pro/app/views/options/form.php:649
|
3376 |
msgid ""
|
3377 |
"If set, this will replace the Pretty Bars attribution URL. This is a very "
|
3378 |
-
"good place to put your <em>Pretty
|
3379 |
-
"
|
3380 |
msgstr ""
|
3381 |
|
3382 |
#: pro/app/views/options/form.php:663
|
@@ -3443,7 +3442,7 @@ msgstr ""
|
|
3443 |
msgid ""
|
3444 |
"This option will give you the ability to turn your website into a link "
|
3445 |
"shortening service for your users. Once selected, you can enable the Pretty "
|
3446 |
-
"
|
3447 |
"<code>[prli_create_form]</code> shortcode in any post or page on your "
|
3448 |
"website."
|
3449 |
msgstr ""
|
@@ -4737,7 +4736,7 @@ msgid "Bye\n"
|
|
4737 |
msgstr ""
|
4738 |
|
4739 |
#. Plugin URI of the plugin/theme
|
4740 |
-
msgid "https://
|
4741 |
msgstr ""
|
4742 |
|
4743 |
#. Description of the plugin/theme
|
1 |
+
# Copyright (C) 2017 Pretty Links
|
2 |
+
# This file is distributed under the same license as the Pretty Links package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Pretty Links 2.1.2\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pretty-link\n"
|
7 |
+
"POT-Creation-Date: 2017-08-31 20:48:45+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
|
15 |
#: app/controllers/PrliAppController.php:36
|
16 |
#: app/controllers/PrliAppController.php:45
|
17 |
+
msgid "Pretty Links | Manage Pretty Links"
|
18 |
msgstr ""
|
19 |
|
20 |
+
#. #-#-#-#-# pretty-link.pot (Pretty Links 2.1.2) #-#-#-#-#
|
21 |
#. Plugin Name of the plugin/theme
|
22 |
#: app/controllers/PrliAppController.php:37
|
23 |
+
#: app/controllers/PrliAppController.php:46 app/views/links/list.php:12
|
24 |
+
msgid "Pretty Links"
|
|
|
|
|
25 |
msgstr ""
|
26 |
|
27 |
#: app/controllers/PrliAppController.php:53
|
28 |
+
msgid "Pretty Links | Add New Link"
|
29 |
msgstr ""
|
30 |
|
31 |
#: app/controllers/PrliAppController.php:54
|
33 |
msgstr ""
|
34 |
|
35 |
#: app/controllers/PrliAppController.php:62
|
36 |
+
msgid "Pretty Links | Groups"
|
37 |
msgstr ""
|
38 |
|
39 |
#: app/controllers/PrliAppController.php:63 app/views/groups/list.php:6
|
41 |
msgstr ""
|
42 |
|
43 |
#: app/controllers/PrliAppController.php:72
|
44 |
+
msgid "Pretty Links | Clicks"
|
45 |
msgstr ""
|
46 |
|
47 |
#: app/controllers/PrliAppController.php:73 app/models/PrliClick.php:259
|
55 |
msgstr ""
|
56 |
|
57 |
#: app/controllers/PrliAppController.php:82
|
58 |
+
msgid "Pretty Links | Tools"
|
59 |
msgstr ""
|
60 |
|
61 |
#: app/controllers/PrliAppController.php:83 app/views/tools/form.php:3
|
63 |
msgstr ""
|
64 |
|
65 |
#: app/controllers/PrliAppController.php:91
|
66 |
+
msgid "Pretty Links | Options"
|
67 |
msgstr ""
|
68 |
|
69 |
#: app/controllers/PrliAppController.php:92 app/views/options/form.php:3
|
102 |
|
103 |
#: app/controllers/PrliAppController.php:280
|
104 |
msgid ""
|
105 |
+
"You're almost done!<br/>%1$sFinish your Re-Install of Pretty Links Pro%2$s"
|
106 |
msgstr ""
|
107 |
|
108 |
#: app/controllers/PrliAppController.php:287
|
109 |
+
msgid "Pretty Links Pro Successfully Uninstalled."
|
110 |
msgstr ""
|
111 |
|
112 |
#: app/controllers/PrliAppController.php:348
|
115 |
|
116 |
#: app/controllers/PrliAppController.php:387
|
117 |
msgid ""
|
118 |
+
"Your Pretty Links Pro installation isn't quite complete yet. "
|
119 |
+
"%1$sAutomatically Upgrade to Enable Pretty Links Pro%2$s"
|
120 |
msgstr ""
|
121 |
|
122 |
#: app/controllers/PrliAppController.php:408
|
123 |
msgid ""
|
124 |
+
"Your Pretty Links Pro installation isn't quite complete yet.<br/>"
|
125 |
+
"%1$sAutomatically Upgrade to Enable Pretty Links Pro%2$s"
|
126 |
msgstr ""
|
127 |
|
128 |
#: app/controllers/PrliClicksController.php:89
|
660 |
msgstr ""
|
661 |
|
662 |
#: app/views/admin/popups/upgrade.php:24
|
663 |
+
msgid "Upgrade to Pretty Links Pro"
|
664 |
msgstr ""
|
665 |
|
666 |
#: app/views/admin/update/activation_warning.php:4
|
669 |
|
670 |
#: app/views/admin/update/activation_warning.php:7
|
671 |
#: app/views/admin/update/activation_warning.php:14
|
672 |
+
msgid "Pretty Links Pro isn't able to get critical automatic updates"
|
673 |
msgstr ""
|
674 |
|
675 |
#: app/views/admin/update/activation_warning.php:8
|
676 |
msgid ""
|
677 |
+
"It looks like you used to have Pretty Links Pro activated with a username "
|
678 |
+
"and password but now you need a license key to activate it."
|
679 |
msgstr ""
|
680 |
|
681 |
#: app/views/admin/update/activation_warning.php:9
|
782 |
|
783 |
#: app/views/admin/update/edge_updates.php:4
|
784 |
msgid ""
|
785 |
+
"Include Pretty Links Pro edge (development) releases in automatic updates "
|
786 |
"(not recommended for production websites)"
|
787 |
msgstr ""
|
788 |
|
791 |
msgstr ""
|
792 |
|
793 |
#: app/views/admin/update/license.php:4
|
794 |
+
msgid "Pretty Links Pro License"
|
795 |
msgstr ""
|
796 |
|
797 |
#: app/views/admin/update/license.php:7
|
798 |
msgid ""
|
799 |
+
"You must have a License Key to enable automatic updates for Pretty Links "
|
800 |
+
"Pro. If you don't have a License please go to %1$s to get one. If you do "
|
801 |
+
"have a license you can login at %2$s to manage your licenses and site "
|
802 |
+
"activations."
|
803 |
msgstr ""
|
804 |
|
805 |
#: app/views/admin/update/license.php:13
|
806 |
+
msgid "Enter Your Pretty Links Pro License Key:"
|
807 |
msgstr ""
|
808 |
|
809 |
#: app/views/admin/update/license.php:20
|
812 |
|
813 |
#: app/views/admin/update/license.php:30 app/views/links/form.php:221
|
814 |
msgid ""
|
815 |
+
"It looks like you haven't %1$supgraded to Pretty Links Pro%2$s yet. Here are "
|
816 |
"just a few things you could be doing with pro:"
|
817 |
msgstr ""
|
818 |
|
846 |
|
847 |
#: app/views/admin/update/license.php:72
|
848 |
msgid ""
|
849 |
+
"Are you sure? Pretty Links Pro will not be functional on %s if this License "
|
850 |
"Key is deactivated."
|
851 |
msgstr ""
|
852 |
|
859 |
msgstr ""
|
860 |
|
861 |
#: app/views/admin/update/license.php:80
|
862 |
+
msgid "You're currently running version %s of Pretty Links Pro"
|
863 |
msgstr ""
|
864 |
|
865 |
#: app/views/admin/update/ui.php:3
|
866 |
+
msgid "Activate Pretty Links Pro"
|
867 |
msgstr ""
|
868 |
|
869 |
#: app/views/admin/update/ui.php:16
|
1051 |
msgstr ""
|
1052 |
|
1053 |
#: app/views/groups/list.php:40 app/views/groups/list.php:68
|
1054 |
+
#: app/views/groups/list.php:82 app/views/links/list.php:56
|
1055 |
+
#: app/views/links/list.php:160 app/views/options/form.php:39
|
1056 |
+
#: pro/app/views/reports/list.php:32 pro/app/views/reports/list.php:72
|
|
|
1057 |
msgid "Links"
|
1058 |
msgstr ""
|
1059 |
|
1106 |
|
1107 |
#: app/views/links/form.php:24
|
1108 |
msgid ""
|
1109 |
+
"Make your life easier by upgrading to %1$sPretty Links Pro%2$s -- get more "
|
1110 |
"redirection types, speed, automations and <b>results from your links</b> by "
|
1111 |
"%1$sgoing pro today!%2$s"
|
1112 |
msgstr ""
|
1128 |
msgid "Pretty Link*"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#: app/views/links/form.php:47 app/views/shared/tinymce_form_popup.php:108
|
1132 |
+
#: app/views/widgets/widget.php:17 pro/app/views/links/prettybar.php:191
|
1133 |
+
msgid "Pretty Link"
|
1134 |
+
msgstr ""
|
1135 |
+
|
1136 |
#: app/views/links/form.php:48
|
1137 |
msgid ""
|
1138 |
"This is how your pretty link will appear. You can edit the Pretty Link slug "
|
1256 |
msgid "Oops!"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: app/views/links/list.php:13 app/views/links/new.php:4
|
1260 |
msgid "Add Pretty Link"
|
1261 |
msgstr ""
|
1262 |
|
1314 |
msgid "Target URL:"
|
1315 |
msgstr ""
|
1316 |
|
|
|
|
|
|
|
|
|
1317 |
#: app/views/options/form.php:4
|
1318 |
msgid "User Manual"
|
1319 |
msgstr ""
|
1759 |
msgstr ""
|
1760 |
|
1761 |
#: pro/app/controllers/PlpImportExportController.php:12
|
1762 |
+
msgid "Pretty Links Pro | Import/Export"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
#: pro/app/controllers/PlpImportExportController.php:13
|
1941 |
msgstr ""
|
1942 |
|
1943 |
#: pro/app/controllers/PlpPostsController.php:50
|
1944 |
+
msgid "Pretty Links Pro"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
#: pro/app/controllers/PlpPostsController.php:54
|
1948 |
+
msgid "Pretty Links Pro Options"
|
1949 |
msgstr ""
|
1950 |
|
1951 |
#: pro/app/controllers/PlpPrettyBarController.php:50
|
2008 |
msgstr ""
|
2009 |
|
2010 |
#: pro/app/controllers/PlpReportsController.php:12
|
2011 |
+
msgid "Pretty Links Pro | Reports"
|
2012 |
msgstr ""
|
2013 |
|
2014 |
#: pro/app/controllers/PlpReportsController.php:13
|
2138 |
msgstr ""
|
2139 |
|
2140 |
#: pro/app/models/PlpReport.php:244
|
2141 |
+
msgid "Pretty Links Pro: Clicks for"
|
2142 |
msgstr ""
|
2143 |
|
2144 |
#: pro/app/models/PlpReport.php:244
|
2154 |
msgstr ""
|
2155 |
|
2156 |
#: pro/app/models/PlpReport.php:385
|
2157 |
+
msgid "Pretty Links Pro: Split Report for"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
#: pro/app/models/PlpReport.php:397 pro/app/models/PlpReport.php:404
|
2197 |
"There are two ways to import a file.<br/><br/>1) Importing to update "
|
2198 |
"existing links and<br/><br/>2) Importing to generate new links. When "
|
2199 |
"Importing to generate new links, you must delete the \"id\" column from the "
|
2200 |
+
"CSV before importing. If the \"id\" column is present, Pretty Links Pro will "
|
2201 |
"attempt to update existing links."
|
2202 |
msgstr ""
|
2203 |
|
3358 |
msgid ""
|
3359 |
"Check this to hide the pretty link attribution link on the pretty bar.<br/"
|
3360 |
"><br/><strong>Wait, before you do this, you might want to leave this un-"
|
3361 |
+
"checked and set the alternate URL of this link to your <em>Pretty Links Pro</"
|
3362 |
+
"em> <a href=\"https://prettylinks.com/plp/options/aff-attribution"
|
3363 |
"\">Affiliate URL</a> to earn a few bucks while you are at it."
|
3364 |
msgstr ""
|
3365 |
|
3374 |
#: pro/app/views/options/form.php:649
|
3375 |
msgid ""
|
3376 |
"If set, this will replace the Pretty Bars attribution URL. This is a very "
|
3377 |
+
"good place to put your <em>Pretty Links Pro</em> <a href=\"https://"
|
3378 |
+
"prettylinks.com/plp/options/aff-attribution-2\">Affiliate Link</a>."
|
3379 |
msgstr ""
|
3380 |
|
3381 |
#: pro/app/views/options/form.php:663
|
3442 |
msgid ""
|
3443 |
"This option will give you the ability to turn your website into a link "
|
3444 |
"shortening service for your users. Once selected, you can enable the Pretty "
|
3445 |
+
"Links Pro Sidebar Widget or just display the link creation form with the "
|
3446 |
"<code>[prli_create_form]</code> shortcode in any post or page on your "
|
3447 |
"website."
|
3448 |
msgstr ""
|
4736 |
msgstr ""
|
4737 |
|
4738 |
#. Plugin URI of the plugin/theme
|
4739 |
+
msgid "https://prettylinks.com/pl/plugin-uri"
|
4740 |
msgstr ""
|
4741 |
|
4742 |
#. Description of the plugin/theme
|
i18n/prettylinkpro-es_ES.mo
CHANGED
Binary file
|
i18n/prettylinkpro-es_ES.po
CHANGED
@@ -73,22 +73,22 @@ msgid "Options"
|
|
73 |
msgstr "Opciones"
|
74 |
|
75 |
#: app/controllers/PrliAppController.php:99
|
76 |
-
msgid "Pretty Link | Pretty
|
77 |
-
msgstr "Pretty Link | Pretty
|
78 |
|
79 |
#: app/controllers/PrliAppController.php:100
|
80 |
#: pro/app/controllers/PlpAppController.php:44
|
81 |
-
msgid "Pretty
|
82 |
-
msgstr "Pretty
|
83 |
|
84 |
#: app/controllers/PrliAppController.php:218
|
85 |
-
msgid "You're almost done!<br/>%1$sFinish your Re-Install of Pretty
|
86 |
msgstr ""
|
87 |
-
"¡Casi listo!<br>%1$sCompletar su volver a instalar del Pretty
|
88 |
|
89 |
#: app/controllers/PrliAppController.php:225
|
90 |
-
msgid "Pretty
|
91 |
-
msgstr "Pretty
|
92 |
|
93 |
#: app/controllers/PrliAppController.php:289
|
94 |
msgid "Pretty Link Quick Add"
|
@@ -97,10 +97,10 @@ msgstr "Añadir Pretty Link Rápidamente"
|
|
97 |
#: app/controllers/PrliAppController.php:329
|
98 |
#: app/controllers/PrliAppController.php:347
|
99 |
msgid ""
|
100 |
-
"Your Pretty
|
101 |
-
"%1$sAutomatically Upgrade to Enable Pretty
|
102 |
msgstr ""
|
103 |
-
"La instalación Pretty
|
104 |
"automaticamente para habilitar Pretty Link Pro%2$s"
|
105 |
|
106 |
#: app/controllers/PrliClicksController.php:73
|
@@ -508,16 +508,16 @@ msgstr ""
|
|
508 |
"instalación de wordpress."
|
509 |
|
510 |
#: app/models/PrliUpdate.php:26
|
511 |
-
msgid "Pretty
|
512 |
-
msgstr "Pretty
|
513 |
|
514 |
#: app/models/PrliUpdate.php:27
|
515 |
-
msgid "Pretty
|
516 |
-
msgstr "Pretty
|
517 |
|
518 |
#: app/models/PrliUpdate.php:28
|
519 |
-
msgid "Your Pretty
|
520 |
-
msgstr "Su Pretty
|
521 |
|
522 |
#: app/models/PrliUpdate.php:128
|
523 |
msgid ""
|
@@ -782,10 +782,10 @@ msgstr "Este es el método de redirección para su enlace."
|
|
782 |
#: app/views/links/form.php:23
|
783 |
msgid ""
|
784 |
"To Enable Cloaked, Meta-Refresh, Javascript, Pixel and Pretty Bar Redirection, "
|
785 |
-
"upgrade to %sPretty
|
786 |
msgstr ""
|
787 |
"Para activar Cloaked, Meta-Refresh, Javascript, Pixel y Pretty Bar redirección, "
|
788 |
-
"actualizar a %sPretty
|
789 |
|
790 |
#: app/views/links/form.php:30
|
791 |
msgid "Target URL*"
|
@@ -936,7 +936,7 @@ msgstr "Opciones de Pro"
|
|
936 |
#: app/views/links/form.php:212
|
937 |
msgid ""
|
938 |
"To enable Double Redirection, Keyword Replacements, URL Replacements, URL "
|
939 |
-
"Rotations, Split Tests, and more, %sUpgrade to Pretty
|
940 |
msgstr ""
|
941 |
"Para habilitar la Redirección Doble, Reemplazos de Palabras Clave, URL "
|
942 |
"Reemplazos, Rotaciones de Enlace, Rruebas de Split y más, ¡%sActualizar Pretty "
|
@@ -1189,8 +1189,8 @@ msgid "Pro Account Information"
|
|
1189 |
msgstr "Información de Cuenta Pro"
|
1190 |
|
1191 |
#: app/views/options/pro-settings.php:8
|
1192 |
-
msgid "Pretty
|
1193 |
-
msgstr "Información de Cuenta Pretty
|
1194 |
|
1195 |
#: app/views/options/pro-settings.php:11 pro/app/views/import-export/form.php:5
|
1196 |
#: pro/app/views/reports/list.php:23
|
@@ -1198,16 +1198,16 @@ msgid "User Manual"
|
|
1198 |
msgstr "Manual del Usuario"
|
1199 |
|
1200 |
#: app/views/options/pro-settings.php:18
|
1201 |
-
msgid "Pretty
|
1202 |
-
msgstr "Pretty
|
1203 |
|
1204 |
#: app/views/options/pro-settings.php:20
|
1205 |
msgid ""
|
1206 |
-
"Are you sure you want to Un-Install Pretty
|
1207 |
"username & password from your local database, remove all the pro software but "
|
1208 |
"will leave all your data intact incase you want to reinstall sometime :) ..."
|
1209 |
msgstr ""
|
1210 |
-
"¿Está seguro que desea desinstalar Pretty
|
1211 |
"y la contraseña de su base de datos local, quitará todo el software pro pero le "
|
1212 |
"salen todos sus datos intactos en caso que desee volver a instalar en algún "
|
1213 |
"momento :) ..."
|
@@ -1242,10 +1242,10 @@ msgstr "¿Listos para llevar sus esfuerzos de marketing al siguiente nivel?"
|
|
1242 |
|
1243 |
#: app/views/options/pro-settings.php:35
|
1244 |
msgid ""
|
1245 |
-
"%1$sPretty
|
1246 |
"and conversions from your Pretty Links!"
|
1247 |
msgstr ""
|
1248 |
-
"%1$sPretty
|
1249 |
"más clics y conversiones de sus Pretty Links!"
|
1250 |
|
1251 |
#: app/views/options/pro-settings.php:38
|
@@ -1558,24 +1558,24 @@ msgid "Add a Pretty Link from your Dashboard:"
|
|
1558 |
msgstr "Agregar un Pretty Link desde su panel de control:"
|
1559 |
|
1560 |
#: pro/app/controllers/PlpAppController.php:22
|
1561 |
-
msgid "Pretty
|
1562 |
-
msgstr "Pretty
|
1563 |
|
1564 |
#: pro/app/controllers/PlpAppController.php:23 pro/app/views/reports/reports.php:7
|
1565 |
msgid "Reports"
|
1566 |
msgstr "Informes"
|
1567 |
|
1568 |
#: pro/app/controllers/PlpAppController.php:31
|
1569 |
-
msgid "Pretty
|
1570 |
-
msgstr "Pretty
|
1571 |
|
1572 |
#: pro/app/controllers/PlpAppController.php:32
|
1573 |
msgid "Import/Export"
|
1574 |
msgstr "Importar/Exportar"
|
1575 |
|
1576 |
#: pro/app/controllers/PlpAppController.php:48
|
1577 |
-
msgid "Pretty
|
1578 |
-
msgstr "Opciones de Pretty
|
1579 |
|
1580 |
#: pro/app/controllers/PlpAppController.php:151
|
1581 |
msgid "ERROR: Your Pretty Link was unable to be created"
|
@@ -1749,11 +1749,11 @@ msgstr "Su Pretty Link informe fue borrado correctamente"
|
|
1749 |
#: pro/app/controllers/PlpTwitterController.php:74
|
1750 |
msgid ""
|
1751 |
"Twitter has changed the way it authenticates users:</strong> Auto-Posting to "
|
1752 |
-
"Twitter with Pretty
|
1753 |
"\"admin.php?page=pretty-link-options\">Twitter Credentials Here</a>"
|
1754 |
msgstr ""
|
1755 |
"Twitter ha cambiado la forma en autentica a los usuarios: Auto-publicar en "
|
1756 |
-
"Twitter con Pretty
|
1757 |
"\"admin.php?page=pretty-link-options\">Credenciales de Twitter aquí</a>"
|
1758 |
|
1759 |
#: pro/app/controllers/PlpTwitterController.php:114
|
@@ -1907,8 +1907,8 @@ msgid "At least one link must be selected for analysis."
|
|
1907 |
msgstr "Debe seleccionar al menos un enlace para el análisis."
|
1908 |
|
1909 |
#: pro/app/models/PlpReport.php:244
|
1910 |
-
msgid "Pretty
|
1911 |
-
msgstr "Pretty
|
1912 |
|
1913 |
#: pro/app/models/PlpReport.php:244
|
1914 |
msgid "report between"
|
@@ -1923,8 +1923,8 @@ msgid "Conversions"
|
|
1923 |
msgstr "Conversiones"
|
1924 |
|
1925 |
#: pro/app/models/PlpReport.php:385
|
1926 |
-
msgid "Pretty
|
1927 |
-
msgstr "Pretty
|
1928 |
|
1929 |
#: pro/app/models/PlpReport.php:397 pro/app/models/PlpReport.php:404
|
1930 |
#: pro/app/views/links/form.php:74
|
@@ -1978,12 +1978,12 @@ msgid ""
|
|
1978 |
"Note: There are two ways to import a file. 1) Importing to update existing "
|
1979 |
"links and 2) Importing to generate new links. When Importing to generate new "
|
1980 |
"links, you must delte the \"id\" column from the CSV before importing. If the "
|
1981 |
-
"\"id\" column is present, Pretty
|
1982 |
msgstr ""
|
1983 |
"Nota: Hay dos formas para importar un archivo. 1) Importar para actualizar y 2) "
|
1984 |
"Importar para generar nuevos enlaces. Al importar para generar nuevos enlaces, "
|
1985 |
"debe borrar la columna \"id\" de la CSV antes de importar. Si la columna \"id\" "
|
1986 |
-
"está presente, Pretty
|
1987 |
|
1988 |
#: pro/app/views/import-export/import.php:4
|
1989 |
msgid "Import Results"
|
@@ -2938,14 +2938,14 @@ msgstr "Ocultar Enlace de Atribución"
|
|
2938 |
msgid ""
|
2939 |
"Check this to hide the pretty link attribution link on the pretty bar.<br/><br/"
|
2940 |
"><strong>Wait, before you do this, you might want to leave this un-checked and "
|
2941 |
-
"set the alternate URL of this link to your <em>Pretty
|
2942 |
-
"\"
|
2943 |
"few bucks while you are at it."
|
2944 |
msgstr ""
|
2945 |
"Marque eso para ocultar el pretty link de atribución en la pretty bar.<br/><br/"
|
2946 |
"><strong>Espere</strong>, antes de hacer esto, usted puede dejarlo sin equipaje "
|
2947 |
-
"y configurar la URL alternativa de este enlace a su <em>Pretty
|
2948 |
-
"href=\"
|
2949 |
"ganar unos cuantos dólares mientras está en el proceso."
|
2950 |
|
2951 |
#: pro/app/views/options/form.php:573
|
@@ -2959,12 +2959,12 @@ msgstr "Alternativo URL de Atribución por la Pretty Bar"
|
|
2959 |
#: pro/app/views/options/form.php:576
|
2960 |
msgid ""
|
2961 |
"If set, this will replace the Pretty Bars attribution URL. This is a very good "
|
2962 |
-
"place to put your <em>Pretty
|
2963 |
"affiliate-dashboard/\">Affiliate Link</a>."
|
2964 |
msgstr ""
|
2965 |
"Si establece, esto va a reemplazar la URL de la atribución de Pretty Bars. Este "
|
2966 |
-
"es un muy buen lugar para poner su <em>Pretty
|
2967 |
-
"
|
2968 |
|
2969 |
#: pro/app/views/options/form.php:590
|
2970 |
msgid "Social Buttons Options"
|
73 |
msgstr "Opciones"
|
74 |
|
75 |
#: app/controllers/PrliAppController.php:99
|
76 |
+
msgid "Pretty Link | Pretty Links Pro"
|
77 |
+
msgstr "Pretty Link | Pretty Links Pro"
|
78 |
|
79 |
#: app/controllers/PrliAppController.php:100
|
80 |
#: pro/app/controllers/PlpAppController.php:44
|
81 |
+
msgid "Pretty Links Pro"
|
82 |
+
msgstr "Pretty Links Pro"
|
83 |
|
84 |
#: app/controllers/PrliAppController.php:218
|
85 |
+
msgid "You're almost done!<br/>%1$sFinish your Re-Install of Pretty Links Pro%2$s"
|
86 |
msgstr ""
|
87 |
+
"¡Casi listo!<br>%1$sCompletar su volver a instalar del Pretty Links Pro %2$s"
|
88 |
|
89 |
#: app/controllers/PrliAppController.php:225
|
90 |
+
msgid "Pretty Links Pro Successfully Uninstalled."
|
91 |
+
msgstr "Pretty Links Pro fue correctamente desinstalado."
|
92 |
|
93 |
#: app/controllers/PrliAppController.php:289
|
94 |
msgid "Pretty Link Quick Add"
|
97 |
#: app/controllers/PrliAppController.php:329
|
98 |
#: app/controllers/PrliAppController.php:347
|
99 |
msgid ""
|
100 |
+
"Your Pretty Links Pro installation isn't quite complete yet.<br/>"
|
101 |
+
"%1$sAutomatically Upgrade to Enable Pretty Links Pro%2$s"
|
102 |
msgstr ""
|
103 |
+
"La instalación Pretty Links Pro no está completa aún.<br/>%1$sActualizar "
|
104 |
"automaticamente para habilitar Pretty Link Pro%2$s"
|
105 |
|
106 |
#: app/controllers/PrliClicksController.php:73
|
508 |
"instalación de wordpress."
|
509 |
|
510 |
#: app/models/PrliUpdate.php:26
|
511 |
+
msgid "Pretty Links Pro Username"
|
512 |
+
msgstr "Pretty Links Pro Usuario"
|
513 |
|
514 |
#: app/models/PrliUpdate.php:27
|
515 |
+
msgid "Pretty Links Pro Password"
|
516 |
+
msgstr "Pretty Links Pro Contraseña"
|
517 |
|
518 |
#: app/models/PrliUpdate.php:28
|
519 |
+
msgid "Your Pretty Links Pro Username or Password was Invalid"
|
520 |
+
msgstr "Su Pretty Links Pro usuario o contraseña es inválido"
|
521 |
|
522 |
#: app/models/PrliUpdate.php:128
|
523 |
msgid ""
|
782 |
#: app/views/links/form.php:23
|
783 |
msgid ""
|
784 |
"To Enable Cloaked, Meta-Refresh, Javascript, Pixel and Pretty Bar Redirection, "
|
785 |
+
"upgrade to %sPretty Links Pro%s"
|
786 |
msgstr ""
|
787 |
"Para activar Cloaked, Meta-Refresh, Javascript, Pixel y Pretty Bar redirección, "
|
788 |
+
"actualizar a %sPretty Links Pro%s "
|
789 |
|
790 |
#: app/views/links/form.php:30
|
791 |
msgid "Target URL*"
|
936 |
#: app/views/links/form.php:212
|
937 |
msgid ""
|
938 |
"To enable Double Redirection, Keyword Replacements, URL Replacements, URL "
|
939 |
+
"Rotations, Split Tests, and more, %sUpgrade to Pretty Links Pro%s today!"
|
940 |
msgstr ""
|
941 |
"Para habilitar la Redirección Doble, Reemplazos de Palabras Clave, URL "
|
942 |
"Reemplazos, Rotaciones de Enlace, Rruebas de Split y más, ¡%sActualizar Pretty "
|
1189 |
msgstr "Información de Cuenta Pro"
|
1190 |
|
1191 |
#: app/views/options/pro-settings.php:8
|
1192 |
+
msgid "Pretty Links Pro Account Information"
|
1193 |
+
msgstr "Información de Cuenta Pretty Links Pro"
|
1194 |
|
1195 |
#: app/views/options/pro-settings.php:11 pro/app/views/import-export/form.php:5
|
1196 |
#: pro/app/views/reports/list.php:23
|
1198 |
msgstr "Manual del Usuario"
|
1199 |
|
1200 |
#: app/views/options/pro-settings.php:18
|
1201 |
+
msgid "Pretty Links Pro is Installed"
|
1202 |
+
msgstr "Pretty Links Pro está instalado"
|
1203 |
|
1204 |
#: app/views/options/pro-settings.php:20
|
1205 |
msgid ""
|
1206 |
+
"Are you sure you want to Un-Install Pretty Links Pro? This will delete your pro "
|
1207 |
"username & password from your local database, remove all the pro software but "
|
1208 |
"will leave all your data intact incase you want to reinstall sometime :) ..."
|
1209 |
msgstr ""
|
1210 |
+
"¿Está seguro que desea desinstalar Pretty Links Pro? Esto borrará su pro usuario "
|
1211 |
"y la contraseña de su base de datos local, quitará todo el software pro pero le "
|
1212 |
"salen todos sus datos intactos en caso que desee volver a instalar en algún "
|
1213 |
"momento :) ..."
|
1242 |
|
1243 |
#: app/views/options/pro-settings.php:35
|
1244 |
msgid ""
|
1245 |
+
"%1$sPretty Links Pro%2$s will help you automate, share, test and get more clicks "
|
1246 |
"and conversions from your Pretty Links!"
|
1247 |
msgstr ""
|
1248 |
+
"%1$sPretty Links Pro%2$s le ayudará a automatizar, compartir, probar y obtener "
|
1249 |
"más clics y conversiones de sus Pretty Links!"
|
1250 |
|
1251 |
#: app/views/options/pro-settings.php:38
|
1558 |
msgstr "Agregar un Pretty Link desde su panel de control:"
|
1559 |
|
1560 |
#: pro/app/controllers/PlpAppController.php:22
|
1561 |
+
msgid "Pretty Links Pro | Reports"
|
1562 |
+
msgstr "Pretty Links Pro | Informes"
|
1563 |
|
1564 |
#: pro/app/controllers/PlpAppController.php:23 pro/app/views/reports/reports.php:7
|
1565 |
msgid "Reports"
|
1566 |
msgstr "Informes"
|
1567 |
|
1568 |
#: pro/app/controllers/PlpAppController.php:31
|
1569 |
+
msgid "Pretty Links Pro | Import/Export"
|
1570 |
+
msgstr "Pretty Links Pro | Importar/Exportar"
|
1571 |
|
1572 |
#: pro/app/controllers/PlpAppController.php:32
|
1573 |
msgid "Import/Export"
|
1574 |
msgstr "Importar/Exportar"
|
1575 |
|
1576 |
#: pro/app/controllers/PlpAppController.php:48
|
1577 |
+
msgid "Pretty Links Pro Options"
|
1578 |
+
msgstr "Opciones de Pretty Links Pro"
|
1579 |
|
1580 |
#: pro/app/controllers/PlpAppController.php:151
|
1581 |
msgid "ERROR: Your Pretty Link was unable to be created"
|
1749 |
#: pro/app/controllers/PlpTwitterController.php:74
|
1750 |
msgid ""
|
1751 |
"Twitter has changed the way it authenticates users:</strong> Auto-Posting to "
|
1752 |
+
"Twitter with Pretty Links Pro will not work until you update your <a href="
|
1753 |
"\"admin.php?page=pretty-link-options\">Twitter Credentials Here</a>"
|
1754 |
msgstr ""
|
1755 |
"Twitter ha cambiado la forma en autentica a los usuarios: Auto-publicar en "
|
1756 |
+
"Twitter con Pretty Links Pro no funcionará hasta que actualice sus <a href="
|
1757 |
"\"admin.php?page=pretty-link-options\">Credenciales de Twitter aquí</a>"
|
1758 |
|
1759 |
#: pro/app/controllers/PlpTwitterController.php:114
|
1907 |
msgstr "Debe seleccionar al menos un enlace para el análisis."
|
1908 |
|
1909 |
#: pro/app/models/PlpReport.php:244
|
1910 |
+
msgid "Pretty Links Pro: Clicks for"
|
1911 |
+
msgstr "Pretty Links Pro: Clics para"
|
1912 |
|
1913 |
#: pro/app/models/PlpReport.php:244
|
1914 |
msgid "report between"
|
1923 |
msgstr "Conversiones"
|
1924 |
|
1925 |
#: pro/app/models/PlpReport.php:385
|
1926 |
+
msgid "Pretty Links Pro: Split Report for"
|
1927 |
+
msgstr "Pretty Links Pro: Split informe para"
|
1928 |
|
1929 |
#: pro/app/models/PlpReport.php:397 pro/app/models/PlpReport.php:404
|
1930 |
#: pro/app/views/links/form.php:74
|
1978 |
"Note: There are two ways to import a file. 1) Importing to update existing "
|
1979 |
"links and 2) Importing to generate new links. When Importing to generate new "
|
1980 |
"links, you must delte the \"id\" column from the CSV before importing. If the "
|
1981 |
+
"\"id\" column is present, Pretty Links Pro will attempt to update existing links."
|
1982 |
msgstr ""
|
1983 |
"Nota: Hay dos formas para importar un archivo. 1) Importar para actualizar y 2) "
|
1984 |
"Importar para generar nuevos enlaces. Al importar para generar nuevos enlaces, "
|
1985 |
"debe borrar la columna \"id\" de la CSV antes de importar. Si la columna \"id\" "
|
1986 |
+
"está presente, Pretty Links Pro intentará actualizar enlaces existentes."
|
1987 |
|
1988 |
#: pro/app/views/import-export/import.php:4
|
1989 |
msgid "Import Results"
|
2938 |
msgid ""
|
2939 |
"Check this to hide the pretty link attribution link on the pretty bar.<br/><br/"
|
2940 |
"><strong>Wait, before you do this, you might want to leave this un-checked and "
|
2941 |
+
"set the alternate URL of this link to your <em>Pretty Links Pro</em> <a href="
|
2942 |
+
"\"https://prettylinks.com/affiliate-dashboard/\">Affiliate URL</a> to earn a "
|
2943 |
"few bucks while you are at it."
|
2944 |
msgstr ""
|
2945 |
"Marque eso para ocultar el pretty link de atribución en la pretty bar.<br/><br/"
|
2946 |
"><strong>Espere</strong>, antes de hacer esto, usted puede dejarlo sin equipaje "
|
2947 |
+
"y configurar la URL alternativa de este enlace a su <em>Pretty Links Pro</em> <a "
|
2948 |
+
"href=\"https://prettylinks.com/affiliate-dashboard/\">URL de Afiliado</a> para "
|
2949 |
"ganar unos cuantos dólares mientras está en el proceso."
|
2950 |
|
2951 |
#: pro/app/views/options/form.php:573
|
2959 |
#: pro/app/views/options/form.php:576
|
2960 |
msgid ""
|
2961 |
"If set, this will replace the Pretty Bars attribution URL. This is a very good "
|
2962 |
+
"place to put your <em>Pretty Links Pro</em> <a href=\"https://prettylinks.com/"
|
2963 |
"affiliate-dashboard/\">Affiliate Link</a>."
|
2964 |
msgstr ""
|
2965 |
"Si establece, esto va a reemplazar la URL de la atribución de Pretty Bars. Este "
|
2966 |
+
"es un muy buen lugar para poner su <em>Pretty Links Pro</em> <a href=\"https://"
|
2967 |
+
"prettylinks.com/affiliate-dashboard/\">Enlace Afiliado</a>."
|
2968 |
|
2969 |
#: pro/app/views/options/form.php:590
|
2970 |
msgid "Social Buttons Options"
|
images/pl-logo-horiz-RGB.svg
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
-
<svg version="1.1"
|
4 |
-
viewBox="
|
5 |
<style type="text/css">
|
6 |
.st0{fill:#4FD6F6;}
|
7 |
.st1{fill:#9AE8FA;}
|
@@ -15,61 +15,71 @@
|
|
15 |
</g>
|
16 |
<g id="Pantone_311_-_overprint">
|
17 |
</g>
|
18 |
-
<g>
|
19 |
-
<
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
<path class="st4" d="
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
<path class="st4" d="
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
<path class="st4" d="
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
</g>
|
75 |
</svg>
|
1 |
<?xml version="1.0" encoding="utf-8"?>
|
2 |
<!-- Generator: Adobe Illustrator 19.1.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
|
3 |
+
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
|
4 |
+
viewBox="0 0 565.2 90.5" style="enable-background:new 0 0 565.2 90.5;" xml:space="preserve">
|
5 |
<style type="text/css">
|
6 |
.st0{fill:#4FD6F6;}
|
7 |
.st1{fill:#9AE8FA;}
|
15 |
</g>
|
16 |
<g id="Pantone_311_-_overprint">
|
17 |
</g>
|
18 |
+
<g id="Pantone_319_-_overprint">
|
19 |
+
<g>
|
20 |
+
<path class="st0" d="M86,33.1c-1.9-1.9-2.8-4.4-2.9-7c-15-0.9-30-0.4-46,1.5c-1.3,0.2-2.2,1-2.3,1.7c-0.2,0.8,0.7,1.3,1,1.4
|
21 |
+
c6.8,3,10.3,4.8,16.6,8.4c0.5,0.3,1.1,0.4,1.8,0.4c3.2-0.2,6.4-0.4,9.5-0.5c10-0.3,19.7,0.1,29.1,1.1L86,33.1z"/>
|
22 |
+
<path class="st1" d="M101.8,49.5l-2.9-3c-10.7-1.6-21.5-2.4-32.3-2.2c0,0,0,0,0,0c-1,0-1.9,0.6-2.1,1.3c-0.3,0.7,0.2,1.4,0.7,1.7
|
23 |
+
c5.8,4,8.6,6.2,13.8,10.7c0.4,0.3,0.8,0.5,1.3,0.5c6.4,0.4,11.5,0.8,16.3,1.5L101.8,49.5z"/>
|
24 |
+
<path class="st2" d="M92.9,15.8c0.6,0,1.1,0,1.7,0.1l23,2.8l3.5-7C80.8,3.5,42.9,4.9,2.6,15.8c-1.5,0.5-2.5,1.5-2.6,2.3
|
25 |
+
c-0.1,0.7,1,1,1.3,1.1c7.8,1.8,11.7,3,19.2,5.5c0.7,0.2,1.5,0.3,2.3,0.1c13.8-2.6,27-4,40-4.4c7.3-0.2,14.6-0.1,21.9,0.4
|
26 |
+
C86.3,17.8,89.5,15.9,92.9,15.8z"/>
|
27 |
+
|
28 |
+
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="85.7738" y1="39.271" x2="172.0587" y2="39.271" gradientTransform="matrix(0.9992 -3.980000e-02 3.980000e-02 0.9992 2.4711 11.5374)">
|
29 |
+
<stop offset="0" style="stop-color:#FF8C00"/>
|
30 |
+
<stop offset="0.7" style="stop-color:#FFD200"/>
|
31 |
+
</linearGradient>
|
32 |
+
<path class="st3" d="M175.5,34.7c-0.4-1.9-1.9-3.3-3.8-3.5l-26.9-3.3l-4.3-24.2c-0.3-1.9-1.8-3.3-3.7-3.6
|
33 |
+
c-1.9-0.3-3.7,0.7-4.6,2.4l-11.3,22.5l-27-3.3c-1.9-0.2-3.7,0.7-4.5,2.4c-0.8,1.7-0.5,3.7,0.8,5.1l18.7,19.4L95.1,76.1l0,0l0,0
|
34 |
+
c-0.1,0.1-0.1,0.2-0.1,0.3c0,0.1-0.1,0.2-0.1,0.3c0,0.1-0.1,0.2-0.1,0.3c0,0.1-0.1,0.2-0.1,0.4c0,0.1,0,0.2,0,0.4
|
35 |
+
c0,0.1,0,0.2,0,0.4c0,0.1,0,0.2,0,0.3c0,0.1,0,0.2,0,0.3c0,0.1,0.1,0.2,0.1,0.3c0,0.1,0.1,0.2,0.1,0.4c0,0.1,0.1,0.2,0.1,0.3
|
36 |
+
c0.1,0.1,0.1,0.2,0.2,0.4c0,0.1,0.1,0.2,0.2,0.3c0.1,0.1,0.1,0.2,0.2,0.3c0.1,0.1,0.1,0.1,0.2,0.2c0.1,0.1,0.2,0.2,0.3,0.3
|
37 |
+
c0,0,0,0,0,0c0,0,0,0,0,0c0.2,0.2,0.4,0.3,0.5,0.4c0.1,0,0.1,0.1,0.2,0.1c0.1,0.1,0.3,0.2,0.4,0.2c0.1,0,0.2,0.1,0.3,0.1
|
38 |
+
c0.1,0,0.3,0.1,0.4,0.1c0.1,0,0.2,0,0.3,0.1c0.1,0,0.2,0.1,0.4,0.1c0,0,0,0,0,0c0.1,0,0.3,0,0.4,0c0.1,0,0.2,0,0.3,0
|
39 |
+
c0.2,0,0.3,0,0.5-0.1c0.1,0,0.2,0,0.2,0c0.2,0,0.4-0.1,0.5-0.2c0.1,0,0.1,0,0.2,0c0.2-0.1,0.4-0.2,0.7-0.3l25.4-15L147.3,89
|
40 |
+
c0.7,0.8,1.7,1.3,2.7,1.4c0.8,0.1,1.7,0,2.5-0.4c1.8-0.9,2.7-2.8,2.4-4.7l-5.6-31.6l24.1-14.2C175.1,38.4,175.9,36.5,175.5,34.7z"
|
41 |
+
/>
|
42 |
+
</g>
|
43 |
+
<g>
|
44 |
+
<path class="st4" d="M305.1,53.1c1.5,0,2.8-1.3,2.8-2.8c0-13-8.1-19-18.7-19c-11.2,0-19.2,8-19.2,19.2c0,11.8,8,19.4,19.5,19.4
|
45 |
+
c5.4,0,11.5-2,15.2-5.8c0.6-0.6,0.8-1.2,0.8-2c0-1.5-1.2-2.8-2.8-2.8c-0.8,0-1.5,0.3-2,0.8c-2.6,2.6-7.3,4-11.1,4
|
46 |
+
c-7.1,0-12.8-4.3-13.4-11.1L305.1,53.1z M276.2,47.9c1.1-7.1,6.7-11,13.1-11c7.3,0,12.2,3.9,12.5,11H276.2z"/>
|
47 |
+
<path class="st4" d="M216,31.4c-5.5,0-11,2.2-13.7,7.1l0-4.1c0-1.7-1.3-3.1-3-3.1c-1.7,0-3,1.4-3,3.1c0,0,0,47.7,0,49.3
|
48 |
+
c0,1.7,1.3,3.1,3,3.1c1.7,0,3-1.4,3-3.1c0-1.7,0-21.3,0-21.3c2.6,5,8.6,7.4,13.8,7.4c10.6,0,18.9-6.7,18.9-19.2
|
49 |
+
C234.9,38.3,226.7,31.4,216,31.4z M215.6,64.1c-7.3,0-13.1-5.5-13.1-13.4c0-8,5.7-13.4,13.1-13.4c7.2,0,13.1,4.9,13.1,13.4
|
50 |
+
C228.7,59.4,222.8,64.1,215.6,64.1z"/>
|
51 |
+
<path class="st4" d="M265.8,32.8c-2.1-1-4.1-1.5-6.6-1.5c-4.6,0-9.2,1.7-11.6,5.7v-2.7c0-1.6-1.3-3-3-3c-1.7,0-3,1.3-3,3
|
52 |
+
c0,0,0,30.8,0,32.5c0,1.7,1.4,3.1,3.1,3.1c1.7,0,3.1-1.4,3.1-3.1c0-1.7,0-18.3,0-18.3c0-7.1,3.9-11,11-11.1c1.7,0,3.1,0.3,4.5,1
|
53 |
+
c0.4,0.2,0.8,0.3,1.2,0.3c1.7,0,3-1.3,3-3C267.5,34.3,266.8,33.2,265.8,32.8z"/>
|
54 |
+
<path class="st4" d="M549.3,47.4c-4.7-0.5-9.2-1.5-9.3-5.3c-0.1-4,4.1-6,9.2-5.9c2.3,0,6.4,0.5,8.3,1.6l1.6,0.8l0,0
|
55 |
+
c0.4,0.2,0.8,0.3,1.2,0.3c1.6,0,2.8-1.3,2.8-2.8c0-1.2-0.8-2.2-1.8-2.6c-0.6-0.2-1.2-0.5-1.8-0.7c-3.4-1.2-7.1-1.8-10.5-1.8
|
56 |
+
c-7.1-0.1-15.3,3.2-15.2,11.2c0,7.9,7.8,9.6,15,10.6c5.8,0.6,10.4,1.8,10.3,5.9c-0.2,4.9-6,5.7-9.7,5.7c-3.3,0-6.8-0.8-9.8-2.3
|
57 |
+
l0,0c-0.4-0.2-0.9-0.3-1.4-0.3c-1.7,0-3,1.3-3,3c0,1.2,0.7,2.2,1.7,2.7l0,0c0,0,0,0,0.1,0c0,0,0.1,0,0.1,0
|
58 |
+
c3.9,1.8,7.5,2.6,12.2,2.6c8.4,0,15.7-3.5,15.9-11.2C565.4,49.6,556.1,48.3,549.3,47.4z"/>
|
59 |
+
<path class="st4" d="M336.1,66.5c0-1.5-1.2-2.7-2.7-2.7c-0.2,0-0.5,0-0.7,0.1c0,0,0,0,0,0c-0.8,0.2-1.6,0.3-2.4,0.3
|
60 |
+
c-4.4,0-5.9-2.8-5.9-7.1V37.5l7,0c1.5,0,2.6-1.2,2.6-2.6s-1.2-2.6-2.6-2.6l-6.9,0l0-7.8c0-1.7-1.4-3.1-3.1-3.1
|
61 |
+
c-1.7,0-3.1,1.4-3.1,3.1v7.8l-4.8,0c-1.5,0-2.6,1.2-2.6,2.6c0,1.5,1.2,2.6,2.6,2.6h4.8v19.6c0,8.2,3.8,12.8,11.7,12.7
|
62 |
+
c1.3,0,2.6-0.2,3.9-0.6c0,0,0,0,0,0c0.1,0,0.2-0.1,0.2-0.1C335.3,68.8,336.1,67.8,336.1,66.5z"/>
|
63 |
+
<path class="st4" d="M363.4,66.5c0-1.5-1.2-2.7-2.7-2.7c-0.2,0-0.5,0-0.7,0.1c0,0,0,0,0,0c-0.8,0.2-1.6,0.3-2.4,0.3
|
64 |
+
c-4.4,0-5.9-2.8-5.9-7.1V37.5h8.2c1.5,0,2.6-1.2,2.6-2.6s-1.2-2.6-2.6-2.6l-8.1,0l0-7.8c0-1.7-1.4-3.1-3.1-3.1
|
65 |
+
c-1.7,0-3.1,1.4-3.1,3.1v7.8l-4.8,0c-1.5,0-2.6,1.2-2.6,2.6s1.2,2.6,2.6,2.6h4.8v19.6c0,8.2,3.8,12.8,11.7,12.7
|
66 |
+
c1.3,0,2.6-0.2,3.9-0.6c0,0,0,0,0,0c0.1,0,0.2-0.1,0.2-0.1C362.6,68.8,363.4,67.8,363.4,66.5z"/>
|
67 |
+
<path class="st4" d="M403.2,34.4c0-1.7-1.4-3.2-3.2-3.2c-1.4,0-2.5,0.9-3,2.1l-11.1,28.8l-12-29l0,0c-0.5-1.1-1.6-1.8-2.8-1.8
|
68 |
+
c-1.7,0-3.2,1.4-3.2,3.2c0,0.4,0.1,0.8,0.2,1.2l0,0l14.1,33.1l-3.5,8.9c-1.8,3.9-5,3.8-8.2,2.4c0,0,0,0,0,0
|
69 |
+
c-0.4-0.2-0.7-0.3-1.2-0.3c-1.6,0-2.8,1.3-2.8,2.8c0,1.1,0.7,2.1,1.6,2.5l0,0c6.8,3.3,13.3,2.1,16.4-5.7l18.2-44
|
70 |
+
C403.2,35.2,403.2,34.8,403.2,34.4z"/>
|
71 |
+
<path class="st4" d="M475.9,31.5c-5,0-8.9,1.7-12.4,6.5l0-2.8c0-1.6-1.3-3-3-3c-1.6,0-3,1.3-3,3v31.8c0,1.7,1.4,3,3,3
|
72 |
+
c1.7,0,3-1.4,3-3l0-17.6c0-7.3,5-12,11.7-12c7.6,0,10.6,3.6,10.6,11.6c0,0,0,18,0,18c0,1.7,1.4,3.1,3.1,3.1s3.1-1.4,3.1-3.1V48.7
|
73 |
+
C492.1,37.8,486.7,31.5,475.9,31.5z"/>
|
74 |
+
<path class="st4" d="M515.8,47.6l13-10.9c0.6-0.5,0.9-1.2,0.9-2c0-1.4-1.2-2.6-2.6-2.6c-0.7,0-1.3,0.3-1.8,0.7L507,48.5l0-28.8
|
75 |
+
c0-1.7-1.4-3-3-3c-1.7,0-3,1.4-3,3v47.2c0,1.7,1.4,3,3,3c1.7,0,3-1.4,3-3l0-12.1l4.1-3.4l12.6,17.4c0.6,0.7,1.4,1.2,2.4,1.2
|
76 |
+
c1.7,0,3.1-1.4,3.1-3.1c0-0.7-0.2-1.3-0.6-1.8L515.8,47.6z"/>
|
77 |
+
<path class="st4" d="M426.1,16.7c-1.7,0-3,1.4-3,3l0,47.2c0,1.7,1.4,3,3,3s3-1.4,3-3V19.7C429.2,18,427.8,16.7,426.1,16.7z"/>
|
78 |
+
<g>
|
79 |
+
<path class="st4" d="M447.8,24.1c0-4.9-7.4-4.9-7.4-0.1C440.4,29,447.8,29,447.8,24.1z"/>
|
80 |
+
<path class="st4" d="M444,33.4c-1.7,0-3.1,1.4-3.1,3.1v30.3c0,1.7,1.4,3.1,3.1,3.1c1.7,0,3.1-1.4,3.1-3.1V36.5
|
81 |
+
C447.1,34.8,445.7,33.4,444,33.4z"/>
|
82 |
+
</g>
|
83 |
+
</g>
|
84 |
</g>
|
85 |
</svg>
|
pretty-link.php
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
-
Plugin Name: Pretty
|
4 |
-
Plugin URI: https://
|
5 |
Description: Shrink, track and share any URL on the Internet from your WordPress website!
|
6 |
-
Version: 2.1.
|
7 |
Author: Blair Williams
|
8 |
Author URI: http://blairwilliams.com
|
9 |
Text Domain: pretty-link
|
1 |
<?php
|
2 |
/*
|
3 |
+
Plugin Name: Pretty Links
|
4 |
+
Plugin URI: https://prettylinks.com/pl/plugin-uri
|
5 |
Description: Shrink, track and share any URL on the Internet from your WordPress website!
|
6 |
+
Version: 2.1.2
|
7 |
Author: Blair Williams
|
8 |
Author URI: http://blairwilliams.com
|
9 |
Text Domain: pretty-link
|
readme.txt
CHANGED
@@ -1,38 +1,38 @@
|
|
1 |
-
=== Pretty Link
|
2 |
Contributors: supercleanse
|
3 |
-
Donate link:
|
4 |
-
Tags: links, link, url, urls, affiliate, affiliates, pretty, marketing, redirect, forward, plugin, twitter, tweet, rewrite, shorturl, hoplink, hop, shortlink, short, shorten, click, clicks, track, tracking, tiny, tinyurl, budurl, shrinking, domain, shrink, mask, masking, cloak, cloaking, slug, slugs, admin, administration, stats, statistics, stat, statistic, email, ajax, javascript, ui, csv, download, page, post, pages, posts, shortcode, seo, automation, widget, widgets, dashboard
|
5 |
Requires at least: 4.7
|
6 |
Tested up to: 4.9
|
7 |
-
Stable tag: 2.1.
|
8 |
|
9 |
Shrink, beautify, track, manage and share any URL on or off of your WordPress website. Create links that look how you want using your own domain name!
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
-
= Pretty
|
14 |
|
15 |
-
[Upgrade to Pretty
|
16 |
|
17 |
-
*Pretty
|
18 |
|
19 |
-
[
|
20 |
|
21 |
-
= Pretty
|
22 |
|
23 |
-
Pretty
|
24 |
|
25 |
= Link Examples =
|
26 |
|
27 |
-
This is a link setup using Pretty
|
28 |
|
29 |
http://blairwilliams.com/pl
|
30 |
|
31 |
-
Here's a named
|
32 |
|
33 |
http://blairwilliams.com/aweber
|
34 |
|
35 |
-
Here's a link that Pretty
|
36 |
|
37 |
http://blairwilliams.com/w7a
|
38 |
|
@@ -48,13 +48,13 @@ http://blairwilliams.com/w7a
|
|
48 |
* Intuitive Javascript / AJAX Admin User Interface
|
49 |
* Pass custom parameters to your scripts through pretty link and still have full tracking ability
|
50 |
* Exclude IP Addresses from Stats
|
51 |
-
* Enables you to send your
|
52 |
-
* Select Temporary (302 or 307) or Permanent (301) redirection for your
|
53 |
* Cookie based system for tracking visitor activity across clicks
|
54 |
* Organize Links into Groups
|
55 |
* Create nofollow/noindex links
|
56 |
* Turn tracking on / off on each link
|
57 |
-
* Pretty
|
58 |
|
59 |
== Installation ==
|
60 |
|
@@ -139,44 +139,6 @@ http://blairwilliams.com/w7a
|
|
139 |
* PRO Removed the Twitter Badge option ... this is now handled better with the social share bar or through another plugin like Social Warfare
|
140 |
* PRO Removed the Auto-Tweet capability ... auto-tweeting is handled better on a service like Buffer or Hootsuite
|
141 |
|
142 |
-
= 1.6.5 =
|
143 |
-
* Fixed bug with some reports not showing
|
144 |
-
* Fixed twitter auto-posting issue
|
145 |
-
* Fixed scheduled posts not auto tweeting
|
146 |
-
* Upgraded code to work with PHP 5.4+
|
147 |
-
* Other minor bug fixes and code improvements
|
148 |
-
|
149 |
-
= 1.6.4 =
|
150 |
-
* i18n enhancements
|
151 |
-
* Small fix to auto tweeting in pro
|
152 |
-
* Fixed small IP address issue in hits
|
153 |
-
* Added help text
|
154 |
-
* Fixed small Google Analytics issue in pro
|
155 |
-
* Fixed issue with meta refresh / javascript redirect in pro
|
156 |
-
* Added titles to keywords in pro
|
157 |
-
* Added redirect header hooks in pro
|
158 |
-
* Security Fixes
|
159 |
-
|
160 |
-
= 1.6.3 =
|
161 |
-
* Security Fixes
|
162 |
-
* Removed Open Flash Charts in favor of Google Charts
|
163 |
-
* Fixed some javascript conflicts
|
164 |
-
|
165 |
-
= 1.6.2 =
|
166 |
-
* Additional Fixes
|
167 |
-
|
168 |
-
= 1.6.1 =
|
169 |
-
* Security Fixes
|
170 |
-
* Fixed some issues with Pretty Link running in WordPress Multisite
|
171 |
-
* Altered the way Keyword Replacements can be disabled on individual pages in Pro
|
172 |
-
* Fixed an issue with import feature in Pro
|
173 |
-
* Fixed an issue causing "ghost" update messages in Pro
|
174 |
-
* Updated browscap file for more accurate click tracking
|
175 |
-
* Fixed an issue that interfered with Pretty Link's option saving for some users
|
176 |
-
|
177 |
-
= 1.6.0 =
|
178 |
-
* *Fix* Fixed some potential security vulnerabilities
|
179 |
-
|
180 |
== Upgrade Notice ==
|
181 |
|
182 |
= 2.0.6 =
|
@@ -194,17 +156,3 @@ http://blairwilliams.com/w7a
|
|
194 |
= 2.0.0 =
|
195 |
* This is a major new release. To take advantage of the stability, security and performance fixes ... as well as the new features.
|
196 |
|
197 |
-
= 1.6.4 =
|
198 |
-
* This adds some security fixes. Everyone should upgrade.
|
199 |
-
|
200 |
-
= 1.6.3 =
|
201 |
-
* This adds some security fixes. Everyone should upgrade.
|
202 |
-
|
203 |
-
= 1.6.2 =
|
204 |
-
* Some additional fixes. Everyone should upgrade.
|
205 |
-
|
206 |
-
= 1.6.1 =
|
207 |
-
* This adds some security fixes. Everyone should upgrade.
|
208 |
-
|
209 |
-
= 1.6.0 =
|
210 |
-
* This adds some security fixes. Everyone should upgrade.
|
1 |
+
=== Shortlinks by Pretty Links - Best WordPress Link Tracking Plugin ===
|
2 |
Contributors: supercleanse
|
3 |
+
Donate link: https://prettylinks.com
|
4 |
+
Tags: links, link, url, urls, affiliate, affiliates, pretty, marketing, redirect, redirection, forward, plugin, twitter, tweet, rewrite, shorturl, hoplink, hop, shortlink, short, shorten, shortening, click, clicks, track, tracking, tiny, tinyurl, budurl, shrinking, domain, shrink, mask, masking, cloak, cloaking, slug, slugs, admin, administration, stats, statistics, stat, statistic, email, ajax, javascript, ui, csv, download, page, post, pages, posts, shortcode, seo, automation, widget, widgets, dashboard
|
5 |
Requires at least: 4.7
|
6 |
Tested up to: 4.9
|
7 |
+
Stable tag: 2.1.2
|
8 |
|
9 |
Shrink, beautify, track, manage and share any URL on or off of your WordPress website. Create links that look how you want using your own domain name!
|
10 |
|
11 |
== Description ==
|
12 |
|
13 |
+
= Pretty Links Pro =
|
14 |
|
15 |
+
[Upgrade to Pretty Links Pro](https://prettylinks.com/why-upgrade/ "Upgrade to Pretty Links Pro")
|
16 |
|
17 |
+
*Pretty Links Pro* is a **significant upgrade** that adds many tools and redirection types that will allow you to create pretty links automatically, cloak links, replace keywords thoughout your blog with pretty links and much more. You can learn more about *Pretty Links Pro* here:
|
18 |
|
19 |
+
[Learn More](https://prettylinks.com/about "Learn More") | [Pricing](https://prettylinks.com/pricing/plans/ "Pricing")
|
20 |
|
21 |
+
= Pretty Links =
|
22 |
|
23 |
+
Pretty Links enables you to shorten links using your own domain name (as opposed to using tinyurl.com, bit.ly, or any other link shrinking service)! In addition to creating clean links, Pretty Links tracks each hit on your URL and provides a full, detailed report of where the hit came from, the browser, os and host. Pretty Links is a killer plugin for people who want to clean up their affiliate links, track clicks from emails, their links on Twitter to come from their own domain, or generally increase the reach of their website by spreading these links on forums or comments on other blogs.
|
24 |
|
25 |
= Link Examples =
|
26 |
|
27 |
+
This is a link setup using Pretty Links that redirects to the Pretty Links Homepage where you can find more info about this Plugin:
|
28 |
|
29 |
http://blairwilliams.com/pl
|
30 |
|
31 |
+
Here's a named pretty link (I used the slug 'aweber') that does a 307 redirect to my affiliate link for aweber.com:
|
32 |
|
33 |
http://blairwilliams.com/aweber
|
34 |
|
35 |
+
Here's a link that Pretty Links generated a random slug for (similar to what bit.ly or tinyurl would do):
|
36 |
|
37 |
http://blairwilliams.com/w7a
|
38 |
|
48 |
* Intuitive Javascript / AJAX Admin User Interface
|
49 |
* Pass custom parameters to your scripts through pretty link and still have full tracking ability
|
50 |
* Exclude IP Addresses from Stats
|
51 |
+
* Enables you to send your pretty links via Email directly from your WordPress admin
|
52 |
+
* Select Temporary (302 or 307) or Permanent (301) redirection for your pretty links
|
53 |
* Cookie based system for tracking visitor activity across clicks
|
54 |
* Organize Links into Groups
|
55 |
* Create nofollow/noindex links
|
56 |
* Turn tracking on / off on each link
|
57 |
+
* Pretty Links Bookmarklet
|
58 |
|
59 |
== Installation ==
|
60 |
|
139 |
* PRO Removed the Twitter Badge option ... this is now handled better with the social share bar or through another plugin like Social Warfare
|
140 |
* PRO Removed the Auto-Tweet capability ... auto-tweeting is handled better on a service like Buffer or Hootsuite
|
141 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
142 |
== Upgrade Notice ==
|
143 |
|
144 |
= 2.0.6 =
|
156 |
= 2.0.0 =
|
157 |
* This is a major new release. To take advantage of the stability, security and performance fixes ... as well as the new features.
|
158 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|