Version Description
- UI Tweaks
- Pro: Fix auto-created links not using requested slug
- Pro: Link rotation weights of 1% supported now
Download this release
Release Info
Developer | cartpauj |
Plugin | Shortlinks by Pretty Links – Best WordPress Link Tracking Plugin |
Version | 3.2.1 |
Comparing to | |
See all releases |
Code changes from version 3.1.1 to 3.2.1
- app/controllers/PrliAppController.php +73 -19
- app/controllers/PrliFlyoutMenuController.php +99 -0
- app/controllers/PrliLinksController.php +39 -15
- app/controllers/PrliOnboardingController.php +6 -33
- app/controllers/PrliPopupController.php +3 -3
- app/controllers/PrliReviewNoticeController.php +111 -0
- app/controllers/PrliUpdateController.php +24 -0
- app/views/admin/onboarding/welcome.php +95 -81
- app/views/admin/update/license.php +1 -1
- app/views/admin/upgrade/categories.php +281 -0
- app/views/admin/upgrade/dialog.php +27 -0
- app/views/admin/upgrade/import-export.php +47 -0
- app/views/admin/upgrade/reports.php +48 -0
- app/views/admin/upgrade/tags.php +281 -0
- app/views/links/form_pro.php +96 -87
- app/views/options/form.php +723 -653
- css/admin_shared.css +470 -67
- css/settings_table.css +1 -0
- i18n/pretty-link.pot +2854 -2872
- images/Confetti.svg +1 -0
- images/PL-Categories.png +0 -0
- images/Swiss_Army_Knife.png +0 -0
- images/admin-flyout-active.svg +86 -0
- images/admin-flyout-default.svg +1 -0
- images/dynamic-redirect-types.jpg +0 -0
- images/import-export.png +0 -0
- images/plp-dialog-logo.svg +1 -0
- images/redirection-link-menu_324_original3.png +0 -0
- js/admin_shared.js +72 -0
- pretty-link.php +1 -1
- readme.txt +7 -2
app/controllers/PrliAppController.php
CHANGED
@@ -47,16 +47,69 @@ class PrliAppController extends PrliBaseController {
|
|
47 |
|
48 |
add_action('in_admin_header', array($this,'pl_admin_header'), 0);
|
49 |
|
|
|
|
|
50 |
// Admin footer text.
|
51 |
add_filter( 'admin_footer_text', array( $this, 'admin_footer' ), 1, 2 );
|
52 |
}
|
53 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
public function pl_admin_header() {
|
55 |
-
global $current_screen;
|
56 |
|
57 |
if($this->on_pretty_link_page()) {
|
|
|
|
|
|
|
|
|
58 |
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
<div id="pl-admin-header"><img class="pl-logo" src="<?php echo PRLI_IMAGES_URL . '/pretty-links-logo-color-white.svg'; ?>" /></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
60 |
<?php
|
61 |
}
|
62 |
}
|
@@ -78,35 +131,35 @@ class PrliAppController extends PrliBaseController {
|
|
78 |
if(!$plp_update->is_installed()) {
|
79 |
add_submenu_page(
|
80 |
"edit.php?post_type={$pl_link_cpt}",
|
81 |
-
esc_html__('Link Categories
|
82 |
-
esc_html__('Categories
|
83 |
$role,
|
84 |
-
"
|
85 |
-
|
86 |
);
|
87 |
add_submenu_page(
|
88 |
"edit.php?post_type={$pl_link_cpt}",
|
89 |
-
esc_html__('Link Tags
|
90 |
-
esc_html__('Tags
|
91 |
$role,
|
92 |
-
"
|
93 |
-
|
94 |
);
|
95 |
add_submenu_page(
|
96 |
"edit.php?post_type={$pl_link_cpt}",
|
97 |
-
esc_html__('Link Reports
|
98 |
-
esc_html__('Reports
|
99 |
$role,
|
100 |
-
"
|
101 |
-
|
102 |
);
|
103 |
add_submenu_page(
|
104 |
"edit.php?post_type={$pl_link_cpt}",
|
105 |
-
esc_html__('Import / Export
|
106 |
-
esc_html__('Import / Export
|
107 |
$role,
|
108 |
-
"
|
109 |
-
|
110 |
);
|
111 |
}
|
112 |
|
@@ -135,7 +188,6 @@ class PrliAppController extends PrliBaseController {
|
|
135 |
|
136 |
$onboarding_ctrl = new PrliOnboardingController();
|
137 |
add_submenu_page('options.php', __('Welcome', 'pretty-link'), null, $role, 'pretty-link-welcome', array($onboarding_ctrl, 'welcome_route'));
|
138 |
-
add_submenu_page('options.php', __("What's New", 'pretty-link'), null, $role, 'pretty-link-update', array($onboarding_ctrl, 'update_route'));
|
139 |
}
|
140 |
|
141 |
/**
|
@@ -221,6 +273,8 @@ class PrliAppController extends PrliBaseController {
|
|
221 |
$include_array = array(
|
222 |
$slug,
|
223 |
"post-new.php?post_type={$pl_link_cpt}",
|
|
|
|
|
224 |
"edit-tags.php?taxonomy={$categories_ctax}&post_type={$pl_link_cpt}",
|
225 |
'https://prettylinks.com/pl/main-menu/upgrade?categories',
|
226 |
"edit-tags.php?taxonomy={$tags_ctax}&post_type={$pl_link_cpt}",
|
@@ -235,7 +289,7 @@ class PrliAppController extends PrliBaseController {
|
|
235 |
'pretty-link-updates'
|
236 |
);
|
237 |
|
238 |
-
$i =
|
239 |
|
240 |
foreach($submenu[$slug] as $sub) {
|
241 |
$include_order = array_search($sub[2], $include_array);
|
47 |
|
48 |
add_action('in_admin_header', array($this,'pl_admin_header'), 0);
|
49 |
|
50 |
+
add_action( 'wp_ajax_pl_dismiss_upgrade_header', array( $this, 'dismiss_upgrade_header' ) );
|
51 |
+
|
52 |
// Admin footer text.
|
53 |
add_filter( 'admin_footer_text', array( $this, 'admin_footer' ), 1, 2 );
|
54 |
}
|
55 |
|
56 |
+
/**
|
57 |
+
* Dismisses the PL upgrade header bar.
|
58 |
+
*
|
59 |
+
* @return void
|
60 |
+
*/
|
61 |
+
public function dismiss_upgrade_header() {
|
62 |
+
|
63 |
+
// Security check
|
64 |
+
if ( empty( $_POST['nonce'] ) || ! wp_verify_nonce( $_POST['nonce'], 'pl_dismiss_upgrade_header' ) ) {
|
65 |
+
die();
|
66 |
+
}
|
67 |
+
|
68 |
+
update_option( 'pl_dismiss_upgrade_header', true );
|
69 |
+
}
|
70 |
+
|
71 |
+
|
72 |
public function pl_admin_header() {
|
73 |
+
global $current_screen, $plp_update;
|
74 |
|
75 |
if($this->on_pretty_link_page()) {
|
76 |
+
$dismissed = get_option( 'pl_dismiss_upgrade_header', false );
|
77 |
+
if ( ! empty( $dismissed ) ) {
|
78 |
+
return;
|
79 |
+
}
|
80 |
?>
|
81 |
+
<?php if ( ! $plp_update->is_installed() ) : ?>
|
82 |
+
<div class="pl-upgrade-header" id="pl-upgrade-header">
|
83 |
+
<span id="close-pl-upgrade-header">X</span>
|
84 |
+
<?php _e( 'You\'re using Pretty Links Lite. To unlock more features, consider <a href="https://prettylinks.com/pl/main-menu/upgrade?plugin-upgrade-header">upgrading to Pro.</a>', 'pretty-link' ); ?>
|
85 |
+
</div>
|
86 |
+
<?php endif; ?>
|
87 |
<div id="pl-admin-header"><img class="pl-logo" src="<?php echo PRLI_IMAGES_URL . '/pretty-links-logo-color-white.svg'; ?>" /></div>
|
88 |
+
<script>
|
89 |
+
jQuery(document).ready(function($) {
|
90 |
+
$('#close-pl-upgrade-header').click(function(event) {
|
91 |
+
var upgradeHeader = $('#pl-upgrade-header');
|
92 |
+
upgradeHeader.fadeOut();
|
93 |
+
$.ajax({
|
94 |
+
url: ajaxurl,
|
95 |
+
type: 'POST',
|
96 |
+
data: {
|
97 |
+
action: 'pl_dismiss_upgrade_header',
|
98 |
+
nonce: "<?php echo wp_create_nonce( 'pl_dismiss_upgrade_header' ); ?>"
|
99 |
+
},
|
100 |
+
})
|
101 |
+
.done(function() {
|
102 |
+
console.log("success");
|
103 |
+
})
|
104 |
+
.fail(function() {
|
105 |
+
console.log("error");
|
106 |
+
})
|
107 |
+
.always(function() {
|
108 |
+
console.log("complete");
|
109 |
+
});
|
110 |
+
});
|
111 |
+
});
|
112 |
+
</script>
|
113 |
<?php
|
114 |
}
|
115 |
}
|
131 |
if(!$plp_update->is_installed()) {
|
132 |
add_submenu_page(
|
133 |
"edit.php?post_type={$pl_link_cpt}",
|
134 |
+
esc_html__('Link Categories', 'pretty-link'),
|
135 |
+
esc_html__('Categories', 'pretty-link'),
|
136 |
$role,
|
137 |
+
"pretty-link-upgrade-categories",
|
138 |
+
array( $plp_update, 'upgrade_categories' )
|
139 |
);
|
140 |
add_submenu_page(
|
141 |
"edit.php?post_type={$pl_link_cpt}",
|
142 |
+
esc_html__('Link Tags', 'pretty-link'),
|
143 |
+
esc_html__('Tags', 'pretty-link'),
|
144 |
$role,
|
145 |
+
"pretty-link-upgrade-tags",
|
146 |
+
array( $plp_update, 'upgrade_tags' )
|
147 |
);
|
148 |
add_submenu_page(
|
149 |
"edit.php?post_type={$pl_link_cpt}",
|
150 |
+
esc_html__('Link Reports', 'pretty-link'),
|
151 |
+
esc_html__('Reports', 'pretty-link'),
|
152 |
$role,
|
153 |
+
"pretty-link-upgrade-reports",
|
154 |
+
array( $plp_update, 'upgrade_reports' )
|
155 |
);
|
156 |
add_submenu_page(
|
157 |
"edit.php?post_type={$pl_link_cpt}",
|
158 |
+
esc_html__('Import / Export', 'pretty-link'),
|
159 |
+
esc_html__('Import / Export', 'pretty-link'),
|
160 |
$role,
|
161 |
+
"pretty-link-upgrade-import-export",
|
162 |
+
array( $plp_update, 'upgrade_import_export' )
|
163 |
);
|
164 |
}
|
165 |
|
188 |
|
189 |
$onboarding_ctrl = new PrliOnboardingController();
|
190 |
add_submenu_page('options.php', __('Welcome', 'pretty-link'), null, $role, 'pretty-link-welcome', array($onboarding_ctrl, 'welcome_route'));
|
|
|
191 |
}
|
192 |
|
193 |
/**
|
273 |
$include_array = array(
|
274 |
$slug,
|
275 |
"post-new.php?post_type={$pl_link_cpt}",
|
276 |
+
"edit.php?post_type={$pl_link_cpt}&page=pretty-link-upgrade-categories",
|
277 |
+
"edit.php?post_type={$pl_link_cpt}&page=pretty-link-upgrade-tags",
|
278 |
"edit-tags.php?taxonomy={$categories_ctax}&post_type={$pl_link_cpt}",
|
279 |
'https://prettylinks.com/pl/main-menu/upgrade?categories',
|
280 |
"edit-tags.php?taxonomy={$tags_ctax}&post_type={$pl_link_cpt}",
|
289 |
'pretty-link-updates'
|
290 |
);
|
291 |
|
292 |
+
$i = count($include_array);
|
293 |
|
294 |
foreach($submenu[$slug] as $sub) {
|
295 |
$include_order = array_search($sub[2], $include_array);
|
app/controllers/PrliFlyoutMenuController.php
ADDED
@@ -0,0 +1,99 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Admin Flyout Menu.
|
5 |
+
*/
|
6 |
+
class PrliFlyoutMenuController {
|
7 |
+
|
8 |
+
public function load_hooks() {
|
9 |
+
add_action( 'admin_footer', array( $this, 'output' ) );
|
10 |
+
}
|
11 |
+
|
12 |
+
/**
|
13 |
+
* Output menu.
|
14 |
+
*
|
15 |
+
* @since 1.5.7
|
16 |
+
*/
|
17 |
+
public function output() {
|
18 |
+
|
19 |
+
if ( empty( $_GET['post_type'] ) || 'pretty-link' !== $_GET['post_type'] ) {
|
20 |
+
return;
|
21 |
+
}
|
22 |
+
|
23 |
+
printf(
|
24 |
+
'<div id="caseproof-flyout">
|
25 |
+
<div id="caseproof-flyout-items">
|
26 |
+
%1$s
|
27 |
+
</div>
|
28 |
+
<a href="#" class="caseproof-flyout-button caseproof-flyout-head">
|
29 |
+
<div class="caseproof-flyout-label">%2$s</div>
|
30 |
+
<img src="%3$s" alt="%2$s" data-active="%4$s" />
|
31 |
+
</a>
|
32 |
+
</div>',
|
33 |
+
$this->get_items_html(),
|
34 |
+
esc_attr__( 'See Quick Links', 'pretty-link' ),
|
35 |
+
esc_url( PRLI_IMAGES_URL . '/admin-flyout-default.svg' ),
|
36 |
+
esc_url( PRLI_IMAGES_URL . '/admin-flyout-active.svg' )
|
37 |
+
);
|
38 |
+
}
|
39 |
+
|
40 |
+
/**
|
41 |
+
* Generate menu items HTML.
|
42 |
+
*
|
43 |
+
* @since 1.5.7
|
44 |
+
*
|
45 |
+
* @return string Menu items HTML.
|
46 |
+
*/
|
47 |
+
private function get_items_html() {
|
48 |
+
|
49 |
+
$items = array_reverse( $this->menu_items() );
|
50 |
+
$items_html = '';
|
51 |
+
|
52 |
+
foreach ( $items as $item_key => $item ) {
|
53 |
+
$items_html .= sprintf(
|
54 |
+
'<a href="%1$s" target="_blank" rel="noopener noreferrer" class="caseproof-flyout-button caseproof-flyout-item caseproof-flyout-item-%2$d"%5$s%6$s>
|
55 |
+
<div class="caseproof-flyout-label">%3$s</div>
|
56 |
+
%4$s
|
57 |
+
</a>',
|
58 |
+
esc_url( $item['url'] ),
|
59 |
+
(int) $item_key,
|
60 |
+
esc_html( $item['title'] ),
|
61 |
+
$item['icon'],
|
62 |
+
! empty( $item['bgcolor'] ) ? ' style="background-color: ' . esc_attr( $item['bgcolor'] ) . '"' : '',
|
63 |
+
! empty( $item['hover_bgcolor'] ) ? ' onMouseOver="this.style.backgroundColor=\'' . esc_attr( $item['hover_bgcolor'] ) . '\'" onMouseOut="this.style.backgroundColor=\'' . esc_attr( $item['bgcolor'] ) . '\'"' : ''
|
64 |
+
);
|
65 |
+
}
|
66 |
+
|
67 |
+
return $items_html;
|
68 |
+
}
|
69 |
+
|
70 |
+
/**
|
71 |
+
* Menu items data.
|
72 |
+
*
|
73 |
+
* @since 1.5.7
|
74 |
+
*/
|
75 |
+
private function menu_items() {
|
76 |
+
|
77 |
+
$items = array(
|
78 |
+
array(
|
79 |
+
'title' => esc_html__( 'Upgrade to Pretty Links Pro', 'pretty-link' ),
|
80 |
+
'url' => 'https://prettylinks.com/pricing/plans/?utm_source=plugin_admin&utm_medium=link&utm_campaign=in_plugin&utm_content=quick_links_widget',
|
81 |
+
'icon' => '<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2" viewBox="0 0 51 45" xmlns="http://www.w3.org/2000/svg"><g fill="#fff" fill-rule="nonzero" transform="translate(-15.5823 -17.1195)"><path d="m52.6 36.6c-.3-.8-1-1.3-1.8-1.3l-11.5.1-3.3-10.1c-.2-.8-1-1.3-1.8-1.3s-1.5.5-1.9 1.3l-3.3 9.9-11.5.1c-.8 0-1.5.5-1.8 1.2s0 1.6.6 2l8.9 7.5-4.2 12.8s0 .1-.1.1c0 0 0 .1-.1.1v.9s0 .1.1.1c0 .1 0 .1.1.2 0 0 0 .1.1.1l.3.3c.1.1.2.1.2.2h.1c.1 0 .1.1.2.1h.1c.1 0 .1 0 .2.1h.9c.1 0 .2 0 .2-.1h.1c.1 0 .2-.1.3-.1l10.2-8.1 9.6 8.2c.3.3.8.4 1.2.5.4-.1.7-.1 1.1-.3.6-.5 1-1.3.7-2.1l-4.1-12.6 9.3-7.6c.9-.6 1.2-1.4.9-2.2"/><path d="m40.1 25.9 5.1 2.1 2.1 5.1c.2.3.6.5.9.3.1-.1.2-.2.3-.3l2.1-5.1 5.1-2.1c.3-.2.5-.6.3-.9-.1-.1-.2-.2-.3-.3l-5.1-2.1-2.1-5.1c-.2-.3-.6-.5-.9-.3-.1.1-.2.2-.3.3l-2.1 5.1-5.1 2.1c-.3.2-.5.6-.3.9.1.1.2.2.3.3"/><path d="m66 39.7-4.2-1.7-1.7-4.1c-.1-.3-.5-.4-.7-.2-.1.1-.2.1-.2.2l-1.8 4.1-4.1 1.7c-.3.1-.4.5-.2.7.1.1.1.2.2.2l4.1 1.7 1.7 4.1c.1.3.5.4.7.2.1-.1.2-.1.2-.2l1.7-4.1 4.1-1.7c.3-.1.4-.5.2-.7.2 0 .1-.1 0-.2z"/></g></svg>',
|
82 |
+
'bgcolor' => '#E1772F',
|
83 |
+
'hover_bgcolor' => '#ff8931',
|
84 |
+
),
|
85 |
+
array(
|
86 |
+
'title' => esc_html__( 'Support & Docs', 'pretty-link' ),
|
87 |
+
'url' => 'https://prettylinks.com/support/?utm_source=plugin_admin&utm_medium=link&utm_campaign=in_plugin&utm_content=quick_links_widget',
|
88 |
+
'icon' => '<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2" viewBox="0 0 42 37" xmlns="http://www.w3.org/2000/svg"><path d="m47.9 39.3v2.6c0 .5-.4 1-1 1h-4.6v4.6c0 .5-.4 1-1 1h-2.6c-.5 0-1-.4-1-1v-4.6h-4.6c-.5 0-1-.4-1-1v-2.6c0-.5.4-1 1-1h4.6v-4.6c0-.5.4-1 1-1h2.6c.5 0 1 .4 1 1v4.6h4.6c.5 0 1 .5 1 1m-24.4 13.1c-.3 0-.5-.2-.5-.5v-22.6c0-.3.2-.5.5-.5h33c.3 0 .5.2.5.5v22.6c0 .3-.2.5-.5.5zm12.6-28.8h7.9v1.3h-7.9zm20.9 1.3h-9.2v-1.3c0-2.2-1.8-3.9-3.9-3.9h-7.9c-2.2 0-3.9 1.8-3.9 3.9v1.3h-9.1c-2.2 0-3.9 1.8-3.9 3.9v23.6c0 2.2 1.8 3.9 3.9 3.9h34c2.2 0 3.9-1.8 3.9-3.9v-23.6c0-2.1-1.7-3.9-3.9-3.9" fill="#fff" fill-rule="nonzero" transform="translate(-19.1 -19.7)"/></svg>',
|
89 |
+
),
|
90 |
+
array(
|
91 |
+
'title' => esc_html__( 'Suggest a Feature', 'pretty-link' ),
|
92 |
+
'url' => 'https://prettylinks.com/contact/?utm_source=plugin_admin&utm_medium=link&utm_campaign=in_plugin&utm_content=quick_links_widget',
|
93 |
+
'icon' => '<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2" viewBox="0 0 53 43" xmlns="http://www.w3.org/2000/svg"><g fill="#fff" fill-rule="nonzero" transform="translate(-13.5 -19.9)"><path d="m22.8 35.7c0-1.1-.9-2-2-2h-5.3c-1.1 0-2 .9-2 2s.9 2 2 2h5.3c1.1 0 2-.9 2-2"/><path d="m64.5 33.7h-5.3c-1.1 0-2 .9-2 2s.9 2 2 2h5.3c1.1 0 2-.9 2-2s-1-2-2-2"/><path d="m22.4 43.6-4.6 2.6c-1 .5-1.3 1.7-.8 2.7s1.7 1.3 2.7.8h.1l4.6-2.6c.9-.6 1.2-1.8.7-2.7-.6-1-1.8-1.3-2.7-.8"/><path d="m56.6 28.1c.3 0 .7-.1 1-.3l4.6-2.6c.9-.6 1.2-1.8.7-2.7s-1.7-1.2-2.7-.7l-4.6 2.6c-.9.5-1.3 1.8-.7 2.7.3.6 1 1 1.7 1"/><path d="m24.5 24.5-4.6-2.7c-.9-.6-2.2-.3-2.7.7-.6.9-.3 2.2.7 2.7h.1l4.6 2.6c.9.6 2.2.3 2.7-.7s.1-2.1-.8-2.6"/><path d="m49.6 23.5c-2.7-2.3-6.1-3.6-9.6-3.6-8.4 0-14.5 6.9-14.5 14.5 0 3.5 1.3 6.9 3.6 9.6 1.4 1.6 3.5 4.9 4.3 7.6h4c0-.4-.1-.8-.2-1.2-.5-1.5-1.9-5.3-5.1-9.1-1.7-1.9-2.6-4.4-2.6-7 0-6.1 4.9-10.6 10.6-10.6 5.8 0 10.6 4.7 10.6 10.6 0 2.6-.9 5-2.6 7-3.2 3.7-4.7 7.6-5.1 9-.1.4-.2.8-.2 1.2h4c.8-2.8 3-6 4.3-7.6 5.1-6 4.5-15.2-1.5-20.4"/><path d="m33.4 57.8c0 .3.1.5.2.7l2 3c.2.4.7.6 1.1.6h6.5c.4 0 .9-.2 1.1-.6l2-3c.1-.2.2-.5.2-.7v-3.6h-13.1z"/><path d="m62.2 46.2-4.6-2.6c-.9-.6-2.2-.3-2.7.7-.6.9-.3 2.2.7 2.7h.1l4.6 2.6c1 .5 2.2.2 2.7-.8.4-.9.1-2-.8-2.6"/><path d="m40 26.5c-4.4 0-7.9 3.6-7.9 7.9 0 .7.6 1.3 1.3 1.3s1.3-.6 1.3-1.3c0-2.9 2.4-5.3 5.3-5.3.7 0 1.3-.6 1.3-1.3s-.6-1.3-1.3-1.3"/></g></svg>',
|
94 |
+
),
|
95 |
+
);
|
96 |
+
|
97 |
+
return $items;
|
98 |
+
}
|
99 |
+
}
|
app/controllers/PrliLinksController.php
CHANGED
@@ -121,7 +121,7 @@ class PrliLinksController extends PrliBaseController {
|
|
121 |
}
|
122 |
|
123 |
public function add_meta_boxes() {
|
124 |
-
global $post_id, $prli_link;
|
125 |
|
126 |
add_meta_box(
|
127 |
'pretty-link-settings',
|
@@ -130,6 +130,15 @@ class PrliLinksController extends PrliBaseController {
|
|
130 |
'normal', 'high'
|
131 |
);
|
132 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
133 |
remove_meta_box('slugdiv', PrliLink::$cpt, 'normal');
|
134 |
}
|
135 |
|
@@ -147,6 +156,21 @@ class PrliLinksController extends PrliBaseController {
|
|
147 |
require PRLI_VIEWS_PATH . '/links/form.php';
|
148 |
}
|
149 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
150 |
public function setup_new_vars() {
|
151 |
global $prli_link, $prli_options;
|
152 |
|
@@ -449,22 +473,22 @@ class PrliLinksController extends PrliBaseController {
|
|
449 |
$category_key = 'pro-pretty-link-category';
|
450 |
$tag_key = 'pro-pretty-link-tag';
|
451 |
$categories_label = $categories_label . ' ' .
|
452 |
-
|
453 |
-
'link
|
454 |
-
|
455 |
-
__('
|
456 |
-
|
457 |
$tags_label = $tags_label . ' ' .
|
458 |
-
|
459 |
-
'link
|
460 |
-
|
461 |
-
__('
|
462 |
-
|
463 |
$keywords_label = $keywords_label . ' ' .
|
464 |
-
|
465 |
-
'link
|
466 |
-
|
467 |
-
__('
|
468 |
);
|
469 |
}
|
470 |
|
121 |
}
|
122 |
|
123 |
public function add_meta_boxes() {
|
124 |
+
global $post_id, $prli_link, $plp_update;
|
125 |
|
126 |
add_meta_box(
|
127 |
'pretty-link-settings',
|
130 |
'normal', 'high'
|
131 |
);
|
132 |
|
133 |
+
if ( ! $plp_update->is_installed() ) {
|
134 |
+
add_meta_box(
|
135 |
+
'pretty-link-advanced-features',
|
136 |
+
esc_html__('Advanced Features', 'pretty-link'),
|
137 |
+
array($this, 'advanced_featured_meta_box'), PrliLink::$cpt,
|
138 |
+
'side', 'default'
|
139 |
+
);
|
140 |
+
}
|
141 |
+
|
142 |
remove_meta_box('slugdiv', PrliLink::$cpt, 'normal');
|
143 |
}
|
144 |
|
156 |
require PRLI_VIEWS_PATH . '/links/form.php';
|
157 |
}
|
158 |
|
159 |
+
public function advanced_featured_meta_box($post, $args) {
|
160 |
+
?>
|
161 |
+
<ul class="upgrade-features">
|
162 |
+
<li><?php esc_html_e( 'Advanced Redirect Types', 'pretty-link' ); ?></li>
|
163 |
+
<li><?php esc_html_e( 'Auto Create Pretty Links', 'pretty-link' ); ?></li>
|
164 |
+
<li><?php esc_html_e( 'Auto-Link Keywords', 'pretty-link' ); ?></li>
|
165 |
+
<li><?php esc_html_e( 'Support & Updates', 'pretty-link' ); ?></li>
|
166 |
+
<li><?php esc_html_e( 'Link Categories', 'pretty-link' ); ?></li>
|
167 |
+
<li><?php esc_html_e( 'Link Tags', 'pretty-link' ); ?></li>
|
168 |
+
<li><?php esc_html_e( 'Plus Much More!', 'pretty-link' ); ?></li>
|
169 |
+
</ul>
|
170 |
+
<a href="https://prettylinks.com/pl/pro-feature-indicator/upgrade?advanced-features" class="pretty-link-cta-button"><?php esc_html_e( 'Tell Me More', 'pretty-link' ); ?></a>
|
171 |
+
<?php
|
172 |
+
}
|
173 |
+
|
174 |
public function setup_new_vars() {
|
175 |
global $prli_link, $prli_options;
|
176 |
|
473 |
$category_key = 'pro-pretty-link-category';
|
474 |
$tag_key = 'pro-pretty-link-tag';
|
475 |
$categories_label = $categories_label . ' ' .
|
476 |
+
sprintf( '<span class="prli-pro-only-indicator" title="%1$s"><a href="%2$s">%3$s</a></span>',
|
477 |
+
__('Upgrade to a Pretty Links premium plan to get Link Categories', 'pretty-link'),
|
478 |
+
admin_url( 'edit.php?post_type=pretty-link&page=pretty-link-upgrade-categories' ),
|
479 |
+
__('Pro', 'pretty-link')
|
480 |
+
);
|
481 |
$tags_label = $tags_label . ' ' .
|
482 |
+
sprintf( '<span class="prli-pro-only-indicator" title="%1$s"><a href="%2$s">%3$s</a></span>',
|
483 |
+
__('Upgrade to a Pretty Links premium plan to get Link Tags', 'pretty-link'),
|
484 |
+
admin_url( 'edit.php?post_type=pretty-link&page=pretty-link-upgrade-tags' ),
|
485 |
+
__('Pro', 'pretty-link')
|
486 |
+
);
|
487 |
$keywords_label = $keywords_label . ' ' .
|
488 |
+
sprintf( '<span class="prli-pro-only-indicator" title="%1$s"><a href="%2$s">%3$s</a></span>',
|
489 |
+
__('Upgrade to a Pretty Links premium plan to get Keyword Replacements', 'pretty-link'),
|
490 |
+
admin_url( 'edit.php?post_type=pretty-link&page=pretty-link-updates#prli_upgrade' ),
|
491 |
+
__('Pro', 'pretty-link')
|
492 |
);
|
493 |
}
|
494 |
|
app/controllers/PrliOnboardingController.php
CHANGED
@@ -15,13 +15,7 @@ class PrliOnboardingController extends PrliBaseController {
|
|
15 |
return;
|
16 |
}
|
17 |
|
18 |
-
if
|
19 |
-
// existing install
|
20 |
-
if ($this->is_major_update()) {
|
21 |
-
update_option('prli_onboard', 'update');
|
22 |
-
wp_cache_delete('alloptions', 'options');
|
23 |
-
}
|
24 |
-
} else {
|
25 |
// fresh install
|
26 |
update_option('prli_onboard', 'welcome');
|
27 |
wp_cache_delete('alloptions', 'options');
|
@@ -31,37 +25,16 @@ class PrliOnboardingController extends PrliBaseController {
|
|
31 |
wp_cache_delete('alloptions', 'options');
|
32 |
}
|
33 |
|
34 |
-
protected function is_major_update() {
|
35 |
-
$oldVersion = get_option('prli_version');
|
36 |
-
|
37 |
-
if (empty($oldVersion)) {
|
38 |
-
return true;
|
39 |
-
}
|
40 |
-
|
41 |
-
list($oldMajor, $oldMinor) = explode('.', $oldVersion);
|
42 |
-
list($newMajor, $newMinor) = explode('.', PRLI_VERSION);
|
43 |
-
|
44 |
-
return $newMajor > $oldMajor || ($newMajor == $oldMajor && $newMinor > $oldMinor);
|
45 |
-
}
|
46 |
-
|
47 |
public function onboarding_intercept() {
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
nocache_headers();
|
54 |
-
wp_redirect(admin_url("admin.php?page=pretty-link-{$onboard}"), 307);
|
55 |
-
exit;
|
56 |
-
}
|
57 |
}
|
58 |
}
|
59 |
|
60 |
public function welcome_route() {
|
61 |
require_once PRLI_VIEWS_PATH . '/admin/onboarding/welcome.php';
|
62 |
}
|
63 |
-
|
64 |
-
public function update_route() {
|
65 |
-
require_once PRLI_VIEWS_PATH . '/admin/onboarding/update.php';
|
66 |
-
}
|
67 |
}
|
15 |
return;
|
16 |
}
|
17 |
|
18 |
+
if(!get_option('prli_db_version')) {
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
// fresh install
|
20 |
update_option('prli_onboard', 'welcome');
|
21 |
wp_cache_delete('alloptions', 'options');
|
25 |
wp_cache_delete('alloptions', 'options');
|
26 |
}
|
27 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
public function onboarding_intercept() {
|
29 |
+
if(get_option('prli_onboard') == 'welcome' && delete_option('prli_onboard')) {
|
30 |
+
wp_cache_delete('alloptions', 'options');
|
31 |
+
nocache_headers();
|
32 |
+
wp_redirect(admin_url("admin.php?page=pretty-link-welcome"), 307);
|
33 |
+
exit;
|
|
|
|
|
|
|
|
|
34 |
}
|
35 |
}
|
36 |
|
37 |
public function welcome_route() {
|
38 |
require_once PRLI_VIEWS_PATH . '/admin/onboarding/welcome.php';
|
39 |
}
|
|
|
|
|
|
|
|
|
40 |
}
|
app/controllers/PrliPopupController.php
CHANGED
@@ -6,7 +6,7 @@ class PrliPopupController extends PrliBaseController {
|
|
6 |
// This is an array of the currently defined popups ...
|
7 |
// used to validate that the popup specified actually exists
|
8 |
$this->popups = array(
|
9 |
-
'rating' => array(
|
10 |
'after_usage' => array(
|
11 |
'links' => 1,
|
12 |
'clicks' => 5
|
@@ -25,7 +25,7 @@ class PrliPopupController extends PrliBaseController {
|
|
25 |
'lite_only_popup' => true,
|
26 |
'delay' => 2*WEEK_IN_SECONDS,
|
27 |
'delay_after_last_popup' => DAY_IN_SECONDS,
|
28 |
-
)
|
29 |
);
|
30 |
}
|
31 |
|
@@ -75,7 +75,7 @@ class PrliPopupController extends PrliBaseController {
|
|
75 |
if(!$this->on_pretty_link_page()) { return; }
|
76 |
|
77 |
// Bail on update/welcome page
|
78 |
-
if (isset($_GET['page']) && ($_GET['page'] == 'pretty-link-welcome' || $_GET['page'] == 'pretty-link-
|
79 |
|
80 |
// If this isn't a Pretty Link authorized user then bail
|
81 |
if(!PrliUtils::is_authorized()) { return; }
|
6 |
// This is an array of the currently defined popups ...
|
7 |
// used to validate that the popup specified actually exists
|
8 |
$this->popups = array(
|
9 |
+
/*'rating' => array(
|
10 |
'after_usage' => array(
|
11 |
'links' => 1,
|
12 |
'clicks' => 5
|
25 |
'lite_only_popup' => true,
|
26 |
'delay' => 2*WEEK_IN_SECONDS,
|
27 |
'delay_after_last_popup' => DAY_IN_SECONDS,
|
28 |
+
),*/
|
29 |
);
|
30 |
}
|
31 |
|
75 |
if(!$this->on_pretty_link_page()) { return; }
|
76 |
|
77 |
// Bail on update/welcome page
|
78 |
+
if (isset($_GET['page']) && ($_GET['page'] == 'pretty-link-welcome' || $_GET['page'] == 'pretty-link-updates')) { return;}
|
79 |
|
80 |
// If this isn't a Pretty Link authorized user then bail
|
81 |
if(!PrliUtils::is_authorized()) { return; }
|
app/controllers/PrliReviewNoticeController.php
ADDED
@@ -0,0 +1,111 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Review admin notice.
|
5 |
+
*/
|
6 |
+
class PrliReviewNoticeController {
|
7 |
+
|
8 |
+
public function load_hooks() {
|
9 |
+
add_action( 'admin_notices', array( $this, 'review_notice' ) );
|
10 |
+
add_action( 'wp_ajax_pl_dismiss_review_prompt', array( $this, 'dismiss_review_prompt' ) );
|
11 |
+
}
|
12 |
+
|
13 |
+
public function dismiss_review_prompt() {
|
14 |
+
|
15 |
+
if ( empty( $_POST['nonce'] ) || ! wp_verify_nonce( $_POST['nonce'], 'pl_dismiss_review_prompt' ) ) {
|
16 |
+
die('Failed');
|
17 |
+
}
|
18 |
+
|
19 |
+
if ( ! empty( $_POST['type'] ) ) {
|
20 |
+
if ( 'remove' === $_POST['type'] ) {
|
21 |
+
update_option( 'pl_review_prompt_removed', true );
|
22 |
+
wp_send_json_success( array(
|
23 |
+
'status' => 'removed'
|
24 |
+
) );
|
25 |
+
} else if ( 'delay' === $_POST['type'] ) {
|
26 |
+
set_transient( 'pl_review_prompt_delay', true, WEEK_IN_SECONDS );
|
27 |
+
wp_send_json_success( array(
|
28 |
+
'status' => 'delayed'
|
29 |
+
) );
|
30 |
+
}
|
31 |
+
}
|
32 |
+
}
|
33 |
+
|
34 |
+
public function review_notice() {
|
35 |
+
|
36 |
+
// Only show to admins
|
37 |
+
if ( ! current_user_can( 'manage_options' ) ) {
|
38 |
+
return;
|
39 |
+
}
|
40 |
+
|
41 |
+
// Notice has been removed or delayed
|
42 |
+
if ( get_option( 'pl_review_prompt_removed' ) || get_transient( 'pl_review_prompt_delay' ) ) {
|
43 |
+
return;
|
44 |
+
}
|
45 |
+
|
46 |
+
// Don't bother if haven't been using long enough
|
47 |
+
global $wpdb;
|
48 |
+
$click_count = $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->prefix}prli_clicks" );
|
49 |
+
if ( empty( $click_count ) ) {
|
50 |
+
return;
|
51 |
+
}
|
52 |
+
|
53 |
+
?>
|
54 |
+
<div class="notice notice-info is-dismissible prli-review-notice" id="prli_review_notice">
|
55 |
+
<div id="prli_review_intro">
|
56 |
+
<p><?php _e( 'Are you enjoying using Pretty Links?', 'pretty-link' ); ?></p>
|
57 |
+
<p><a data-review-selection="yes" class="prli-review-selection" href="#">Yes, I love it</a> 🙂 | <a data-review-selection="no" class="prli-review-selection" href="#">Not really...</a></p>
|
58 |
+
</div>
|
59 |
+
<div id="prli_review_yes" style="display: none;">
|
60 |
+
<p><?php _e( 'That\'s awesome! Could you please do me a BIG favor and give it a 5-star rating on WordPress to help us spread the word and boost our motivation?', 'pretty-link' ); ?></p>
|
61 |
+
<p style="font-weight: bold;">~ Blair Williams<br>Founder & CEO of Pretty Links</p>
|
62 |
+
<p>
|
63 |
+
<a style="display: inline-block; margin-right: 10px;" href="https://wordpress.org/support/plugin/pretty-link/reviews/?filter=5#new-post" onclick="delayReviewPrompt('remove')" target="_blank"><?php esc_html_e( 'Okay, you deserve it', 'pretty-link' ); ?></a>
|
64 |
+
<a style="display: inline-block; margin-right: 10px;" href="#" onclick="delayReviewPrompt('delay')"><?php esc_html_e( 'Nope, maybe later', 'pretty-link' ); ?></a>
|
65 |
+
<a href="#" onclick="delayReviewPrompt('remove')"><?php esc_html_e( 'I already did', 'pretty-link' ); ?></a>
|
66 |
+
</p>
|
67 |
+
</div>
|
68 |
+
<div id="prli_review_no" style="display: none;">
|
69 |
+
<p><?php _e( 'We\'re sorry to hear you aren\'t enjoying Pretty Links. We would love a chance to improve. Could you take a minute and let us know what we can do better?', 'pretty-link' ); ?></p>
|
70 |
+
<p>
|
71 |
+
<a style="display: inline-block; margin-right: 10px;" href="https://prettylinks.com/feedback/?utm_source=plugin_admin&utm_medium=link&utm_campaign=in_plugin&utm_content=request_review" onclick="delayReviewPrompt('remove')" target="_blank"><?php esc_html_e( 'Give Feedback', 'pretty-link' ); ?></a>
|
72 |
+
<a href="#" onclick="delayReviewPrompt('delay')"><?php esc_html_e( 'No thanks', 'pretty-link' ); ?></a>
|
73 |
+
</p>
|
74 |
+
</div>
|
75 |
+
</div>
|
76 |
+
<script>
|
77 |
+
|
78 |
+
function delayReviewPrompt(type, triggerClick = true) {
|
79 |
+
if ( triggerClick ) {
|
80 |
+
jQuery('#prli_review_notice').fadeOut();
|
81 |
+
}
|
82 |
+
jQuery.ajax({
|
83 |
+
url: ajaxurl,
|
84 |
+
type: 'POST',
|
85 |
+
data: {
|
86 |
+
action: 'pl_dismiss_review_prompt',
|
87 |
+
nonce: "<?php echo wp_create_nonce( 'pl_dismiss_review_prompt' ) ?>",
|
88 |
+
type: type
|
89 |
+
},
|
90 |
+
})
|
91 |
+
.done(function(data) {
|
92 |
+
|
93 |
+
});
|
94 |
+
}
|
95 |
+
|
96 |
+
jQuery(document).ready(function($) {
|
97 |
+
$('.prli-review-selection').click(function(event) {
|
98 |
+
event.preventDefault();
|
99 |
+
var $this = $(this);
|
100 |
+
var selection = $this.data('review-selection');
|
101 |
+
$('#prli_review_intro').hide();
|
102 |
+
$('#prli_review_' + selection).show();
|
103 |
+
});
|
104 |
+
$('body').on('click', '#prli_review_notice .notice-dismiss', function(event) {
|
105 |
+
delayReviewPrompt('delay', false);
|
106 |
+
});
|
107 |
+
});
|
108 |
+
</script>
|
109 |
+
<?php
|
110 |
+
}
|
111 |
+
}
|
app/controllers/PrliUpdateController.php
CHANGED
@@ -488,5 +488,29 @@ class PrliUpdateController {
|
|
488 |
exit;
|
489 |
}
|
490 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
491 |
} //End class
|
492 |
|
488 |
exit;
|
489 |
}
|
490 |
|
491 |
+
public function upgrade_categories() {
|
492 |
+
$section_title = esc_html__( 'Link Categories', 'pretty-link' );
|
493 |
+
$upgrade_link = 'https://prettylinks.com/pl/main-menu/upgrade?categories';
|
494 |
+
include_once PRLI_VIEWS_PATH . "/admin/upgrade/categories.php";
|
495 |
+
}
|
496 |
+
|
497 |
+
public function upgrade_tags() {
|
498 |
+
$section_title = esc_html__( 'Link Tags', 'pretty-link' );
|
499 |
+
$upgrade_link = 'https://prettylinks.com/pl/main-menu/upgrade?tags';
|
500 |
+
include_once PRLI_VIEWS_PATH . "/admin/upgrade/tags.php";
|
501 |
+
}
|
502 |
+
|
503 |
+
public function upgrade_reports() {
|
504 |
+
$section_title = esc_html__( 'Link Reports', 'pretty-link' );
|
505 |
+
$upgrade_link = 'https://prettylinks.com/pl/main-menu/upgrade?reports';
|
506 |
+
include_once PRLI_VIEWS_PATH . "/admin/upgrade/reports.php";
|
507 |
+
}
|
508 |
+
|
509 |
+
public function upgrade_import_export() {
|
510 |
+
$section_title = esc_html__( 'Import / Export', 'pretty-link' );
|
511 |
+
$upgrade_link = 'https://prettylinks.com/pl/main-menu/upgrade?import-export';
|
512 |
+
include_once PRLI_VIEWS_PATH . "/admin/upgrade/import-export.php";
|
513 |
+
}
|
514 |
+
|
515 |
} //End class
|
516 |
|
app/views/admin/onboarding/welcome.php
CHANGED
@@ -1,120 +1,134 @@
|
|
1 |
<?php if(!defined('ABSPATH')) { die('You are not allowed to call this page directly.'); } ?>
|
2 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
<div class="wrap prli-welcome">
|
4 |
-
<
|
5 |
|
6 |
<div class="prli-welcome-badge">
|
7 |
-
<img src="<?php echo PRLI_IMAGES_URL . '/
|
8 |
</div>
|
9 |
|
10 |
<p class="prli-welcome-about"><?php esc_html_e('Congratulations, you\'ve just installed the most powerful link management platform for WordPress on Earth!', 'pretty-link'); ?></p>
|
11 |
<p class="prli-welcome-about"><?php esc_html_e('With Pretty Links, you\'ll no longer need to manage links from a spreadsheet and you\'ll be able to maximize the visibility of your links - these benefits (and more) will make it possible to make more money from your content like never before!', 'pretty-link'); ?></p>
|
12 |
|
13 |
-
<hr>
|
14 |
-
|
15 |
<div class="prli-center-section">
|
16 |
-
<
|
17 |
-
<h2><?php esc_html_e('Getting Started', 'pretty-link'); ?></h2>
|
18 |
<p><?php esc_html_e('Start by creating your first Pretty Link:', 'pretty-link'); ?></p>
|
19 |
</div>
|
20 |
|
21 |
<div class="prli-center-section">
|
22 |
-
|
23 |
-
<
|
24 |
-
<
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
|
32 |
-
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
|
45 |
<p><?php esc_html_e('Wasn\'t that easy? Now, you can use this link wherever you want!', 'pretty-link'); ?></p>
|
46 |
|
47 |
</div>
|
48 |
|
49 |
-
<
|
50 |
|
51 |
-
<div class="prli-
|
52 |
-
<
|
53 |
-
<h2><?php esc_html_e('The Power of Pretty Links Pro', 'pretty-link'); ?></h2>
|
54 |
-
<p><?php esc_html_e('There are many reasons that premium users of Pretty Links are able to take their business to the next level:', 'pretty-link'); ?></p>
|
55 |
-
</div>
|
56 |
-
|
57 |
-
<div class="prli-center-section prli-row prli-2-columns prli-is-wider-left">
|
58 |
-
<div class="prli-column prli-align-vertically">
|
59 |
-
<h3><?php esc_html_e('Automated, Site-Wide Link Placement (Keyword Replacement)', 'pretty-link'); ?></h3>
|
60 |
-
<p><?php esc_html_e('Imagine if you never had to hand-edit links, copy and paste from a spreadsheet, or actively have to keep up with you links ever again. Well that time has come! Now with Pretty Links, all you have to do is create your links and let Pretty Links do the rest!', 'pretty-link'); ?></p>
|
61 |
-
<p><?php esc_html_e('Pretty Links will scan your content for the keywords or URLs that you want to target and will replace them with Pretty Links automatically! This will save you tons of time so you can focus on growing your business!', 'pretty-link'); ?></p>
|
62 |
-
</div>
|
63 |
-
<div class="prli-column">
|
64 |
-
<img src="<?php echo PRLI_IMAGES_URL . '/welcome-link.png'; ?>" alt="<?php esc_attr_e('Automated, Site-Wide Link Placement (Keyword Replacement)', 'pretty-link'); ?>">
|
65 |
-
</div>
|
66 |
</div>
|
67 |
|
68 |
-
<div class="prli-center-section
|
69 |
-
<
|
70 |
-
<img src="<?php echo PRLI_IMAGES_URL . '/welcome-categories.png'; ?>" alt="<?php esc_attr_e('Categories & Tags', 'pretty-link'); ?>">
|
71 |
-
</div>
|
72 |
-
<div class="prli-column prli-align-vertically">
|
73 |
-
<h3><?php esc_html_e('Categories & Tags', 'pretty-link'); ?></h3>
|
74 |
-
<p><?php esc_html_e('When you are dealing with a large number of links, it can be easy to be overwhelmed and confused by which links to you planned to use where. It\'s now easier than ever to organize your links and group them any way that you like for ultimate productivity and monetization!', 'pretty-link'); ?></p>
|
75 |
-
</div>
|
76 |
</div>
|
77 |
|
78 |
-
<div class="
|
79 |
-
<div class="
|
80 |
-
<
|
81 |
-
<
|
82 |
-
|
|
|
|
|
|
|
|
|
|
|
83 |
</div>
|
84 |
-
<div class="
|
85 |
-
<img src="<?php echo PRLI_IMAGES_URL . '/
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
</div>
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
<p><?php esc_html_e('This feature is excellent if you are running a time-sensitive sales, want to create custom content for you customers, create stellar landing pages for customers in different countries!', 'pretty-link'); ?></p>
|
97 |
</div>
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
|
|
|
|
|
|
104 |
</div>
|
105 |
-
<div class="
|
106 |
-
<img src="<?php echo PRLI_IMAGES_URL . '/
|
|
|
|
|
|
|
|
|
|
|
|
|
107 |
</div>
|
108 |
</div>
|
109 |
|
110 |
<div class="prli-center-section">
|
111 |
-
<h3><?php esc_html_e('The list goes on and on', 'pretty-link'); ?></h3>
|
112 |
-
<p><?php
|
113 |
</div>
|
114 |
|
115 |
<div class="prli-center-section prli-button-section">
|
116 |
-
<a href="https://prettylinks.com/pl/welcome-page/upgrade" class="button button-primary"><?php esc_html_e('Upgrade to Pro', 'pretty-link'); ?></a>
|
117 |
-
<p><?php esc_html_e('Upgrade NOW and get 50
|
118 |
</div>
|
119 |
|
120 |
</div>
|
1 |
<?php if(!defined('ABSPATH')) { die('You are not allowed to call this page directly.'); } ?>
|
2 |
|
3 |
+
<style>
|
4 |
+
.notice,
|
5 |
+
.error {
|
6 |
+
display: none;
|
7 |
+
}
|
8 |
+
|
9 |
+
.prli-welcome {
|
10 |
+
background-image: url("<?php echo PRLI_IMAGES_URL . '/Confetti.svg'; ?>");
|
11 |
+
}
|
12 |
+
</style>
|
13 |
+
|
14 |
<div class="wrap prli-welcome">
|
15 |
+
<div class="pre-badge"><?php esc_html_e('Welcome to', 'pretty-link'); ?></div>
|
16 |
|
17 |
<div class="prli-welcome-badge">
|
18 |
+
<img src="<?php echo PRLI_IMAGES_URL . '/pl-logo-horiz-RGB.svg'; ?>" alt="<?php esc_attr_e('Welcome to Pretty Links!', 'pretty-link'); ?>">
|
19 |
</div>
|
20 |
|
21 |
<p class="prli-welcome-about"><?php esc_html_e('Congratulations, you\'ve just installed the most powerful link management platform for WordPress on Earth!', 'pretty-link'); ?></p>
|
22 |
<p class="prli-welcome-about"><?php esc_html_e('With Pretty Links, you\'ll no longer need to manage links from a spreadsheet and you\'ll be able to maximize the visibility of your links - these benefits (and more) will make it possible to make more money from your content like never before!', 'pretty-link'); ?></p>
|
23 |
|
|
|
|
|
24 |
<div class="prli-center-section">
|
25 |
+
<h2><?php esc_html_e('Getting Started is Easy', 'pretty-link'); ?></h2>
|
|
|
26 |
<p><?php esc_html_e('Start by creating your first Pretty Link:', 'pretty-link'); ?></p>
|
27 |
</div>
|
28 |
|
29 |
<div class="prli-center-section">
|
30 |
+
|
31 |
+
<div class="prli-welcome-steps">
|
32 |
+
<div class="prli-welcome-step">
|
33 |
+
<span class="welcome-step-number">1</span>
|
34 |
+
<img src="<?php echo PRLI_IMAGES_URL . '/welcome-add-new.png'; ?>" alt="<?php esc_attr_e('Click "Add New Link"', 'pretty-link'); ?>">
|
35 |
+
<?php esc_html_e('Click "Add New Link"', 'pretty-link'); ?>
|
36 |
+
</div>
|
37 |
+
<div class="prli-welcome-step">
|
38 |
+
<span class="welcome-step-number">2</span>
|
39 |
+
<img src="<?php echo PRLI_IMAGES_URL . '/welcome-enter-url.png'; ?>" alt="<?php esc_attr_e('Enter the URL of your Affiliate Link', 'pretty-link'); ?>">
|
40 |
+
<?php esc_html_e('Enter the URL of your Affiliate Link', 'pretty-link'); ?>
|
41 |
+
</div>
|
42 |
+
<div class="prli-welcome-step">
|
43 |
+
<span class="welcome-step-number">3</span>
|
44 |
+
<img src="<?php echo PRLI_IMAGES_URL . '/welcome-customize-slug.png'; ?>" alt="<?php esc_attr_e('Customize your Pretty Link Slug', 'pretty-link'); ?>">
|
45 |
+
<?php esc_html_e('Customize your Pretty Link Slug', 'pretty-link'); ?>
|
46 |
+
</div>
|
47 |
+
<div class="prli-welcome-step">
|
48 |
+
<span class="welcome-step-number">4</span>
|
49 |
+
<img src="<?php echo PRLI_IMAGES_URL . '/welcome-click-update.png'; ?>" alt="<?php esc_attr_e('Click "Update"', 'pretty-link'); ?>">
|
50 |
+
<?php esc_html_e('Click "Update"', 'pretty-link'); ?>
|
51 |
+
</div>
|
52 |
+
<div class="prli-welcome-step">
|
53 |
+
<span class="welcome-step-number">5</span>
|
54 |
+
<img class="prli-welcome-step" src="<?php echo PRLI_IMAGES_URL . '/welcome-copy-url.png'; ?>" alt="<?php esc_attr_e('Copy the Pretty Link URL', 'pretty-link'); ?>">
|
55 |
+
<?php esc_html_e('Copy the Pretty Link URL', 'pretty-link'); ?>
|
56 |
+
</div>
|
57 |
+
</div>
|
58 |
|
59 |
<p><?php esc_html_e('Wasn\'t that easy? Now, you can use this link wherever you want!', 'pretty-link'); ?></p>
|
60 |
|
61 |
</div>
|
62 |
|
63 |
+
<div class="pre-badge"><?php esc_html_e('The Power of', 'pretty-link'); ?></div>
|
64 |
|
65 |
+
<div class="prli-welcome-badge">
|
66 |
+
<img src="<?php echo PRLI_IMAGES_URL . '/plp-dialog-logo.svg'; ?>" alt="<?php esc_attr_e('The Power of Pretty Links Pro', 'pretty-link'); ?>">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
67 |
</div>
|
68 |
|
69 |
+
<div class="prli-center-section">
|
70 |
+
<p><?php _e('There are many reasons that premium users of Pretty Links <br> are able to take their business to the next level:', 'pretty-link'); ?></p>
|
|
|
|
|
|
|
|
|
|
|
|
|
71 |
</div>
|
72 |
|
73 |
+
<div class="prlip-reasons">
|
74 |
+
<div class="prlip-reason">
|
75 |
+
<div class="reason-image"><img src="<?php echo PRLI_IMAGES_URL . '/Swiss_Army_Knife.png'; ?>" alt=""></div>
|
76 |
+
<div class="reason-content">
|
77 |
+
<div class="reason-title"><h3><?php esc_html_e('Automated, Site-Wide Link Placement (Keyword Replacement)', 'pretty-link'); ?></h3></div>
|
78 |
+
<div class="reason-desc">
|
79 |
+
<p><?php esc_html_e('Imagine if you never had to hand-edit links, copy and paste from a spreadsheet, or actively have to keep up with you links ever again. Well that time has come! Now with Pretty Links, all you have to do is create your links and let Pretty Links do the rest!', 'pretty-link'); ?></p>
|
80 |
+
<p><?php esc_html_e('Pretty Links will scan your content for the keywords or URLs that you want to target and will replace them with Pretty Links automatically! This will save you tons of time so you can focus on growing your business!', 'pretty-link'); ?></p>
|
81 |
+
</div>
|
82 |
+
</div>
|
83 |
</div>
|
84 |
+
<div class="prlip-reason">
|
85 |
+
<div class="reason-image"><img src="<?php echo PRLI_IMAGES_URL . '/PL-Categories.png'; ?>" alt=""></div>
|
86 |
+
<div class="reason-content">
|
87 |
+
<div class="reason-title"><h3><?php esc_html_e('Categories & Tags', 'pretty-link'); ?></h3></div>
|
88 |
+
<div class="reason-desc">
|
89 |
+
<p><?php esc_html_e('When you are dealing with a large number of links, it can be easy to be overwhelmed and confused by which links to you planned to use where. It\'s now easier than ever to organize your links and group them any way that you like for ultimate productivity and monetization!', 'pretty-link'); ?></p>
|
90 |
+
</div>
|
91 |
+
</div>
|
92 |
</div>
|
93 |
+
<div class="prlip-reason">
|
94 |
+
<div class="reason-image"><img src="<?php echo PRLI_IMAGES_URL . '/redirection-link-menu_324_original3.png'; ?>" alt=""></div>
|
95 |
+
<div class="reason-content">
|
96 |
+
<div class="reason-title"><h3><?php esc_html_e('Advanced Redirect Types', 'pretty-link'); ?></h3></div>
|
97 |
+
<div class="reason-desc">
|
98 |
+
<p><?php esc_html_e('Lite users can take advantage of 301 & 302 server side redirects but our pro users can also redirect with cloaking, JavaScript, Meta-refresh and more.', 'pretty-link'); ?></p>
|
99 |
+
<p><?php esc_html_e('So if you have social media links, a landing page, or a new page or post you\'d like to redirect your customers to, this feature will definitely come in handy!', 'pretty-link'); ?></p>
|
100 |
+
</div>
|
101 |
+
</div>
|
|
|
102 |
</div>
|
103 |
+
<div class="prlip-reason">
|
104 |
+
<div class="reason-image"><img src="<?php echo PRLI_IMAGES_URL . '/dynamic-redirect-types.jpg'; ?>" alt=""></div>
|
105 |
+
<div class="reason-content">
|
106 |
+
<div class="reason-title"><h3><?php esc_html_e('Dynamic Redirect Types', 'pretty-link'); ?></h3></div>
|
107 |
+
<div class="reason-desc">
|
108 |
+
<p><?php esc_html_e('Would you like your Pretty Link to redirect somewhere custom depending on what country your user is in, device they\'re using, time they\'re clicking the link or just randomly? Our pro users can do this easily with our Dynamic Redirections!', 'pretty-link'); ?></p>
|
109 |
+
<p><?php esc_html_e('This feature is excellent if you are running a time-sensitive sales, want to create custom content for you customers, create stellar landing pages for customers in different countries!', 'pretty-link'); ?></p>
|
110 |
+
</div>
|
111 |
+
</div>
|
112 |
</div>
|
113 |
+
<div class="prlip-reason">
|
114 |
+
<div class="reason-image"><img src="<?php echo PRLI_IMAGES_URL . '/import-export.png'; ?>" alt=""></div>
|
115 |
+
<div class="reason-content">
|
116 |
+
<div class="reason-title"><h3><?php esc_html_e('Import and Export Links', 'pretty-link'); ?></h3></div>
|
117 |
+
<div class="reason-desc">
|
118 |
+
<p><?php esc_html_e('Export your links to a spreadsheet or import them en masse - our pro users can do this with ease. Simply download your spreadsheet, upload to WordPress, and your links are automatically added to Pretty Links!', 'pretty-link'); ?></p>
|
119 |
+
</div>
|
120 |
+
</div>
|
121 |
</div>
|
122 |
</div>
|
123 |
|
124 |
<div class="prli-center-section">
|
125 |
+
<h3 style="color: #0D459C;"><?php esc_html_e('The list goes on and on', 'pretty-link'); ?></h3>
|
126 |
+
<p><?php _e('Our premium editions of Pretty Links are a HUGE upgrade from Lite. <br> Don’t miss out on our critical PRO benefits!', 'pretty-link'); ?></p>
|
127 |
</div>
|
128 |
|
129 |
<div class="prli-center-section prli-button-section">
|
130 |
+
<p><a href="https://prettylinks.com/pl/welcome-page/upgrade" class="button button-primary button-upgrade"><?php esc_html_e('Upgrade to Pretty Links Pro Now', 'pretty-link'); ?></a></p>
|
131 |
+
<p style="color: #0D459C;"><strong><?php esc_html_e('Upgrade NOW and get $50 off of your subscription!!!', 'pretty-link'); ?></strong></p>
|
132 |
</div>
|
133 |
|
134 |
</div>
|
app/views/admin/update/license.php
CHANGED
@@ -36,7 +36,7 @@ $mothership_license_str = isset($_POST[$plp_update->mothership_license_str]) ? s
|
|
36 |
<?php if(!$plp_update->is_installed()): ?>
|
37 |
<div> </div>
|
38 |
|
39 |
-
<div class="prli-page-title"><?php esc_html_e('Upgrade to Pro', 'pretty-link'); ?></div>
|
40 |
|
41 |
<div>
|
42 |
<?php
|
36 |
<?php if(!$plp_update->is_installed()): ?>
|
37 |
<div> </div>
|
38 |
|
39 |
+
<div class="prli-page-title" id="prli_upgrade"><?php esc_html_e('Upgrade to Pro', 'pretty-link'); ?></div>
|
40 |
|
41 |
<div>
|
42 |
<?php
|
app/views/admin/upgrade/categories.php
ADDED
@@ -0,0 +1,281 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<div id="col-container" class="wp-clearfix pretty-link-blur-wrap">
|
2 |
+
<div class="pretty-link-blur">
|
3 |
+
<div id="col-left">
|
4 |
+
<div class="col-wrap">
|
5 |
+
<div class="form-wrap">
|
6 |
+
<h2>Add New Link Category</h2>
|
7 |
+
<div class="form-field form-required term-name-wrap">
|
8 |
+
<label for="tag-name">Name</label>
|
9 |
+
<input
|
10 |
+
type="text"
|
11 |
+
value=""
|
12 |
+
size="40"
|
13 |
+
/>
|
14 |
+
<p>The name is how it appears on your site.</p>
|
15 |
+
</div>
|
16 |
+
<div class="form-field term-slug-wrap">
|
17 |
+
<label for="tag-slug">Slug</label>
|
18 |
+
<input name="slug" id="tag-slug" type="text" value="" size="40" />
|
19 |
+
<p>
|
20 |
+
The “slug” is the URL-friendly version of the name. It is usually
|
21 |
+
all lowercase and contains only letters, numbers, and hyphens.
|
22 |
+
</p>
|
23 |
+
</div>
|
24 |
+
<div class="form-field term-parent-wrap">
|
25 |
+
<label for="parent">Parent Link Category</label>
|
26 |
+
<select name="parent" id="parent" class="postform">
|
27 |
+
<option value="-1" selected="selected">None</option>
|
28 |
+
</select>
|
29 |
+
<p>
|
30 |
+
Assign a parent term to create a hierarchy. The term Jazz, for
|
31 |
+
example, would be the parent of Bebop and Big Band.
|
32 |
+
</p>
|
33 |
+
</div>
|
34 |
+
<div class="form-field term-description-wrap">
|
35 |
+
<label for="tag-description">Description</label>
|
36 |
+
<textarea
|
37 |
+
name="description"
|
38 |
+
id="tag-description"
|
39 |
+
rows="5"
|
40 |
+
cols="40"
|
41 |
+
></textarea>
|
42 |
+
<p>
|
43 |
+
The description is not prominent by default; however, some themes
|
44 |
+
may show it.
|
45 |
+
</p>
|
46 |
+
</div>
|
47 |
+
|
48 |
+
<p class="submit">
|
49 |
+
<input
|
50 |
+
type="submit"
|
51 |
+
name="submit"
|
52 |
+
id="submit"
|
53 |
+
class="button button-primary"
|
54 |
+
value="Add New Link Category"
|
55 |
+
/>
|
56 |
+
</p>
|
57 |
+
</div>
|
58 |
+
</div>
|
59 |
+
</div>
|
60 |
+
<!-- /col-left -->
|
61 |
+
|
62 |
+
<div id="col-right">
|
63 |
+
<div class="col-wrap">
|
64 |
+
<div class="tablenav top">
|
65 |
+
<div class="alignleft actions bulkactions">
|
66 |
+
<label for="bulk-action-selector-top" class="screen-reader-text"
|
67 |
+
>Select bulk action</label
|
68 |
+
><select name="action" id="bulk-action-selector-top">
|
69 |
+
<option value="-1">Bulk Actions</option>
|
70 |
+
<option value="delete">Delete</option>
|
71 |
+
</select>
|
72 |
+
<input
|
73 |
+
type="submit"
|
74 |
+
id="doaction"
|
75 |
+
class="button action"
|
76 |
+
value="Apply"
|
77 |
+
/>
|
78 |
+
</div>
|
79 |
+
<div class="tablenav-pages no-pages">
|
80 |
+
<span class="displaying-num">0 items</span>
|
81 |
+
<span class="pagination-links"
|
82 |
+
><span
|
83 |
+
class="tablenav-pages-navspan button disabled"
|
84 |
+
aria-hidden="true"
|
85 |
+
>«</span
|
86 |
+
>
|
87 |
+
<span
|
88 |
+
class="tablenav-pages-navspan button disabled"
|
89 |
+
aria-hidden="true"
|
90 |
+
>‹</span
|
91 |
+
>
|
92 |
+
<span class="paging-input"
|
93 |
+
><label for="current-page-selector" class="screen-reader-text"
|
94 |
+
>Current Page</label
|
95 |
+
><input
|
96 |
+
class="current-page"
|
97 |
+
id="current-page-selector"
|
98 |
+
type="text"
|
99 |
+
name="paged"
|
100 |
+
value="1"
|
101 |
+
size="1"
|
102 |
+
aria-describedby="table-paging"
|
103 |
+
/><span class="tablenav-paging-text">
|
104 |
+
of <span class="total-pages">0</span></span
|
105 |
+
></span
|
106 |
+
>
|
107 |
+
<a
|
108 |
+
class="next-page button"
|
109 |
+
href=""
|
110 |
+
><span class="screen-reader-text">Next page</span
|
111 |
+
><span aria-hidden="true">›</span></a
|
112 |
+
>
|
113 |
+
<a
|
114 |
+
class="last-page button"
|
115 |
+
href=""
|
116 |
+
><span class="screen-reader-text">Last page</span
|
117 |
+
><span aria-hidden="true">»</span></a
|
118 |
+
></span
|
119 |
+
>
|
120 |
+
</div>
|
121 |
+
<br class="clear" />
|
122 |
+
</div>
|
123 |
+
<h2 class="screen-reader-text">Categories list</h2>
|
124 |
+
<table class="wp-list-table widefat fixed striped tags">
|
125 |
+
<thead>
|
126 |
+
<tr>
|
127 |
+
<td id="cb" class="manage-column column-cb check-column">
|
128 |
+
<label class="screen-reader-text" for="cb-select-all-1"
|
129 |
+
>Select All</label
|
130 |
+
><input id="cb-select-all-1" type="checkbox" />
|
131 |
+
</td>
|
132 |
+
<th
|
133 |
+
scope="col"
|
134 |
+
id="name"
|
135 |
+
class="manage-column column-name column-primary sortable desc"
|
136 |
+
>
|
137 |
+
<a
|
138 |
+
href=""
|
139 |
+
><span>Name</span><span class="sorting-indicator"></span
|
140 |
+
></a>
|
141 |
+
</th>
|
142 |
+
<th
|
143 |
+
scope="col"
|
144 |
+
id="description"
|
145 |
+
class="manage-column column-description sortable desc"
|
146 |
+
>
|
147 |
+
<a
|
148 |
+
href=""
|
149 |
+
><span>Description</span
|
150 |
+
><span class="sorting-indicator"></span
|
151 |
+
></a>
|
152 |
+
</th>
|
153 |
+
<th
|
154 |
+
scope="col"
|
155 |
+
id="slug"
|
156 |
+
class="manage-column column-slug sortable desc"
|
157 |
+
>
|
158 |
+
<a
|
159 |
+
href=""
|
160 |
+
><span>Slug</span><span class="sorting-indicator"></span
|
161 |
+
></a>
|
162 |
+
</th>
|
163 |
+
<th
|
164 |
+
scope="col"
|
165 |
+
id="posts"
|
166 |
+
class="manage-column column-posts num sortable desc"
|
167 |
+
>
|
168 |
+
<a
|
169 |
+
href=""
|
170 |
+
><span>Count</span><span class="sorting-indicator"></span
|
171 |
+
></a>
|
172 |
+
</th>
|
173 |
+
</tr>
|
174 |
+
</thead>
|
175 |
+
|
176 |
+
<tbody id="the-list" data-wp-lists="list:tag">
|
177 |
+
<tr class="no-items">
|
178 |
+
<td class="colspanchange" colspan="5">No categories found.</td>
|
179 |
+
</tr>
|
180 |
+
</tbody>
|
181 |
+
|
182 |
+
<tfoot>
|
183 |
+
<tr>
|
184 |
+
<td class="manage-column column-cb check-column">
|
185 |
+
<label class="screen-reader-text" for="cb-select-all-2"
|
186 |
+
>Select All</label
|
187 |
+
><input id="cb-select-all-2" type="checkbox" />
|
188 |
+
</td>
|
189 |
+
<th
|
190 |
+
scope="col"
|
191 |
+
class="manage-column column-name column-primary sortable desc"
|
192 |
+
>
|
193 |
+
<a
|
194 |
+
href=""
|
195 |
+
><span>Name</span><span class="sorting-indicator"></span
|
196 |
+
></a>
|
197 |
+
</th>
|
198 |
+
<th
|
199 |
+
scope="col"
|
200 |
+
class="manage-column column-description sortable desc"
|
201 |
+
>
|
202 |
+
<a
|
203 |
+
href=""
|
204 |
+
><span>Description</span
|
205 |
+
><span class="sorting-indicator"></span
|
206 |
+
></a>
|
207 |
+
</th>
|
208 |
+
<th scope="col" class="manage-column column-slug sortable desc">
|
209 |
+
<a
|
210 |
+
href=""
|
211 |
+
><span>Slug</span><span class="sorting-indicator"></span
|
212 |
+
></a>
|
213 |
+
</th>
|
214 |
+
<th
|
215 |
+
scope="col"
|
216 |
+
class="manage-column column-posts num sortable desc"
|
217 |
+
>
|
218 |
+
<a
|
219 |
+
href=""
|
220 |
+
><span>Count</span><span class="sorting-indicator"></span
|
221 |
+
></a>
|
222 |
+
</th>
|
223 |
+
</tr>
|
224 |
+
</tfoot>
|
225 |
+
</table>
|
226 |
+
<div class="tablenav bottom">
|
227 |
+
<div class="alignleft actions bulkactions">
|
228 |
+
<label for="bulk-action-selector-bottom" class="screen-reader-text"
|
229 |
+
>Select bulk action</label
|
230 |
+
><select name="action2" id="bulk-action-selector-bottom">
|
231 |
+
<option value="-1">Bulk Actions</option>
|
232 |
+
<option value="delete">Delete</option>
|
233 |
+
</select>
|
234 |
+
<input
|
235 |
+
type="submit"
|
236 |
+
id="doaction2"
|
237 |
+
class="button action"
|
238 |
+
value="Apply"
|
239 |
+
/>
|
240 |
+
</div>
|
241 |
+
<div class="tablenav-pages no-pages">
|
242 |
+
<span class="displaying-num">0 items</span>
|
243 |
+
<span class="pagination-links"
|
244 |
+
><span
|
245 |
+
class="tablenav-pages-navspan button disabled"
|
246 |
+
aria-hidden="true"
|
247 |
+
>«</span
|
248 |
+
>
|
249 |
+
<span
|
250 |
+
class="tablenav-pages-navspan button disabled"
|
251 |
+
aria-hidden="true"
|
252 |
+
>‹</span
|
253 |
+
>
|
254 |
+
<span class="screen-reader-text">Current Page</span
|
255 |
+
><span id="table-paging" class="paging-input"
|
256 |
+
><span class="tablenav-paging-text"
|
257 |
+
>1 of <span class="total-pages">0</span></span
|
258 |
+
></span
|
259 |
+
>
|
260 |
+
<a
|
261 |
+
class="next-page button"
|
262 |
+
href=""
|
263 |
+
><span class="screen-reader-text">Next page</span
|
264 |
+
><span aria-hidden="true">›</span></a
|
265 |
+
>
|
266 |
+
<a
|
267 |
+
class="last-page button"
|
268 |
+
href=""
|
269 |
+
><span class="screen-reader-text">Last page</span
|
270 |
+
><span aria-hidden="true">»</span></a
|
271 |
+
></span
|
272 |
+
>
|
273 |
+
</div>
|
274 |
+
<br class="clear" />
|
275 |
+
</div>
|
276 |
+
</div>
|
277 |
+
</div>
|
278 |
+
<!-- /col-right -->
|
279 |
+
</div>
|
280 |
+
<?php include_once PRLI_VIEWS_PATH . "/admin/upgrade/dialog.php"; ?>
|
281 |
+
</div>
|
app/views/admin/upgrade/dialog.php
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<div class="pretty-link-upgrade">
|
2 |
+
<div class="pretty-link-upgrade-wrap">
|
3 |
+
<div class="pretty-link-upgrade-content">
|
4 |
+
<div class="pretty-link-upgrade-logo">
|
5 |
+
<img src="<?php echo PRLI_IMAGES_URL . '/plp-dialog-logo.svg'; ?>" alt="">
|
6 |
+
</div>
|
7 |
+
<h2>Make Money from Content You Already Have</h2>
|
8 |
+
<?php if ( ! empty( $section_title ) ) : ?>
|
9 |
+
<h4>Pretty Links Lite cannot access <?php echo $section_title; ?>.</h4>
|
10 |
+
<?php endif; ?>
|
11 |
+
<p>Once you upgrade to Pretty Links Pro, you'll have access to these pro features:</p>
|
12 |
+
<ul class="features">
|
13 |
+
<li>Advanced Redirect Types</li>
|
14 |
+
<li>Auto Create Pretty Links</li>
|
15 |
+
<li>Auto-Link Keywords</li>
|
16 |
+
<li>Support & Updates</li>
|
17 |
+
<li>Link Categories</li>
|
18 |
+
<li>Link Tags</li>
|
19 |
+
<li>Detailed Click Reporting</li>
|
20 |
+
<li>Import and Export Links</li>
|
21 |
+
</ul>
|
22 |
+
</div>
|
23 |
+
<div class="pretty-link-upgrade-cta">
|
24 |
+
<a href="<?php echo $upgrade_link; ?>" id="pretty_link_cta_upgrade_link" class="pretty-link-cta-button">Upgrade to Pretty Links Pro Now</a>
|
25 |
+
</div>
|
26 |
+
</div>
|
27 |
+
</div>
|
app/views/admin/upgrade/import-export.php
ADDED
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<div class="pretty-link-blur-wrap">
|
2 |
+
<div class="pretty-link-blur">
|
3 |
+
<table class="form-table">
|
4 |
+
<tbody>
|
5 |
+
<tr>
|
6 |
+
<th scope="row">
|
7 |
+
Export Pretty Links
|
8 |
+
<span id="prli-tooltip-plp-export-links" class="prli-tooltip">
|
9 |
+
<span><i class="pl-icon pl-icon-info-circled pl-16"></i></span>
|
10 |
+
<span class="prli-data-title prli-hidden">Export Pretty Links</span>
|
11 |
+
<span class="prli-data-info prli-hidden">Export Links to a CSV File</span>
|
12 |
+
</span>
|
13 |
+
</th>
|
14 |
+
<td>
|
15 |
+
<a href="#" class="button button-primary">Export</a>
|
16 |
+
</td>
|
17 |
+
</tr>
|
18 |
+
<tr>
|
19 |
+
<th scope="row">
|
20 |
+
Import Pretty Links
|
21 |
+
<span id="prli-tooltip-plp-import-links" class="prli-tooltip">
|
22 |
+
<span><i class="pl-icon pl-icon-info-circled pl-16"></i></span>
|
23 |
+
<span class="prli-data-title prli-hidden">Import Pretty Links</span>
|
24 |
+
<span class="prli-data-info prli-hidden">There are two ways to import a file.<br /><br />1) Importing to
|
25 |
+
update existing links and<br /><br />2) Importing to generate new
|
26 |
+
links. When Importing to generate new links, you must delete the
|
27 |
+
"id" column from the CSV before importing. If the "id" column is
|
28 |
+
present, Pretty Links Pro will attempt to update existing
|
29 |
+
links.</span>
|
30 |
+
</span>
|
31 |
+
</th>
|
32 |
+
<td>
|
33 |
+
<input name="importedfile" type="file" />
|
34 |
+
<br />
|
35 |
+
<input type="submit" class="button button-primary" value="Import" />
|
36 |
+
<span id="prli-tooltip-plp-import-links-select-file" class="prli-tooltip">
|
37 |
+
<span><i class="pl-icon pl-icon-info-circled pl-16"></i></span>
|
38 |
+
<span class="prli-data-title prli-hidden">Links Import File</span>
|
39 |
+
<span class="prli-data-info prli-hidden">Select a file that has been formatted as a Pretty Link CSV import file and click "Import"</span>
|
40 |
+
</span>
|
41 |
+
</td>
|
42 |
+
</tr>
|
43 |
+
</tbody>
|
44 |
+
</table>
|
45 |
+
</div>
|
46 |
+
<?php include_once PRLI_VIEWS_PATH . "/admin/upgrade/dialog.php"; ?>
|
47 |
+
</div>
|
app/views/admin/upgrade/reports.php
ADDED
@@ -0,0 +1,48 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<div class="pretty-link-blur-wrap">
|
2 |
+
<div class="pretty-link-blur">
|
3 |
+
<table class="widefat post fixed" cellspacing="0">
|
4 |
+
<thead>
|
5 |
+
<tr>
|
6 |
+
<th class="manage-column" width="35%">
|
7 |
+
<a href="#">
|
8 |
+
<?php esc_html_e('Name', 'pretty-link'); ?>
|
9 |
+
</a>
|
10 |
+
</th>
|
11 |
+
<th class="manage-column" width="35%">
|
12 |
+
<a href="#">
|
13 |
+
<?php esc_html_e('Goal Link', 'pretty-link'); ?>
|
14 |
+
</a>
|
15 |
+
</th>
|
16 |
+
<th class="manage-column" width="10%">
|
17 |
+
<a href="#">
|
18 |
+
<?php esc_html_e('Links', 'pretty-link'); ?>
|
19 |
+
</a>
|
20 |
+
</th>
|
21 |
+
<th class="manage-column" width="20%">
|
22 |
+
<a href="#">
|
23 |
+
<?php esc_html_e('Created', 'pretty-link'); ?>
|
24 |
+
</a>
|
25 |
+
</th>
|
26 |
+
</tr>
|
27 |
+
</thead>
|
28 |
+
<tbody>
|
29 |
+
<tr>
|
30 |
+
<td colspan="4"><?php esc_html_e('No Pretty Link Reports were found', 'pretty-link'); ?></td>
|
31 |
+
</tr>
|
32 |
+
</tbody>
|
33 |
+
<tfoot>
|
34 |
+
<tr>
|
35 |
+
<th class="manage-column"><?php esc_html_e('Name', 'pretty-link'); ?></th>
|
36 |
+
<th class="manage-column"><?php esc_html_e('Goal Link', 'pretty-link'); ?></th>
|
37 |
+
<th class="manage-column"><?php esc_html_e('Links', 'pretty-link'); ?></th>
|
38 |
+
<th class="manage-column"><?php esc_html_e('Created', 'pretty-link'); ?></th>
|
39 |
+
</tr>
|
40 |
+
</tfoot>
|
41 |
+
</table>
|
42 |
+
</div>
|
43 |
+
<?php
|
44 |
+
$section_title = 'Link Reports';
|
45 |
+
$upgrade_link = 'https://prettylinks.com/pl/pro-feature-indicator/upgrade?link-reports';
|
46 |
+
include_once PRLI_VIEWS_PATH . "/admin/upgrade/dialog.php";
|
47 |
+
?>
|
48 |
+
</div>
|
app/views/admin/upgrade/tags.php
ADDED
@@ -0,0 +1,281 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<div id="col-container" class="wp-clearfix pretty-link-blur-wrap">
|
2 |
+
<div class="pretty-link-blur">
|
3 |
+
<div id="col-left">
|
4 |
+
<div class="col-wrap">
|
5 |
+
<div class="form-wrap">
|
6 |
+
<h2>Add New Link Tag</h2>
|
7 |
+
<div class="form-field form-required term-name-wrap">
|
8 |
+
<label for="tag-name">Name</label>
|
9 |
+
<input
|
10 |
+
type="text"
|
11 |
+
value=""
|
12 |
+
size="40"
|
13 |
+
/>
|
14 |
+
<p>The name is how it appears on your site.</p>
|
15 |
+
</div>
|
16 |
+
<div class="form-field term-slug-wrap">
|
17 |
+
<label for="tag-slug">Slug</label>
|
18 |
+
<input name="slug" id="tag-slug" type="text" value="" size="40" />
|
19 |
+
<p>
|
20 |
+
The “slug” is the URL-friendly version of the name. It is usually
|
21 |
+
all lowercase and contains only letters, numbers, and hyphens.
|
22 |
+
</p>
|
23 |
+
</div>
|
24 |
+
<div class="form-field term-parent-wrap">
|
25 |
+
<label for="parent">Parent Link Tag</label>
|
26 |
+
<select name="parent" id="parent" class="postform">
|
27 |
+
<option value="-1" selected="selected">None</option>
|
28 |
+
</select>
|
29 |
+
<p>
|
30 |
+
Assign a parent term to create a hierarchy. The term Jazz, for
|
31 |
+
example, would be the parent of Bebop and Big Band.
|
32 |
+
</p>
|
33 |
+
</div>
|
34 |
+
<div class="form-field term-description-wrap">
|
35 |
+
<label for="tag-description">Description</label>
|
36 |
+
<textarea
|
37 |
+
name="description"
|
38 |
+
id="tag-description"
|
39 |
+
rows="5"
|
40 |
+
cols="40"
|
41 |
+
></textarea>
|
42 |
+
<p>
|
43 |
+
The description is not prominent by default; however, some themes
|
44 |
+
may show it.
|
45 |
+
</p>
|
46 |
+
</div>
|
47 |
+
|
48 |
+
<p class="submit">
|
49 |
+
<input
|
50 |
+
type="submit"
|
51 |
+
name="submit"
|
52 |
+
id="submit"
|
53 |
+
class="button button-primary"
|
54 |
+
value="Add New Link Tag"
|
55 |
+
/>
|
56 |
+
</p>
|
57 |
+
</div>
|
58 |
+
</div>
|
59 |
+
</div>
|
60 |
+
<!-- /col-left -->
|
61 |
+
|
62 |
+
<div id="col-right">
|
63 |
+
<div class="col-wrap">
|
64 |
+
<div class="tablenav top">
|
65 |
+
<div class="alignleft actions bulkactions">
|
66 |
+
<label for="bulk-action-selector-top" class="screen-reader-text"
|
67 |
+
>Select bulk action</label
|
68 |
+
><select name="action" id="bulk-action-selector-top">
|
69 |
+
<option value="-1">Bulk Actions</option>
|
70 |
+
<option value="delete">Delete</option>
|
71 |
+
</select>
|
72 |
+
<input
|
73 |
+
type="submit"
|
74 |
+
id="doaction"
|
75 |
+
class="button action"
|
76 |
+
value="Apply"
|
77 |
+
/>
|
78 |
+
</div>
|
79 |
+
<div class="tablenav-pages no-pages">
|
80 |
+
<span class="displaying-num">0 items</span>
|
81 |
+
<span class="pagination-links"
|
82 |
+
><span
|
83 |
+
class="tablenav-pages-navspan button disabled"
|
84 |
+
aria-hidden="true"
|
85 |
+
>«</span
|
86 |
+
>
|
87 |
+
<span
|
88 |
+
class="tablenav-pages-navspan button disabled"
|
89 |
+
aria-hidden="true"
|
90 |
+
>‹</span
|
91 |
+
>
|
92 |
+
<span class="paging-input"
|
93 |
+
><label for="current-page-selector" class="screen-reader-text"
|
94 |
+
>Current Page</label
|
95 |
+
><input
|
96 |
+
class="current-page"
|
97 |
+
id="current-page-selector"
|
98 |
+
type="text"
|
99 |
+
name="paged"
|
100 |
+
value="1"
|
101 |
+
size="1"
|
102 |
+
aria-describedby="table-paging"
|
103 |
+
/><span class="tablenav-paging-text">
|
104 |
+
of <span class="total-pages">0</span></span
|
105 |
+
></span
|
106 |
+
>
|
107 |
+
<a
|
108 |
+
class="next-page button"
|
109 |
+
href=""
|
110 |
+
><span class="screen-reader-text">Next page</span
|
111 |
+
><span aria-hidden="true">›</span></a
|
112 |
+
>
|
113 |
+
<a
|
114 |
+
class="last-page button"
|
115 |
+
href=""
|
116 |
+
><span class="screen-reader-text">Last page</span
|
117 |
+
><span aria-hidden="true">»</span></a
|
118 |
+
></span
|
119 |
+
>
|
120 |
+
</div>
|
121 |
+
<br class="clear" />
|
122 |
+
</div>
|
123 |
+
<h2 class="screen-reader-text">Categories list</h2>
|
124 |
+
<table class="wp-list-table widefat fixed striped tags">
|
125 |
+
<thead>
|
126 |
+
<tr>
|
127 |
+
<td id="cb" class="manage-column column-cb check-column">
|
128 |
+
<label class="screen-reader-text" for="cb-select-all-1"
|
129 |
+
>Select All</label
|
130 |
+
><input id="cb-select-all-1" type="checkbox" />
|
131 |
+
</td>
|
132 |
+
<th
|
133 |
+
scope="col"
|
134 |
+
id="name"
|
135 |
+
class="manage-column column-name column-primary sortable desc"
|
136 |
+
>
|
137 |
+
<a
|
138 |
+
href=""
|
139 |
+
><span>Name</span><span class="sorting-indicator"></span
|
140 |
+
></a>
|
141 |
+
</th>
|
142 |
+
<th
|
143 |
+
scope="col"
|
144 |
+
id="description"
|
145 |
+
class="manage-column column-description sortable desc"
|
146 |
+
>
|
147 |
+
<a
|
148 |
+
href=""
|
149 |
+
><span>Description</span
|
150 |
+
><span class="sorting-indicator"></span
|
151 |
+
></a>
|
152 |
+
</th>
|
153 |
+
<th
|
154 |
+
scope="col"
|
155 |
+
id="slug"
|
156 |
+
class="manage-column column-slug sortable desc"
|
157 |
+
>
|
158 |
+
<a
|
159 |
+
href=""
|
160 |
+
><span>Slug</span><span class="sorting-indicator"></span
|
161 |
+
></a>
|
162 |
+
</th>
|
163 |
+
<th
|
164 |
+
scope="col"
|
165 |
+
id="posts"
|
166 |
+
class="manage-column column-posts num sortable desc"
|
167 |
+
>
|
168 |
+
<a
|
169 |
+
href=""
|
170 |
+
><span>Count</span><span class="sorting-indicator"></span
|
171 |
+
></a>
|
172 |
+
</th>
|
173 |
+
</tr>
|
174 |
+
</thead>
|
175 |
+
|
176 |
+
<tbody id="the-list" data-wp-lists="list:tag">
|
177 |
+
<tr class="no-items">
|
178 |
+
<td class="colspanchange" colspan="5">No categories found.</td>
|
179 |
+
</tr>
|
180 |
+
</tbody>
|
181 |
+
|
182 |
+
<tfoot>
|
183 |
+
<tr>
|
184 |
+
<td class="manage-column column-cb check-column">
|
185 |
+
<label class="screen-reader-text" for="cb-select-all-2"
|
186 |
+
>Select All</label
|
187 |
+
><input id="cb-select-all-2" type="checkbox" />
|
188 |
+
</td>
|
189 |
+
<th
|
190 |
+
scope="col"
|
191 |
+
class="manage-column column-name column-primary sortable desc"
|
192 |
+
>
|
193 |
+
<a
|
194 |
+
href=""
|
195 |
+
><span>Name</span><span class="sorting-indicator"></span
|
196 |
+
></a>
|
197 |
+
</th>
|
198 |
+
<th
|
199 |
+
scope="col"
|
200 |
+
class="manage-column column-description sortable desc"
|
201 |
+
>
|
202 |
+
<a
|
203 |
+
href=""
|
204 |
+
><span>Description</span
|
205 |
+
><span class="sorting-indicator"></span
|
206 |
+
></a>
|
207 |
+
</th>
|
208 |
+
<th scope="col" class="manage-column column-slug sortable desc">
|
209 |
+
<a
|
210 |
+
href=""
|
211 |
+
><span>Slug</span><span class="sorting-indicator"></span
|
212 |
+
></a>
|
213 |
+
</th>
|
214 |
+
<th
|
215 |
+
scope="col"
|
216 |
+
class="manage-column column-posts num sortable desc"
|
217 |
+
>
|
218 |
+
<a
|
219 |
+
href=""
|
220 |
+
><span>Count</span><span class="sorting-indicator"></span
|
221 |
+
></a>
|
222 |
+
</th>
|
223 |
+
</tr>
|
224 |
+
</tfoot>
|
225 |
+
</table>
|
226 |
+
<div class="tablenav bottom">
|
227 |
+
<div class="alignleft actions bulkactions">
|
228 |
+
<label for="bulk-action-selector-bottom" class="screen-reader-text"
|
229 |
+
>Select bulk action</label
|
230 |
+
><select name="action2" id="bulk-action-selector-bottom">
|
231 |
+
<option value="-1">Bulk Actions</option>
|
232 |
+
<option value="delete">Delete</option>
|
233 |
+
</select>
|
234 |
+
<input
|
235 |
+
type="submit"
|
236 |
+
id="doaction2"
|
237 |
+
class="button action"
|
238 |
+
value="Apply"
|
239 |
+
/>
|
240 |
+
</div>
|
241 |
+
<div class="tablenav-pages no-pages">
|
242 |
+
<span class="displaying-num">0 items</span>
|
243 |
+
<span class="pagination-links"
|
244 |
+
><span
|
245 |
+
class="tablenav-pages-navspan button disabled"
|
246 |
+
aria-hidden="true"
|
247 |
+
>«</span
|
248 |
+
>
|
249 |
+
<span
|
250 |
+
class="tablenav-pages-navspan button disabled"
|
251 |
+
aria-hidden="true"
|
252 |
+
>‹</span
|
253 |
+
>
|
254 |
+
<span class="screen-reader-text">Current Page</span
|
255 |
+
><span id="table-paging" class="paging-input"
|
256 |
+
><span class="tablenav-paging-text"
|
257 |
+
>1 of <span class="total-pages">0</span></span
|
258 |
+
></span
|
259 |
+
>
|
260 |
+
<a
|
261 |
+
class="next-page button"
|
262 |
+
href=""
|
263 |
+
><span class="screen-reader-text">Next page</span
|
264 |
+
><span aria-hidden="true">›</span></a
|
265 |
+
>
|
266 |
+
<a
|
267 |
+
class="last-page button"
|
268 |
+
href=""
|
269 |
+
><span class="screen-reader-text">Last page</span
|
270 |
+
><span aria-hidden="true">»</span></a
|
271 |
+
></span
|
272 |
+
>
|
273 |
+
</div>
|
274 |
+
<br class="clear" />
|
275 |
+
</div>
|
276 |
+
</div>
|
277 |
+
</div>
|
278 |
+
<!-- /col-right -->
|
279 |
+
</div>
|
280 |
+
<?php include_once PRLI_VIEWS_PATH . "/admin/upgrade/dialog.php"; ?>
|
281 |
+
</div>
|
app/views/links/form_pro.php
CHANGED
@@ -9,96 +9,105 @@
|
|
9 |
}
|
10 |
else {
|
11 |
?>
|
12 |
-
<
|
13 |
-
<
|
14 |
-
<
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
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 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
<?php
|
104 |
}
|
9 |
}
|
10 |
else {
|
11 |
?>
|
12 |
+
<div class="pretty-link-blur-wrap">
|
13 |
+
<div class="pretty-link-blur">
|
14 |
+
<table class="form-table">
|
15 |
+
<tr class="prli-pro-only">
|
16 |
+
<th scope="row">
|
17 |
+
<?php esc_html_e('Expire', 'pretty-link'); ?>
|
18 |
+
<?php PrliAppHelper::info_tooltip(
|
19 |
+
'plp-expire',
|
20 |
+
esc_html__('Expire Link', 'pretty-link'),
|
21 |
+
esc_html__('Set this link to expire after a specific date or number of clicks.', 'pretty-link')
|
22 |
+
); ?>
|
23 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('link-expire'); ?>
|
24 |
+
</th>
|
25 |
+
<td>
|
26 |
+
<input class="prli-toggle-checkbox" type="checkbox" disabled />
|
27 |
+
</td>
|
28 |
+
</tr>
|
29 |
|
30 |
+
<tr class="prli-pro-only">
|
31 |
+
<th scope="row">
|
32 |
+
<?php esc_html_e('Keywords', 'pretty-link'); ?>
|
33 |
+
<?php PrliAppHelper::info_tooltip(
|
34 |
+
'prli-link-pro-options-keywords',
|
35 |
+
esc_html__('Auto-Replace Keywords', 'pretty-link'),
|
36 |
+
esc_html__('Enter a comma separated list of keywords / keyword phrases that you\'d like to replace with this link in your Posts & Pages.', 'pretty-link')); ?>
|
37 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('link-keywords'); ?>
|
38 |
+
</th>
|
39 |
+
<td>
|
40 |
+
<input type="text" class="large-text" disabled />
|
41 |
+
</td>
|
42 |
+
</tr>
|
43 |
|
44 |
+
<tr class="prli-pro-only">
|
45 |
+
<th scope="row">
|
46 |
+
<?php esc_html_e('URL Replacements', 'pretty-link'); ?>
|
47 |
+
<?php PrliAppHelper::info_tooltip(
|
48 |
+
'prli-link-pro-options-url-replacements',
|
49 |
+
esc_html__('Auto-Replace URLs', 'pretty-link'),
|
50 |
+
sprintf(
|
51 |
+
// translators: %1$s: open code tag, %2$s: close code tag
|
52 |
+
esc_html__('Enter a comma separated list of the URLs that you\'d like to replace with this Pretty Link in your Posts & Pages. These must be formatted as URLs for example: %1$shttp://example.com%2$s or %1$shttp://example.com?product_id=53%2$s', 'pretty-link'),
|
53 |
+
'<code>',
|
54 |
+
'</code>'
|
55 |
+
)
|
56 |
+
); ?>
|
57 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('link-url-replacements'); ?>
|
58 |
+
</th>
|
59 |
+
<td>
|
60 |
+
<input type="text" class="large-text" disabled />
|
61 |
+
</td>
|
62 |
+
</tr>
|
63 |
|
64 |
+
<tr class="prli-pro-only">
|
65 |
+
<th scope="row">
|
66 |
+
<?php esc_html_e('Head Scripts', 'pretty-link'); ?>
|
67 |
+
<?php PrliAppHelper::info_tooltip(
|
68 |
+
'prli-link-pro-options-head-scripts',
|
69 |
+
esc_html__('Head Scripts', 'pretty-link'),
|
70 |
+
sprintf(
|
71 |
+
// translators: %1$s: br tag, %2$s: open b tag, %3$s close b tag
|
72 |
+
esc_html__('Useful for adding Google Analytics tracking, Facebook retargeting pixels, or any other kind of tracking script to the HTML head for this pretty link.%1$s%1$sThese scripts will be in addition to any global one\'s you\'ve defined in the options.%1$s%1$s%2$sNOTE:%3$s This does NOT work with 301, 302 and 307 type redirects.', 'pretty-link'),
|
73 |
+
'<br>',
|
74 |
+
'<b>',
|
75 |
+
'</b>'
|
76 |
+
)
|
77 |
+
); ?>
|
78 |
+
</th>
|
79 |
+
<td>
|
80 |
+
<textarea class="large-text" disabled></textarea>
|
81 |
+
</td>
|
82 |
+
</tr>
|
83 |
|
84 |
+
<tr class="prli-pro-only">
|
85 |
+
<th scope="row">
|
86 |
+
<?php esc_html_e('Dynamic Redirection', 'pretty-link'); ?>
|
87 |
+
<?php PrliAppHelper::info_tooltip(
|
88 |
+
'prli-link-pro-options-dynamic-redirection-options',
|
89 |
+
esc_html__('Dynamic Redirection Options', 'pretty-link'),
|
90 |
+
esc_html__('These powerful options are available to give you dynamic control over redirection for this pretty link.', 'pretty-link')
|
91 |
+
); ?>
|
92 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('dynamic-redirection'); ?>
|
93 |
+
</th>
|
94 |
+
<td>
|
95 |
+
<select disabled>
|
96 |
+
<option value="none"><?php esc_html_e('None', 'pretty-link'); ?></option>
|
97 |
+
<option value="rotate"><?php esc_html_e('Rotation', 'pretty-link'); ?></option>
|
98 |
+
<option value="geo"><?php esc_html_e('Geographic', 'pretty-link'); ?></option>
|
99 |
+
<option value="tech"><?php esc_html_e('Technology', 'pretty-link'); ?></option>
|
100 |
+
<option value="time"><?php esc_html_e('Time', 'pretty-link'); ?></option>
|
101 |
+
</select>
|
102 |
+
</td>
|
103 |
+
</tr>
|
104 |
+
</table>
|
105 |
+
</div>
|
106 |
+
<?php
|
107 |
+
$upgrade_link = 'https://prettylinks.com/pl/pro-feature-indicator/upgrade?pro-settings';
|
108 |
+
$section_title = '';
|
109 |
+
include PRLI_VIEWS_PATH . "/admin/upgrade/dialog.php";
|
110 |
+
?>
|
111 |
+
</div>
|
112 |
<?php
|
113 |
}
|
app/views/options/form.php
CHANGED
@@ -141,85 +141,92 @@
|
|
141 |
|
142 |
<?php if(!$plp_update->is_installed()): ?>
|
143 |
|
144 |
-
<
|
145 |
-
<
|
146 |
-
<
|
147 |
-
|
148 |
-
|
149 |
-
|
150 |
-
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
|
159 |
-
<
|
160 |
-
|
161 |
-
|
|
|
162 |
|
163 |
-
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
|
175 |
-
|
176 |
|
177 |
-
|
178 |
-
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
|
183 |
-
|
184 |
-
|
185 |
-
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
|
190 |
-
|
191 |
-
|
192 |
-
|
193 |
-
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
223 |
|
224 |
<?php endif; ?>
|
225 |
|
@@ -313,219 +320,546 @@
|
|
313 |
|
314 |
<?php if(!$plp_update->is_installed()): ?>
|
315 |
|
316 |
-
<div class="prli-page" id="replacements">
|
317 |
<div class="prli-page-title"><?php esc_html_e('Keyword & URL Auto Replacements Options', 'pretty-link'); ?></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
318 |
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
338 |
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
<
|
344 |
-
<
|
345 |
-
<
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
362 |
<tr valign="top" class="prli-pro-only">
|
363 |
<th scope="row">
|
364 |
<label>
|
365 |
-
<?php esc_html_e('
|
366 |
-
<?php PrliAppHelper::info_tooltip('prli-
|
367 |
-
esc_html__('
|
368 |
sprintf(
|
369 |
-
// translators: %1$s: open
|
370 |
-
esc_html__('
|
371 |
-
'<
|
372 |
-
'</
|
373 |
));
|
374 |
?>
|
375 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-
|
376 |
</label>
|
377 |
</th>
|
378 |
<td>
|
379 |
-
<input type="
|
380 |
</td>
|
381 |
</tr>
|
382 |
<tr valign="top" class="prli-pro-only">
|
383 |
<th scope="row">
|
384 |
<label>
|
385 |
-
<?php esc_html_e('
|
386 |
-
<?php PrliAppHelper::info_tooltip('prli-
|
387 |
-
esc_html__('
|
388 |
sprintf(
|
389 |
-
// translators: %1$s: open code tag, %2$s: close code tag
|
390 |
-
esc_html__('
|
391 |
'<code>',
|
392 |
-
'</code>'
|
393 |
-
'<strong>',
|
394 |
-
'</strong>'
|
395 |
));
|
396 |
?>
|
397 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-
|
398 |
</label>
|
399 |
</th>
|
400 |
<td>
|
401 |
-
<input type="
|
402 |
</td>
|
403 |
</tr>
|
404 |
<tr valign="top" class="prli-pro-only">
|
405 |
<th scope="row">
|
406 |
<label>
|
407 |
-
<?php esc_html_e('
|
408 |
-
<?php PrliAppHelper::info_tooltip('prli-
|
409 |
-
esc_html__('
|
410 |
sprintf(
|
411 |
-
// translators: %1$s: open code tag, %2$s: close code tag
|
412 |
-
esc_html__('
|
413 |
'<code>',
|
414 |
-
'</code>'
|
415 |
-
'<strong>',
|
416 |
-
'</strong>'
|
417 |
));
|
418 |
?>
|
419 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-
|
420 |
</label>
|
421 |
</th>
|
422 |
<td>
|
423 |
-
<input type="
|
424 |
</td>
|
425 |
</tr>
|
426 |
<tr valign="top" class="prli-pro-only">
|
427 |
<th scope="row">
|
428 |
<label>
|
429 |
-
<?php esc_html_e('
|
430 |
-
<?php PrliAppHelper::info_tooltip('prli-
|
431 |
-
esc_html__('
|
432 |
sprintf(
|
433 |
-
// translators: %1$s: open
|
434 |
-
esc_html__('
|
435 |
-
'<
|
436 |
-
'</
|
437 |
));
|
438 |
?>
|
439 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-
|
440 |
</label>
|
441 |
</th>
|
442 |
<td>
|
443 |
-
<input type="text" class="
|
444 |
</td>
|
445 |
</tr>
|
446 |
<tr valign="top" class="prli-pro-only">
|
447 |
-
<th
|
448 |
<label>
|
449 |
-
<?php esc_html_e('
|
450 |
-
<?php PrliAppHelper::info_tooltip('prli-
|
451 |
-
esc_html__('
|
452 |
sprintf(
|
453 |
-
// translators: %1$s: open
|
454 |
-
esc_html__('
|
455 |
-
'<
|
456 |
-
'</
|
457 |
));
|
458 |
?>
|
459 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-
|
460 |
</label>
|
461 |
</th>
|
462 |
<td>
|
463 |
-
<input type="text"
|
464 |
</td>
|
465 |
</tr>
|
466 |
<tr valign="top" class="prli-pro-only">
|
467 |
-
<th
|
468 |
<label>
|
469 |
-
<?php esc_html_e('
|
470 |
-
<?php PrliAppHelper::info_tooltip(
|
471 |
-
'
|
472 |
-
|
473 |
-
|
474 |
-
|
|
|
|
|
|
|
475 |
?>
|
476 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-
|
477 |
</label>
|
478 |
</th>
|
479 |
<td>
|
480 |
-
<input type="
|
481 |
</td>
|
482 |
</tr>
|
483 |
<tr valign="top" class="prli-pro-only">
|
484 |
-
<th
|
485 |
<label>
|
486 |
-
<?php esc_html_e('
|
487 |
-
<?php PrliAppHelper::info_tooltip(
|
488 |
-
'
|
489 |
-
esc_html__('Automatically Add Affiliate Link Disclosures to Keyword Replacements', 'pretty-link'),
|
490 |
sprintf(
|
491 |
-
// translators: %1$s: open
|
492 |
-
esc_html__('
|
493 |
-
'<
|
494 |
-
'</
|
495 |
-
)
|
496 |
-
);
|
497 |
?>
|
498 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-
|
499 |
</label>
|
500 |
</th>
|
501 |
<td>
|
502 |
-
<input type="
|
503 |
</td>
|
504 |
</tr>
|
505 |
<tr valign="top" class="prli-pro-only">
|
506 |
-
<th
|
507 |
<label>
|
508 |
-
<?php esc_html_e('
|
509 |
-
<?php PrliAppHelper::info_tooltip('prli-
|
510 |
-
esc_html__('
|
511 |
-
esc_html__('
|
512 |
?>
|
513 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-
|
514 |
</label>
|
515 |
</th>
|
516 |
<td>
|
517 |
-
<input type="checkbox"
|
518 |
</td>
|
519 |
</tr>
|
520 |
<tr valign="top" class="prli-pro-only">
|
521 |
-
<th
|
522 |
<label>
|
523 |
-
<?php esc_html_e('
|
524 |
-
<?php PrliAppHelper::info_tooltip('prli-
|
525 |
-
esc_html__('
|
526 |
-
esc_html__('
|
527 |
?>
|
528 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-
|
529 |
</label>
|
530 |
</th>
|
531 |
<td>
|
@@ -533,20 +867,29 @@
|
|
533 |
</td>
|
534 |
</tr>
|
535 |
<tr valign="top" class="prli-pro-only">
|
536 |
-
<th
|
537 |
<label>
|
538 |
-
<?php esc_html_e('
|
539 |
-
<?php PrliAppHelper::info_tooltip('prli-
|
540 |
-
esc_html__('
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
548 |
?>
|
549 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-
|
550 |
</label>
|
551 |
</th>
|
552 |
<td>
|
@@ -554,472 +897,178 @@
|
|
554 |
</td>
|
555 |
</tr>
|
556 |
<tr valign="top" class="prli-pro-only">
|
557 |
-
<th
|
558 |
<label>
|
559 |
-
<?php esc_html_e('
|
560 |
-
<?php PrliAppHelper::info_tooltip('
|
561 |
-
esc_html__('
|
562 |
sprintf(
|
563 |
-
// translators: %1$s: br tag, %2$s open strong tag, %3$s
|
564 |
-
esc_html__('
|
565 |
'<br>',
|
566 |
'<strong>',
|
567 |
-
'</strong>'
|
|
|
|
|
|
|
|
|
568 |
));
|
569 |
?>
|
570 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-
|
571 |
</label>
|
572 |
</th>
|
573 |
<td>
|
574 |
<input type="checkbox" class="prli-toggle-checkbox" disabled />
|
575 |
</td>
|
576 |
</tr>
|
577 |
-
|
578 |
-
|
579 |
-
</div>
|
580 |
-
</div>
|
581 |
-
|
582 |
-
<div class="prli-page" id="auto-create">
|
583 |
-
<div class="prli-page-title"><?php esc_html_e('Auto-Create Shortlink Options', 'pretty-link'); ?></div>
|
584 |
-
|
585 |
-
<table class="form-table">
|
586 |
-
<tbody>
|
587 |
-
<tr valign="top" class="prli-pro-only">
|
588 |
-
<th scope="row">
|
589 |
-
<label>
|
590 |
-
<?php esc_html_e('Post Shortlinks', 'pretty-link'); ?>
|
591 |
-
<?php
|
592 |
-
PrliAppHelper::info_tooltip("prli-post-auto",
|
593 |
-
esc_html__('Create Pretty Links for Posts', 'pretty-link'),
|
594 |
-
esc_html__('Automatically Create a Pretty Link for each of your published Posts', 'pretty-link')
|
595 |
-
);
|
596 |
-
?>
|
597 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-auto-create-post'); ?>
|
598 |
-
</label>
|
599 |
-
</th>
|
600 |
-
<td>
|
601 |
-
<input class="prli-toggle-checkbox" type="checkbox" disabled />
|
602 |
-
</td>
|
603 |
-
</tr>
|
604 |
-
<tr valign="top" class="prli-pro-only">
|
605 |
-
<th scope="row">
|
606 |
-
<label>
|
607 |
-
<?php esc_html_e('Page Shortlinks', 'pretty-link'); ?>
|
608 |
-
<?php
|
609 |
-
PrliAppHelper::info_tooltip("prli-page-auto",
|
610 |
-
esc_html__('Create Pretty Links for Pages', 'pretty-link'),
|
611 |
-
esc_html__('Automatically Create a Pretty Link for each of your published Pages', 'pretty-link')
|
612 |
-
);
|
613 |
-
?>
|
614 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-auto-create-page'); ?>
|
615 |
-
</label>
|
616 |
-
</th>
|
617 |
-
<td>
|
618 |
-
<input class="prli-toggle-checkbox" type="checkbox" disabled />
|
619 |
-
</td>
|
620 |
-
</tr>
|
621 |
-
</tbody>
|
622 |
-
</table>
|
623 |
-
|
624 |
-
</div>
|
625 |
-
|
626 |
-
<div class="prli-page" id="prettybar">
|
627 |
-
<div class="prli-page-title"><?php esc_html_e('Pretty Bar Options', 'pretty-link'); ?></div>
|
628 |
-
<table class="form-table">
|
629 |
-
<tbody>
|
630 |
-
<tr valign="top" class="prli-pro-only">
|
631 |
-
<th scope="row">
|
632 |
-
<label>
|
633 |
-
<?php esc_html_e('Image URL', 'pretty-link'); ?>
|
634 |
-
<?php PrliAppHelper::info_tooltip('prli-prettybar-image-url',
|
635 |
-
esc_html__('Pretty Bar Image URL', 'pretty-link'),
|
636 |
-
esc_html__('If set, this will replace the logo image on the Pretty Bar. The image that this URL references should be 48x48 Pixels to fit.', 'pretty-link'));
|
637 |
-
?>
|
638 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-image'); ?>
|
639 |
-
</label>
|
640 |
-
</th>
|
641 |
-
<td>
|
642 |
-
<input type="text" class="large-text" disabled />
|
643 |
-
</td>
|
644 |
-
</tr>
|
645 |
-
<tr valign="top" class="prli-pro-only">
|
646 |
-
<th scope="row">
|
647 |
-
<label>
|
648 |
-
<?php esc_html_e('Background Image URL', 'pretty-link'); ?>
|
649 |
-
<?php PrliAppHelper::info_tooltip('prli-prettybar-background-image-url',
|
650 |
-
esc_html__('Pretty Bar Background Image URL', 'pretty-link'),
|
651 |
-
esc_html__('If set, this will replace the background image on Pretty Bar. The image that this URL references should be 65px tall - this image will be repeated horizontally across the bar.', 'pretty-link'));
|
652 |
-
?>
|
653 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-background-image'); ?>
|
654 |
-
</label>
|
655 |
-
</th>
|
656 |
-
<td>
|
657 |
-
<input type="text" class="large-text" disabled />
|
658 |
-
</td>
|
659 |
-
</tr>
|
660 |
-
<tr valign="top" class="prli-pro-only">
|
661 |
-
<th scope="row">
|
662 |
-
<label>
|
663 |
-
<?php esc_html_e('Background Color', 'pretty-link'); ?>
|
664 |
-
<?php PrliAppHelper::info_tooltip('prli-prettybar-color',
|
665 |
-
esc_html__('Pretty Bar Background Color', 'pretty-link'),
|
666 |
-
esc_html__('This will alter the background color of the Pretty Bar if you haven\'t specified a Pretty Bar background image.', 'pretty-link'));
|
667 |
-
?>
|
668 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-background-color'); ?>
|
669 |
-
</label>
|
670 |
-
</th>
|
671 |
-
<td>
|
672 |
-
<input type="text" class="plp-colorpicker" size="8" disabled />
|
673 |
-
</td>
|
674 |
-
</tr>
|
675 |
-
<tr valign="top" class="prli-pro-only">
|
676 |
-
<th scope="row">
|
677 |
-
<label>
|
678 |
-
<?php esc_html_e('Text Color', 'pretty-link'); ?>
|
679 |
-
<?php PrliAppHelper::info_tooltip('prli-prettybar-text-color',
|
680 |
-
esc_html__('Pretty Bar Text Color', 'pretty-link'),
|
681 |
-
sprintf(
|
682 |
-
// translators: %1$s: open code tag, %2$s: close code tag
|
683 |
-
esc_html__('If not set, this defaults to black (RGB value %1$s#000000%2$s) but you can change it to whatever color you like.', 'pretty-link'),
|
684 |
-
'<code>',
|
685 |
-
'</code>'
|
686 |
-
));
|
687 |
-
?>
|
688 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-text-color'); ?>
|
689 |
-
</label>
|
690 |
-
</th>
|
691 |
-
<td>
|
692 |
-
<input type="text" class="plp-colorpicker" size="8" disabled />
|
693 |
-
</td>
|
694 |
-
</tr>
|
695 |
-
<tr valign="top" class="prli-pro-only">
|
696 |
-
<th scope="row">
|
697 |
-
<label>
|
698 |
-
<?php esc_html_e('Link Color', 'pretty-link'); ?>
|
699 |
-
<?php PrliAppHelper::info_tooltip('prli-prettybar-link-color',
|
700 |
-
esc_html__('Pretty Bar Link Color', 'pretty-link'),
|
701 |
-
sprintf(
|
702 |
-
// translators: %1$s: open code tag, %2$s: close code tag
|
703 |
-
esc_html__('If not set, this defaults to blue (RGB value %1$s#0000ee%2$s) but you can change it to whatever color you like.', 'pretty-link'),
|
704 |
-
'<code>',
|
705 |
-
'</code>'
|
706 |
-
));
|
707 |
-
?>
|
708 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-link-color'); ?>
|
709 |
-
</label>
|
710 |
-
</th>
|
711 |
-
<td>
|
712 |
-
<input type="text" class="plp-colorpicker" size="8" disabled />
|
713 |
-
</td>
|
714 |
-
</tr>
|
715 |
-
<tr valign="top" class="prli-pro-only">
|
716 |
-
<th scope="row">
|
717 |
-
<label>
|
718 |
-
<?php esc_html_e('Link Hover Color', 'pretty-link'); ?>
|
719 |
-
<?php PrliAppHelper::info_tooltip('prli-prettybar-link-hover-color',
|
720 |
-
esc_html__('Pretty Bar Link Hover Color', 'pretty-link'),
|
721 |
-
sprintf(
|
722 |
-
// translators: %1$s: open code tag, %2$s: close code tag
|
723 |
-
esc_html__('If not set, this defaults to RGB value %1$s#ababab%2$s but you can change it to whatever color you like.', 'pretty-link'),
|
724 |
-
'<code>',
|
725 |
-
'</code>'
|
726 |
-
));
|
727 |
-
?>
|
728 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-link-hover-color'); ?>
|
729 |
-
</label>
|
730 |
-
</th>
|
731 |
-
<td>
|
732 |
-
<input type="text" class="plp-colorpicker" size="8" disabled />
|
733 |
-
</td>
|
734 |
-
</tr>
|
735 |
-
<tr valign="top" class="prli-pro-only">
|
736 |
-
<th scope="row">
|
737 |
-
<label>
|
738 |
-
<?php esc_html_e('Visited Link Color', 'pretty-link'); ?>
|
739 |
-
<?php PrliAppHelper::info_tooltip('prli-prettybar-visited-link-color',
|
740 |
-
esc_html__('Pretty Bar Visited Link Color', 'pretty-link'),
|
741 |
-
sprintf(
|
742 |
-
// translators: %1$s: open code tag, %2$s: close code tag
|
743 |
-
esc_html__('If not set, this defaults to RGB value %1$s#551a8b%2$s but you can change it to whatever color you like.', 'pretty-link'),
|
744 |
-
'<code>',
|
745 |
-
'</code>'
|
746 |
-
));
|
747 |
-
?>
|
748 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-link-visited-color'); ?>
|
749 |
-
</label>
|
750 |
-
</th>
|
751 |
-
<td>
|
752 |
-
<input type="text" class="plp-colorpicker" size="8" disabled />
|
753 |
-
</td>
|
754 |
-
</tr>
|
755 |
-
<tr valign="top" class="prli-pro-only">
|
756 |
-
<th scope="row">
|
757 |
-
<label>
|
758 |
-
<?php esc_html_e('Title Char Limit', 'pretty-link'); ?>
|
759 |
-
<?php PrliAppHelper::info_tooltip('prli-prettybar-title-char-limit',
|
760 |
-
esc_html__('Pretty Bar Title Char Limit', 'pretty-link'),
|
761 |
-
sprintf(
|
762 |
-
// translators: %1$s: open code tag, %2$s: close code tag
|
763 |
-
esc_html__('If your Website has a long title then you may need to adjust this value so that it will all fit on the Pretty Bar. It is recommended that you keep this value to %1$s30%2$s characters or less so the Pretty Bar\'s format looks good across different browsers and screen resolutions.', 'pretty-link'),
|
764 |
-
'<code>',
|
765 |
-
'</code>'
|
766 |
-
));
|
767 |
-
?>
|
768 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-title-char-limit'); ?>
|
769 |
-
</label>
|
770 |
-
</th>
|
771 |
-
<td>
|
772 |
-
<input type="text" size="4" disabled />
|
773 |
-
</td>
|
774 |
-
</tr>
|
775 |
-
<tr valign="top" class="prli-pro-only">
|
776 |
-
<th scope="row">
|
777 |
-
<label>
|
778 |
-
<?php esc_html_e('Description Char Limit', 'pretty-link'); ?>
|
779 |
-
<?php PrliAppHelper::info_tooltip('prli-prettybar-desc-char-limit',
|
780 |
-
esc_html__('Pretty Bar Description Char Limit', 'pretty-link'),
|
781 |
-
sprintf(
|
782 |
-
// translators: %1$s: open code tag, %2$s: close code tag
|
783 |
-
esc_html__('If your Website has a long Description (tagline) then you may need to adjust this value so that it will all fit on the Pretty Bar. It is recommended that you keep this value to %1$s40%2$s characters or less so the Pretty Bar\'s format looks good across different browsers and screen resolutions.', 'pretty-link'),
|
784 |
-
'<code>',
|
785 |
-
'</code>'
|
786 |
-
));
|
787 |
-
?>
|
788 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-description-char-limit'); ?>
|
789 |
-
</label>
|
790 |
-
</th>
|
791 |
-
<td>
|
792 |
-
<input type="text" size="4" disabled />
|
793 |
-
</td>
|
794 |
-
</tr>
|
795 |
-
<tr valign="top" class="prli-pro-only">
|
796 |
-
<th scope="row">
|
797 |
-
<label>
|
798 |
-
<?php esc_html_e('Target URL Char Limit', 'pretty-link'); ?>
|
799 |
-
<?php PrliAppHelper::info_tooltip('prli-prettybar-target-url-char-limit',
|
800 |
-
esc_html__('Pretty Bar Target URL Char Limit', 'pretty-link'),
|
801 |
-
sprintf(
|
802 |
-
// translators: %1$s: open code tag, %2$s: close code tag
|
803 |
-
esc_html__('If you link to a lot of large Target URLs you may want to adjust this value. It is recommended that you keep this value to %1$s40%2$s or below so the Pretty Bar\'s format looks good across different browsers and URL sizes', 'pretty-link'),
|
804 |
-
'<code>',
|
805 |
-
'</code>'
|
806 |
-
));
|
807 |
-
?>
|
808 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-target-url-char-limit'); ?>
|
809 |
-
</label>
|
810 |
-
</th>
|
811 |
-
<td>
|
812 |
-
<input type="text" size="4" disabled />
|
813 |
-
</td>
|
814 |
-
</tr>
|
815 |
-
<tr valign="top" class="prli-pro-only">
|
816 |
-
<th scope="row">
|
817 |
-
<label>
|
818 |
-
<?php esc_html_e('Show Title', 'pretty-link'); ?>
|
819 |
-
<?php PrliAppHelper::info_tooltip('prli-prettybar-show-title',
|
820 |
-
esc_html__('Pretty Bar Show Title', 'pretty-link'),
|
821 |
-
esc_html__('Make sure this is checked if you want the title of your blog (and link) to show up on the Pretty Bar.', 'pretty-link'));
|
822 |
-
?>
|
823 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-show-title'); ?>
|
824 |
-
</label>
|
825 |
-
</th>
|
826 |
-
<td>
|
827 |
-
<input type="checkbox" disabled />
|
828 |
-
</td>
|
829 |
-
</tr>
|
830 |
-
<tr valign="top" class="prli-pro-only">
|
831 |
-
<th scope="row">
|
832 |
-
<label>
|
833 |
-
<?php esc_html_e('Show Description', 'pretty-link'); ?>
|
834 |
-
<?php PrliAppHelper::info_tooltip('prli-prettybar-show-description',
|
835 |
-
esc_html__('Pretty Bar Show Description', 'pretty-link'),
|
836 |
-
esc_html__('Make sure this is checked if you want your site description to show up on the Pretty Bar.', 'pretty-link'));
|
837 |
-
?>
|
838 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-show-description'); ?>
|
839 |
-
</label>
|
840 |
-
</th>
|
841 |
-
<td>
|
842 |
-
<input type="checkbox" disabled />
|
843 |
-
</td>
|
844 |
-
</tr>
|
845 |
-
<tr valign="top" class="prli-pro-only">
|
846 |
-
<th scope="row">
|
847 |
-
<label>
|
848 |
-
<?php esc_html_e('Show Share Links', 'pretty-link'); ?>
|
849 |
-
<?php PrliAppHelper::info_tooltip('prli-prettybar-show-share-links',
|
850 |
-
esc_html__('Pretty Bar Show Share Links', 'pretty-link'),
|
851 |
-
esc_html__('Make sure this is checked if you want "share links" to show up on the Pretty Bar.', 'pretty-link'));
|
852 |
-
?>
|
853 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-show-share-links'); ?>
|
854 |
-
</label>
|
855 |
-
</th>
|
856 |
-
<td>
|
857 |
-
<input type="checkbox" disabled />
|
858 |
-
</td>
|
859 |
-
</tr>
|
860 |
-
<tr valign="top" class="prli-pro-only">
|
861 |
-
<th scope="row">
|
862 |
-
<label>
|
863 |
-
<?php esc_html_e('Show Target URL', 'pretty-link'); ?>
|
864 |
-
<?php PrliAppHelper::info_tooltip('prli-prettybar-show-target-url-links',
|
865 |
-
esc_html__('Pretty Bar Show Target URL Links', 'pretty-link'),
|
866 |
-
esc_html__('Make sure this is checked if you want a link displaying the Target URL to show up on the Pretty Bar.', 'pretty-link'));
|
867 |
-
?>
|
868 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-show-target-url'); ?>
|
869 |
-
</label>
|
870 |
-
</th>
|
871 |
-
<td>
|
872 |
-
<input type="checkbox" disabled />
|
873 |
-
</td>
|
874 |
-
</tr>
|
875 |
-
<tr valign="top" class="prli-pro-only">
|
876 |
-
<th scope="row">
|
877 |
-
<label>
|
878 |
-
<?php esc_html_e('Hide Attribution Link', 'pretty-link'); ?>
|
879 |
-
<?php PrliAppHelper::info_tooltip('prli-prettybar-hide-attrib-link',
|
880 |
-
esc_html__('Hide Attribution Link', 'pretty-link'),
|
881 |
-
sprintf(
|
882 |
-
// translators: %1$s: br tag, %2$s: open strong tag, %3$s close strong tag, %4$s open em tag, %5$s close em tag, %6$s open link tag, %7$s close link tag
|
883 |
-
esc_html__('Check this to hide the pretty link attribution link on the pretty bar.%1$s%1$s%2$sWait, before you do this, you might want to leave this un-checked and set the alternate URL of this link to your %4$sPretty Links Pro%5$s %6$sAffiliate URL%7$s to earn a few bucks while you are at it.%3$s', 'pretty-link'),
|
884 |
-
'<br>',
|
885 |
-
'<strong>',
|
886 |
-
'</strong>',
|
887 |
-
'<em>',
|
888 |
-
'</em>',
|
889 |
-
'<a href="https://prettylinks.com/plp/options/aff-attribution">',
|
890 |
-
'</a>'
|
891 |
-
));
|
892 |
-
?>
|
893 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-hide-attrib-link'); ?>
|
894 |
-
</label>
|
895 |
-
</th>
|
896 |
-
<td>
|
897 |
-
<input type="checkbox" class="prli-toggle-checkbox" disabled />
|
898 |
-
</td>
|
899 |
-
</tr>
|
900 |
-
</tbody>
|
901 |
-
</table>
|
902 |
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
931 |
</div>
|
932 |
</div>
|
933 |
|
934 |
<div class="prli-page" id="social">
|
935 |
<div class="prli-page-title"><?php esc_html_e('Social Buttons Options', 'pretty-link'); ?></div>
|
936 |
-
<
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
esc_html__('Select which buttons you want to be visible on the Social Buttons Bar.%1$s%1$s%2$sNote:%3$s In order for the Social Buttons Bar to be visible on Pages and or Posts, you must first enable it in the "Page & Post Options" section above.', 'pretty-link'),
|
943 |
-
'<br>',
|
944 |
-
'<code>',
|
945 |
-
'</code>'
|
946 |
-
));
|
947 |
-
?>
|
948 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-social-buttons'); ?>
|
949 |
-
</label>
|
950 |
-
<ul class="prli-social-button-checkboxes">
|
951 |
-
<?php foreach(array('facebook', 'twitter', 'gplus', 'pinterest', 'linkedin', 'reddit', 'stumbleupon', 'digg', 'email') as $b) : ?>
|
952 |
-
<li class="pl-social-<?php echo esc_attr($b); ?>-button">
|
953 |
-
<input type="checkbox" disabled />
|
954 |
-
<i class="pl-icon-<?php echo esc_attr($b); ?>"> </i>
|
955 |
-
</li>
|
956 |
-
<?php endforeach; ?>
|
957 |
-
</ul>
|
958 |
-
<br/>
|
959 |
-
<table class="form-table">
|
960 |
-
<tbody>
|
961 |
-
<tr valign="top" class="prli-pro-only">
|
962 |
-
<th scope="row">
|
963 |
-
<label>
|
964 |
-
<?php esc_html_e('Buttons Placement', 'pretty-link'); ?>
|
965 |
-
<?php PrliAppHelper::info_tooltip('prli-social-buttons-placement',
|
966 |
-
esc_html__('Social Buttons Placement', 'pretty-link'),
|
967 |
-
sprintf(
|
968 |
-
// translators: %1$s: br tag, %2$s open code tag, %3$s close code tag
|
969 |
-
esc_html__('This determines where your Social Buttons Placement should appear in relation to content on Pages and/or Posts.%1$s%1$s%2$sNote:%3$s If you want this bar to appear then you must enable it in the "Auto-Create Links" section above.', 'pretty-link'),
|
970 |
-
'<br>',
|
971 |
-
'<code>',
|
972 |
-
'</code>'
|
973 |
-
));
|
974 |
-
?>
|
975 |
-
<?php echo PrliAppHelper::pro_only_feature_indicator('option-social-buttons-placement'); ?>
|
976 |
-
</label>
|
977 |
-
</th>
|
978 |
-
<td>
|
979 |
-
<input type="radio" value="top" disabled /><span class="prli-radio-text"><?php esc_html_e('Top', 'pretty-link'); ?></span><br/><br/>
|
980 |
-
<input type="radio" value="bottom" checked disabled /><span class="prli-radio-text"><?php esc_html_e('Bottom', 'pretty-link'); ?></span><br/><br/>
|
981 |
-
<input type="radio" value="top-and-bottom" disabled /><span class="prli-radio-text"><?php esc_html_e('Top and Bottom', 'pretty-link'); ?></span><br/><br/>
|
982 |
-
<input type="radio" value="none" disabled /><span class="prli-radio-text"><?php esc_html_e('None', 'pretty-link'); ?></span>
|
983 |
-
<?php PrliAppHelper::info_tooltip('prli-social-buttons-placement-none',
|
984 |
-
esc_html__('Social Buttons Manual Placement', 'pretty-link'),
|
985 |
sprintf(
|
986 |
-
// translators: %1$s:
|
987 |
-
esc_html__('
|
988 |
-
'<
|
989 |
-
'<code
|
|
|
990 |
));
|
991 |
?>
|
992 |
-
|
993 |
-
|
994 |
-
|
995 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
996 |
|
997 |
</div>
|
998 |
|
999 |
<div class="prli-page" id="public-links">
|
1000 |
<div class="prli-page-title"><?php esc_html_e('Public Links Creation Options', 'pretty-link'); ?></div>
|
1001 |
-
<
|
1002 |
-
<
|
1003 |
-
|
1004 |
-
|
1005 |
-
<
|
1006 |
-
|
1007 |
-
|
1008 |
-
|
1009 |
-
|
1010 |
-
|
1011 |
-
|
1012 |
-
|
1013 |
-
|
1014 |
-
|
1015 |
-
|
1016 |
-
|
1017 |
-
|
1018 |
-
|
1019 |
-
|
1020 |
-
|
1021 |
-
|
1022 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1023 |
</div>
|
1024 |
|
1025 |
<?php endif; ?>
|
@@ -1035,3 +1084,24 @@
|
|
1035 |
|
1036 |
</form>
|
1037 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
|
142 |
<?php if(!$plp_update->is_installed()): ?>
|
143 |
|
144 |
+
<tbody class="pretty-link-blur-wrap">
|
145 |
+
<tr valign="top" class="prli-pro-only pretty-link-blur">
|
146 |
+
<th scope="row">
|
147 |
+
<label><?php esc_html_e('Base Slug Prefix', 'pretty-link'); ?></label>
|
148 |
+
<?php PrliAppHelper::info_tooltip('prli-base-slug-prefix',
|
149 |
+
esc_html__('Base Slug Prefix', 'pretty-link'),
|
150 |
+
sprintf(
|
151 |
+
// translators: %1$s: open b tag, %2$s close b tag
|
152 |
+
esc_html__('Use this to prefix all newly generated pretty links with a directory of your choice. For example set to %1$sout%2$s to make your pretty links look like http://site.com/%1$sout%2$s/xyz. Changing this option will NOT affect existing pretty links. If you do not wish to use a directory prefix, leave this text field blank. Whatever you type here will be sanitized and modified to ensure it is URL-safe. So %1$sHello World%2$s might get changed to something like %1$shello-world%2$s instead. Lowercase letters, numbers, dashes, and underscores are allowed.', 'pretty-link'),
|
153 |
+
'<b>',
|
154 |
+
'</b>'
|
155 |
+
));
|
156 |
+
?>
|
157 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-base-slug-prefix'); ?>
|
158 |
+
</th>
|
159 |
+
<td>
|
160 |
+
<input type="text" class="regular-text" disabled />
|
161 |
+
</td>
|
162 |
+
</tr>
|
163 |
|
164 |
+
<tr valign="top" class="prli-pro-only pretty-link-blur">
|
165 |
+
<th scope="row">
|
166 |
+
<label><?php esc_html_e('Slug Character Count', 'pretty-link'); ?></label>
|
167 |
+
<?php PrliAppHelper::info_tooltip('prli-num-slug-chars',
|
168 |
+
esc_html__('Slug Character Count', 'pretty-link'),
|
169 |
+
esc_html__("The number of characters to use when auto-generating a random slug for pretty links. The default is 4. You cannot use less than 2.", 'pretty-link'));
|
170 |
+
?>
|
171 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-slug-character-count'); ?>
|
172 |
+
</th>
|
173 |
+
<td>
|
174 |
+
<input type="number" min="2" disabled value="4" />
|
175 |
+
</td>
|
176 |
+
</tr>
|
177 |
|
178 |
+
<tr valign="top" class="prli-pro-only pretty-link-blur">
|
179 |
+
<th scope="row">
|
180 |
+
<label><?php esc_html_e('Enable Google Analytics', 'pretty-link') ?></label>
|
181 |
+
<?php PrliAppHelper::info_tooltip('prli-options-use-ga', esc_html__('Enable Google Analytics', 'pretty-link'),
|
182 |
+
esc_html__('Requires the Google Analyticator plugin be installed. If you rely on MonsterInsights plugin for Google Analytics, leave this setting disabled as it has no affect.', 'pretty-link'));
|
183 |
+
?>
|
184 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-google-analytics'); ?>
|
185 |
+
</th>
|
186 |
+
<td>
|
187 |
+
<input type="checkbox" disabled />
|
188 |
+
</td>
|
189 |
+
</tr>
|
190 |
|
191 |
+
<tr valign="top" class="prli-pro-only pretty-link-blur">
|
192 |
+
<th scope="row">
|
193 |
+
<label><?php printf(esc_html__('Enable %sQR Codes%s', 'pretty-link'), '<a href="http://en.wikipedia.org/wiki/QR_code">', '</a>'); ?></label>
|
194 |
+
<?php PrliAppHelper::info_tooltip('prli-options-generate-qr-codes',
|
195 |
+
esc_html__('Generate QR Codes', 'pretty-link'),
|
196 |
+
esc_html__("This will enable a link in your pretty link admin that will allow you to automatically download a QR Code for each individual Pretty Link.", 'pretty-link'));
|
197 |
+
?>
|
198 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-qr-codes'); ?>
|
199 |
+
</th>
|
200 |
+
<td>
|
201 |
+
<input type="checkbox" disabled />
|
202 |
+
</td>
|
203 |
+
</tr>
|
204 |
|
205 |
+
<tr valign="top" class="prli-pro-only pretty-link-blur">
|
206 |
+
<th scope="row">
|
207 |
+
<label><?php esc_html_e('Global Head Scripts', 'pretty-link'); ?></label>
|
208 |
+
<?php PrliAppHelper::info_tooltip('prli-options-global-head-scripts',
|
209 |
+
esc_html__('Global Head Scripts', 'pretty-link'),
|
210 |
+
sprintf(
|
211 |
+
// translators: %1$s: br tag, %2$s: open b tag, %3$s close b tag
|
212 |
+
esc_html__('Useful for adding Google Analytics tracking, Facebook retargeting pixels, or any other kind of tracking script to the HTML head.%1$s%1$sWhat you enter in this box will be applied to all supported pretty links.%1$s%1$s%2$sNOTE:%3$s This does NOT work with 301, 302 and 307 type redirects.', 'pretty-link'),
|
213 |
+
'<br>',
|
214 |
+
'<b>',
|
215 |
+
'</b>'
|
216 |
+
));
|
217 |
+
?>
|
218 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-global-head-scripts'); ?>
|
219 |
+
</th>
|
220 |
+
<td>
|
221 |
+
<textarea class="large-text" disabled></textarea>
|
222 |
+
</td>
|
223 |
+
</tr>
|
224 |
+
<?php $upgrade_link = 'https://prettylinks.com/pl/pro-feature-indicator/upgrade?link-options'; ?>
|
225 |
+
<tr valign="top" class="pretty-link-upgrade-tr condensed">
|
226 |
+
<th></th>
|
227 |
+
<td><?php include PRLI_VIEWS_PATH . "/admin/upgrade/dialog.php"; ?></td>
|
228 |
+
</tr>
|
229 |
+
</tbody>
|
230 |
|
231 |
<?php endif; ?>
|
232 |
|
320 |
|
321 |
<?php if(!$plp_update->is_installed()): ?>
|
322 |
|
323 |
+
<div class="prli-page " id="replacements">
|
324 |
<div class="prli-page-title"><?php esc_html_e('Keyword & URL Auto Replacements Options', 'pretty-link'); ?></div>
|
325 |
+
<div class="pretty-link-blur-wrap">
|
326 |
+
<div class="pretty-link-blur">
|
327 |
+
<table class="form-table">
|
328 |
+
<tbody>
|
329 |
+
<tr valign="top" class="prli-pro-only">
|
330 |
+
<th scope="row">
|
331 |
+
<label>
|
332 |
+
<?php esc_html_e('Enable Replacements', 'pretty-link'); ?>
|
333 |
+
<?php PrliAppHelper::info_tooltip('prli-keyword-replacement',
|
334 |
+
esc_html__('Enable Keyword and URL Auto Replacement', 'pretty-link'),
|
335 |
+
esc_html__('If checked, this will enable you to automatically replace keywords and/or URLs on your blog with pretty links. You will specify the specific keywords and urls from your Pretty Link edit page.', 'pretty-link'));
|
336 |
+
?>
|
337 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-enable-replacements'); ?>
|
338 |
+
</label>
|
339 |
+
</th>
|
340 |
+
<td>
|
341 |
+
<input class="prli-toggle-checkbox" type="checkbox" checked disabled />
|
342 |
+
</td>
|
343 |
+
</tr>
|
344 |
+
</tbody>
|
345 |
+
</table>
|
346 |
|
347 |
+
<div class="prli-sub-box pretty-link-keyword-replacement-options">
|
348 |
+
<div class="prli-arrow prli-gray prli-up prli-sub-box-arrow"> </div>
|
349 |
+
<table class="form-table">
|
350 |
+
<tbody>
|
351 |
+
<tr valign="top" class="prli-pro-only">
|
352 |
+
<th scope="row">
|
353 |
+
<label>
|
354 |
+
<?php esc_html_e('Thresholds', 'pretty-link'); ?>
|
355 |
+
<?php PrliAppHelper::info_tooltip('prli-keyword-replacement-thresholds',
|
356 |
+
esc_html__('Set Keyword Replacement Thresholds', 'pretty-link'),
|
357 |
+
esc_html__('Don\'t want to have too many keyword replacements per page? Select to set some reasonable keyword replacement thresholds.', 'pretty-link'));
|
358 |
+
?>
|
359 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-replacement-thresholds'); ?>
|
360 |
+
</label>
|
361 |
+
</th>
|
362 |
+
<td>
|
363 |
+
<input class="prli-toggle-checkbox" type="checkbox" disabled />
|
364 |
+
</td>
|
365 |
+
</tr>
|
366 |
+
</tbody>
|
367 |
+
</table>
|
368 |
+
<table class="form-table">
|
369 |
+
<tbody>
|
370 |
+
<tr valign="top" class="prli-pro-only">
|
371 |
+
<th scope="row">
|
372 |
+
<label>
|
373 |
+
<?php esc_html_e('Open in New Window', 'pretty-link'); ?>
|
374 |
+
<?php PrliAppHelper::info_tooltip('prli-keyword-replacement-thresholds',
|
375 |
+
esc_html__('Open Keyword Replacement Links in New Window', 'pretty-link'),
|
376 |
+
sprintf(
|
377 |
+
// translators: %1$s: open strong tag, %2$s: close strong tag
|
378 |
+
esc_html__('Ensure that these keyword replacement links are opened in a separate window. %1$sNote:%2$s This does not apply to url replacements--only keyword replacements.', 'pretty-link'),
|
379 |
+
'<strong>',
|
380 |
+
'</strong>'
|
381 |
+
));
|
382 |
+
?>
|
383 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-replacement-new-window'); ?>
|
384 |
+
</label>
|
385 |
+
</th>
|
386 |
+
<td>
|
387 |
+
<input type="checkbox" disabled />
|
388 |
+
</td>
|
389 |
+
</tr>
|
390 |
+
<tr valign="top" class="prli-pro-only">
|
391 |
+
<th scope="row">
|
392 |
+
<label>
|
393 |
+
<?php esc_html_e('Add No Follows', 'pretty-link'); ?>
|
394 |
+
<?php PrliAppHelper::info_tooltip('prli-keyword-links-nofollow',
|
395 |
+
esc_html__('Add \'nofollow\' attribute to all Keyword Pretty Links', 'pretty-link'),
|
396 |
+
sprintf(
|
397 |
+
// translators: %1$s: open code tag, %2$s: close code tag, %3$s: open strong tag, %4$s close strong tag
|
398 |
+
esc_html__('This adds the html %1$sNOFOLLOW%2$s attribute to all keyword replacement links. %3$sNote:%4$s This does not apply to url replacements--only keyword replacements.', 'pretty-link'),
|
399 |
+
'<code>',
|
400 |
+
'</code>',
|
401 |
+
'<strong>',
|
402 |
+
'</strong>'
|
403 |
+
));
|
404 |
+
?>
|
405 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-replacement-no-follows'); ?>
|
406 |
+
</label>
|
407 |
+
</th>
|
408 |
+
<td>
|
409 |
+
<input type="checkbox" disabled />
|
410 |
+
</td>
|
411 |
+
</tr>
|
412 |
+
<tr valign="top" class="prli-pro-only">
|
413 |
+
<th scope="row">
|
414 |
+
<label>
|
415 |
+
<?php esc_html_e('Add Sponsored', 'pretty-link'); ?>
|
416 |
+
<?php PrliAppHelper::info_tooltip('prli-keyword-links-sponsored',
|
417 |
+
esc_html__('Add \'sponsored\' attribute to all Keyword Pretty Links', 'pretty-link'),
|
418 |
+
sprintf(
|
419 |
+
// translators: %1$s: open code tag, %2$s: close code tag, %3$s: open strong tag, %4$s close strong tag
|
420 |
+
esc_html__('This adds the html %1$sSPONSORED%2$s attribute to all keyword replacement links. %3$sNote:%4$s This does not apply to url replacements--only keyword replacements.', 'pretty-link'),
|
421 |
+
'<code>',
|
422 |
+
'</code>',
|
423 |
+
'<strong>',
|
424 |
+
'</strong>'
|
425 |
+
));
|
426 |
+
?>
|
427 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-replacement-no-follows'); ?>
|
428 |
+
</label>
|
429 |
+
</th>
|
430 |
+
<td>
|
431 |
+
<input type="checkbox" disabled />
|
432 |
+
</td>
|
433 |
+
</tr>
|
434 |
+
<tr valign="top" class="prli-pro-only">
|
435 |
+
<th scope="row">
|
436 |
+
<label>
|
437 |
+
<?php esc_html_e('Custom CSS', 'pretty-link'); ?>
|
438 |
+
<?php PrliAppHelper::info_tooltip('prli-keyword-custom-css',
|
439 |
+
esc_html__('Add custom CSS to your keyword replacement links', 'pretty-link'),
|
440 |
+
sprintf(
|
441 |
+
// translators: %1$s: open strong tag, %2$s: close strong tag
|
442 |
+
esc_html__('Add some custom formatting to your keyword pretty link replacements. %1$sNote:%2$s This does not apply to url replacements--only keyword replacements.', 'pretty-link'),
|
443 |
+
'<strong>',
|
444 |
+
'</strong>'
|
445 |
+
));
|
446 |
+
?>
|
447 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-replacement-custom-css'); ?>
|
448 |
+
</label>
|
449 |
+
</th>
|
450 |
+
<td>
|
451 |
+
<input type="text" class="regular-text" disabled />
|
452 |
+
</td>
|
453 |
+
</tr>
|
454 |
+
<tr valign="top" class="prli-pro-only">
|
455 |
+
<th valign="row">
|
456 |
+
<label>
|
457 |
+
<?php esc_html_e('Custom Hover CSS', 'pretty-link'); ?>
|
458 |
+
<?php PrliAppHelper::info_tooltip('prli-keyword-custom-hover-css',
|
459 |
+
esc_html__('Add custom hover CSS to your keyword replacement links', 'pretty-link'),
|
460 |
+
sprintf(
|
461 |
+
// translators: %1$s: open strong tag, %2$s: close strong tag
|
462 |
+
esc_html__('Add some custom formatting to the hover attribute of your keyword pretty links. %1$sNote%2$s: This does not apply to url replacements--only keyword replacements.', 'pretty-link'),
|
463 |
+
'<strong>',
|
464 |
+
'</strong>'
|
465 |
+
));
|
466 |
+
?>
|
467 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-replacement-custom-hover-css'); ?>
|
468 |
+
</label>
|
469 |
+
</th>
|
470 |
+
<td>
|
471 |
+
<input type="text" class="regular-text" disabled />
|
472 |
+
</td>
|
473 |
+
</tr>
|
474 |
+
<tr valign="top" class="prli-pro-only">
|
475 |
+
<th valign="row">
|
476 |
+
<label>
|
477 |
+
<?php esc_html_e('Link to Disclosures', 'pretty-link'); ?>
|
478 |
+
<?php PrliAppHelper::info_tooltip(
|
479 |
+
'prlipro-link-to-disclosures',
|
480 |
+
esc_html__('Automatically Add a Link to Disclosures', 'pretty-link'),
|
481 |
+
esc_html__('When enabled, this will add a link to your official affiliate link disclosure page to any page, post or custom post type that have any keyword or URL replacements. You\'ll also be able to customize the URL and position of the disclosure link.', 'pretty-link')
|
482 |
+
);
|
483 |
+
?>
|
484 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-replacement-link-to-disclosures'); ?>
|
485 |
+
</label>
|
486 |
+
</th>
|
487 |
+
<td>
|
488 |
+
<input type="checkbox" class="prli-toggle-checkbox" disabled />
|
489 |
+
</td>
|
490 |
+
</tr>
|
491 |
+
<tr valign="top" class="prli-pro-only">
|
492 |
+
<th valign="row">
|
493 |
+
<label>
|
494 |
+
<?php esc_html_e('Keyword Disclosures', 'pretty-link'); ?>
|
495 |
+
<?php PrliAppHelper::info_tooltip(
|
496 |
+
'prlipro-enable-keyword-link-disclosures',
|
497 |
+
esc_html__('Automatically Add Affiliate Link Disclosures to Keyword Replacements', 'pretty-link'),
|
498 |
+
sprintf(
|
499 |
+
// translators: %1$s: open b tag, %2$s close b tag
|
500 |
+
esc_html__('When enabled, this will add an affiliate link disclosure next to each one of your keyword replacements. %1$sNote:%2$s This does not apply to url replacements--only keyword replacements.', 'pretty-link'),
|
501 |
+
'<b>',
|
502 |
+
'</b>'
|
503 |
+
)
|
504 |
+
);
|
505 |
+
?>
|
506 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-replacement-keyword-disclosures'); ?>
|
507 |
+
</label>
|
508 |
+
</th>
|
509 |
+
<td>
|
510 |
+
<input type="checkbox" class="prli-toggle-checkbox" disabled />
|
511 |
+
</td>
|
512 |
+
</tr>
|
513 |
+
<tr valign="top" class="prli-pro-only">
|
514 |
+
<th valign="row">
|
515 |
+
<label>
|
516 |
+
<?php esc_html_e('Replace All URLs', 'pretty-link'); ?>
|
517 |
+
<?php PrliAppHelper::info_tooltip('prli-replace-urls',
|
518 |
+
esc_html__('Replace All non-Pretty Link URLs With Pretty Link URLs', 'pretty-link'),
|
519 |
+
esc_html__('This feature will take each url it finds and create or use an existing pretty link pointing to the url and replace it with the pretty link.', 'pretty-link'));
|
520 |
+
?>
|
521 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-replacement-replace-urls'); ?>
|
522 |
+
</label>
|
523 |
+
</th>
|
524 |
+
<td>
|
525 |
+
<input type="checkbox" class="prli-toggle-checkbox" disabled />
|
526 |
+
</td>
|
527 |
+
</tr>
|
528 |
+
<tr valign="top" class="prli-pro-only">
|
529 |
+
<th valign="row">
|
530 |
+
<label>
|
531 |
+
<?php esc_html_e('Replace in Comments', 'pretty-link'); ?>
|
532 |
+
<?php PrliAppHelper::info_tooltip('prli-replace-in-comments',
|
533 |
+
esc_html__('Replace Keywords and URLs in Comments', 'pretty-link'),
|
534 |
+
esc_html__('This option will enable the keyword / URL replacement routine to run in Comments.', 'pretty-link'));
|
535 |
+
?>
|
536 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-replacement-replace-in-comments'); ?>
|
537 |
+
</label>
|
538 |
+
</th>
|
539 |
+
<td>
|
540 |
+
<input type="checkbox" disabled />
|
541 |
+
</td>
|
542 |
+
</tr>
|
543 |
+
<tr valign="top" class="prli-pro-only">
|
544 |
+
<th valign="row">
|
545 |
+
<label>
|
546 |
+
<?php esc_html_e('Replace in Feeds', 'pretty-link'); ?>
|
547 |
+
<?php PrliAppHelper::info_tooltip('prli-replace-in-feeds',
|
548 |
+
esc_html__('Replace Keywords and URLs in Feeds', 'pretty-link'),
|
549 |
+
sprintf(
|
550 |
+
// translators: %1$s: br tag, %2$s open strong tag, %3$s: close strong tag
|
551 |
+
esc_html__('This option will enable the keyword / URL replacement routine to run in RSS Feeds.%1$s%2$sNote:%3$s This option can slow the load speed of your RSS feed -- unless used in conjunction with a caching plugin like W3 Total Cache or WP Super Cache.%1$s%2$sNote #2%3$s This option will only work if you have "Full Text" selected in your General WordPress Reading settings.%1$s%2$sNote #3:%3$s If this option is used along with "Replace Keywords and URLs in Comments" then your post comment feeds will have keywords replaced in them as well.', 'pretty-link'),
|
552 |
+
'<br>',
|
553 |
+
'<strong>',
|
554 |
+
'</strong>'
|
555 |
+
));
|
556 |
+
?>
|
557 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-replacement-replace-in-feeds'); ?>
|
558 |
+
</label>
|
559 |
+
</th>
|
560 |
+
<td>
|
561 |
+
<input type="checkbox" disabled />
|
562 |
+
</td>
|
563 |
+
</tr>
|
564 |
+
<tr valign="top" class="prli-pro-only">
|
565 |
+
<th valign="row">
|
566 |
+
<label>
|
567 |
+
<?php esc_html_e('Index Replacements', 'pretty-link'); ?>
|
568 |
+
<?php PrliAppHelper::info_tooltip('plp-index-keywords',
|
569 |
+
esc_html__('Index Replacements', 'pretty-link'),
|
570 |
+
sprintf(
|
571 |
+
// translators: %1$s: br tag, %2$s open strong tag, %3$s: close strong tag
|
572 |
+
esc_html__('This feature will index all of your keyword & URL replacements to dramatically improve performance.%1$s%1$sIf your site has a large number of replacements and/or posts then this feature may increase the load on your server temporarily and your replacements may not show up on your posts for a day or two initially (until all posts are indexed).%1$s%1$s%2$sNote:%3$s this feature requires the use of wp-cron.', 'pretty-link'),
|
573 |
+
'<br>',
|
574 |
+
'<strong>',
|
575 |
+
'</strong>'
|
576 |
+
));
|
577 |
+
?>
|
578 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-replacement-index'); ?>
|
579 |
+
</label>
|
580 |
+
</th>
|
581 |
+
<td>
|
582 |
+
<input type="checkbox" class="prli-toggle-checkbox" disabled />
|
583 |
+
</td>
|
584 |
+
</tr>
|
585 |
+
</tbody>
|
586 |
+
</table>
|
587 |
+
</div>
|
588 |
+
</div>
|
589 |
+
<?php
|
590 |
+
$upgrade_link = 'https://prettylinks.com/pl/pro-feature-indicator/upgrade?replacement-options';
|
591 |
+
$section_title = esc_html__( 'Keywork & URL Options', 'pretty-link' );
|
592 |
+
include PRLI_VIEWS_PATH . "/admin/upgrade/dialog.php";
|
593 |
+
?>
|
594 |
+
</div>
|
595 |
+
</div>
|
596 |
|
597 |
+
<div class="prli-page" id="auto-create">
|
598 |
+
<div class="prli-page-title"><?php esc_html_e('Auto-Create Shortlink Options', 'pretty-link'); ?></div>
|
599 |
+
<div class="pretty-link-blur-wrap">
|
600 |
+
<div class="pretty-link-blur">
|
601 |
+
<table class="form-table">
|
602 |
+
<tbody>
|
603 |
+
<tr valign="top" class="prli-pro-only">
|
604 |
+
<th scope="row">
|
605 |
+
<label>
|
606 |
+
<?php esc_html_e('Post Shortlinks', 'pretty-link'); ?>
|
607 |
+
<?php
|
608 |
+
PrliAppHelper::info_tooltip("prli-post-auto",
|
609 |
+
esc_html__('Create Pretty Links for Posts', 'pretty-link'),
|
610 |
+
esc_html__('Automatically Create a Pretty Link for each of your published Posts', 'pretty-link')
|
611 |
+
);
|
612 |
+
?>
|
613 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-auto-create-post'); ?>
|
614 |
+
</label>
|
615 |
+
</th>
|
616 |
+
<td>
|
617 |
+
<input class="prli-toggle-checkbox" type="checkbox" disabled />
|
618 |
+
</td>
|
619 |
+
</tr>
|
620 |
+
<tr valign="top" class="prli-pro-only">
|
621 |
+
<th scope="row">
|
622 |
+
<label>
|
623 |
+
<?php esc_html_e('Page Shortlinks', 'pretty-link'); ?>
|
624 |
+
<?php
|
625 |
+
PrliAppHelper::info_tooltip("prli-page-auto",
|
626 |
+
esc_html__('Create Pretty Links for Pages', 'pretty-link'),
|
627 |
+
esc_html__('Automatically Create a Pretty Link for each of your published Pages', 'pretty-link')
|
628 |
+
);
|
629 |
+
?>
|
630 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-auto-create-page'); ?>
|
631 |
+
</label>
|
632 |
+
</th>
|
633 |
+
<td>
|
634 |
+
<input class="prli-toggle-checkbox" type="checkbox" disabled />
|
635 |
+
</td>
|
636 |
+
</tr>
|
637 |
+
</tbody>
|
638 |
+
</table>
|
639 |
+
</div>
|
640 |
+
<?php
|
641 |
+
$upgrade_link = 'https://prettylinks.com/pl/pro-feature-indicator/upgrade?auto-create-options';
|
642 |
+
$section_title = esc_html__( 'Auto-Create Shortlink Options', 'pretty-link' );
|
643 |
+
include PRLI_VIEWS_PATH . "/admin/upgrade/dialog.php";
|
644 |
+
?>
|
645 |
+
</div>
|
646 |
+
</div>
|
647 |
+
|
648 |
+
<div class="prli-page" id="prettybar">
|
649 |
+
<div class="prli-page-title"><?php esc_html_e('Pretty Bar Options', 'pretty-link'); ?></div>
|
650 |
+
<div class="pretty-link-blur-wrap">
|
651 |
+
<div class="pretty-link-blur">
|
652 |
+
<table class="form-table">
|
653 |
+
<tbody>
|
654 |
+
<tr valign="top" class="prli-pro-only">
|
655 |
+
<th scope="row">
|
656 |
+
<label>
|
657 |
+
<?php esc_html_e('Image URL', 'pretty-link'); ?>
|
658 |
+
<?php PrliAppHelper::info_tooltip('prli-prettybar-image-url',
|
659 |
+
esc_html__('Pretty Bar Image URL', 'pretty-link'),
|
660 |
+
esc_html__('If set, this will replace the logo image on the Pretty Bar. The image that this URL references should be 48x48 Pixels to fit.', 'pretty-link'));
|
661 |
+
?>
|
662 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-image'); ?>
|
663 |
+
</label>
|
664 |
+
</th>
|
665 |
+
<td>
|
666 |
+
<input type="text" class="large-text" disabled />
|
667 |
+
</td>
|
668 |
+
</tr>
|
669 |
+
<tr valign="top" class="prli-pro-only">
|
670 |
+
<th scope="row">
|
671 |
+
<label>
|
672 |
+
<?php esc_html_e('Background Image URL', 'pretty-link'); ?>
|
673 |
+
<?php PrliAppHelper::info_tooltip('prli-prettybar-background-image-url',
|
674 |
+
esc_html__('Pretty Bar Background Image URL', 'pretty-link'),
|
675 |
+
esc_html__('If set, this will replace the background image on Pretty Bar. The image that this URL references should be 65px tall - this image will be repeated horizontally across the bar.', 'pretty-link'));
|
676 |
+
?>
|
677 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-background-image'); ?>
|
678 |
+
</label>
|
679 |
+
</th>
|
680 |
+
<td>
|
681 |
+
<input type="text" class="large-text" disabled />
|
682 |
+
</td>
|
683 |
+
</tr>
|
684 |
+
<tr valign="top" class="prli-pro-only">
|
685 |
+
<th scope="row">
|
686 |
+
<label>
|
687 |
+
<?php esc_html_e('Background Color', 'pretty-link'); ?>
|
688 |
+
<?php PrliAppHelper::info_tooltip('prli-prettybar-color',
|
689 |
+
esc_html__('Pretty Bar Background Color', 'pretty-link'),
|
690 |
+
esc_html__('This will alter the background color of the Pretty Bar if you haven\'t specified a Pretty Bar background image.', 'pretty-link'));
|
691 |
+
?>
|
692 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-background-color'); ?>
|
693 |
+
</label>
|
694 |
+
</th>
|
695 |
+
<td>
|
696 |
+
<input type="text" class="plp-colorpicker" size="8" disabled />
|
697 |
+
</td>
|
698 |
+
</tr>
|
699 |
<tr valign="top" class="prli-pro-only">
|
700 |
<th scope="row">
|
701 |
<label>
|
702 |
+
<?php esc_html_e('Text Color', 'pretty-link'); ?>
|
703 |
+
<?php PrliAppHelper::info_tooltip('prli-prettybar-text-color',
|
704 |
+
esc_html__('Pretty Bar Text Color', 'pretty-link'),
|
705 |
sprintf(
|
706 |
+
// translators: %1$s: open code tag, %2$s: close code tag
|
707 |
+
esc_html__('If not set, this defaults to black (RGB value %1$s#000000%2$s) but you can change it to whatever color you like.', 'pretty-link'),
|
708 |
+
'<code>',
|
709 |
+
'</code>'
|
710 |
));
|
711 |
?>
|
712 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-text-color'); ?>
|
713 |
</label>
|
714 |
</th>
|
715 |
<td>
|
716 |
+
<input type="text" class="plp-colorpicker" size="8" disabled />
|
717 |
</td>
|
718 |
</tr>
|
719 |
<tr valign="top" class="prli-pro-only">
|
720 |
<th scope="row">
|
721 |
<label>
|
722 |
+
<?php esc_html_e('Link Color', 'pretty-link'); ?>
|
723 |
+
<?php PrliAppHelper::info_tooltip('prli-prettybar-link-color',
|
724 |
+
esc_html__('Pretty Bar Link Color', 'pretty-link'),
|
725 |
sprintf(
|
726 |
+
// translators: %1$s: open code tag, %2$s: close code tag
|
727 |
+
esc_html__('If not set, this defaults to blue (RGB value %1$s#0000ee%2$s) but you can change it to whatever color you like.', 'pretty-link'),
|
728 |
'<code>',
|
729 |
+
'</code>'
|
|
|
|
|
730 |
));
|
731 |
?>
|
732 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-link-color'); ?>
|
733 |
</label>
|
734 |
</th>
|
735 |
<td>
|
736 |
+
<input type="text" class="plp-colorpicker" size="8" disabled />
|
737 |
</td>
|
738 |
</tr>
|
739 |
<tr valign="top" class="prli-pro-only">
|
740 |
<th scope="row">
|
741 |
<label>
|
742 |
+
<?php esc_html_e('Link Hover Color', 'pretty-link'); ?>
|
743 |
+
<?php PrliAppHelper::info_tooltip('prli-prettybar-link-hover-color',
|
744 |
+
esc_html__('Pretty Bar Link Hover Color', 'pretty-link'),
|
745 |
sprintf(
|
746 |
+
// translators: %1$s: open code tag, %2$s: close code tag
|
747 |
+
esc_html__('If not set, this defaults to RGB value %1$s#ababab%2$s but you can change it to whatever color you like.', 'pretty-link'),
|
748 |
'<code>',
|
749 |
+
'</code>'
|
|
|
|
|
750 |
));
|
751 |
?>
|
752 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-link-hover-color'); ?>
|
753 |
</label>
|
754 |
</th>
|
755 |
<td>
|
756 |
+
<input type="text" class="plp-colorpicker" size="8" disabled />
|
757 |
</td>
|
758 |
</tr>
|
759 |
<tr valign="top" class="prli-pro-only">
|
760 |
<th scope="row">
|
761 |
<label>
|
762 |
+
<?php esc_html_e('Visited Link Color', 'pretty-link'); ?>
|
763 |
+
<?php PrliAppHelper::info_tooltip('prli-prettybar-visited-link-color',
|
764 |
+
esc_html__('Pretty Bar Visited Link Color', 'pretty-link'),
|
765 |
sprintf(
|
766 |
+
// translators: %1$s: open code tag, %2$s: close code tag
|
767 |
+
esc_html__('If not set, this defaults to RGB value %1$s#551a8b%2$s but you can change it to whatever color you like.', 'pretty-link'),
|
768 |
+
'<code>',
|
769 |
+
'</code>'
|
770 |
));
|
771 |
?>
|
772 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-link-visited-color'); ?>
|
773 |
</label>
|
774 |
</th>
|
775 |
<td>
|
776 |
+
<input type="text" class="plp-colorpicker" size="8" disabled />
|
777 |
</td>
|
778 |
</tr>
|
779 |
<tr valign="top" class="prli-pro-only">
|
780 |
+
<th scope="row">
|
781 |
<label>
|
782 |
+
<?php esc_html_e('Title Char Limit', 'pretty-link'); ?>
|
783 |
+
<?php PrliAppHelper::info_tooltip('prli-prettybar-title-char-limit',
|
784 |
+
esc_html__('Pretty Bar Title Char Limit', 'pretty-link'),
|
785 |
sprintf(
|
786 |
+
// translators: %1$s: open code tag, %2$s: close code tag
|
787 |
+
esc_html__('If your Website has a long title then you may need to adjust this value so that it will all fit on the Pretty Bar. It is recommended that you keep this value to %1$s30%2$s characters or less so the Pretty Bar\'s format looks good across different browsers and screen resolutions.', 'pretty-link'),
|
788 |
+
'<code>',
|
789 |
+
'</code>'
|
790 |
));
|
791 |
?>
|
792 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-title-char-limit'); ?>
|
793 |
</label>
|
794 |
</th>
|
795 |
<td>
|
796 |
+
<input type="text" size="4" disabled />
|
797 |
</td>
|
798 |
</tr>
|
799 |
<tr valign="top" class="prli-pro-only">
|
800 |
+
<th scope="row">
|
801 |
<label>
|
802 |
+
<?php esc_html_e('Description Char Limit', 'pretty-link'); ?>
|
803 |
+
<?php PrliAppHelper::info_tooltip('prli-prettybar-desc-char-limit',
|
804 |
+
esc_html__('Pretty Bar Description Char Limit', 'pretty-link'),
|
805 |
+
sprintf(
|
806 |
+
// translators: %1$s: open code tag, %2$s: close code tag
|
807 |
+
esc_html__('If your Website has a long Description (tagline) then you may need to adjust this value so that it will all fit on the Pretty Bar. It is recommended that you keep this value to %1$s40%2$s characters or less so the Pretty Bar\'s format looks good across different browsers and screen resolutions.', 'pretty-link'),
|
808 |
+
'<code>',
|
809 |
+
'</code>'
|
810 |
+
));
|
811 |
?>
|
812 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-description-char-limit'); ?>
|
813 |
</label>
|
814 |
</th>
|
815 |
<td>
|
816 |
+
<input type="text" size="4" disabled />
|
817 |
</td>
|
818 |
</tr>
|
819 |
<tr valign="top" class="prli-pro-only">
|
820 |
+
<th scope="row">
|
821 |
<label>
|
822 |
+
<?php esc_html_e('Target URL Char Limit', 'pretty-link'); ?>
|
823 |
+
<?php PrliAppHelper::info_tooltip('prli-prettybar-target-url-char-limit',
|
824 |
+
esc_html__('Pretty Bar Target URL Char Limit', 'pretty-link'),
|
|
|
825 |
sprintf(
|
826 |
+
// translators: %1$s: open code tag, %2$s: close code tag
|
827 |
+
esc_html__('If you link to a lot of large Target URLs you may want to adjust this value. It is recommended that you keep this value to %1$s40%2$s or below so the Pretty Bar\'s format looks good across different browsers and URL sizes', 'pretty-link'),
|
828 |
+
'<code>',
|
829 |
+
'</code>'
|
830 |
+
));
|
|
|
831 |
?>
|
832 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-target-url-char-limit'); ?>
|
833 |
</label>
|
834 |
</th>
|
835 |
<td>
|
836 |
+
<input type="text" size="4" disabled />
|
837 |
</td>
|
838 |
</tr>
|
839 |
<tr valign="top" class="prli-pro-only">
|
840 |
+
<th scope="row">
|
841 |
<label>
|
842 |
+
<?php esc_html_e('Show Title', 'pretty-link'); ?>
|
843 |
+
<?php PrliAppHelper::info_tooltip('prli-prettybar-show-title',
|
844 |
+
esc_html__('Pretty Bar Show Title', 'pretty-link'),
|
845 |
+
esc_html__('Make sure this is checked if you want the title of your blog (and link) to show up on the Pretty Bar.', 'pretty-link'));
|
846 |
?>
|
847 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-show-title'); ?>
|
848 |
</label>
|
849 |
</th>
|
850 |
<td>
|
851 |
+
<input type="checkbox" disabled />
|
852 |
</td>
|
853 |
</tr>
|
854 |
<tr valign="top" class="prli-pro-only">
|
855 |
+
<th scope="row">
|
856 |
<label>
|
857 |
+
<?php esc_html_e('Show Description', 'pretty-link'); ?>
|
858 |
+
<?php PrliAppHelper::info_tooltip('prli-prettybar-show-description',
|
859 |
+
esc_html__('Pretty Bar Show Description', 'pretty-link'),
|
860 |
+
esc_html__('Make sure this is checked if you want your site description to show up on the Pretty Bar.', 'pretty-link'));
|
861 |
?>
|
862 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-show-description'); ?>
|
863 |
</label>
|
864 |
</th>
|
865 |
<td>
|
867 |
</td>
|
868 |
</tr>
|
869 |
<tr valign="top" class="prli-pro-only">
|
870 |
+
<th scope="row">
|
871 |
<label>
|
872 |
+
<?php esc_html_e('Show Share Links', 'pretty-link'); ?>
|
873 |
+
<?php PrliAppHelper::info_tooltip('prli-prettybar-show-share-links',
|
874 |
+
esc_html__('Pretty Bar Show Share Links', 'pretty-link'),
|
875 |
+
esc_html__('Make sure this is checked if you want "share links" to show up on the Pretty Bar.', 'pretty-link'));
|
876 |
+
?>
|
877 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-show-share-links'); ?>
|
878 |
+
</label>
|
879 |
+
</th>
|
880 |
+
<td>
|
881 |
+
<input type="checkbox" disabled />
|
882 |
+
</td>
|
883 |
+
</tr>
|
884 |
+
<tr valign="top" class="prli-pro-only">
|
885 |
+
<th scope="row">
|
886 |
+
<label>
|
887 |
+
<?php esc_html_e('Show Target URL', 'pretty-link'); ?>
|
888 |
+
<?php PrliAppHelper::info_tooltip('prli-prettybar-show-target-url-links',
|
889 |
+
esc_html__('Pretty Bar Show Target URL Links', 'pretty-link'),
|
890 |
+
esc_html__('Make sure this is checked if you want a link displaying the Target URL to show up on the Pretty Bar.', 'pretty-link'));
|
891 |
?>
|
892 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-show-target-url'); ?>
|
893 |
</label>
|
894 |
</th>
|
895 |
<td>
|
897 |
</td>
|
898 |
</tr>
|
899 |
<tr valign="top" class="prli-pro-only">
|
900 |
+
<th scope="row">
|
901 |
<label>
|
902 |
+
<?php esc_html_e('Hide Attribution Link', 'pretty-link'); ?>
|
903 |
+
<?php PrliAppHelper::info_tooltip('prli-prettybar-hide-attrib-link',
|
904 |
+
esc_html__('Hide Attribution Link', 'pretty-link'),
|
905 |
sprintf(
|
906 |
+
// translators: %1$s: br tag, %2$s: open strong tag, %3$s close strong tag, %4$s open em tag, %5$s close em tag, %6$s open link tag, %7$s close link tag
|
907 |
+
esc_html__('Check this to hide the pretty link attribution link on the pretty bar.%1$s%1$s%2$sWait, before you do this, you might want to leave this un-checked and set the alternate URL of this link to your %4$sPretty Links Pro%5$s %6$sAffiliate URL%7$s to earn a few bucks while you are at it.%3$s', 'pretty-link'),
|
908 |
'<br>',
|
909 |
'<strong>',
|
910 |
+
'</strong>',
|
911 |
+
'<em>',
|
912 |
+
'</em>',
|
913 |
+
'<a href="https://prettylinks.com/plp/options/aff-attribution">',
|
914 |
+
'</a>'
|
915 |
));
|
916 |
?>
|
917 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-hide-attrib-link'); ?>
|
918 |
</label>
|
919 |
</th>
|
920 |
<td>
|
921 |
<input type="checkbox" class="prli-toggle-checkbox" disabled />
|
922 |
</td>
|
923 |
</tr>
|
924 |
+
</tbody>
|
925 |
+
</table>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
926 |
|
927 |
+
<div class="prli-sub-box prettybar-attrib-url">
|
928 |
+
<div class="prli-arrow prli-gray prli-up prli-sub-box-arrow"> </div>
|
929 |
+
<table class="form-table">
|
930 |
+
<tbody>
|
931 |
+
<tr valign="top" class="prli-pro-only">
|
932 |
+
<th scope="row">
|
933 |
+
<label>
|
934 |
+
<?php esc_html_e('Attribution URL', 'pretty-link'); ?>
|
935 |
+
<?php PrliAppHelper::info_tooltip('prli-prettybar-attribution-url',
|
936 |
+
esc_html__('Alternate Pretty Bar Attribution URL', 'pretty-link'),
|
937 |
+
sprintf(
|
938 |
+
// translators: %1$s open em tag, %2$s close em tag, %3$s open link tag, %4$s close link tag
|
939 |
+
esc_html__('If set, this will replace the Pretty Bars attribution URL. This is a very good place to put your %1$sPretty Links Pro%2$s %3$sAffiliate Link%4$s.', 'pretty-link'),
|
940 |
+
'<em>',
|
941 |
+
'</em>',
|
942 |
+
'<a href="https://prettylinks.com/plp/options/aff-attribution-2">',
|
943 |
+
'</a>'
|
944 |
+
));
|
945 |
+
?>
|
946 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-prettybar-attrib-url'); ?>
|
947 |
+
</label>
|
948 |
+
</th>
|
949 |
+
<td>
|
950 |
+
<input type="text" class="regular-text" disabled />
|
951 |
+
</td>
|
952 |
+
</tr>
|
953 |
+
</tbody>
|
954 |
+
</table>
|
955 |
+
</div>
|
956 |
+
</div>
|
957 |
+
<?php
|
958 |
+
$upgrade_link = 'https://prettylinks.com/pl/pro-feature-indicator/upgrade?pretty-bar-options';
|
959 |
+
$section_title = esc_html__( 'Pretty Bar Options', 'pretty-link' );
|
960 |
+
include PRLI_VIEWS_PATH . "/admin/upgrade/dialog.php";
|
961 |
+
?>
|
962 |
</div>
|
963 |
</div>
|
964 |
|
965 |
<div class="prli-page" id="social">
|
966 |
<div class="prli-page-title"><?php esc_html_e('Social Buttons Options', 'pretty-link'); ?></div>
|
967 |
+
<div class="pretty-link-blur-wrap">
|
968 |
+
<div class="pretty-link-blur">
|
969 |
+
<label class="prli-label prli-pro-only">
|
970 |
+
<?php esc_html_e('Buttons', 'pretty-link'); ?>
|
971 |
+
<?php PrliAppHelper::info_tooltip('prli-social-buttons',
|
972 |
+
esc_html__('Social Buttons', 'pretty-link'),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
973 |
sprintf(
|
974 |
+
// translators: %1$s: br tag, %2$s open code tag, %3$s close code tag
|
975 |
+
esc_html__('Select which buttons you want to be visible on the Social Buttons Bar.%1$s%1$s%2$sNote:%3$s In order for the Social Buttons Bar to be visible on Pages and or Posts, you must first enable it in the "Page & Post Options" section above.', 'pretty-link'),
|
976 |
+
'<br>',
|
977 |
+
'<code>',
|
978 |
+
'</code>'
|
979 |
));
|
980 |
?>
|
981 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-social-buttons'); ?>
|
982 |
+
</label>
|
983 |
+
<ul class="prli-social-button-checkboxes">
|
984 |
+
<?php foreach(array('facebook', 'twitter', 'gplus', 'pinterest', 'linkedin', 'reddit', 'stumbleupon', 'digg', 'email') as $b) : ?>
|
985 |
+
<li class="pl-social-<?php echo esc_attr($b); ?>-button">
|
986 |
+
<input type="checkbox" disabled />
|
987 |
+
<i class="pl-icon-<?php echo esc_attr($b); ?>"> </i>
|
988 |
+
</li>
|
989 |
+
<?php endforeach; ?>
|
990 |
+
</ul>
|
991 |
+
<br/>
|
992 |
+
<table class="form-table">
|
993 |
+
<tbody>
|
994 |
+
<tr valign="top" class="prli-pro-only">
|
995 |
+
<th scope="row">
|
996 |
+
<label>
|
997 |
+
<?php esc_html_e('Buttons Placement', 'pretty-link'); ?>
|
998 |
+
<?php PrliAppHelper::info_tooltip('prli-social-buttons-placement',
|
999 |
+
esc_html__('Social Buttons Placement', 'pretty-link'),
|
1000 |
+
sprintf(
|
1001 |
+
// translators: %1$s: br tag, %2$s open code tag, %3$s close code tag
|
1002 |
+
esc_html__('This determines where your Social Buttons Placement should appear in relation to content on Pages and/or Posts.%1$s%1$s%2$sNote:%3$s If you want this bar to appear then you must enable it in the "Auto-Create Links" section above.', 'pretty-link'),
|
1003 |
+
'<br>',
|
1004 |
+
'<code>',
|
1005 |
+
'</code>'
|
1006 |
+
));
|
1007 |
+
?>
|
1008 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-social-buttons-placement'); ?>
|
1009 |
+
</label>
|
1010 |
+
</th>
|
1011 |
+
<td>
|
1012 |
+
<input type="radio" value="top" disabled /><span class="prli-radio-text"><?php esc_html_e('Top', 'pretty-link'); ?></span><br/><br/>
|
1013 |
+
<input type="radio" value="bottom" checked disabled /><span class="prli-radio-text"><?php esc_html_e('Bottom', 'pretty-link'); ?></span><br/><br/>
|
1014 |
+
<input type="radio" value="top-and-bottom" disabled /><span class="prli-radio-text"><?php esc_html_e('Top and Bottom', 'pretty-link'); ?></span><br/><br/>
|
1015 |
+
<input type="radio" value="none" disabled /><span class="prli-radio-text"><?php esc_html_e('None', 'pretty-link'); ?></span>
|
1016 |
+
<?php PrliAppHelper::info_tooltip('prli-social-buttons-placement-none',
|
1017 |
+
esc_html__('Social Buttons Manual Placement', 'pretty-link'),
|
1018 |
+
sprintf(
|
1019 |
+
// translators: %1$s: example shortcode, %2$s: example template tag
|
1020 |
+
esc_html__('If you select none, you can still show your Social Buttons by manually adding the %1$s shortcode to your blog posts or %2$s template tag to your WordPress Theme.', 'pretty-link'),
|
1021 |
+
'<code>[social_buttons_bar]</code>',
|
1022 |
+
'<code><?php the_social_buttons_bar(); ?></code>'
|
1023 |
+
));
|
1024 |
+
?>
|
1025 |
+
</td>
|
1026 |
+
</tr>
|
1027 |
+
</tbody>
|
1028 |
+
</table>
|
1029 |
+
</div>
|
1030 |
+
<?php
|
1031 |
+
$upgrade_link = 'https://prettylinks.com/pl/pro-feature-indicator/upgrade?social-buttons-options';
|
1032 |
+
$section_title = esc_html__( 'Social Buttons Options', 'pretty-link' );
|
1033 |
+
include PRLI_VIEWS_PATH . "/admin/upgrade/dialog.php";
|
1034 |
+
?>
|
1035 |
+
</div>
|
1036 |
|
1037 |
</div>
|
1038 |
|
1039 |
<div class="prli-page" id="public-links">
|
1040 |
<div class="prli-page-title"><?php esc_html_e('Public Links Creation Options', 'pretty-link'); ?></div>
|
1041 |
+
<div class="pretty-link-blur-wrap">
|
1042 |
+
<div class="pretty-link-blur">
|
1043 |
+
<table class="form-table">
|
1044 |
+
<tbody>
|
1045 |
+
<tr valign="top" class="prli-pro-only">
|
1046 |
+
<th scope="row">
|
1047 |
+
<label>
|
1048 |
+
<?php esc_html_e('Enable Public Links', 'pretty-link'); ?>
|
1049 |
+
<?php PrliAppHelper::info_tooltip('prli-enable-public-link-creation',
|
1050 |
+
esc_html__('Enable Public Link Creation on this Site', 'pretty-link'),
|
1051 |
+
sprintf(
|
1052 |
+
esc_html__('This option will give you the ability to turn your website into a link shortening service for your users. Once selected, you can enable the Pretty Links Pro Sidebar Widget or just display the link creation form with the %s shortcode in any post or page on your website.', 'pretty-link'),
|
1053 |
+
'<code>[prli_create_form]</code>'
|
1054 |
+
));
|
1055 |
+
?>
|
1056 |
+
<?php // echo PrliAppHelper::pro_only_feature_indicator('option-enable-public-link-creation'); ?>
|
1057 |
+
</label>
|
1058 |
+
</th>
|
1059 |
+
<td>
|
1060 |
+
<input class="prli-toggle-checkbox" type="checkbox" disabled />
|
1061 |
+
</td>
|
1062 |
+
</tr>
|
1063 |
+
</tbody>
|
1064 |
+
</table>
|
1065 |
+
</div>
|
1066 |
+
<?php
|
1067 |
+
$upgrade_link = 'https://prettylinks.com/pl/pro-feature-indicator/upgrade?public-links-options';
|
1068 |
+
$section_title = esc_html__( 'Public Link Options', 'pretty-link' );
|
1069 |
+
include PRLI_VIEWS_PATH . "/admin/upgrade/dialog.php";
|
1070 |
+
?>
|
1071 |
+
</div>
|
1072 |
</div>
|
1073 |
|
1074 |
<?php endif; ?>
|
1084 |
|
1085 |
</form>
|
1086 |
</div>
|
1087 |
+
<script>
|
1088 |
+
jQuery(document).ready(function($) {
|
1089 |
+
function repositionUpgrade(dataId) {
|
1090 |
+
var wrap = $('#' + dataId + ' .pretty-link-blur-wrap');
|
1091 |
+
var row = $('#' + dataId + ' .pretty-link-upgrade-tr');
|
1092 |
+
var dialog = row.find('.pretty-link-upgrade');
|
1093 |
+
if ( dialog.data('offset') ) {
|
1094 |
+
dialog.css('top', '-' + dialog.data('offset') + 'px');
|
1095 |
+
} else {
|
1096 |
+
var moveUp = row.offset().top - wrap.offset().top;
|
1097 |
+
dialog.data('offset', moveUp);
|
1098 |
+
dialog.css('top', '-' + moveUp + 'px');
|
1099 |
+
}
|
1100 |
+
}
|
1101 |
+
$('.prli-sidebar-nav a').click(function(event) {
|
1102 |
+
var dataId = $(this).data('id');
|
1103 |
+
repositionUpgrade(dataId);
|
1104 |
+
});
|
1105 |
+
repositionUpgrade('links');
|
1106 |
+
});
|
1107 |
+
</script>
|
css/admin_shared.css
CHANGED
@@ -1,3 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
1 |
.prli-shared-header {
|
2 |
font-size: 14px !important;
|
3 |
font-weight: bold !important;
|
@@ -139,6 +144,65 @@ img.prli_loader {
|
|
139 |
color: green !important;
|
140 |
}
|
141 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
142 |
#wpcontent #pl-admin-header {
|
143 |
margin-left: -20px;
|
144 |
padding: 15px;
|
@@ -179,72 +243,6 @@ img.prli_loader {
|
|
179 |
.prli-update {
|
180 |
max-width: 890px;
|
181 |
}
|
182 |
-
.prli-welcome h1,
|
183 |
-
.prli-update h1 {
|
184 |
-
margin: .2em 0 0 0;
|
185 |
-
padding: 0;
|
186 |
-
color: #32373c;
|
187 |
-
line-height: 1.2;
|
188 |
-
font-size: 2.8em;
|
189 |
-
font-weight: 400;
|
190 |
-
}
|
191 |
-
.prli-welcome h1 {
|
192 |
-
margin-right: 280px;
|
193 |
-
}
|
194 |
-
.prli-update h1 {
|
195 |
-
margin-bottom: 0.6em;
|
196 |
-
}
|
197 |
-
.prli-welcome p,
|
198 |
-
.prli-update p {
|
199 |
-
font-size: 16px;
|
200 |
-
line-height: 1.5;
|
201 |
-
}
|
202 |
-
.prli-welcome .prli-welcome-about {
|
203 |
-
font-size: 19px;
|
204 |
-
line-height: 1.6;
|
205 |
-
margin: 1em 0 1em 0;
|
206 |
-
}
|
207 |
-
.prli-welcome-badge {
|
208 |
-
/*
|
209 |
-
* position: absolute;
|
210 |
-
* top: 0;
|
211 |
-
* right: 0;
|
212 |
-
*/
|
213 |
-
width: 230px;
|
214 |
-
padding: 15px 15px 15px 0;
|
215 |
-
float: left;
|
216 |
-
}
|
217 |
-
.prli-welcome img,
|
218 |
-
.prli-update img {
|
219 |
-
max-width: 100%;
|
220 |
-
}
|
221 |
-
.prli-welcome hr {
|
222 |
-
border: 0;
|
223 |
-
height: 0;
|
224 |
-
margin: 5em 0 0;
|
225 |
-
border-top: 1px solid rgba(0, 0, 0, .1);
|
226 |
-
}
|
227 |
-
/*
|
228 |
-
.prli-center-section {
|
229 |
-
max-width: 890px;
|
230 |
-
margin: 40px auto 0 auto;
|
231 |
-
}
|
232 |
-
*/
|
233 |
-
p.prli-welcome-step {
|
234 |
-
display: block;
|
235 |
-
height: 160px;
|
236 |
-
font-weight: 900;
|
237 |
-
font-size: 18px;
|
238 |
-
margin-left: 25px;
|
239 |
-
}
|
240 |
-
p.prli-welcome-step img {
|
241 |
-
width: 160px !important;
|
242 |
-
height: 160px !important;
|
243 |
-
padding: 5px !important;
|
244 |
-
margin-right: 15px !important;
|
245 |
-
float: left;
|
246 |
-
border: 1px solid #444444;
|
247 |
-
}
|
248 |
.prli-row {
|
249 |
display: -ms-grid;
|
250 |
display: grid;
|
@@ -276,7 +274,6 @@ p.prli-welcome-step img {
|
|
276 |
}
|
277 |
.prli-welcome h2,
|
278 |
.prli-update h2 {
|
279 |
-
margin: 0 0 .6em;
|
280 |
font-size: 1.6em;
|
281 |
line-height: 1.5;
|
282 |
}
|
@@ -328,3 +325,409 @@ p.prli-welcome-step img {
|
|
328 |
font-size: 18px;
|
329 |
cursor: pointer;
|
330 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
#pretty-link-advanced-features.postbox .handle-actions,
|
2 |
+
#pretty-link-settings.postbox .handle-actions {
|
3 |
+
display: none;
|
4 |
+
}
|
5 |
+
|
6 |
.prli-shared-header {
|
7 |
font-size: 14px !important;
|
8 |
font-weight: bold !important;
|
144 |
color: green !important;
|
145 |
}
|
146 |
|
147 |
+
.pl-upgrade-header {
|
148 |
+
text-align: center;
|
149 |
+
padding: 5px;
|
150 |
+
position: relative;
|
151 |
+
}
|
152 |
+
|
153 |
+
.pl-upgrade-header #close-pl-upgrade-header {
|
154 |
+
position: absolute;
|
155 |
+
right: 20px;
|
156 |
+
top: 3px;
|
157 |
+
}
|
158 |
+
|
159 |
+
.pl-upgrade-header #close-pl-upgrade-header:hover {
|
160 |
+
cursor: pointer;
|
161 |
+
}
|
162 |
+
|
163 |
+
.pl-upgrade-header a {
|
164 |
+
color: #F59431;
|
165 |
+
}
|
166 |
+
|
167 |
+
#pretty-link-advanced-features {
|
168 |
+
background: #0E459C;
|
169 |
+
}
|
170 |
+
|
171 |
+
#pretty-link-advanced-features .hndle.ui-sortable-handle {
|
172 |
+
background: #fff;
|
173 |
+
}
|
174 |
+
|
175 |
+
#pretty-link-advanced-features .inside {
|
176 |
+
color: #fff;
|
177 |
+
max-width: 80%;
|
178 |
+
margin: 0 auto;
|
179 |
+
}
|
180 |
+
|
181 |
+
#pretty-link-advanced-features .upgrade-features {
|
182 |
+
line-height: 1;
|
183 |
+
margin: 10px 0 13px;
|
184 |
+
}
|
185 |
+
|
186 |
+
#pretty-link-advanced-features .upgrade-features li {
|
187 |
+
margin-bottom: 3px;
|
188 |
+
}
|
189 |
+
|
190 |
+
#pretty-link-advanced-features .upgrade-features li:before {
|
191 |
+
content: "\f147";
|
192 |
+
font-family: dashicons;
|
193 |
+
color: #03c5f1;
|
194 |
+
font-size: 20px;
|
195 |
+
position: relative;
|
196 |
+
top: 4px;
|
197 |
+
margin-right: 10px;
|
198 |
+
}
|
199 |
+
|
200 |
+
#pretty-link-advanced-features .pretty-link-cta-button {
|
201 |
+
padding: 10px 15px;
|
202 |
+
width: 100%;
|
203 |
+
text-align: center;
|
204 |
+
}
|
205 |
+
|
206 |
#wpcontent #pl-admin-header {
|
207 |
margin-left: -20px;
|
208 |
padding: 15px;
|
243 |
.prli-update {
|
244 |
max-width: 890px;
|
245 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
246 |
.prli-row {
|
247 |
display: -ms-grid;
|
248 |
display: grid;
|
274 |
}
|
275 |
.prli-welcome h2,
|
276 |
.prli-update h2 {
|
|
|
277 |
font-size: 1.6em;
|
278 |
line-height: 1.5;
|
279 |
}
|
325 |
font-size: 18px;
|
326 |
cursor: pointer;
|
327 |
}
|
328 |
+
|
329 |
+
.pretty-link-blur-wrap {
|
330 |
+
position: relative;
|
331 |
+
}
|
332 |
+
|
333 |
+
.pretty-link-blur {
|
334 |
+
filter: blur(2px);
|
335 |
+
pointer-events: none;
|
336 |
+
}
|
337 |
+
|
338 |
+
.pretty-link-upgrade {
|
339 |
+
position: absolute;
|
340 |
+
top: 0;
|
341 |
+
z-index: 10;
|
342 |
+
background: rgba( 0,0,0,.2 );
|
343 |
+
width: 600px;
|
344 |
+
left: calc(50% - 300px);
|
345 |
+
margin: 0 auto;
|
346 |
+
}
|
347 |
+
|
348 |
+
.pretty-link-upgrade-wrap {
|
349 |
+
box-shadow: 0 0 30px #ccc;
|
350 |
+
}
|
351 |
+
|
352 |
+
.pretty-link-upgrade-content .pretty-link-upgrade-logo {
|
353 |
+
max-width: 400px;
|
354 |
+
margin: 0 auto;
|
355 |
+
}
|
356 |
+
|
357 |
+
.pretty-link-upgrade-content {
|
358 |
+
background-color: #fff;
|
359 |
+
padding: 20px;
|
360 |
+
text-align: center;
|
361 |
+
}
|
362 |
+
|
363 |
+
.pretty-link-upgrade-content h2 {
|
364 |
+
font-size: 24px;
|
365 |
+
}
|
366 |
+
|
367 |
+
.pretty-link-upgrade-content h4 {
|
368 |
+
font-size: 18px;
|
369 |
+
}
|
370 |
+
|
371 |
+
.pretty-link-upgrade-content .features {
|
372 |
+
display: grid;
|
373 |
+
grid-template-columns: 1fr 1fr;
|
374 |
+
grid-column-gap: 30px;
|
375 |
+
grid-row-gap: 10px;
|
376 |
+
align-items: center;
|
377 |
+
justify-content: center;
|
378 |
+
text-align: left;
|
379 |
+
padding: 10px;
|
380 |
+
max-width: 450px;
|
381 |
+
margin: 0 auto;
|
382 |
+
}
|
383 |
+
|
384 |
+
.pretty-link-upgrade-content .features li:before {
|
385 |
+
content: "\f147";
|
386 |
+
font-family: dashicons;
|
387 |
+
color: #03c5f1;
|
388 |
+
font-size: 20px;
|
389 |
+
position: relative;
|
390 |
+
top: 4px;
|
391 |
+
margin-right: 10px;
|
392 |
+
}
|
393 |
+
|
394 |
+
.pretty-link-upgrade-cta {
|
395 |
+
text-align: center;
|
396 |
+
background-color: #f2f2f2;
|
397 |
+
padding: 20px;
|
398 |
+
}
|
399 |
+
|
400 |
+
.pretty-link-cta-button {
|
401 |
+
display: inline-block;
|
402 |
+
margin: 0 auto;
|
403 |
+
background-color: #FD9C27;
|
404 |
+
color: #fff;
|
405 |
+
padding: 15px 25px;
|
406 |
+
font-size: 18px;
|
407 |
+
font-weight: bold;
|
408 |
+
text-decoration: none;
|
409 |
+
border-radius: 5px;
|
410 |
+
}
|
411 |
+
|
412 |
+
.pretty-link-upgrade-tr td {
|
413 |
+
position: relative;
|
414 |
+
}
|
415 |
+
|
416 |
+
.pretty-link-upgrade-tr td .pretty-link-upgrade {
|
417 |
+
top: 0;
|
418 |
+
height: 100%;
|
419 |
+
}
|
420 |
+
|
421 |
+
.pretty-link-upgrade-tr.condensed td .pretty-link-upgrade .features {
|
422 |
+
grid-row-gap: 0;
|
423 |
+
}
|
424 |
+
|
425 |
+
.pretty-link-upgrade-tr.condensed td .pretty-link-upgrade .features li {
|
426 |
+
margin-bottom: 0;
|
427 |
+
}
|
428 |
+
|
429 |
+
.pretty-link-upgrade-tr.condensed td .pretty-link-upgrade .pretty-link-upgrade-content {
|
430 |
+
padding-bottom: 0;
|
431 |
+
}
|
432 |
+
|
433 |
+
.pretty-link-upgrade-tr.condensed td .pretty-link-upgrade .pretty-link-upgrade-cta {
|
434 |
+
padding: 10px;
|
435 |
+
}
|
436 |
+
|
437 |
+
.pretty-link-upgrade-tr.condensed td .pretty-link-upgrade .pretty-link-cta-button {
|
438 |
+
margin-bottom: 0;
|
439 |
+
padding: 10px 15px;
|
440 |
+
}
|
441 |
+
|
442 |
+
#caseproof-flyout {
|
443 |
+
position: fixed;
|
444 |
+
z-index: 99999;
|
445 |
+
transition: all 0.2s ease-in-out;
|
446 |
+
right: 40px;
|
447 |
+
bottom: 40px;
|
448 |
+
opacity: 1;
|
449 |
+
}
|
450 |
+
|
451 |
+
@media (max-width: 959px) {
|
452 |
+
#caseproof-flyout {
|
453 |
+
display: none;
|
454 |
+
}
|
455 |
+
}
|
456 |
+
|
457 |
+
#caseproof-flyout .caseproof-flyout-head {
|
458 |
+
display: block;
|
459 |
+
}
|
460 |
+
|
461 |
+
#caseproof-flyout #caseproof-flyout-items svg {
|
462 |
+
max-width: 25px;
|
463 |
+
margin-top: 10px;
|
464 |
+
}
|
465 |
+
|
466 |
+
#caseproof-flyout .caseproof-flyout-head img {
|
467 |
+
width: 54px;
|
468 |
+
height: 54px;
|
469 |
+
display: block;
|
470 |
+
border-radius: 50%;
|
471 |
+
overflow: hidden;
|
472 |
+
box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
|
473 |
+
transition: all 0.2s ease-in-out;
|
474 |
+
}
|
475 |
+
|
476 |
+
#caseproof-flyout .caseproof-flyout-head:hover img {
|
477 |
+
box-shadow: 0 3px 30px rgba(0, 0, 0, 0.25);
|
478 |
+
}
|
479 |
+
|
480 |
+
#caseproof-flyout .caseproof-flyout-head .caseproof-flyout-label {
|
481 |
+
opacity: 0;
|
482 |
+
transform: translateY(-50%) scale(0);
|
483 |
+
margin-right: -50px;
|
484 |
+
}
|
485 |
+
|
486 |
+
#caseproof-flyout .caseproof-flyout-head:hover .caseproof-flyout-label {
|
487 |
+
opacity: 1;
|
488 |
+
transform: translateY(-50%) scale(1);
|
489 |
+
margin-right: 0;
|
490 |
+
}
|
491 |
+
|
492 |
+
#caseproof-flyout .caseproof-flyout-head:focus {
|
493 |
+
box-shadow: none;
|
494 |
+
}
|
495 |
+
|
496 |
+
#caseproof-flyout .caseproof-flyout-head .caseproof-flyout-label {
|
497 |
+
right: calc(100% + 15px);
|
498 |
+
}
|
499 |
+
|
500 |
+
#caseproof-flyout .caseproof-flyout-label {
|
501 |
+
position: absolute;
|
502 |
+
display: block;
|
503 |
+
top: 50%;
|
504 |
+
right: calc(100% + 25px);
|
505 |
+
transform: translateY(-50%);
|
506 |
+
-moz-transform: translateY(-50%);
|
507 |
+
-webkit-transform: translateY(-50%);
|
508 |
+
color: #fff;
|
509 |
+
background: #5F5E5E 0 0 no-repeat padding-box;
|
510 |
+
font-size: 12px;
|
511 |
+
white-space: nowrap;
|
512 |
+
padding: 5px 10px;
|
513 |
+
height: auto !important;
|
514 |
+
line-height: initial;
|
515 |
+
transition: all 0.2s ease-out;
|
516 |
+
border-radius: 3px;
|
517 |
+
-moz-border-radius: 3px;
|
518 |
+
-webkit-border-radius: 3px;
|
519 |
+
}
|
520 |
+
|
521 |
+
#caseproof-flyout .caseproof-flyout-item {
|
522 |
+
position: absolute;
|
523 |
+
left: 10px;
|
524 |
+
width: 40px;
|
525 |
+
height: 40px;
|
526 |
+
opacity: 0;
|
527 |
+
visibility: hidden;
|
528 |
+
transition: all 0.2s ease-in-out;
|
529 |
+
transform: scale(0);
|
530 |
+
border-radius: 50%;
|
531 |
+
box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
|
532 |
+
background: #036AAB 0 0 no-repeat padding-box;
|
533 |
+
text-align: center;
|
534 |
+
vertical-align: middle;
|
535 |
+
}
|
536 |
+
|
537 |
+
#caseproof-flyout .caseproof-flyout-item i {
|
538 |
+
color: #ffffff;
|
539 |
+
font-size: 20px;
|
540 |
+
line-height: 40px;
|
541 |
+
vertical-align: middle;
|
542 |
+
}
|
543 |
+
|
544 |
+
#caseproof-flyout .caseproof-flyout-item.caseproof-flyout-item-0 {
|
545 |
+
bottom: 75px;
|
546 |
+
}
|
547 |
+
|
548 |
+
#caseproof-flyout .caseproof-flyout-item.caseproof-flyout-item-1 {
|
549 |
+
bottom: 130px;
|
550 |
+
}
|
551 |
+
|
552 |
+
#caseproof-flyout .caseproof-flyout-item.caseproof-flyout-item-2 {
|
553 |
+
bottom: 185px;
|
554 |
+
}
|
555 |
+
|
556 |
+
#caseproof-flyout .caseproof-flyout-item.caseproof-flyout-item-3 {
|
557 |
+
bottom: 240px;
|
558 |
+
}
|
559 |
+
|
560 |
+
#caseproof-flyout .caseproof-flyout-item.caseproof-flyout-item-4 {
|
561 |
+
bottom: 295px;
|
562 |
+
}
|
563 |
+
|
564 |
+
#caseproof-flyout .caseproof-flyout-item:hover {
|
565 |
+
box-shadow: 0 3px 30px rgba(0, 0, 0, 0.25);
|
566 |
+
background: #0096F0 0 0 no-repeat padding-box;
|
567 |
+
}
|
568 |
+
|
569 |
+
#caseproof-flyout .caseproof-flyout-item:hover .caseproof-flyout-label {
|
570 |
+
background: #444444 0 0 no-repeat padding-box;
|
571 |
+
}
|
572 |
+
|
573 |
+
#caseproof-flyout.opened .caseproof-flyout-item {
|
574 |
+
opacity: 1;
|
575 |
+
visibility: visible;
|
576 |
+
transform: scale(1);
|
577 |
+
}
|
578 |
+
|
579 |
+
#caseproof-flyout.opened .caseproof-flyout-head .caseproof-flyout-label {
|
580 |
+
display: none;
|
581 |
+
}
|
582 |
+
|
583 |
+
#caseproof-flyout.opened .caseproof-flyout-item-0 {
|
584 |
+
transition: transform 0.2s 0ms, background-color 0.2s;
|
585 |
+
}
|
586 |
+
|
587 |
+
#caseproof-flyout.opened .caseproof-flyout-item-1 {
|
588 |
+
transition: transform 0.2s 35ms, background-color 0.2s;
|
589 |
+
}
|
590 |
+
|
591 |
+
#caseproof-flyout.opened .caseproof-flyout-item-2 {
|
592 |
+
transition: transform 0.2s 70ms, background-color 0.2s;
|
593 |
+
}
|
594 |
+
|
595 |
+
#caseproof-flyout.opened .caseproof-flyout-item-3 {
|
596 |
+
transition: transform 0.2s 105ms, background-color 0.2s;
|
597 |
+
}
|
598 |
+
|
599 |
+
#caseproof-flyout.opened .caseproof-flyout-item-4 {
|
600 |
+
transition: transform 0.2s 140ms, background-color 0.2s;
|
601 |
+
}
|
602 |
+
|
603 |
+
#caseproof-flyout.out {
|
604 |
+
opacity: 0;
|
605 |
+
visibility: hidden;
|
606 |
+
}
|
607 |
+
|
608 |
+
.prli-welcome {
|
609 |
+
background-color: #fff;
|
610 |
+
background-size: 100%;
|
611 |
+
background-position: top left;
|
612 |
+
background-repeat: no-repeat;
|
613 |
+
padding: 50px;
|
614 |
+
}
|
615 |
+
|
616 |
+
.prli-welcome .pre-badge {
|
617 |
+
text-transform: uppercase;
|
618 |
+
text-align: center;
|
619 |
+
max-width: 450px;
|
620 |
+
margin: 30px auto 20px;
|
621 |
+
font-weight: bold;
|
622 |
+
font-size: 30px;
|
623 |
+
color: #0D459C;
|
624 |
+
}
|
625 |
+
|
626 |
+
.prli-welcome .pre-badge:not(:first-of-type) {
|
627 |
+
margin-top: 100px;
|
628 |
+
}
|
629 |
+
|
630 |
+
.prli-welcome-badge,
|
631 |
+
.prli-welcome-about {
|
632 |
+
max-width: 450px;
|
633 |
+
margin: 0 auto 20px;
|
634 |
+
color: #0D459C;
|
635 |
+
font-size: 16px;
|
636 |
+
}
|
637 |
+
|
638 |
+
.prli-center-section {
|
639 |
+
text-align: center;
|
640 |
+
margin-top: 50px;
|
641 |
+
}
|
642 |
+
|
643 |
+
.prli-center-section p {
|
644 |
+
font-size: 18px;
|
645 |
+
margin: 0 0 20px;
|
646 |
+
}
|
647 |
+
|
648 |
+
.prli-center-section p:last-of-type {
|
649 |
+
margin-bottom: 0;
|
650 |
+
}
|
651 |
+
|
652 |
+
.prli-center-section h2 {
|
653 |
+
text-transform: uppercase;
|
654 |
+
font-size: 24px;
|
655 |
+
margin-bottom: 0;
|
656 |
+
}
|
657 |
+
|
658 |
+
.prli-welcome-steps {
|
659 |
+
display: grid;
|
660 |
+
grid-template-columns: repeat(5, 1fr);
|
661 |
+
grid-column-gap: 50px;
|
662 |
+
margin-bottom: 50px;
|
663 |
+
}
|
664 |
+
|
665 |
+
.prli-welcome-steps ~ p {
|
666 |
+
text-align: center;
|
667 |
+
}
|
668 |
+
|
669 |
+
.prli-welcome-step {
|
670 |
+
color: #000;
|
671 |
+
font-weight: bold;
|
672 |
+
}
|
673 |
+
|
674 |
+
.prli-welcome-step img {
|
675 |
+
max-width: 100%;
|
676 |
+
border: 1px solid #ccc;
|
677 |
+
margin-bottom: 10px;
|
678 |
+
}
|
679 |
+
|
680 |
+
.prli-welcome-steps .welcome-step-number {
|
681 |
+
display: flex;
|
682 |
+
align-items: center;
|
683 |
+
justify-content: center;
|
684 |
+
width: 40px;
|
685 |
+
height: 40px;
|
686 |
+
border-radius: 50%;
|
687 |
+
background-color: #0D459C;
|
688 |
+
color: #fff;
|
689 |
+
font-size: 30px;
|
690 |
+
margin: 0 auto 10px;
|
691 |
+
font-weight: bold;
|
692 |
+
}
|
693 |
+
|
694 |
+
.prlip-reason {
|
695 |
+
display: flex;
|
696 |
+
max-width: 950px;
|
697 |
+
margin: 50px auto 0;
|
698 |
+
}
|
699 |
+
|
700 |
+
.prlip-reason:nth-of-type(odd) {
|
701 |
+
flex-direction: row-reverse;
|
702 |
+
}
|
703 |
+
|
704 |
+
.prlip-reason .reason-content {
|
705 |
+
width: 60%;
|
706 |
+
max-width: 450px;
|
707 |
+
margin: 0 auto;
|
708 |
+
}
|
709 |
+
.prlip-reason .reason-image {
|
710 |
+
width: 40%;
|
711 |
+
max-width: 400px;
|
712 |
+
text-align: center;
|
713 |
+
}
|
714 |
+
|
715 |
+
.prlip-reason .reason-image img {
|
716 |
+
max-width: 250px;
|
717 |
+
margin: 0 auto;
|
718 |
+
}
|
719 |
+
|
720 |
+
.prlip-reason .reason-content h3 {
|
721 |
+
color: #0D459C;
|
722 |
+
}
|
723 |
+
|
724 |
+
.prli-button-section {
|
725 |
+
margin: 20px auto;
|
726 |
+
}
|
727 |
+
|
728 |
+
.prli-button-section .button-upgrade {
|
729 |
+
background-color: #FD9C27;
|
730 |
+
border: none;
|
731 |
+
padding: 10px 20px;
|
732 |
+
}
|
733 |
+
|
css/settings_table.css
CHANGED
@@ -4,6 +4,7 @@ table.prli-settings-table {
|
|
4 |
width: 98%;
|
5 |
border-spacing: 0;
|
6 |
border-collapse: collapse;
|
|
|
7 |
}
|
8 |
|
9 |
table.prli-settings-table td.prli-settings-table-nav {
|
4 |
width: 98%;
|
5 |
border-spacing: 0;
|
6 |
border-collapse: collapse;
|
7 |
+
min-height: 90vh;
|
8 |
}
|
9 |
|
10 |
table.prli-settings-table td.prli-settings-table-nav {
|
i18n/pretty-link.pot
CHANGED
@@ -2,23 +2,23 @@
|
|
2 |
# This file is distributed under the same license as the Pretty Links plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Pretty Links 3.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pretty-link\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"POT-Creation-Date: 2020-
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
-
"X-Generator: WP-CLI 2.
|
15 |
"X-Domain: pretty-link\n"
|
16 |
|
17 |
#. Plugin Name of the plugin
|
18 |
#. Author of the plugin
|
19 |
-
#: app/controllers/PrliLinksController.php:58
|
20 |
-
#: app/controllers/PrliLinksController.php:482
|
21 |
#: pro/app/views/links/prettybar.php:68
|
|
|
|
|
22 |
msgid "Pretty Links"
|
23 |
msgstr ""
|
24 |
|
@@ -34,5196 +34,5178 @@ msgstr ""
|
|
34 |
msgid "http://prettylinks.com"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: app/
|
38 |
-
|
39 |
-
|
40 |
-
|
41 |
-
#: app/controllers/PrliAppController.php:82
|
42 |
-
msgid "Categories [Pro]"
|
43 |
-
msgstr ""
|
44 |
-
|
45 |
-
#: app/controllers/PrliAppController.php:89
|
46 |
-
msgid "Link Tags [Pro Only]"
|
47 |
-
msgstr ""
|
48 |
-
|
49 |
-
#: app/controllers/PrliAppController.php:90
|
50 |
-
msgid "Tags [Pro]"
|
51 |
-
msgstr ""
|
52 |
-
|
53 |
-
#: app/controllers/PrliAppController.php:97
|
54 |
-
msgid "Link Reports [Pro Only]"
|
55 |
-
msgstr ""
|
56 |
-
|
57 |
-
#: app/controllers/PrliAppController.php:98
|
58 |
-
msgid "Reports [Pro]"
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: app/
|
62 |
-
msgid "
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: app/
|
66 |
-
msgid "
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: app/
|
70 |
-
msgid "Pretty
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: app/controllers/PrliAppController.php:115
|
74 |
-
#: app/controllers/PrliLinksController.php:480
|
75 |
-
#: app/models/PrliClick.php:256
|
76 |
-
#: app/views/clicks/list.php:4
|
77 |
-
#: app/views/groups/list.php:81
|
78 |
#: pro/app/helpers/PlpPostsHelper.php:61
|
79 |
#: pro/app/views/links/form.php:39
|
80 |
#: pro/app/views/links/form.php:49
|
81 |
-
#: pro/app/views/reports/custom-report.php:31
|
82 |
-
#: pro/app/views/reports/custom-report.php:64
|
83 |
#: pro/app/views/reports/split-test-report.php:28
|
84 |
#: pro/app/views/reports/split-test-report.php:60
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
msgid "Clicks"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: app/
|
89 |
-
|
|
|
|
|
|
|
|
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: app/
|
93 |
-
#: app/
|
94 |
-
msgid "
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: app/
|
98 |
-
msgid "
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: app/
|
102 |
-
|
103 |
-
msgid "Options"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: app/
|
107 |
-
|
108 |
-
#: app/controllers/PrliAppController.php:265
|
109 |
-
msgid "Activate"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: app/
|
113 |
-
msgid "
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: app/
|
117 |
-
msgid "
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: app/
|
121 |
-
|
|
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: app/
|
125 |
-
#: app/controllers/
|
126 |
-
#: app/
|
127 |
-
msgid "
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: app/
|
131 |
-
|
132 |
-
msgid "Activate Pro License"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: app/
|
136 |
-
msgid "
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: app/
|
140 |
-
|
141 |
-
#: app/views/admin/update/license.php:39
|
142 |
-
#: app/views/shared/nav.php:9
|
143 |
-
msgid "Upgrade to Pro"
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: app/
|
147 |
-
|
148 |
-
#: app/views/options/form.php:1033
|
149 |
-
#: pro/app/views/reports/edit.php:66
|
150 |
-
msgid "Update"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: app/
|
154 |
-
msgid "
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: app/
|
158 |
-
msgid "
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: app/
|
162 |
-
msgid "
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: app/
|
166 |
-
msgid "
|
167 |
msgstr ""
|
168 |
|
169 |
-
|
170 |
-
|
171 |
-
msgid "You're almost done!%1$s%2$sFinish your Re-Install of Pretty Links Pro%3$s"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: app/
|
175 |
-
|
|
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: app/
|
179 |
-
msgid "
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: app/
|
183 |
-
msgid "
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: app/
|
187 |
-
msgid "
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: app/
|
191 |
-
msgid "
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: app/
|
195 |
-
msgid "
|
196 |
msgstr ""
|
197 |
|
198 |
-
|
199 |
-
|
200 |
-
msgid "Enjoying %1$s? Please rate <a href=\"%2$s\" target=\"_blank\" rel=\"noopener noreferrer\">★★★★★</a> on <a href=\"%3$s\" target=\"_blank\" rel=\"noopener\">WordPress.org</a> to help us spread the word. Thanks from the Pretty Links team!"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: app/
|
204 |
-
|
|
|
|
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: app/
|
208 |
-
|
|
|
|
|
|
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: app/
|
212 |
-
|
|
|
|
|
|
|
|
|
213 |
msgstr ""
|
214 |
|
215 |
-
#: app/
|
216 |
-
#: app/
|
217 |
-
#: app/
|
218 |
-
#: app/
|
219 |
-
#: app/views/
|
220 |
-
msgid "
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: app/
|
224 |
-
|
|
|
|
|
|
|
|
|
|
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: app/
|
228 |
-
msgid "
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: app/
|
232 |
-
#:
|
233 |
-
|
234 |
-
msgid "New Pretty Link"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: app/
|
238 |
-
|
|
|
|
|
|
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: app/
|
242 |
-
|
|
|
|
|
|
|
243 |
msgstr ""
|
244 |
|
245 |
-
|
246 |
-
|
|
|
|
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: app/
|
250 |
-
|
|
|
|
|
|
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: app/
|
254 |
-
|
|
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: app/
|
258 |
-
|
|
|
|
|
|
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: app/
|
262 |
-
msgid "
|
263 |
msgstr ""
|
264 |
|
265 |
-
|
266 |
-
|
|
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: app/
|
270 |
-
|
|
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: app/
|
274 |
-
#: app/
|
275 |
-
|
276 |
-
msgid "Forbidden"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: app/
|
280 |
-
|
|
|
|
|
|
|
281 |
msgstr ""
|
282 |
|
283 |
-
|
284 |
-
|
|
|
|
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: app/
|
288 |
-
#:
|
289 |
-
msgid "
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: app/
|
293 |
-
#:
|
294 |
-
msgid "
|
295 |
msgstr ""
|
296 |
|
297 |
-
#: app/
|
298 |
-
#: app/views/links/form_pro.php:
|
299 |
-
|
300 |
-
msgid "Keywords"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: app/
|
304 |
-
|
305 |
-
#: app/controllers/PrliLinksController.php:466
|
306 |
-
#: app/helpers/PrliAppHelper.php:20
|
307 |
-
#: app/views/links/form.php:30
|
308 |
-
msgid "Pro"
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: app/
|
312 |
-
msgid "
|
313 |
-
msgstr ""
|
314 |
-
|
315 |
-
#: app/controllers/PrliLinksController.php:461
|
316 |
-
msgid "Upgrade to a Pretty Links premium plan to get Link Tags"
|
317 |
-
msgstr ""
|
318 |
-
|
319 |
-
#: app/controllers/PrliLinksController.php:467
|
320 |
-
msgid "Upgrade to a Pretty Links premium plan to get Keyword Replacements"
|
321 |
-
msgstr ""
|
322 |
-
|
323 |
-
#: app/controllers/PrliLinksController.php:473
|
324 |
-
msgid "Settings"
|
325 |
-
msgstr ""
|
326 |
-
|
327 |
-
#: app/controllers/PrliLinksController.php:474
|
328 |
-
msgid "Link Title"
|
329 |
msgstr ""
|
330 |
|
331 |
-
|
332 |
-
|
|
|
333 |
msgstr ""
|
334 |
|
335 |
-
#: app/controllers/PrliLinksController.php:481
|
336 |
-
#: app/models/PrliClick.php:256
|
337 |
#: pro/app/views/links/form.php:38
|
338 |
#: pro/app/views/links/form.php:73
|
|
|
|
|
339 |
msgid "Date"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: app/
|
343 |
-
|
344 |
-
msgid "No Follow"
|
345 |
msgstr ""
|
346 |
|
347 |
-
|
348 |
-
#: app/
|
349 |
-
|
350 |
-
msgid "No Change"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: app/
|
354 |
-
|
355 |
-
#: app/controllers/PrliLinksController.php:600
|
356 |
-
#: app/views/shared/tinymce_form_popup.php:49
|
357 |
-
#: app/views/shared/tinymce_form_popup.php:57
|
358 |
-
#: app/views/shared/tinymce_form_popup.php:65
|
359 |
-
msgid "Enabled"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: app/
|
363 |
-
|
364 |
-
#: app/controllers/PrliLinksController.php:601
|
365 |
-
#: app/views/shared/tinymce_form_popup.php:50
|
366 |
-
#: app/views/shared/tinymce_form_popup.php:58
|
367 |
-
#: app/views/shared/tinymce_form_popup.php:66
|
368 |
-
msgid "Disabled"
|
369 |
msgstr ""
|
370 |
|
371 |
-
#: app/
|
372 |
-
|
373 |
-
#: app/views/shared/tinymce_form_popup.php:54
|
374 |
-
msgid "Sponsored"
|
375 |
msgstr ""
|
376 |
|
377 |
-
#: app/
|
378 |
-
|
379 |
-
#: app/views/links/form_advanced.php:61
|
380 |
-
#: app/views/shared/tinymce_form_popup.php:62
|
381 |
-
msgid "Tracking"
|
382 |
msgstr ""
|
383 |
|
384 |
-
|
385 |
-
#: app/views/
|
386 |
-
|
387 |
-
#: pro/app/views/reports/list.php:20
|
388 |
-
msgid "Reset"
|
389 |
msgstr ""
|
390 |
|
391 |
-
#: app/
|
392 |
-
|
|
|
393 |
msgstr ""
|
394 |
|
395 |
-
#: app/
|
396 |
-
|
397 |
-
msgid "Email"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: app/
|
401 |
-
msgid "
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: app/
|
405 |
-
|
|
|
|
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: app/
|
409 |
-
#: app/
|
410 |
-
msgid "
|
411 |
msgstr ""
|
412 |
|
413 |
-
#: app/
|
414 |
-
msgid "
|
415 |
msgstr ""
|
416 |
|
417 |
-
#: app/
|
418 |
-
|
|
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: app/
|
422 |
-
|
|
|
423 |
msgstr ""
|
424 |
|
425 |
-
|
426 |
-
#: pro/app/
|
427 |
-
msgid "
|
428 |
msgstr ""
|
429 |
|
430 |
-
#: app/
|
431 |
-
|
|
|
|
|
|
|
432 |
msgstr ""
|
433 |
|
434 |
-
|
435 |
-
|
|
|
|
|
436 |
msgstr ""
|
437 |
|
438 |
-
#: app/
|
439 |
-
#: app/
|
440 |
-
msgid "
|
441 |
msgstr ""
|
442 |
|
443 |
-
#: app/
|
444 |
-
|
|
|
445 |
msgstr ""
|
446 |
|
447 |
-
#: app/
|
448 |
-
|
|
|
449 |
msgstr ""
|
450 |
|
451 |
-
#: app/
|
452 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: app/
|
456 |
-
|
|
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: app/
|
460 |
-
|
|
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: app/
|
464 |
-
|
|
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: app/
|
468 |
-
|
|
|
469 |
msgstr ""
|
470 |
|
471 |
-
|
472 |
-
|
|
|
473 |
msgstr ""
|
474 |
|
475 |
-
#: app/
|
476 |
-
msgid "
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: app/
|
480 |
-
msgid "
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: app/
|
484 |
-
msgid "
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: app/
|
488 |
-
msgid "
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: app/
|
492 |
-
msgid "
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: app/
|
496 |
-
|
|
|
|
|
|
|
|
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: app/
|
500 |
-
msgid "
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: app/
|
504 |
-
msgid "
|
505 |
msgstr ""
|
506 |
|
507 |
-
#: app/
|
508 |
-
msgid "
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: app/
|
512 |
-
|
|
|
513 |
msgstr ""
|
514 |
|
515 |
-
#: app/
|
516 |
-
|
517 |
-
#: app/controllers/PrliXmlRpcController.php:152
|
518 |
-
#: app/controllers/PrliXmlRpcController.php:209
|
519 |
-
#: app/controllers/PrliXmlRpcController.php:238
|
520 |
-
#: app/controllers/PrliXmlRpcController.php:266
|
521 |
-
#: app/controllers/PrliXmlRpcController.php:299
|
522 |
-
#: app/controllers/PrliXmlRpcController.php:331
|
523 |
-
msgid "Sorry, XML-RPC Not enabled for this website"
|
524 |
msgstr ""
|
525 |
|
526 |
-
#: app/
|
527 |
-
#: app/
|
528 |
-
#: app/
|
529 |
-
|
530 |
-
#: app/controllers/PrliXmlRpcController.php:241
|
531 |
-
#: app/controllers/PrliXmlRpcController.php:269
|
532 |
-
#: app/controllers/PrliXmlRpcController.php:302
|
533 |
-
#: app/controllers/PrliXmlRpcController.php:334
|
534 |
-
msgid "Sorry, Login failed"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: app/
|
538 |
-
#: app/
|
539 |
-
|
540 |
-
#: app/controllers/PrliXmlRpcController.php:218
|
541 |
-
#: app/controllers/PrliXmlRpcController.php:247
|
542 |
-
#: app/controllers/PrliXmlRpcController.php:275
|
543 |
-
#: app/controllers/PrliXmlRpcController.php:308
|
544 |
-
#: app/controllers/PrliXmlRpcController.php:340
|
545 |
-
msgid "Sorry, you must be an administrator to access this resource"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: app/
|
549 |
-
msgid "
|
550 |
msgstr ""
|
551 |
|
552 |
-
#: app/
|
553 |
-
#: app/
|
554 |
-
msgid "
|
555 |
msgstr ""
|
556 |
|
557 |
-
|
558 |
-
|
|
|
559 |
msgstr ""
|
560 |
|
561 |
-
#: app/
|
562 |
-
msgid "
|
563 |
msgstr ""
|
564 |
|
565 |
-
#: app/
|
566 |
-
|
|
|
|
|
567 |
msgstr ""
|
568 |
|
569 |
-
#: app/
|
570 |
-
msgid "
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: app/
|
574 |
-
|
575 |
-
msgid "There was an error fetching your Pretty Link"
|
576 |
-
msgstr ""
|
577 |
-
|
578 |
-
#: app/controllers/PrliXmlRpcController.php:311
|
579 |
-
#: app/controllers/PrliXmlRpcController.php:343
|
580 |
-
msgid "Sorry, you must provide an id to lookup"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: app/
|
584 |
-
msgid "
|
585 |
msgstr ""
|
586 |
|
587 |
-
#: app/
|
588 |
-
msgid "
|
589 |
msgstr ""
|
590 |
|
591 |
-
#: app/
|
592 |
-
|
593 |
-
#: app/views/shared/tinymce_form_popup.php:32
|
594 |
-
msgid "307 (Temporary)"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#: app/
|
598 |
-
|
599 |
-
#: app/views/shared/tinymce_form_popup.php:33
|
600 |
-
msgid "302 (Temporary)"
|
601 |
msgstr ""
|
602 |
|
603 |
-
#: app/
|
604 |
-
|
605 |
-
#: app/views/shared/tinymce_form_popup.php:34
|
606 |
-
msgid "301 (Permanent)"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: app/
|
610 |
-
msgid "
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: app/
|
614 |
-
msgid "
|
615 |
msgstr ""
|
616 |
|
617 |
-
#: app/
|
618 |
-
|
|
|
|
|
619 |
msgstr ""
|
620 |
|
621 |
-
#: app/
|
622 |
-
msgid "
|
623 |
msgstr ""
|
624 |
|
625 |
-
#: app/
|
626 |
-
msgid "
|
627 |
msgstr ""
|
628 |
|
629 |
-
#: app/
|
630 |
-
|
|
|
|
|
631 |
msgstr ""
|
632 |
|
633 |
-
#: app/
|
634 |
-
msgid "
|
635 |
msgstr ""
|
636 |
|
637 |
-
#: app/
|
638 |
-
msgid "
|
639 |
msgstr ""
|
640 |
|
641 |
-
|
642 |
-
|
|
|
643 |
msgstr ""
|
644 |
|
645 |
-
#: app/
|
646 |
-
|
|
|
|
|
647 |
msgstr ""
|
648 |
|
649 |
-
#: app/
|
650 |
-
msgid "
|
651 |
msgstr ""
|
652 |
|
653 |
-
#: app/
|
654 |
-
|
655 |
-
#: app/views/groups/list.php:78
|
656 |
-
#: pro/app/views/reports/list.php:68
|
657 |
-
#: pro/app/views/reports/list.php:71
|
658 |
-
msgid "Edit %s"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#: app/
|
662 |
-
msgid "
|
663 |
msgstr ""
|
664 |
|
665 |
-
#: app/
|
666 |
-
|
667 |
-
#: pro/app/views/reports/list.php:72
|
668 |
-
msgid "Delete %s"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#: app/
|
672 |
-
msgid "
|
673 |
msgstr ""
|
674 |
|
675 |
-
#: app/
|
676 |
-
|
677 |
-
msgid "Reset %s"
|
678 |
msgstr ""
|
679 |
|
680 |
-
#: app/
|
681 |
-
|
682 |
-
msgid "View clicks for %s"
|
683 |
msgstr ""
|
684 |
|
685 |
-
#: app/
|
686 |
-
#: app/
|
687 |
-
msgid "
|
688 |
msgstr ""
|
689 |
|
690 |
-
#: app/
|
691 |
-
|
692 |
-
msgid "Send %s in an Email"
|
693 |
msgstr ""
|
694 |
|
695 |
-
#: app/
|
696 |
-
|
697 |
-
msgid "Visit Target URL: %s in a New Window"
|
698 |
msgstr ""
|
699 |
|
700 |
-
#: app/
|
701 |
-
|
702 |
-
msgid "Visit Short URL: %s in a New Window"
|
703 |
msgstr ""
|
704 |
|
705 |
-
#: app/
|
706 |
-
msgid "
|
707 |
msgstr ""
|
708 |
|
709 |
-
#: app/
|
710 |
-
msgid "
|
711 |
msgstr ""
|
712 |
|
713 |
-
#: app/
|
714 |
-
msgid "
|
715 |
msgstr ""
|
716 |
|
717 |
-
#: app/
|
718 |
-
msgid "
|
719 |
msgstr ""
|
720 |
|
721 |
-
#: app/
|
722 |
-
msgid "
|
723 |
msgstr ""
|
724 |
|
725 |
-
#: app/
|
726 |
-
msgid "
|
727 |
msgstr ""
|
728 |
|
729 |
-
#: app/
|
730 |
-
|
731 |
-
msgid "Pretty Link:"
|
732 |
msgstr ""
|
733 |
|
734 |
-
#: app/
|
735 |
-
msgid "
|
736 |
msgstr ""
|
737 |
|
738 |
-
#: app/
|
739 |
-
|
740 |
-
msgid "between"
|
741 |
msgstr ""
|
742 |
|
743 |
-
#: app/
|
744 |
-
|
745 |
-
#: pro/app/models/PlpReport.php:400
|
746 |
-
msgid "and"
|
747 |
msgstr ""
|
748 |
|
749 |
-
#: app/
|
750 |
-
msgid "
|
751 |
msgstr ""
|
752 |
|
753 |
-
#: app/
|
754 |
-
msgid "
|
755 |
msgstr ""
|
756 |
|
757 |
-
#: app/
|
758 |
-
msgid "
|
759 |
msgstr ""
|
760 |
|
761 |
-
#: app/
|
762 |
-
msgid "
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: app/
|
766 |
-
msgid "
|
767 |
msgstr ""
|
768 |
|
769 |
-
#: app/
|
770 |
-
msgid "Pretty Link
|
771 |
msgstr ""
|
772 |
|
773 |
-
#: app/
|
774 |
-
msgid "
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: app/
|
778 |
-
msgid "
|
779 |
msgstr ""
|
780 |
|
781 |
-
#: app/
|
782 |
-
msgid "
|
783 |
msgstr ""
|
784 |
|
785 |
-
|
786 |
-
|
787 |
-
msgid "Get started by %1$sadding a URL%2$s that you want to turn into a pretty link.%3$sCome back to see how many times it was clicked."
|
788 |
msgstr ""
|
789 |
|
790 |
-
#: app/views/
|
791 |
-
|
792 |
-
msgid "ERROR"
|
793 |
msgstr ""
|
794 |
|
795 |
-
#: app/views/
|
796 |
-
|
797 |
-
msgid "Get Some Quick Wins with Pretty Links 3.0!"
|
798 |
msgstr ""
|
799 |
|
800 |
-
|
801 |
-
|
802 |
-
msgid "We hope you know that here at Pretty Links, we work every day to deliver amazing tools for business owners to help them %1$swin more%2$s. We want our customers to make more money, easier through superior affiliate link strategy and management."
|
803 |
msgstr ""
|
804 |
|
805 |
-
|
806 |
-
|
807 |
-
msgid "That's why today, we're excited to announce that we're rolling out a major, new release. This release won't deliver any huge, new features but rather a set of incremental features & fixes that will %1$sinstantly give you some well deserved quick wins%2$s in your business."
|
808 |
msgstr ""
|
809 |
|
810 |
-
|
811 |
-
|
812 |
-
msgid "That's why we're calling Pretty Links 3.0 - %1$sQuick Wins!%2$s"
|
813 |
msgstr ""
|
814 |
|
815 |
-
#: app/views/
|
816 |
-
msgid "
|
817 |
msgstr ""
|
818 |
|
819 |
-
#: app/views/
|
820 |
-
msgid "
|
821 |
msgstr ""
|
822 |
|
823 |
-
|
824 |
-
#: app/views/
|
825 |
-
msgid "
|
826 |
msgstr ""
|
827 |
|
828 |
-
#: app/views/
|
829 |
-
#: app/views/
|
830 |
-
|
831 |
-
#: app/views/admin/onboarding/update.php:67
|
832 |
-
msgid "An all-new Link Editor"
|
833 |
msgstr ""
|
834 |
|
835 |
-
|
836 |
-
#: app/views/
|
837 |
-
msgid "
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: app/views/
|
841 |
-
#: app/views/
|
842 |
-
msgid "
|
843 |
msgstr ""
|
844 |
|
845 |
-
|
846 |
-
#: app/views/
|
847 |
-
msgid "
|
848 |
msgstr ""
|
849 |
|
850 |
-
#: app/views/
|
851 |
-
#: app/views/
|
852 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
853 |
msgstr ""
|
854 |
|
855 |
-
|
856 |
-
#: app/views/
|
857 |
-
msgid "
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: app/views/
|
861 |
-
#: app/views/
|
862 |
-
|
|
|
|
|
863 |
msgstr ""
|
864 |
|
865 |
-
#: app/views/
|
866 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
867 |
msgstr ""
|
868 |
|
869 |
-
#: app/views/
|
870 |
-
|
|
|
|
|
|
|
871 |
msgstr ""
|
872 |
|
873 |
-
|
874 |
-
|
875 |
-
msgid "We're excited for you to start winning more today with %1$sPretty Link Quick Wins!%2$s"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: app/views/
|
879 |
-
#: app/views/
|
880 |
-
msgid "
|
881 |
msgstr ""
|
882 |
|
883 |
-
#: app/views/
|
884 |
-
|
|
|
|
|
|
|
885 |
msgstr ""
|
886 |
|
887 |
-
#: app/views/
|
888 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
889 |
msgstr ""
|
890 |
|
891 |
-
#: app/views/
|
892 |
-
|
|
|
|
|
|
|
|
|
|
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: app/views/
|
896 |
-
|
|
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: app/views/
|
900 |
-
|
|
|
|
|
|
|
|
|
901 |
msgstr ""
|
902 |
|
903 |
-
#: app/views/
|
904 |
-
|
|
|
905 |
msgstr ""
|
906 |
|
907 |
-
#: app/views/
|
908 |
-
msgid "
|
909 |
msgstr ""
|
910 |
|
911 |
-
#: app/views/
|
912 |
-
|
|
|
|
|
913 |
msgstr ""
|
914 |
|
915 |
-
#: app/views/
|
916 |
-
|
|
|
917 |
msgstr ""
|
918 |
|
919 |
-
#: app/views/
|
920 |
-
msgid "
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: app/views/
|
924 |
-
msgid "
|
925 |
msgstr ""
|
926 |
|
927 |
-
#: app/views/
|
928 |
-
msgid "
|
929 |
msgstr ""
|
930 |
|
931 |
-
#: app/views/
|
932 |
-
msgid "
|
933 |
msgstr ""
|
934 |
|
935 |
-
#: app/views/
|
936 |
-
msgid "
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: app/views/
|
940 |
-
|
|
|
941 |
msgstr ""
|
942 |
|
943 |
-
#: app/views/
|
944 |
-
|
|
|
|
|
945 |
msgstr ""
|
946 |
|
947 |
-
#: app/views/
|
948 |
-
|
|
|
|
|
949 |
msgstr ""
|
950 |
|
951 |
-
#: app/views/
|
952 |
-
#: app/views/
|
953 |
-
|
|
|
954 |
msgstr ""
|
955 |
|
956 |
-
#: app/views/
|
957 |
-
msgid "
|
958 |
msgstr ""
|
959 |
|
960 |
-
#: app/views/
|
961 |
-
|
|
|
|
|
|
|
962 |
msgstr ""
|
963 |
|
964 |
-
#: app/views/
|
965 |
-
|
966 |
-
msgid "Categories & Tags"
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: app/views/
|
970 |
-
msgid "
|
971 |
msgstr ""
|
972 |
|
973 |
-
#: app/views/
|
974 |
-
|
975 |
-
msgid "Advanced Redirect Types"
|
976 |
msgstr ""
|
977 |
|
978 |
-
#: app/views/
|
979 |
-
msgid "
|
980 |
msgstr ""
|
981 |
|
982 |
-
#: app/views/
|
983 |
-
|
|
|
984 |
msgstr ""
|
985 |
|
986 |
-
#: app/views/
|
987 |
-
#: app/
|
988 |
-
|
|
|
989 |
msgstr ""
|
990 |
|
991 |
-
#: app/views/
|
992 |
-
msgid "
|
993 |
msgstr ""
|
994 |
|
995 |
-
#: app/views/
|
996 |
-
|
|
|
997 |
msgstr ""
|
998 |
|
999 |
-
#: app/views/
|
1000 |
-
#: app/views/
|
1001 |
-
|
|
|
1002 |
msgstr ""
|
1003 |
|
1004 |
-
#: app/views/
|
1005 |
-
|
|
|
1006 |
msgstr ""
|
1007 |
|
1008 |
-
#: app/views/
|
1009 |
-
|
|
|
1010 |
msgstr ""
|
1011 |
|
1012 |
-
#: app/views/
|
1013 |
-
|
|
|
1014 |
msgstr ""
|
1015 |
|
1016 |
-
#: app/views/
|
1017 |
-
|
|
|
1018 |
msgstr ""
|
1019 |
|
1020 |
-
#: app/views/
|
1021 |
-
|
|
|
1022 |
msgstr ""
|
1023 |
|
1024 |
-
#: app/views/
|
1025 |
-
#:
|
1026 |
-
|
1027 |
-
msgid "Yes"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
-
#: app/views/
|
1031 |
-
#:
|
1032 |
-
|
1033 |
-
msgid "No"
|
1034 |
msgstr ""
|
1035 |
|
1036 |
-
#: app/views/
|
1037 |
-
msgid "
|
1038 |
msgstr ""
|
1039 |
|
1040 |
-
#: app/views/
|
1041 |
-
msgid "
|
1042 |
msgstr ""
|
1043 |
|
1044 |
-
#: app/views/
|
1045 |
-
|
1046 |
-
msgid "Thanks for your support!"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: app/views/
|
1050 |
-
|
1051 |
-
msgid "Remind Me Later"
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#: app/views/
|
1055 |
-
msgid "
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
#: app/views/
|
1059 |
-
|
1060 |
-
msgid "Leave Feedback"
|
1061 |
msgstr ""
|
1062 |
|
1063 |
-
#: app/views/
|
1064 |
-
|
|
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#: app/views/
|
1068 |
-
|
|
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
|
1072 |
-
|
|
|
|
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#: app/views/
|
1076 |
-
|
|
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#: app/views/
|
1080 |
-
|
|
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
|
1084 |
-
|
|
|
|
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#: app/views/
|
1088 |
-
|
|
|
|
|
1089 |
msgstr ""
|
1090 |
|
1091 |
-
#: app/views/
|
1092 |
-
|
|
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
|
1096 |
-
|
1097 |
-
|
1098 |
-
|
1099 |
-
#: app/views/admin/popups/upgrade.php:14
|
1100 |
-
#: app/views/admin/update/license.php:60
|
1101 |
-
msgid "And much, much more!"
|
1102 |
msgstr ""
|
1103 |
|
1104 |
-
#: app/views/
|
1105 |
-
|
|
|
1106 |
msgstr ""
|
1107 |
|
1108 |
-
#: app/views/
|
1109 |
-
#: app/views/
|
1110 |
-
msgid "
|
1111 |
msgstr ""
|
1112 |
|
1113 |
-
|
1114 |
-
|
|
|
|
|
1115 |
msgstr ""
|
1116 |
|
1117 |
-
#: app/views/
|
1118 |
-
|
|
|
1119 |
msgstr ""
|
1120 |
|
1121 |
-
#: app/views/
|
1122 |
-
|
|
|
1123 |
msgstr ""
|
1124 |
|
1125 |
-
|
1126 |
-
#: app/views/
|
1127 |
-
|
|
|
1128 |
msgstr ""
|
1129 |
|
1130 |
-
#: app/views/
|
1131 |
-
|
|
|
1132 |
msgstr ""
|
1133 |
|
1134 |
-
|
1135 |
-
#: app/views/
|
1136 |
-
msgid "
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
|
1140 |
-
#: app/views/
|
1141 |
-
msgid "
|
1142 |
msgstr ""
|
1143 |
|
1144 |
-
|
1145 |
-
|
1146 |
-
msgid "You can retrieve or purchase a license key at %1$sPrettyLinks.com%2$s to enable automatic updates today."
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
|
1150 |
-
|
1151 |
-
msgid "After you paste your license key on the %1$s\"Pretty Links\" -> \"Activate Pro\" admin page,%2$s you'll start getting automatic updates."
|
1152 |
msgstr ""
|
1153 |
|
1154 |
-
#: app/views/
|
1155 |
-
msgid "
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: app/views/
|
1159 |
-
msgid "
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: app/views/
|
1163 |
-
msgid "
|
1164 |
msgstr ""
|
1165 |
|
1166 |
-
#: app/views/
|
1167 |
-
msgid "
|
1168 |
msgstr ""
|
1169 |
|
1170 |
-
#: app/views/
|
1171 |
-
|
1172 |
-
msgid "Install"
|
1173 |
msgstr ""
|
1174 |
|
1175 |
-
#: app/views/
|
1176 |
-
msgid "
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#: app/views/
|
1180 |
-
|
|
|
|
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: app/views/
|
1184 |
-
|
|
|
|
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: app/views/
|
1188 |
-
|
|
|
|
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: app/views/
|
1192 |
-
|
|
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: app/views/
|
1196 |
-
|
|
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
|
1200 |
-
|
|
|
|
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: app/views/
|
1204 |
-
msgid "
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
|
1208 |
-
|
1209 |
-
msgid "If you have problems with the auto-install please refer to %1$sthe user manual%2$s for manual install instructions."
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: app/views/
|
1213 |
-
msgid "
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#: app/views/
|
1217 |
-
|
|
|
1218 |
msgstr ""
|
1219 |
|
1220 |
-
#: app/views/
|
1221 |
-
|
|
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: app/views/
|
1225 |
-
|
|
|
1226 |
msgstr ""
|
1227 |
|
1228 |
-
#: app/views/
|
1229 |
-
|
1230 |
-
msgid "Loading..."
|
1231 |
msgstr ""
|
1232 |
|
1233 |
-
#: app/views/
|
1234 |
-
msgid "
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#. translators: %1$s:
|
1238 |
-
#: app/views/
|
1239 |
-
msgid "
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: app/views/
|
1243 |
-
|
|
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: app/views/
|
1247 |
-
|
|
|
1248 |
msgstr ""
|
1249 |
|
1250 |
-
|
1251 |
-
#: app/views/
|
1252 |
-
msgid "
|
1253 |
msgstr ""
|
1254 |
|
1255 |
-
#: app/views/
|
1256 |
-
|
|
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: app/views/
|
1260 |
-
|
|
|
1261 |
msgstr ""
|
1262 |
|
1263 |
-
|
1264 |
-
|
|
|
|
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: app/views/
|
1268 |
-
|
|
|
|
|
|
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
|
1272 |
-
|
|
|
|
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: app/views/
|
1276 |
-
|
|
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: app/views/
|
1280 |
-
msgid "
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: app/views/
|
1284 |
-
|
|
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#: app/views/
|
1288 |
-
|
|
|
1289 |
msgstr ""
|
1290 |
|
1291 |
-
#: app/views/
|
1292 |
-
msgid "Status
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: app/views/
|
1296 |
-
msgid "
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: app/views/
|
1300 |
-
msgid "
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: app/views/
|
1304 |
-
|
|
|
|
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
|
1308 |
-
#: app/views/
|
1309 |
-
|
|
|
1310 |
msgstr ""
|
1311 |
|
1312 |
-
#: app/views/
|
1313 |
-
|
|
|
1314 |
msgstr ""
|
1315 |
|
1316 |
-
#: app/views/
|
1317 |
-
|
|
|
1318 |
msgstr ""
|
1319 |
|
1320 |
-
#: app/views/
|
1321 |
-
|
|
|
1322 |
msgstr ""
|
1323 |
|
1324 |
-
#: app/views/
|
1325 |
-
|
|
|
1326 |
msgstr ""
|
1327 |
|
1328 |
-
#: app/views/
|
1329 |
-
|
|
|
1330 |
msgstr ""
|
1331 |
|
1332 |
-
#: app/views/
|
1333 |
-
|
|
|
1334 |
msgstr ""
|
1335 |
|
1336 |
-
#: app/views/
|
1337 |
-
|
|
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: app/views/
|
1341 |
-
|
|
|
1342 |
msgstr ""
|
1343 |
|
1344 |
-
#: app/views/
|
1345 |
-
#: app/views/
|
1346 |
-
msgid "
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#: app/views/
|
1350 |
-
|
|
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: app/views/
|
1354 |
-
|
|
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
|
1358 |
-
|
|
|
|
|
1359 |
msgstr ""
|
1360 |
|
1361 |
-
#: app/views/
|
1362 |
-
#:
|
1363 |
-
|
1364 |
-
msgid "Customize Report"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
-
#: app/views/
|
1368 |
-
#:
|
1369 |
-
msgid "
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
|
1373 |
-
|
|
|
|
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: app/views/
|
1377 |
-
|
|
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: app/views/
|
1381 |
-
#:
|
1382 |
-
|
1383 |
-
#: pro/app/models/PlpReport.php:412
|
1384 |
-
#: pro/app/models/PlpReport.php:419
|
1385 |
-
msgid "All Clicks"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
-
|
1389 |
-
#: pro/app/
|
1390 |
-
#:
|
1391 |
-
|
1392 |
-
#: pro/app/models/PlpReport.php:419
|
1393 |
-
msgid "Unique Clicks"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
-
#: app/views/
|
1397 |
-
#:
|
1398 |
-
|
1399 |
-
msgid "Date Range:"
|
1400 |
msgstr ""
|
1401 |
|
1402 |
-
#: app/views/
|
1403 |
-
|
|
|
1404 |
msgstr ""
|
1405 |
|
1406 |
-
|
1407 |
-
#: pro/app/views/
|
1408 |
-
#:
|
1409 |
-
msgid "
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#: app/views/
|
1413 |
-
#: app/views/
|
1414 |
-
|
1415 |
-
#: pro/app/views/reports/custom-report.php:22
|
1416 |
-
#: pro/app/views/reports/edit.php:66
|
1417 |
-
#: pro/app/views/reports/new.php:66
|
1418 |
-
#: pro/app/views/reports/split-test-report.php:19
|
1419 |
-
msgid "Cancel"
|
1420 |
msgstr ""
|
1421 |
|
1422 |
-
#: app/views/
|
1423 |
-
|
|
|
1424 |
msgstr ""
|
1425 |
|
1426 |
-
|
1427 |
-
#: app/views/
|
1428 |
-
|
|
|
1429 |
msgstr ""
|
1430 |
|
1431 |
-
#: app/views/
|
1432 |
-
#: app/views/
|
1433 |
-
msgid "
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#: app/views/
|
1437 |
-
#: app/views/
|
1438 |
-
msgid "
|
1439 |
msgstr ""
|
1440 |
|
1441 |
-
|
1442 |
-
#: app/views/
|
1443 |
-
|
|
|
1444 |
msgstr ""
|
1445 |
|
1446 |
-
#: app/views/
|
1447 |
-
#: app/views/
|
1448 |
-
msgid "
|
1449 |
msgstr ""
|
1450 |
|
1451 |
-
#: app/views/
|
1452 |
-
#: app/views/
|
1453 |
-
msgid "
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
|
1457 |
-
#: app/views/
|
1458 |
-
|
|
|
1459 |
msgstr ""
|
1460 |
|
1461 |
-
#: app/views/
|
1462 |
-
#: app/views/
|
1463 |
-
msgid "
|
1464 |
msgstr ""
|
1465 |
|
1466 |
-
#: app/views/
|
1467 |
-
#: app/views/
|
1468 |
-
|
1469 |
-
#: pro/app/models/PlpReport.php:275
|
1470 |
-
msgid "Link"
|
1471 |
msgstr ""
|
1472 |
|
1473 |
-
#: app/views/
|
1474 |
-
|
|
|
1475 |
msgstr ""
|
1476 |
|
1477 |
-
#: app/views/
|
1478 |
-
|
|
|
1479 |
msgstr ""
|
1480 |
|
1481 |
-
#: app/views/
|
1482 |
-
|
|
|
1483 |
msgstr ""
|
1484 |
|
1485 |
-
#: app/views/
|
1486 |
-
|
|
|
1487 |
msgstr ""
|
1488 |
|
1489 |
-
#: app/views/
|
1490 |
-
|
|
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#: app/views/
|
1494 |
-
#:
|
1495 |
-
msgid "
|
1496 |
msgstr ""
|
1497 |
|
1498 |
-
#: app/views/
|
1499 |
-
#: app/views/
|
1500 |
-
msgid "
|
1501 |
msgstr ""
|
1502 |
|
1503 |
-
#: app/views/
|
1504 |
-
#: app/views/
|
1505 |
-
msgid "
|
1506 |
msgstr ""
|
1507 |
|
1508 |
-
#: app/views/
|
1509 |
-
#: app/views/
|
1510 |
-
msgid "
|
1511 |
msgstr ""
|
1512 |
|
1513 |
-
#: app/views/
|
1514 |
-
#: app/views/
|
1515 |
-
msgid "
|
1516 |
msgstr ""
|
1517 |
|
1518 |
-
#: app/views/
|
1519 |
-
#: app/views/
|
1520 |
-
#: app/views/
|
1521 |
-
#: app/views/
|
1522 |
-
|
1523 |
-
#: pro/app/views/reports/list.php:32
|
1524 |
-
#: pro/app/views/reports/list.php:86
|
1525 |
-
#: pro/app/views/reports/new.php:44
|
1526 |
-
msgid "Name"
|
1527 |
msgstr ""
|
1528 |
|
1529 |
-
|
1530 |
-
#: app/views/
|
1531 |
-
|
|
|
1532 |
msgstr ""
|
1533 |
|
1534 |
-
|
1535 |
-
#: app/views/
|
1536 |
-
|
1537 |
-
|
|
|
|
|
|
|
|
|
1538 |
msgstr ""
|
1539 |
|
1540 |
-
|
1541 |
-
|
|
|
|
|
1542 |
msgstr ""
|
1543 |
|
1544 |
-
#: app/views/
|
1545 |
-
|
|
|
|
|
1546 |
msgstr ""
|
1547 |
|
1548 |
-
#: app/views/
|
1549 |
-
#:
|
1550 |
-
msgid "
|
1551 |
msgstr ""
|
1552 |
|
1553 |
-
#: app/views/
|
1554 |
-
#: app/views/
|
1555 |
-
|
1556 |
-
#: app/views/options/form.php:51
|
1557 |
-
#: pro/app/views/reports/list.php:42
|
1558 |
-
#: pro/app/views/reports/list.php:88
|
1559 |
-
msgid "Links"
|
1560 |
msgstr ""
|
1561 |
|
1562 |
-
|
1563 |
-
#: app/views/
|
1564 |
-
#:
|
1565 |
-
|
1566 |
-
msgid "Created"
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#: app/views/
|
1570 |
-
|
|
|
1571 |
msgstr ""
|
1572 |
|
1573 |
-
#: app/views/
|
1574 |
-
#:
|
1575 |
-
msgid "
|
1576 |
msgstr ""
|
1577 |
|
1578 |
-
|
1579 |
-
|
|
|
|
|
1580 |
msgstr ""
|
1581 |
|
1582 |
-
#: app/views/
|
1583 |
-
#:
|
1584 |
-
msgid "
|
1585 |
msgstr ""
|
1586 |
|
1587 |
-
|
1588 |
-
#: app/views/
|
1589 |
-
|
|
|
1590 |
msgstr ""
|
1591 |
|
1592 |
-
#: app/views/
|
1593 |
-
|
|
|
1594 |
msgstr ""
|
1595 |
|
1596 |
-
#: app/views/
|
1597 |
-
|
|
|
1598 |
msgstr ""
|
1599 |
|
1600 |
-
#: app/views/
|
1601 |
-
#:
|
1602 |
-
msgid "
|
1603 |
msgstr ""
|
1604 |
|
1605 |
-
#: app/views/
|
1606 |
-
#: app/views/
|
1607 |
-
|
1608 |
-
msgid "Create"
|
1609 |
msgstr ""
|
1610 |
|
1611 |
-
#: app/views/
|
1612 |
-
msgid "
|
1613 |
msgstr ""
|
1614 |
|
1615 |
-
#: app/views/
|
1616 |
-
msgid "
|
1617 |
msgstr ""
|
1618 |
|
1619 |
-
#: app/views/
|
1620 |
-
msgid "
|
1621 |
msgstr ""
|
1622 |
|
1623 |
-
#: app/views/
|
1624 |
-
msgid "
|
1625 |
msgstr ""
|
1626 |
|
1627 |
-
#: app/views/
|
1628 |
-
msgid "
|
1629 |
msgstr ""
|
1630 |
|
1631 |
-
#: app/views/
|
1632 |
-
msgid "
|
1633 |
msgstr ""
|
1634 |
|
1635 |
-
#: app/views/
|
1636 |
-
|
1637 |
-
msgid "Delay Redirect"
|
1638 |
msgstr ""
|
1639 |
|
1640 |
-
#: app/views/
|
1641 |
-
msgid "
|
1642 |
msgstr ""
|
1643 |
|
1644 |
-
#: app/views/
|
1645 |
-
|
1646 |
-
msgid "Parameter Forwarding"
|
1647 |
msgstr ""
|
1648 |
|
1649 |
-
#: app/views/
|
1650 |
-
msgid "
|
1651 |
msgstr ""
|
1652 |
|
1653 |
-
#: app/views/
|
1654 |
-
msgid "
|
1655 |
msgstr ""
|
1656 |
|
1657 |
-
#: app/views/
|
1658 |
-
|
1659 |
-
#: pro/app/views/links/bulk-edit.php:10
|
1660 |
-
msgid "Google Analytics"
|
1661 |
msgstr ""
|
1662 |
|
1663 |
-
#: app/views/
|
1664 |
-
msgid "
|
1665 |
msgstr ""
|
1666 |
|
1667 |
-
#: app/views/
|
1668 |
-
msgid "
|
1669 |
msgstr ""
|
1670 |
|
1671 |
-
#: app/views/
|
1672 |
-
msgid "
|
1673 |
msgstr ""
|
1674 |
|
1675 |
-
#: app/views/
|
1676 |
-
msgid "
|
1677 |
msgstr ""
|
1678 |
|
1679 |
-
#: app/views/
|
1680 |
-
|
1681 |
-
msgid "Redirection Type"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
-
#: app/views/
|
1685 |
-
msgid "
|
1686 |
msgstr ""
|
1687 |
|
1688 |
-
#: app/views/
|
1689 |
-
|
1690 |
-
msgid "Get cloaked redirects, Javascript redirects and more when you %1$sUpgrade to PRO%2$s"
|
1691 |
msgstr ""
|
1692 |
|
1693 |
-
#: app/views/
|
1694 |
-
|
|
|
1695 |
msgstr ""
|
1696 |
|
1697 |
-
#: app/views/
|
1698 |
-
|
1699 |
-
#: app/views/shared/tinymce_form_popup.php:82
|
1700 |
-
#: app/views/widgets/widget.php:11
|
1701 |
-
msgid "Target URL"
|
1702 |
msgstr ""
|
1703 |
|
1704 |
-
#: app/views/
|
1705 |
-
msgid "
|
1706 |
msgstr ""
|
1707 |
|
1708 |
-
#: app/views/
|
1709 |
-
msgid "Pretty Link
|
1710 |
msgstr ""
|
1711 |
|
1712 |
-
#: app/views/
|
1713 |
-
msgid "
|
1714 |
msgstr ""
|
1715 |
|
1716 |
-
#: app/views/
|
1717 |
-
|
1718 |
-
msgid "Notes"
|
1719 |
msgstr ""
|
1720 |
|
1721 |
-
#: app/views/
|
1722 |
-
msgid "
|
1723 |
msgstr ""
|
1724 |
|
1725 |
-
#: app/views/
|
1726 |
-
|
1727 |
-
msgid "Expire"
|
1728 |
msgstr ""
|
1729 |
|
1730 |
-
#: app/views/
|
1731 |
-
|
1732 |
-
msgid "Expire Link"
|
1733 |
msgstr ""
|
1734 |
|
1735 |
-
#: app/views/
|
1736 |
-
|
1737 |
-
msgid "Set this link to expire after a specific date or number of clicks."
|
1738 |
msgstr ""
|
1739 |
|
1740 |
-
#: app/views/
|
1741 |
-
|
1742 |
-
msgid "Auto-Replace Keywords"
|
1743 |
msgstr ""
|
1744 |
|
1745 |
-
#: app/views/
|
1746 |
-
msgid "
|
1747 |
msgstr ""
|
1748 |
|
1749 |
-
#: app/views/
|
1750 |
-
#: pro/app/views/
|
1751 |
-
|
|
|
1752 |
msgstr ""
|
1753 |
|
1754 |
-
#: app/views/
|
1755 |
-
|
1756 |
-
msgid "Auto-Replace URLs"
|
1757 |
msgstr ""
|
1758 |
|
1759 |
-
|
1760 |
-
|
1761 |
-
msgid "Enter a comma separated list of the URLs that you'd like to replace with this Pretty Link in your Posts & Pages. These must be formatted as URLs for example: %1$shttp://example.com%2$s or %1$shttp://example.com?product_id=53%2$s"
|
1762 |
msgstr ""
|
1763 |
|
1764 |
-
#: app/views/
|
1765 |
-
#: app/
|
1766 |
-
|
1767 |
-
#: pro/app/views/links/form.php:170
|
1768 |
-
msgid "Head Scripts"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
-
|
1772 |
-
|
1773 |
-
#: pro/app/views/links/form.php:173
|
1774 |
-
msgid "Useful for adding Google Analytics tracking, Facebook retargeting pixels, or any other kind of tracking script to the HTML head for this pretty link.%1$s%1$sThese scripts will be in addition to any global one's you've defined in the options.%1$s%1$s%2$sNOTE:%3$s This does NOT work with 301, 302 and 307 type redirects."
|
1775 |
msgstr ""
|
1776 |
|
1777 |
-
#: app/views/
|
1778 |
-
#: pro/app/
|
1779 |
-
msgid "
|
1780 |
msgstr ""
|
1781 |
|
1782 |
-
#: app/views/
|
1783 |
-
#: pro/app/views/
|
1784 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1785 |
msgstr ""
|
1786 |
|
1787 |
-
#: app/views/
|
1788 |
-
#: pro/app/
|
1789 |
-
|
|
|
1790 |
msgstr ""
|
1791 |
|
1792 |
-
#: app/views/
|
1793 |
-
#: app/
|
1794 |
-
#: app/views/
|
1795 |
-
|
1796 |
-
#: pro/app/views/links/form.php:198
|
1797 |
-
#: pro/app/views/options/autocreate.php:44
|
1798 |
-
#: pro/app/views/options/form.php:833
|
1799 |
-
#: pro/app/views/tools/generator.php:37
|
1800 |
-
#: pro/app/widgets/PlpPublicLinksWidget.php:94
|
1801 |
-
msgid "None"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#: app/views/
|
1805 |
-
#: pro/app/
|
1806 |
-
|
1807 |
-
#: pro/app/views/links/form.php:199
|
1808 |
-
msgid "Rotation"
|
1809 |
msgstr ""
|
1810 |
|
1811 |
-
#: app/views/
|
1812 |
-
|
1813 |
-
msgid "Geographic"
|
1814 |
msgstr ""
|
1815 |
|
1816 |
-
#: app/views/
|
1817 |
-
#: pro/app/views/
|
1818 |
-
msgid "
|
1819 |
msgstr ""
|
1820 |
|
1821 |
-
#: app/views/
|
1822 |
-
|
1823 |
-
msgid "Time"
|
1824 |
msgstr ""
|
1825 |
|
1826 |
-
#: app/views/
|
1827 |
-
msgid "
|
1828 |
msgstr ""
|
1829 |
|
1830 |
-
|
1831 |
-
#: app/views/
|
1832 |
-
msgid "
|
1833 |
msgstr ""
|
1834 |
|
1835 |
-
#: app/views/
|
1836 |
-
msgid "
|
1837 |
msgstr ""
|
1838 |
|
1839 |
-
#: app/views/
|
1840 |
-
msgid "
|
1841 |
msgstr ""
|
1842 |
|
1843 |
-
#: app/views/
|
1844 |
-
msgid "
|
1845 |
msgstr ""
|
1846 |
|
1847 |
-
#: app/views/
|
1848 |
-
msgid "
|
1849 |
msgstr ""
|
1850 |
|
1851 |
-
#: app/views/
|
1852 |
-
msgid "
|
1853 |
msgstr ""
|
1854 |
|
1855 |
-
#: app/views/
|
1856 |
-
|
1857 |
-
#: pro/app/controllers/PlpLinksController.php:623
|
1858 |
-
#: pro/app/controllers/PlpLinksController.php:669
|
1859 |
-
msgid "Pretty Bar"
|
1860 |
msgstr ""
|
1861 |
|
1862 |
-
#: app/views/
|
1863 |
-
msgid "
|
1864 |
msgstr ""
|
1865 |
|
1866 |
-
#: app/views/
|
1867 |
-
msgid "
|
1868 |
msgstr ""
|
1869 |
|
1870 |
-
#: app/views/
|
1871 |
-
msgid "
|
1872 |
msgstr ""
|
1873 |
|
1874 |
-
#: app/views/
|
1875 |
-
msgid "
|
1876 |
msgstr ""
|
1877 |
|
1878 |
-
#: app/views/
|
1879 |
-
msgid "
|
1880 |
msgstr ""
|
1881 |
|
1882 |
-
#: app/views/
|
1883 |
-
msgid "
|
1884 |
msgstr ""
|
1885 |
|
1886 |
-
#: app/views/
|
1887 |
-
|
1888 |
-
msgid "Enable Tracking"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
-
#: app/views/
|
1892 |
-
msgid "
|
1893 |
msgstr ""
|
1894 |
|
1895 |
-
#: app/views/
|
1896 |
-
msgid "
|
1897 |
msgstr ""
|
1898 |
|
1899 |
-
#: app/
|
1900 |
-
msgid "
|
1901 |
msgstr ""
|
1902 |
|
1903 |
-
#: app/
|
1904 |
-
msgid "
|
1905 |
msgstr ""
|
1906 |
|
1907 |
-
#: app/
|
1908 |
-
msgid "
|
1909 |
msgstr ""
|
1910 |
|
1911 |
-
#: app/
|
1912 |
-
|
1913 |
-
#: pro/app/views/options/form.php:127
|
1914 |
-
msgid "Add Sponsored"
|
1915 |
msgstr ""
|
1916 |
|
1917 |
-
#: app/
|
1918 |
-
msgid "
|
1919 |
msgstr ""
|
1920 |
|
1921 |
-
#: app/
|
1922 |
-
msgid "
|
1923 |
msgstr ""
|
1924 |
|
1925 |
-
#: app/
|
1926 |
-
msgid "
|
1927 |
msgstr ""
|
1928 |
|
1929 |
-
#: app/
|
1930 |
-
msgid "
|
1931 |
msgstr ""
|
1932 |
|
1933 |
-
#: app/
|
1934 |
-
|
1935 |
-
#: pro/app/views/links/link-options.php:3
|
1936 |
-
#: pro/app/views/links/link-options.php:5
|
1937 |
-
msgid "Base Slug Prefix"
|
1938 |
msgstr ""
|
1939 |
|
1940 |
-
|
1941 |
-
|
1942 |
-
#: pro/app/views/links/link-options.php:8
|
1943 |
-
msgid "Use this to prefix all newly generated pretty links with a directory of your choice. For example set to %1$sout%2$s to make your pretty links look like http://site.com/%1$sout%2$s/xyz. Changing this option will NOT affect existing pretty links. If you do not wish to use a directory prefix, leave this text field blank. Whatever you type here will be sanitized and modified to ensure it is URL-safe. So %1$sHello World%2$s might get changed to something like %1$shello-world%2$s instead. Lowercase letters, numbers, dashes, and underscores are allowed."
|
1944 |
msgstr ""
|
1945 |
|
1946 |
-
#: app/
|
1947 |
-
|
1948 |
-
#: pro/app/views/links/link-options.php:21
|
1949 |
-
#: pro/app/views/links/link-options.php:23
|
1950 |
-
msgid "Slug Character Count"
|
1951 |
msgstr ""
|
1952 |
|
1953 |
-
#: app/
|
1954 |
-
|
1955 |
-
msgid "The number of characters to use when auto-generating a random slug for pretty links. The default is 4. You cannot use less than 2."
|
1956 |
msgstr ""
|
1957 |
|
1958 |
-
#: app/
|
1959 |
-
|
1960 |
-
#: pro/app/views/links/link-options.php:34
|
1961 |
-
#: pro/app/views/links/link-options.php:35
|
1962 |
-
msgid "Enable Google Analytics"
|
1963 |
msgstr ""
|
1964 |
|
1965 |
-
#: app/
|
1966 |
-
msgid "
|
1967 |
msgstr ""
|
1968 |
|
1969 |
-
#: app/
|
1970 |
-
msgid "
|
1971 |
msgstr ""
|
1972 |
|
1973 |
-
#: app/
|
1974 |
-
|
1975 |
-
msgid "Generate QR Codes"
|
1976 |
msgstr ""
|
1977 |
|
1978 |
-
#: app/
|
1979 |
-
|
1980 |
-
msgid "This will enable a link in your pretty link admin that will allow you to automatically download a QR Code for each individual Pretty Link."
|
1981 |
msgstr ""
|
1982 |
|
1983 |
-
#: app/
|
1984 |
-
|
1985 |
-
#: pro/app/views/links/link-options.php:68
|
1986 |
-
#: pro/app/views/links/link-options.php:70
|
1987 |
-
msgid "Global Head Scripts"
|
1988 |
msgstr ""
|
1989 |
|
1990 |
-
|
1991 |
-
|
1992 |
-
#: pro/app/views/links/link-options.php:73
|
1993 |
-
msgid "Useful for adding Google Analytics tracking, Facebook retargeting pixels, or any other kind of tracking script to the HTML head.%1$s%1$sWhat you enter in this box will be applied to all supported pretty links.%1$s%1$s%2$sNOTE:%3$s This does NOT work with 301, 302 and 307 type redirects."
|
1994 |
msgstr ""
|
1995 |
|
1996 |
-
#: app/
|
1997 |
-
|
|
|
|
|
|
|
1998 |
msgstr ""
|
1999 |
|
2000 |
-
#: app/
|
2001 |
-
#: app/views/
|
2002 |
-
msgid "
|
2003 |
msgstr ""
|
2004 |
|
2005 |
-
#: app/
|
2006 |
-
|
|
|
|
|
2007 |
msgstr ""
|
2008 |
|
2009 |
-
#: app/
|
2010 |
-
|
|
|
|
|
2011 |
msgstr ""
|
2012 |
|
2013 |
-
#: app/
|
2014 |
-
|
|
|
|
|
2015 |
msgstr ""
|
2016 |
|
2017 |
-
#: app/
|
2018 |
-
|
|
|
2019 |
msgstr ""
|
2020 |
|
2021 |
-
#: app/
|
2022 |
-
msgid "
|
2023 |
msgstr ""
|
2024 |
|
2025 |
-
#: app/
|
2026 |
-
|
|
|
2027 |
msgstr ""
|
2028 |
|
2029 |
-
#: app/
|
2030 |
-
msgid "
|
2031 |
msgstr ""
|
2032 |
|
2033 |
-
#: app/
|
2034 |
-
msgid "
|
2035 |
msgstr ""
|
2036 |
|
2037 |
-
#: app/
|
2038 |
-
msgid "
|
2039 |
msgstr ""
|
2040 |
|
2041 |
-
#: app/
|
2042 |
-
msgid "
|
2043 |
msgstr ""
|
2044 |
|
2045 |
-
#: app/
|
2046 |
-
msgid "
|
2047 |
msgstr ""
|
2048 |
|
2049 |
-
#: app/
|
2050 |
-
|
2051 |
-
msgid "Filter Robots"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
-
#: app/
|
2055 |
-
msgid "
|
2056 |
msgstr ""
|
2057 |
|
2058 |
-
#: app/
|
2059 |
-
|
2060 |
-
msgid "Whitelist IP Addresses"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
-
#: app/
|
2064 |
-
msgid "
|
2065 |
msgstr ""
|
2066 |
|
2067 |
-
#: app/
|
2068 |
-
|
2069 |
-
msgid "Keyword & URL Auto Replacements Options"
|
2070 |
msgstr ""
|
2071 |
|
2072 |
-
#: app/
|
2073 |
-
|
2074 |
-
msgid "Enable Replacements"
|
2075 |
msgstr ""
|
2076 |
|
2077 |
-
#: app/
|
2078 |
-
|
2079 |
-
msgid "Enable Keyword and URL Auto Replacement"
|
2080 |
msgstr ""
|
2081 |
|
2082 |
-
#: app/
|
2083 |
-
|
2084 |
-
msgid "If checked, this will enable you to automatically replace keywords and/or URLs on your blog with pretty links. You will specify the specific keywords and urls from your Pretty Link edit page."
|
2085 |
msgstr ""
|
2086 |
|
2087 |
-
#: app/
|
2088 |
-
|
2089 |
-
msgid "
|
2090 |
msgstr ""
|
2091 |
|
2092 |
-
#: app/
|
2093 |
-
|
2094 |
-
msgid "
|
2095 |
msgstr ""
|
2096 |
|
2097 |
-
#: app/
|
2098 |
-
|
2099 |
-
msgid "Don't want to have too many keyword replacements per page? Select to set some reasonable keyword replacement thresholds."
|
2100 |
msgstr ""
|
2101 |
|
2102 |
-
#: app/
|
2103 |
-
|
2104 |
-
msgid "Open in New Window"
|
2105 |
msgstr ""
|
2106 |
|
2107 |
-
#: app/
|
2108 |
-
|
2109 |
-
msgid "Open Keyword Replacement Links in New Window"
|
2110 |
msgstr ""
|
2111 |
|
2112 |
-
|
2113 |
-
|
2114 |
-
#: pro/app/views/options/form.php:92
|
2115 |
-
msgid "Ensure that these keyword replacement links are opened in a separate window. %1$sNote:%2$s This does not apply to url replacements--only keyword replacements."
|
2116 |
msgstr ""
|
2117 |
|
2118 |
-
#: app/
|
2119 |
-
|
2120 |
-
msgid "Add No Follows"
|
2121 |
msgstr ""
|
2122 |
|
2123 |
-
#: app/
|
2124 |
-
|
2125 |
-
msgid "Add 'nofollow' attribute to all Keyword Pretty Links"
|
2126 |
msgstr ""
|
2127 |
|
2128 |
-
|
2129 |
-
|
2130 |
-
#: pro/app/views/options/form.php:111
|
2131 |
-
msgid "This adds the html %1$sNOFOLLOW%2$s attribute to all keyword replacement links. %3$sNote:%4$s This does not apply to url replacements--only keyword replacements."
|
2132 |
msgstr ""
|
2133 |
|
2134 |
-
#: app/
|
2135 |
-
|
2136 |
-
msgid "Add 'sponsored' attribute to all Keyword Pretty Links"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
-
|
2140 |
-
#: app/
|
2141 |
-
#:
|
2142 |
-
msgid "
|
2143 |
msgstr ""
|
2144 |
|
2145 |
-
#: app/
|
2146 |
-
|
2147 |
-
msgid "Custom CSS"
|
2148 |
msgstr ""
|
2149 |
|
2150 |
-
#: app/
|
2151 |
-
|
2152 |
-
msgid "Add custom CSS to your keyword replacement links"
|
2153 |
msgstr ""
|
2154 |
|
2155 |
-
|
2156 |
-
|
2157 |
-
#: pro/app/views/options/form.php:153
|
2158 |
-
msgid "Add some custom formatting to your keyword pretty link replacements. %1$sNote:%2$s This does not apply to url replacements--only keyword replacements."
|
2159 |
msgstr ""
|
2160 |
|
2161 |
-
#: app/
|
2162 |
-
|
2163 |
-
msgid "Custom Hover CSS"
|
2164 |
msgstr ""
|
2165 |
|
2166 |
-
#: app/
|
2167 |
-
|
2168 |
-
msgid "Add custom hover CSS to your keyword replacement links"
|
2169 |
msgstr ""
|
2170 |
|
2171 |
-
|
2172 |
-
#: app/
|
2173 |
-
|
2174 |
-
msgid "Add some custom formatting to the hover attribute of your keyword pretty links. %1$sNote%2$s: This does not apply to url replacements--only keyword replacements."
|
2175 |
msgstr ""
|
2176 |
|
2177 |
-
#: app/
|
2178 |
-
|
2179 |
-
msgid "Link to Disclosures"
|
2180 |
msgstr ""
|
2181 |
|
2182 |
-
#: app/
|
2183 |
-
|
2184 |
-
msgid "Automatically Add a Link to Disclosures"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
-
#: app/
|
2188 |
-
|
2189 |
-
msgid "When enabled, this will add a link to your official affiliate link disclosure page to any page, post or custom post type that have any keyword or URL replacements. You'll also be able to customize the URL and position of the disclosure link."
|
2190 |
msgstr ""
|
2191 |
|
2192 |
-
#: app/
|
2193 |
-
|
2194 |
-
msgid "Keyword Disclosures"
|
2195 |
msgstr ""
|
2196 |
|
2197 |
-
#: app/
|
2198 |
-
|
2199 |
-
msgid "Automatically Add Affiliate Link Disclosures to Keyword Replacements"
|
2200 |
msgstr ""
|
2201 |
|
2202 |
-
|
2203 |
-
|
2204 |
-
#: pro/app/views/options/form.php:268
|
2205 |
-
msgid "When enabled, this will add an affiliate link disclosure next to each one of your keyword replacements. %1$sNote:%2$s This does not apply to url replacements--only keyword replacements."
|
2206 |
msgstr ""
|
2207 |
|
2208 |
-
#: app/
|
2209 |
-
|
2210 |
-
msgid "Replace All URLs"
|
2211 |
msgstr ""
|
2212 |
|
2213 |
-
#: app/
|
2214 |
-
|
2215 |
-
msgid "Replace All non-Pretty Link URLs With Pretty Link URLs"
|
2216 |
msgstr ""
|
2217 |
|
2218 |
-
#: app/
|
2219 |
-
#: pro/app/
|
2220 |
-
|
|
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#: app/
|
2224 |
-
|
2225 |
-
msgid "Replace in Comments"
|
2226 |
msgstr ""
|
2227 |
|
2228 |
-
#: app/
|
2229 |
-
|
2230 |
-
msgid "Replace Keywords and URLs in Comments"
|
2231 |
msgstr ""
|
2232 |
|
2233 |
-
#: app/
|
2234 |
-
|
2235 |
-
msgid "This option will enable the keyword / URL replacement routine to run in Comments."
|
2236 |
msgstr ""
|
2237 |
|
2238 |
-
#: app/
|
2239 |
-
|
2240 |
-
msgid "Replace in Feeds"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
-
#: app/
|
2244 |
-
|
2245 |
-
msgid "Replace Keywords and URLs in Feeds"
|
2246 |
msgstr ""
|
2247 |
|
2248 |
-
|
2249 |
-
|
2250 |
-
#: pro/app/views/options/form.php:373
|
2251 |
-
msgid "This option will enable the keyword / URL replacement routine to run in RSS Feeds.%1$s%2$sNote:%3$s This option can slow the load speed of your RSS feed -- unless used in conjunction with a caching plugin like W3 Total Cache or WP Super Cache.%1$s%2$sNote #2%3$s This option will only work if you have \"Full Text\" selected in your General WordPress Reading settings.%1$s%2$sNote #3:%3$s If this option is used along with \"Replace Keywords and URLs in Comments\" then your post comment feeds will have keywords replaced in them as well."
|
2252 |
msgstr ""
|
2253 |
|
2254 |
-
#: app/
|
2255 |
-
|
2256 |
-
#: pro/app/views/options/form.php:388
|
2257 |
-
#: pro/app/views/options/form.php:390
|
2258 |
-
msgid "Index Replacements"
|
2259 |
msgstr ""
|
2260 |
|
2261 |
-
|
2262 |
-
#: app/
|
2263 |
-
|
2264 |
-
msgid "This feature will index all of your keyword & URL replacements to dramatically improve performance.%1$s%1$sIf your site has a large number of replacements and/or posts then this feature may increase the load on your server temporarily and your replacements may not show up on your posts for a day or two initially (until all posts are indexed).%1$s%1$s%2$sNote:%3$s this feature requires the use of wp-cron."
|
2265 |
msgstr ""
|
2266 |
|
2267 |
-
#: app/
|
2268 |
-
|
2269 |
-
msgid "
|
2270 |
msgstr ""
|
2271 |
|
2272 |
-
#: app/
|
2273 |
-
|
|
|
2274 |
msgstr ""
|
2275 |
|
2276 |
-
#: app/
|
2277 |
-
msgid "
|
2278 |
msgstr ""
|
2279 |
|
2280 |
-
#: app/
|
2281 |
-
msgid "
|
2282 |
msgstr ""
|
2283 |
|
2284 |
-
#: app/
|
2285 |
-
msgid "
|
2286 |
msgstr ""
|
2287 |
|
2288 |
-
#: app/
|
2289 |
-
msgid "
|
2290 |
msgstr ""
|
2291 |
|
2292 |
-
#: app/
|
2293 |
-
msgid "
|
2294 |
msgstr ""
|
2295 |
|
2296 |
-
#: app/
|
2297 |
-
|
2298 |
-
msgid "Pretty Bar Options"
|
2299 |
msgstr ""
|
2300 |
|
2301 |
-
#: app/
|
2302 |
-
|
2303 |
-
msgid "Image URL"
|
2304 |
msgstr ""
|
2305 |
|
2306 |
-
#: app/
|
2307 |
-
|
2308 |
-
msgid "Pretty Bar Image URL"
|
2309 |
msgstr ""
|
2310 |
|
2311 |
-
#: app/
|
2312 |
-
|
2313 |
-
msgid "If set, this will replace the logo image on the Pretty Bar. The image that this URL references should be 48x48 Pixels to fit."
|
2314 |
msgstr ""
|
2315 |
|
2316 |
-
#: app/
|
2317 |
-
|
2318 |
-
msgid "Background Image URL"
|
2319 |
msgstr ""
|
2320 |
|
2321 |
-
#: app/
|
2322 |
-
#:
|
2323 |
-
|
|
|
2324 |
msgstr ""
|
2325 |
|
2326 |
-
#: app/
|
2327 |
-
|
2328 |
-
msgid "If set, this will replace the background image on Pretty Bar. The image that this URL references should be 65px tall - this image will be repeated horizontally across the bar."
|
2329 |
msgstr ""
|
2330 |
|
2331 |
-
#: app/
|
2332 |
-
#:
|
2333 |
-
|
|
|
|
|
2334 |
msgstr ""
|
2335 |
|
2336 |
-
#: app/
|
2337 |
-
|
2338 |
-
msgid "Pretty Bar Background Color"
|
2339 |
msgstr ""
|
2340 |
|
2341 |
-
#: app/
|
2342 |
-
|
2343 |
-
msgid "This will alter the background color of the Pretty Bar if you haven't specified a Pretty Bar background image."
|
2344 |
msgstr ""
|
2345 |
|
2346 |
-
#: app/
|
2347 |
-
|
2348 |
-
msgid "Text Color"
|
2349 |
msgstr ""
|
2350 |
|
2351 |
-
#: app/
|
2352 |
-
|
2353 |
-
msgid "Pretty Bar Text Color"
|
2354 |
msgstr ""
|
2355 |
|
2356 |
-
|
2357 |
-
|
2358 |
-
#: pro/app/views/options/form.php:542
|
2359 |
-
msgid "If not set, this defaults to black (RGB value %1$s#000000%2$s) but you can change it to whatever color you like."
|
2360 |
msgstr ""
|
2361 |
|
2362 |
-
#: app/
|
2363 |
-
|
2364 |
-
msgid "Link Color"
|
2365 |
msgstr ""
|
2366 |
|
2367 |
-
#: app/
|
2368 |
-
|
2369 |
-
msgid "Pretty Bar Link Color"
|
2370 |
msgstr ""
|
2371 |
|
2372 |
-
|
2373 |
-
|
2374 |
-
#: pro/app/views/options/form.php:561
|
2375 |
-
msgid "If not set, this defaults to blue (RGB value %1$s#0000ee%2$s) but you can change it to whatever color you like."
|
2376 |
msgstr ""
|
2377 |
|
2378 |
-
#: app/
|
2379 |
-
|
2380 |
-
msgid "Link Hover Color"
|
2381 |
msgstr ""
|
2382 |
|
2383 |
-
#: app/
|
2384 |
-
|
2385 |
-
msgid "Pretty Bar Link Hover Color"
|
2386 |
msgstr ""
|
2387 |
|
2388 |
-
|
2389 |
-
|
2390 |
-
#: pro/app/views/options/form.php:580
|
2391 |
-
msgid "If not set, this defaults to RGB value %1$s#ababab%2$s but you can change it to whatever color you like."
|
2392 |
msgstr ""
|
2393 |
|
2394 |
-
#: app/
|
2395 |
-
|
2396 |
-
msgid "Visited Link Color"
|
2397 |
msgstr ""
|
2398 |
|
2399 |
-
#: app/
|
2400 |
-
|
2401 |
-
msgid "Pretty Bar Visited Link Color"
|
2402 |
msgstr ""
|
2403 |
|
2404 |
-
|
2405 |
-
|
2406 |
-
#: pro/app/views/options/form.php:599
|
2407 |
-
msgid "If not set, this defaults to RGB value %1$s#551a8b%2$s but you can change it to whatever color you like."
|
2408 |
msgstr ""
|
2409 |
|
2410 |
-
#: app/
|
2411 |
-
|
2412 |
-
msgid "Title Char Limit"
|
2413 |
msgstr ""
|
2414 |
|
2415 |
-
#: app/
|
2416 |
-
|
2417 |
-
msgid "Pretty Bar Title Char Limit"
|
2418 |
msgstr ""
|
2419 |
|
2420 |
-
|
2421 |
-
|
2422 |
-
#: pro/app/views/options/form.php:618
|
2423 |
-
msgid "If your Website has a long title then you may need to adjust this value so that it will all fit on the Pretty Bar. It is recommended that you keep this value to %1$s30%2$s characters or less so the Pretty Bar's format looks good across different browsers and screen resolutions."
|
2424 |
msgstr ""
|
2425 |
|
2426 |
-
#: app/
|
2427 |
-
|
2428 |
-
msgid "Description Char Limit"
|
2429 |
msgstr ""
|
2430 |
|
2431 |
-
#:
|
2432 |
-
|
2433 |
-
msgid "Pretty Bar Description Char Limit"
|
2434 |
msgstr ""
|
2435 |
|
2436 |
-
|
2437 |
-
|
2438 |
-
#: pro/app/views/options/form.php:637
|
2439 |
-
msgid "If your Website has a long Description (tagline) then you may need to adjust this value so that it will all fit on the Pretty Bar. It is recommended that you keep this value to %1$s40%2$s characters or less so the Pretty Bar's format looks good across different browsers and screen resolutions."
|
2440 |
msgstr ""
|
2441 |
|
2442 |
-
#:
|
2443 |
-
|
2444 |
-
msgid "Target URL Char Limit"
|
2445 |
msgstr ""
|
2446 |
|
2447 |
-
#:
|
2448 |
-
|
2449 |
-
msgid "Pretty Bar Target URL Char Limit"
|
2450 |
msgstr ""
|
2451 |
|
2452 |
-
|
2453 |
-
|
2454 |
-
#: pro/app/views/options/form.php:656
|
2455 |
-
msgid "If you link to a lot of large Target URLs you may want to adjust this value. It is recommended that you keep this value to %1$s40%2$s or below so the Pretty Bar's format looks good across different browsers and URL sizes"
|
2456 |
msgstr ""
|
2457 |
|
2458 |
-
#:
|
2459 |
-
|
2460 |
-
msgid "Show Title"
|
2461 |
msgstr ""
|
2462 |
|
2463 |
-
#:
|
2464 |
-
|
2465 |
-
msgid "Pretty Bar Show Title"
|
2466 |
msgstr ""
|
2467 |
|
2468 |
-
#:
|
2469 |
-
|
2470 |
-
msgid "Make sure this is checked if you want the title of your blog (and link) to show up on the Pretty Bar."
|
2471 |
msgstr ""
|
2472 |
|
2473 |
-
#:
|
2474 |
-
|
2475 |
-
msgid "Show Description"
|
2476 |
msgstr ""
|
2477 |
|
2478 |
-
#:
|
2479 |
-
|
2480 |
-
msgid "Pretty Bar Show Description"
|
2481 |
msgstr ""
|
2482 |
|
2483 |
-
#:
|
2484 |
-
|
2485 |
-
msgid "Make sure this is checked if you want your site description to show up on the Pretty Bar."
|
2486 |
msgstr ""
|
2487 |
|
2488 |
-
#:
|
2489 |
-
|
2490 |
-
msgid "Show Share Links"
|
2491 |
msgstr ""
|
2492 |
|
2493 |
-
#:
|
2494 |
-
|
2495 |
-
msgid "Pretty Bar Show Share Links"
|
2496 |
msgstr ""
|
2497 |
|
2498 |
-
#:
|
2499 |
-
|
2500 |
-
msgid "Make sure this is checked if you want \"share links\" to show up on the Pretty Bar."
|
2501 |
msgstr ""
|
2502 |
|
2503 |
-
#:
|
2504 |
-
|
2505 |
-
msgid "Show Target URL"
|
2506 |
msgstr ""
|
2507 |
|
2508 |
-
#:
|
2509 |
-
|
2510 |
-
msgid "Pretty Bar Show Target URL Links"
|
2511 |
msgstr ""
|
2512 |
|
2513 |
-
#:
|
2514 |
-
|
2515 |
-
msgid "Make sure this is checked if you want a link displaying the Target URL to show up on the Pretty Bar."
|
2516 |
msgstr ""
|
2517 |
|
2518 |
-
#:
|
2519 |
-
|
2520 |
-
#: pro/app/views/options/form.php:726
|
2521 |
-
#: pro/app/views/options/form.php:728
|
2522 |
-
msgid "Hide Attribution Link"
|
2523 |
msgstr ""
|
2524 |
|
2525 |
-
|
2526 |
-
|
2527 |
-
#: pro/app/views/options/form.php:731
|
2528 |
-
msgid "Check this to hide the pretty link attribution link on the pretty bar.%1$s%1$s%2$sWait, before you do this, you might want to leave this un-checked and set the alternate URL of this link to your %4$sPretty Links Pro%5$s %6$sAffiliate URL%7$s to earn a few bucks while you are at it.%3$s"
|
2529 |
msgstr ""
|
2530 |
|
2531 |
-
#:
|
2532 |
-
|
2533 |
-
msgid "Attribution URL"
|
2534 |
msgstr ""
|
2535 |
|
2536 |
-
#:
|
2537 |
-
|
2538 |
-
msgid "Alternate Pretty Bar Attribution URL"
|
2539 |
msgstr ""
|
2540 |
|
2541 |
-
|
2542 |
-
|
2543 |
-
#: pro/app/views/options/form.php:762
|
2544 |
-
msgid "If set, this will replace the Pretty Bars attribution URL. This is a very good place to put your %1$sPretty Links Pro%2$s %3$sAffiliate Link%4$s."
|
2545 |
msgstr ""
|
2546 |
|
2547 |
-
#:
|
2548 |
-
|
2549 |
-
msgid "Social Buttons Options"
|
2550 |
msgstr ""
|
2551 |
|
2552 |
-
#:
|
2553 |
-
|
2554 |
-
msgid "Buttons"
|
2555 |
msgstr ""
|
2556 |
|
2557 |
-
#:
|
2558 |
-
|
2559 |
-
msgid "Social Buttons"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
-
|
2563 |
-
|
2564 |
-
#: pro/app/views/options/form.php:789
|
2565 |
-
msgid "Select which buttons you want to be visible on the Social Buttons Bar.%1$s%1$s%2$sNote:%3$s In order for the Social Buttons Bar to be visible on Pages and or Posts, you must first enable it in the \"Page & Post Options\" section above."
|
2566 |
msgstr ""
|
2567 |
|
2568 |
-
#:
|
2569 |
-
|
2570 |
-
msgid "Buttons Placement"
|
2571 |
msgstr ""
|
2572 |
|
2573 |
-
#:
|
2574 |
-
|
2575 |
-
msgid "Social Buttons Placement"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
-
|
2579 |
-
|
2580 |
-
#: pro/app/views/options/form.php:821
|
2581 |
-
msgid "This determines where your Social Buttons Placement should appear in relation to content on Pages and/or Posts.%1$s%1$s%2$sNote:%3$s If you want this bar to appear then you must enable it in the \"Auto-Create Links\" section above."
|
2582 |
msgstr ""
|
2583 |
|
2584 |
-
#:
|
2585 |
-
|
2586 |
-
#: pro/app/views/options/form.php:830
|
2587 |
-
msgid "Top"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
-
#:
|
2591 |
-
|
2592 |
-
#: pro/app/views/options/form.php:831
|
2593 |
-
msgid "Bottom"
|
2594 |
msgstr ""
|
2595 |
|
2596 |
-
#:
|
2597 |
-
|
2598 |
-
#: pro/app/views/options/form.php:832
|
2599 |
-
msgid "Top and Bottom"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
-
#:
|
2603 |
-
|
2604 |
-
msgid "Social Buttons Manual Placement"
|
2605 |
msgstr ""
|
2606 |
|
2607 |
-
|
2608 |
-
|
2609 |
-
#: pro/app/views/options/form.php:838
|
2610 |
-
msgid "If you select none, you can still show your Social Buttons by manually adding the %1$s shortcode to your blog posts or %2$s template tag to your WordPress Theme."
|
2611 |
msgstr ""
|
2612 |
|
2613 |
-
#:
|
2614 |
-
|
2615 |
-
msgid "Public Links Creation Options"
|
2616 |
msgstr ""
|
2617 |
|
2618 |
-
#:
|
2619 |
-
|
2620 |
-
msgid "Enable Public Links"
|
2621 |
msgstr ""
|
2622 |
|
2623 |
-
#:
|
2624 |
-
|
2625 |
-
msgid "Enable Public Link Creation on this Site"
|
2626 |
msgstr ""
|
2627 |
|
2628 |
-
#:
|
2629 |
-
|
2630 |
-
msgid "This option will give you the ability to turn your website into a link shortening service for your users. Once selected, you can enable the Pretty Links Pro Sidebar Widget or just display the link creation form with the %s shortcode in any post or page on your website."
|
2631 |
msgstr ""
|
2632 |
|
2633 |
-
#:
|
2634 |
-
|
2635 |
-
#: app/views/shared/table-nav.php:14
|
2636 |
-
msgid "Displaying %1$s–%2$s of %3$s"
|
2637 |
msgstr ""
|
2638 |
|
2639 |
-
#:
|
2640 |
-
msgid "
|
2641 |
msgstr ""
|
2642 |
|
2643 |
-
#:
|
2644 |
-
msgid "
|
2645 |
msgstr ""
|
2646 |
|
2647 |
-
#:
|
2648 |
-
msgid "
|
2649 |
msgstr ""
|
2650 |
|
2651 |
-
#:
|
2652 |
-
msgid "
|
2653 |
msgstr ""
|
2654 |
|
2655 |
-
#:
|
2656 |
-
msgid "
|
2657 |
msgstr ""
|
2658 |
|
2659 |
-
#:
|
2660 |
-
msgid "
|
2661 |
msgstr ""
|
2662 |
|
2663 |
-
#:
|
2664 |
-
msgid "
|
2665 |
msgstr ""
|
2666 |
|
2667 |
-
#:
|
2668 |
-
msgid "
|
2669 |
msgstr ""
|
2670 |
|
2671 |
-
#:
|
2672 |
-
msgid "
|
2673 |
msgstr ""
|
2674 |
|
2675 |
-
#:
|
2676 |
-
|
2677 |
-
#: js/editor/components/link-editor/index.js:432
|
2678 |
-
msgid "Create New Pretty Link"
|
2679 |
msgstr ""
|
2680 |
|
2681 |
-
#:
|
2682 |
-
msgid "
|
2683 |
msgstr ""
|
2684 |
|
2685 |
-
#:
|
2686 |
-
msgid "
|
2687 |
msgstr ""
|
2688 |
|
2689 |
-
#:
|
2690 |
-
msgid "
|
2691 |
msgstr ""
|
2692 |
|
2693 |
-
#:
|
2694 |
-
|
2695 |
-
msgid "Link Text"
|
2696 |
msgstr ""
|
2697 |
|
2698 |
-
#:
|
2699 |
-
msgid "
|
2700 |
msgstr ""
|
2701 |
|
2702 |
-
#:
|
2703 |
-
|
2704 |
-
#: app/views/shared/tinymce_form_popup.php:56
|
2705 |
-
#: app/views/shared/tinymce_form_popup.php:64
|
2706 |
-
#: pro/app/views/tools/generator.php:21
|
2707 |
-
#: pro/app/views/tools/generator.php:26
|
2708 |
-
#: pro/app/widgets/PlpPublicLinksWidget.php:70
|
2709 |
-
#: pro/app/widgets/PlpPublicLinksWidget.php:82
|
2710 |
-
msgid "Default"
|
2711 |
msgstr ""
|
2712 |
|
2713 |
-
#:
|
2714 |
-
|
2715 |
-
msgid "Cloaked"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
-
#:
|
2719 |
-
|
2720 |
-
#: pro/app/controllers/PlpLinksController.php:671
|
2721 |
-
msgid "Pixel"
|
2722 |
msgstr ""
|
2723 |
|
2724 |
-
#:
|
2725 |
-
|
2726 |
-
#: pro/app/controllers/PlpLinksController.php:672
|
2727 |
-
msgid "Meta Refresh"
|
2728 |
msgstr ""
|
2729 |
|
2730 |
-
#:
|
2731 |
-
|
2732 |
-
#: pro/app/controllers/PlpLinksController.php:673
|
2733 |
-
msgid "Javascript"
|
2734 |
msgstr ""
|
2735 |
|
2736 |
-
#:
|
2737 |
-
msgid "
|
2738 |
msgstr ""
|
2739 |
|
2740 |
-
#:
|
2741 |
-
|
2742 |
-
msgid "Open this Pretty Link in a new window/tab"
|
2743 |
msgstr ""
|
2744 |
|
2745 |
-
#:
|
2746 |
-
msgid "
|
2747 |
msgstr ""
|
2748 |
|
2749 |
-
#:
|
2750 |
-
msgid "
|
2751 |
msgstr ""
|
2752 |
|
2753 |
-
#:
|
2754 |
-
msgid "
|
2755 |
msgstr ""
|
2756 |
|
2757 |
-
#:
|
2758 |
-
msgid "
|
2759 |
msgstr ""
|
2760 |
|
2761 |
-
#:
|
2762 |
-
|
2763 |
-
msgid "Bookmarklet"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
-
#:
|
2767 |
-
|
2768 |
-
msgid "Trim Clicks"
|
2769 |
msgstr ""
|
2770 |
|
2771 |
-
#:
|
2772 |
-
|
2773 |
-
#: pro/app/views/tools/generator.php:17
|
2774 |
-
msgid "Get Pretty Link"
|
2775 |
msgstr ""
|
2776 |
|
2777 |
-
#:
|
2778 |
-
msgid "
|
2779 |
msgstr ""
|
2780 |
|
2781 |
-
|
2782 |
-
|
2783 |
-
msgid "Just drag this \"Get PrettyLink\" link to your toolbar to install the bookmarklet. As you browse the web, you can just click this bookmarklet to create a pretty link from the current url you're looking at. %1$s(more help)%2$s"
|
2784 |
msgstr ""
|
2785 |
|
2786 |
-
#:
|
2787 |
-
msgid "
|
2788 |
msgstr ""
|
2789 |
|
2790 |
-
|
2791 |
-
|
2792 |
-
msgid "%1$sNote:%2$s iPhone users can install this bookmarklet in their Safari to create Pretty Links with the following steps:"
|
2793 |
msgstr ""
|
2794 |
|
2795 |
-
#:
|
2796 |
-
msgid "
|
2797 |
msgstr ""
|
2798 |
|
2799 |
-
#:
|
2800 |
-
msgid "
|
2801 |
msgstr ""
|
2802 |
|
2803 |
-
#:
|
2804 |
-
msgid "
|
2805 |
msgstr ""
|
2806 |
|
2807 |
-
#:
|
2808 |
-
msgid "
|
2809 |
msgstr ""
|
2810 |
|
2811 |
-
#:
|
2812 |
-
msgid "
|
2813 |
msgstr ""
|
2814 |
|
2815 |
-
#:
|
2816 |
-
msgid "
|
2817 |
msgstr ""
|
2818 |
|
2819 |
-
|
2820 |
-
|
2821 |
-
msgid "To save the changes hit \"Bookmarks\" and %1$syou're done!%2$s"
|
2822 |
msgstr ""
|
2823 |
|
2824 |
-
#:
|
2825 |
-
msgid "
|
2826 |
msgstr ""
|
2827 |
|
2828 |
-
#:
|
2829 |
-
msgid "
|
2830 |
msgstr ""
|
2831 |
|
2832 |
-
#:
|
2833 |
-
msgid "
|
2834 |
msgstr ""
|
2835 |
|
2836 |
-
#:
|
2837 |
-
msgid "
|
2838 |
msgstr ""
|
2839 |
|
2840 |
-
#:
|
2841 |
-
msgid "
|
2842 |
msgstr ""
|
2843 |
|
2844 |
-
#:
|
2845 |
-
msgid "
|
2846 |
msgstr ""
|
2847 |
|
2848 |
-
#:
|
2849 |
-
msgid "
|
2850 |
msgstr ""
|
2851 |
|
2852 |
-
#:
|
2853 |
-
msgid "
|
2854 |
msgstr ""
|
2855 |
|
2856 |
-
#:
|
2857 |
-
msgid "
|
2858 |
msgstr ""
|
2859 |
|
2860 |
-
#:
|
2861 |
-
msgid "
|
2862 |
msgstr ""
|
2863 |
|
2864 |
-
#:
|
2865 |
-
msgid "
|
2866 |
msgstr ""
|
2867 |
|
2868 |
-
#:
|
2869 |
-
msgid "
|
2870 |
msgstr ""
|
2871 |
|
2872 |
-
#:
|
2873 |
-
msgid "
|
2874 |
msgstr ""
|
2875 |
|
2876 |
-
#:
|
2877 |
-
msgid "
|
2878 |
msgstr ""
|
2879 |
|
2880 |
-
#: pro/
|
2881 |
-
msgid "
|
2882 |
msgstr ""
|
2883 |
|
2884 |
-
#: pro/
|
2885 |
-
msgid "
|
2886 |
msgstr ""
|
2887 |
|
2888 |
-
#: pro/
|
2889 |
-
msgid "
|
2890 |
msgstr ""
|
2891 |
|
2892 |
-
#: pro/
|
2893 |
-
msgid "
|
2894 |
msgstr ""
|
2895 |
|
2896 |
-
#: pro/
|
2897 |
-
msgid "
|
2898 |
msgstr ""
|
2899 |
|
2900 |
-
#: pro/
|
2901 |
-
msgid "
|
2902 |
msgstr ""
|
2903 |
|
2904 |
-
#: pro/
|
2905 |
-
msgid "
|
2906 |
msgstr ""
|
2907 |
|
2908 |
-
#: pro/
|
2909 |
-
|
2910 |
-
msgid "Link Categories"
|
2911 |
msgstr ""
|
2912 |
|
2913 |
-
#: pro/
|
2914 |
-
|
2915 |
-
|
|
|
|
|
|
|
2916 |
msgstr ""
|
2917 |
|
2918 |
-
#: pro/
|
2919 |
-
msgid "
|
2920 |
msgstr ""
|
2921 |
|
2922 |
-
#: pro/
|
2923 |
-
msgid "
|
2924 |
msgstr ""
|
2925 |
|
2926 |
-
#: pro/
|
2927 |
-
msgid "
|
2928 |
msgstr ""
|
2929 |
|
2930 |
-
#: pro/
|
2931 |
-
msgid "
|
2932 |
msgstr ""
|
2933 |
|
2934 |
-
#: pro/
|
2935 |
-
msgid "
|
2936 |
msgstr ""
|
2937 |
|
2938 |
-
#: pro/
|
2939 |
-
msgid "
|
2940 |
msgstr ""
|
2941 |
|
2942 |
-
#: pro/
|
2943 |
-
msgid "
|
2944 |
msgstr ""
|
2945 |
|
2946 |
-
#: pro/
|
2947 |
-
msgid "
|
2948 |
msgstr ""
|
2949 |
|
2950 |
-
#: pro/
|
2951 |
-
msgid "
|
2952 |
msgstr ""
|
2953 |
|
2954 |
-
#: pro/
|
2955 |
-
msgid "
|
2956 |
msgstr ""
|
2957 |
|
2958 |
-
#: pro/
|
2959 |
-
msgid "
|
2960 |
msgstr ""
|
2961 |
|
2962 |
-
#: pro/
|
2963 |
-
msgid "
|
2964 |
msgstr ""
|
2965 |
|
2966 |
-
#: pro/
|
2967 |
-
msgid "
|
2968 |
msgstr ""
|
2969 |
|
2970 |
-
#: pro/
|
2971 |
-
msgid "
|
2972 |
msgstr ""
|
2973 |
|
2974 |
-
#: pro/
|
2975 |
-
msgid "
|
2976 |
msgstr ""
|
2977 |
|
2978 |
-
#: pro/
|
2979 |
-
msgid "
|
2980 |
msgstr ""
|
2981 |
|
2982 |
-
#: pro/
|
2983 |
-
msgid "
|
2984 |
msgstr ""
|
2985 |
|
2986 |
-
#: pro/
|
2987 |
-
msgid "
|
2988 |
msgstr ""
|
2989 |
|
2990 |
-
#: pro/
|
2991 |
-
msgid "
|
2992 |
msgstr ""
|
2993 |
|
2994 |
-
#: pro/
|
2995 |
-
msgid "
|
2996 |
msgstr ""
|
2997 |
|
2998 |
-
#: pro/
|
2999 |
-
msgid "
|
3000 |
msgstr ""
|
3001 |
|
3002 |
-
#: pro/
|
3003 |
-
msgid "
|
3004 |
msgstr ""
|
3005 |
|
3006 |
-
#: pro/
|
3007 |
-
msgid "
|
3008 |
msgstr ""
|
3009 |
|
3010 |
-
#: pro/
|
3011 |
-
msgid "
|
3012 |
msgstr ""
|
3013 |
|
3014 |
-
#: pro/
|
3015 |
-
msgid "
|
3016 |
msgstr ""
|
3017 |
|
3018 |
-
#: pro/
|
3019 |
-
msgid "
|
3020 |
msgstr ""
|
3021 |
|
3022 |
-
#: pro/
|
3023 |
-
msgid "
|
3024 |
msgstr ""
|
3025 |
|
3026 |
-
#: pro/
|
3027 |
-
|
3028 |
-
msgid "Cloak"
|
3029 |
msgstr ""
|
3030 |
|
3031 |
-
#: pro/
|
3032 |
-
msgid "
|
3033 |
msgstr ""
|
3034 |
|
3035 |
-
#: pro/
|
3036 |
-
|
3037 |
-
msgid "QR Code"
|
3038 |
msgstr ""
|
3039 |
|
3040 |
-
#: pro/
|
3041 |
-
msgid "
|
3042 |
msgstr ""
|
3043 |
|
3044 |
-
#: pro/
|
3045 |
-
msgid "
|
3046 |
msgstr ""
|
3047 |
|
3048 |
-
#: pro/
|
3049 |
-
msgid "
|
3050 |
msgstr ""
|
3051 |
|
3052 |
-
#: pro/
|
3053 |
-
msgid "
|
3054 |
msgstr ""
|
3055 |
|
3056 |
-
#: pro/
|
3057 |
-
msgid "
|
3058 |
msgstr ""
|
3059 |
|
3060 |
-
#: pro/
|
3061 |
-
msgid "
|
3062 |
msgstr ""
|
3063 |
|
3064 |
-
#: pro/
|
3065 |
-
msgid "
|
3066 |
msgstr ""
|
3067 |
|
3068 |
-
#: pro/
|
3069 |
-
msgid "
|
3070 |
msgstr ""
|
3071 |
|
3072 |
-
#: pro/
|
3073 |
-
msgid "
|
3074 |
msgstr ""
|
3075 |
|
3076 |
-
#: pro/
|
3077 |
-
msgid "
|
3078 |
msgstr ""
|
3079 |
|
3080 |
-
#: pro/
|
3081 |
-
msgid "
|
3082 |
msgstr ""
|
3083 |
|
3084 |
-
#: pro/
|
3085 |
-
msgid "
|
3086 |
msgstr ""
|
3087 |
|
3088 |
-
#: pro/
|
3089 |
-
|
3090 |
-
msgid "Link Tags"
|
3091 |
msgstr ""
|
3092 |
|
3093 |
-
#: pro/
|
3094 |
-
|
3095 |
-
msgid "Link Tag"
|
3096 |
msgstr ""
|
3097 |
|
3098 |
-
#: pro/
|
3099 |
-
msgid "
|
3100 |
msgstr ""
|
3101 |
|
3102 |
-
#: pro/
|
3103 |
-
msgid "
|
3104 |
msgstr ""
|
3105 |
|
3106 |
-
#: pro/
|
3107 |
-
msgid "
|
3108 |
msgstr ""
|
3109 |
|
3110 |
-
#: pro/
|
3111 |
-
msgid "
|
3112 |
msgstr ""
|
3113 |
|
3114 |
-
#: pro/
|
3115 |
-
msgid "
|
3116 |
msgstr ""
|
3117 |
|
3118 |
-
#: pro/
|
3119 |
-
msgid "
|
3120 |
msgstr ""
|
3121 |
|
3122 |
-
#: pro/
|
3123 |
-
msgid "
|
3124 |
msgstr ""
|
3125 |
|
3126 |
-
#: pro/
|
3127 |
-
msgid "
|
3128 |
msgstr ""
|
3129 |
|
3130 |
-
#: pro/
|
3131 |
-
msgid "
|
3132 |
msgstr ""
|
3133 |
|
3134 |
-
#: pro/
|
3135 |
-
msgid "
|
3136 |
msgstr ""
|
3137 |
|
3138 |
-
#: pro/
|
3139 |
-
msgid "
|
3140 |
msgstr ""
|
3141 |
|
3142 |
-
#: pro/
|
3143 |
-
msgid "
|
3144 |
msgstr ""
|
3145 |
|
3146 |
-
#: pro/
|
3147 |
-
msgid "
|
3148 |
msgstr ""
|
3149 |
|
3150 |
-
#: pro/
|
3151 |
-
msgid "
|
3152 |
msgstr ""
|
3153 |
|
3154 |
-
#: pro/
|
3155 |
-
msgid "
|
3156 |
msgstr ""
|
3157 |
|
3158 |
-
#: pro/
|
3159 |
-
msgid "
|
3160 |
msgstr ""
|
3161 |
|
3162 |
-
#: pro/
|
3163 |
-
msgid "
|
3164 |
msgstr ""
|
3165 |
|
3166 |
-
#: pro/
|
3167 |
-
|
3168 |
-
#: pro/app/controllers/PlpPostsController.php:237
|
3169 |
-
msgid "Untitled"
|
3170 |
msgstr ""
|
3171 |
|
3172 |
-
#: pro/
|
3173 |
-
msgid "
|
3174 |
msgstr ""
|
3175 |
|
3176 |
-
#: pro/
|
3177 |
-
msgid "
|
3178 |
msgstr ""
|
3179 |
|
3180 |
-
#: pro/
|
3181 |
-
msgid "
|
3182 |
msgstr ""
|
3183 |
|
3184 |
-
#: pro/
|
3185 |
-
msgid "
|
3186 |
msgstr ""
|
3187 |
|
3188 |
-
#: pro/
|
3189 |
-
msgid "
|
3190 |
msgstr ""
|
3191 |
|
3192 |
-
#: pro/
|
3193 |
-
|
3194 |
-
msgid "PrettyBar Hover Color must be an actual RGB Value"
|
3195 |
msgstr ""
|
3196 |
|
3197 |
-
#: pro/
|
3198 |
-
msgid "
|
3199 |
msgstr ""
|
3200 |
|
3201 |
-
#: pro/
|
3202 |
-
msgid "
|
3203 |
msgstr ""
|
3204 |
|
3205 |
-
#: pro/
|
3206 |
-
msgid "
|
3207 |
msgstr ""
|
3208 |
|
3209 |
-
#: pro/
|
3210 |
-
msgid "
|
3211 |
msgstr ""
|
3212 |
|
3213 |
-
#: pro/
|
3214 |
-
msgid "
|
3215 |
msgstr ""
|
3216 |
|
3217 |
-
#: pro/
|
3218 |
-
msgid "
|
3219 |
msgstr ""
|
3220 |
|
3221 |
-
#: pro/
|
3222 |
-
|
3223 |
-
msgid "Enter a URL:"
|
3224 |
msgstr ""
|
3225 |
|
3226 |
-
#: pro/
|
3227 |
-
|
3228 |
-
#: pro/app/widgets/PlpPublicLinksWidget.php:61
|
3229 |
-
msgid "Shrink"
|
3230 |
msgstr ""
|
3231 |
|
3232 |
-
#: pro/
|
3233 |
-
msgid "
|
3234 |
msgstr ""
|
3235 |
|
3236 |
-
#: pro/
|
3237 |
-
|
3238 |
-
msgid "Reports"
|
3239 |
msgstr ""
|
3240 |
|
3241 |
-
#: pro/
|
3242 |
-
msgid "
|
3243 |
msgstr ""
|
3244 |
|
3245 |
-
#: pro/
|
3246 |
-
msgid "
|
3247 |
msgstr ""
|
3248 |
|
3249 |
-
#: pro/
|
3250 |
-
msgid "
|
3251 |
msgstr ""
|
3252 |
|
3253 |
-
#: pro/
|
3254 |
-
msgid "
|
3255 |
msgstr ""
|
3256 |
|
3257 |
-
#: pro/
|
3258 |
-
|
3259 |
-
msgid "weight:"
|
3260 |
msgstr ""
|
3261 |
|
3262 |
-
#: pro/
|
3263 |
-
msgid "
|
3264 |
msgstr ""
|
3265 |
|
3266 |
-
#: pro/
|
3267 |
-
msgid "
|
3268 |
msgstr ""
|
3269 |
|
3270 |
-
#: pro/
|
3271 |
-
msgid "
|
3272 |
msgstr ""
|
3273 |
|
3274 |
-
#: pro/
|
3275 |
-
|
3276 |
-
#: pro/app/views/reports/custom-report.php:65
|
3277 |
-
#: pro/app/views/reports/split-test-report.php:29
|
3278 |
-
#: pro/app/views/reports/split-test-report.php:61
|
3279 |
-
msgid "Uniques"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
-
#: pro/
|
3283 |
-
msgid "
|
3284 |
msgstr ""
|
3285 |
|
3286 |
-
#: pro/
|
3287 |
-
msgid "
|
3288 |
msgstr ""
|
3289 |
|
3290 |
-
#: pro/
|
3291 |
-
msgid "
|
3292 |
msgstr ""
|
3293 |
|
3294 |
-
#: pro/
|
3295 |
-
msgid "
|
3296 |
msgstr ""
|
3297 |
|
3298 |
-
#: pro/
|
3299 |
-
msgid "
|
3300 |
msgstr ""
|
3301 |
|
3302 |
-
#: pro/
|
3303 |
-
msgid "
|
3304 |
msgstr ""
|
3305 |
|
3306 |
-
#: pro/
|
3307 |
-
msgid "
|
3308 |
msgstr ""
|
3309 |
|
3310 |
-
#: pro/
|
3311 |
-
msgid "
|
3312 |
msgstr ""
|
3313 |
|
3314 |
-
#: pro/
|
3315 |
-
msgid "
|
3316 |
msgstr ""
|
3317 |
|
3318 |
-
#: pro/
|
3319 |
-
msgid "
|
3320 |
msgstr ""
|
3321 |
|
3322 |
-
#: pro/
|
3323 |
-
msgid "
|
3324 |
msgstr ""
|
3325 |
|
3326 |
-
#: pro/
|
3327 |
-
msgid "
|
3328 |
msgstr ""
|
3329 |
|
3330 |
-
#: pro/
|
3331 |
-
msgid "
|
3332 |
msgstr ""
|
3333 |
|
3334 |
-
#: pro/
|
3335 |
-
msgid "
|
3336 |
msgstr ""
|
3337 |
|
3338 |
-
#: pro/
|
3339 |
-
msgid "
|
3340 |
msgstr ""
|
3341 |
|
3342 |
-
#: pro/
|
3343 |
-
msgid "
|
3344 |
msgstr ""
|
3345 |
|
3346 |
-
#: pro/
|
3347 |
-
msgid "
|
3348 |
msgstr ""
|
3349 |
|
3350 |
-
#: pro/
|
3351 |
-
msgid "
|
3352 |
msgstr ""
|
3353 |
|
3354 |
-
#: pro/
|
3355 |
-
msgid "
|
3356 |
msgstr ""
|
3357 |
|
3358 |
-
#: pro/
|
3359 |
-
|
3360 |
-
#: pro/app/views/reports/custom-report.php:34
|
3361 |
-
#: pro/app/views/reports/custom-report.php:67
|
3362 |
-
#: pro/app/views/reports/split-test-report.php:31
|
3363 |
-
#: pro/app/views/reports/split-test-report.php:63
|
3364 |
-
msgid "Conversions"
|
3365 |
msgstr ""
|
3366 |
|
3367 |
-
#: pro/
|
3368 |
-
msgid "
|
3369 |
msgstr ""
|
3370 |
|
3371 |
-
#: pro/
|
3372 |
-
msgid "
|
3373 |
msgstr ""
|
3374 |
|
3375 |
-
#: pro/
|
3376 |
-
msgid "
|
3377 |
msgstr ""
|
3378 |
|
3379 |
-
#: pro/
|
3380 |
-
|
3381 |
-
msgid "Export Pretty Links"
|
3382 |
msgstr ""
|
3383 |
|
3384 |
-
#: pro/
|
3385 |
-
msgid "
|
3386 |
msgstr ""
|
3387 |
|
3388 |
-
#: pro/
|
3389 |
-
msgid "
|
3390 |
msgstr ""
|
3391 |
|
3392 |
-
#: pro/
|
3393 |
-
|
3394 |
-
msgid "Import Pretty Links"
|
3395 |
msgstr ""
|
3396 |
|
3397 |
-
#: pro/
|
3398 |
-
msgid "
|
3399 |
msgstr ""
|
3400 |
|
3401 |
-
#: pro/
|
3402 |
-
msgid "
|
3403 |
msgstr ""
|
3404 |
|
3405 |
-
#: pro/
|
3406 |
-
msgid "
|
3407 |
msgstr ""
|
3408 |
|
3409 |
-
#: pro/
|
3410 |
-
msgid "
|
3411 |
msgstr ""
|
3412 |
|
3413 |
-
#: pro/
|
3414 |
-
msgid "
|
3415 |
msgstr ""
|
3416 |
|
3417 |
-
#: pro/
|
3418 |
-
msgid "
|
3419 |
msgstr ""
|
3420 |
|
3421 |
-
#: pro/
|
3422 |
-
msgid "
|
|
|
|
|
|
|
|
|
3423 |
msgstr ""
|
3424 |
|
3425 |
-
#: pro/
|
3426 |
-
msgid "
|
3427 |
msgstr ""
|
3428 |
|
3429 |
-
#: pro/
|
3430 |
-
msgid "
|
3431 |
msgstr ""
|
3432 |
|
3433 |
-
#: pro/
|
3434 |
-
msgid "
|
3435 |
msgstr ""
|
3436 |
|
3437 |
-
#: pro/
|
3438 |
-
msgid "
|
3439 |
msgstr ""
|
3440 |
|
3441 |
-
#: pro/
|
3442 |
-
msgid "
|
3443 |
msgstr ""
|
3444 |
|
3445 |
-
#: pro/
|
3446 |
-
msgid "
|
3447 |
msgstr ""
|
3448 |
|
3449 |
-
#: pro/
|
3450 |
-
msgid "
|
3451 |
msgstr ""
|
3452 |
|
3453 |
-
#: pro/
|
3454 |
-
msgid "
|
3455 |
msgstr ""
|
3456 |
|
3457 |
-
#: pro/
|
3458 |
-
msgid "
|
3459 |
msgstr ""
|
3460 |
|
3461 |
-
#: pro/
|
3462 |
-
msgid "
|
3463 |
msgstr ""
|
3464 |
|
3465 |
-
#: pro/
|
3466 |
-
msgid "
|
3467 |
msgstr ""
|
3468 |
|
3469 |
-
#: pro/
|
3470 |
-
msgid "
|
3471 |
msgstr ""
|
3472 |
|
3473 |
-
|
3474 |
-
|
3475 |
-
msgid "Select the type of expiration you want for this link.%1$s%1$s%2$sDate%3$s Select this option if you'd like to expire your link after a certain date.%1%s%1$s%2$sClicks%3$s: Select this option to expire this link after it has been clicked a specific number of times."
|
3476 |
msgstr ""
|
3477 |
|
3478 |
-
#: pro/
|
3479 |
-
msgid "
|
3480 |
msgstr ""
|
3481 |
|
3482 |
-
|
3483 |
-
|
3484 |
-
msgid "Enter the number of times this link can be clicked before it expires.%1$s%1$s%2$sNote: Expirations based on clicks wouldn't work properly if you had tracking turned off for this link so as long as this is set to Clicks, Pretty Link will ensure tracking is turned on for this link as well.%3$s"
|
3485 |
msgstr ""
|
3486 |
|
3487 |
-
#: pro/
|
3488 |
-
msgid "
|
3489 |
msgstr ""
|
3490 |
|
3491 |
-
#: pro/
|
3492 |
-
msgid "
|
3493 |
msgstr ""
|
3494 |
|
3495 |
-
#: pro/
|
3496 |
-
msgid "
|
3497 |
msgstr ""
|
3498 |
|
3499 |
-
#: pro/
|
3500 |
-
msgid "
|
3501 |
msgstr ""
|
3502 |
|
3503 |
-
|
3504 |
-
#:
|
3505 |
-
|
|
|
|
|
|
|
3506 |
msgstr ""
|
3507 |
|
3508 |
-
#:
|
3509 |
-
|
3510 |
-
msgid "URL"
|
3511 |
msgstr ""
|
3512 |
|
3513 |
-
#:
|
3514 |
-
|
|
|
|
|
3515 |
msgstr ""
|
3516 |
|
3517 |
-
#:
|
3518 |
-
|
|
|
|
|
3519 |
msgstr ""
|
3520 |
|
3521 |
-
#:
|
3522 |
-
|
|
|
|
|
3523 |
msgstr ""
|
3524 |
|
3525 |
-
|
3526 |
-
|
3527 |
-
msgid "Enter a comma separated list of the URLs that you'd like to replace with this Pretty Link in your Posts & Pages. These must be formatted as URLs for example: %1$shttp://example.com%2$s or %1$shttp://example.com?product_id=53%2$s"
|
3528 |
msgstr ""
|
3529 |
|
3530 |
-
#:
|
3531 |
-
|
3532 |
-
msgid "Target URL Rotations"
|
3533 |
msgstr ""
|
3534 |
|
3535 |
-
|
3536 |
-
|
3537 |
-
msgid "Enter the Target URLs that you'd like to rotate through when this Pretty Link is Clicked. These must be formatted as URLs example: %1$shttp://example.com%2$s or %1$shttp://example.com?product_id=53%2$s"
|
3538 |
msgstr ""
|
3539 |
|
3540 |
-
#:
|
3541 |
-
msgid "
|
3542 |
msgstr ""
|
3543 |
|
3544 |
-
#:
|
3545 |
-
msgid "
|
3546 |
msgstr ""
|
3547 |
|
3548 |
-
#:
|
3549 |
-
msgid "
|
3550 |
msgstr ""
|
3551 |
|
3552 |
-
#:
|
3553 |
-
msgid "
|
3554 |
msgstr ""
|
3555 |
|
3556 |
-
#:
|
3557 |
-
msgid "
|
3558 |
msgstr ""
|
3559 |
|
3560 |
-
#:
|
3561 |
-
|
3562 |
-
#: pro/app/views/reports/list.php:87
|
3563 |
-
msgid "Goal Link"
|
3564 |
msgstr ""
|
3565 |
|
3566 |
-
#:
|
3567 |
-
msgid "
|
3568 |
msgstr ""
|
3569 |
|
3570 |
-
#:
|
3571 |
-
msgid "
|
3572 |
msgstr ""
|
3573 |
|
3574 |
-
#:
|
3575 |
-
msgid "
|
3576 |
msgstr ""
|
3577 |
|
3578 |
-
#:
|
3579 |
-
|
3580 |
-
msgid "Geographic Redirects"
|
3581 |
msgstr ""
|
3582 |
|
3583 |
-
#:
|
3584 |
-
|
|
|
3585 |
msgstr ""
|
3586 |
|
3587 |
-
#:
|
3588 |
-
#:
|
3589 |
-
|
3590 |
-
msgid "Add"
|
3591 |
msgstr ""
|
3592 |
|
3593 |
-
#:
|
3594 |
-
#:
|
3595 |
-
msgid "
|
3596 |
msgstr ""
|
3597 |
|
3598 |
-
#:
|
3599 |
-
|
|
|
3600 |
msgstr ""
|
3601 |
|
3602 |
-
#:
|
3603 |
-
#:
|
3604 |
-
msgid "
|
3605 |
msgstr ""
|
3606 |
|
3607 |
-
|
3608 |
-
#:
|
3609 |
-
msgid "
|
3610 |
msgstr ""
|
3611 |
|
3612 |
-
#:
|
3613 |
-
msgid "
|
3614 |
msgstr ""
|
3615 |
|
3616 |
-
#:
|
3617 |
-
msgid "
|
3618 |
msgstr ""
|
3619 |
|
3620 |
-
#:
|
3621 |
-
msgid "
|
3622 |
msgstr ""
|
3623 |
|
3624 |
-
#:
|
3625 |
-
#:
|
3626 |
-
#:
|
3627 |
-
|
|
|
|
|
3628 |
msgstr ""
|
3629 |
|
3630 |
-
#:
|
3631 |
-
msgid "
|
3632 |
msgstr ""
|
3633 |
|
3634 |
-
#:
|
3635 |
-
msgid "
|
3636 |
msgstr ""
|
3637 |
|
3638 |
-
#:
|
3639 |
-
|
3640 |
-
#: pro/app/views/links/time_row.php:52
|
3641 |
-
msgid "Remove"
|
3642 |
msgstr ""
|
3643 |
|
3644 |
-
|
3645 |
-
|
|
|
3646 |
msgstr ""
|
3647 |
|
3648 |
-
#:
|
3649 |
-
msgid "
|
3650 |
msgstr ""
|
3651 |
|
3652 |
-
#:
|
3653 |
-
msgid "
|
3654 |
msgstr ""
|
3655 |
|
3656 |
-
|
3657 |
-
|
3658 |
-
msgid "Enable %1sQR Codes%2$s"
|
3659 |
msgstr ""
|
3660 |
|
3661 |
-
#:
|
3662 |
-
msgid "
|
3663 |
msgstr ""
|
3664 |
|
3665 |
-
#:
|
3666 |
-
msgid "
|
3667 |
msgstr ""
|
3668 |
|
3669 |
-
#:
|
3670 |
-
msgid "
|
3671 |
msgstr ""
|
3672 |
|
3673 |
-
#:
|
3674 |
-
msgid "
|
3675 |
msgstr ""
|
3676 |
|
3677 |
-
#:
|
3678 |
-
msgid "
|
3679 |
msgstr ""
|
3680 |
|
3681 |
-
#:
|
3682 |
-
msgid "
|
3683 |
msgstr ""
|
3684 |
|
3685 |
-
|
3686 |
-
|
3687 |
-
msgid "%1$sDesktop%2$s will match on any conventional laptop or desktop computer.%3$s%3$s%1$sMobile%2$s will match on any phone, tablet or other portable device.%3$s%3$s%1$sPhone%2$s will match on any phone or similarly small device.%3$s%3$s%1$sTablet%2$s will match on any tablet sized device."
|
3688 |
msgstr ""
|
3689 |
|
3690 |
-
#:
|
3691 |
-
#:
|
3692 |
-
|
3693 |
-
msgid "Any"
|
3694 |
msgstr ""
|
3695 |
|
3696 |
-
#:
|
3697 |
-
msgid "
|
3698 |
msgstr ""
|
3699 |
|
3700 |
-
#:
|
3701 |
-
msgid "
|
3702 |
msgstr ""
|
3703 |
|
3704 |
-
#:
|
3705 |
-
|
|
|
|
|
3706 |
msgstr ""
|
3707 |
|
3708 |
-
#:
|
3709 |
-
msgid "
|
3710 |
msgstr ""
|
3711 |
|
3712 |
-
#:
|
3713 |
-
msgid "
|
3714 |
msgstr ""
|
3715 |
|
3716 |
-
#:
|
3717 |
-
|
|
|
3718 |
msgstr ""
|
3719 |
|
3720 |
-
#:
|
3721 |
-
msgid "
|
3722 |
msgstr ""
|
3723 |
|
3724 |
-
#:
|
3725 |
-
#:
|
3726 |
-
msgid "
|
3727 |
msgstr ""
|
3728 |
|
3729 |
-
#:
|
3730 |
-
msgid "
|
3731 |
msgstr ""
|
3732 |
|
3733 |
-
#:
|
3734 |
-
|
|
|
|
|
|
|
3735 |
msgstr ""
|
3736 |
|
3737 |
-
#:
|
3738 |
-
msgid "
|
3739 |
msgstr ""
|
3740 |
|
3741 |
-
#:
|
3742 |
-
msgid "
|
3743 |
msgstr ""
|
3744 |
|
3745 |
-
#:
|
3746 |
-
msgid "
|
3747 |
msgstr ""
|
3748 |
|
3749 |
-
#:
|
3750 |
-
msgid "
|
3751 |
msgstr ""
|
3752 |
|
3753 |
-
#:
|
3754 |
-
msgid "
|
3755 |
msgstr ""
|
3756 |
|
3757 |
-
#:
|
3758 |
-
msgid "
|
3759 |
msgstr ""
|
3760 |
|
3761 |
-
#:
|
3762 |
-
msgid "
|
3763 |
msgstr ""
|
3764 |
|
3765 |
-
#:
|
3766 |
-
|
|
|
3767 |
msgstr ""
|
3768 |
|
3769 |
-
#:
|
3770 |
-
msgid "
|
3771 |
msgstr ""
|
3772 |
|
3773 |
-
#:
|
3774 |
-
|
|
|
3775 |
msgstr ""
|
3776 |
|
3777 |
-
#:
|
3778 |
-
msgid "
|
3779 |
msgstr ""
|
3780 |
|
3781 |
-
#:
|
3782 |
-
|
|
|
|
|
|
|
3783 |
msgstr ""
|
3784 |
|
3785 |
-
#:
|
3786 |
-
msgid "
|
3787 |
msgstr ""
|
3788 |
|
3789 |
-
#:
|
3790 |
-
msgid "
|
3791 |
msgstr ""
|
3792 |
|
3793 |
-
#:
|
3794 |
-
msgid "
|
3795 |
msgstr ""
|
3796 |
|
3797 |
-
#:
|
3798 |
-
|
|
|
3799 |
msgstr ""
|
3800 |
|
3801 |
-
#:
|
3802 |
-
msgid "This is
|
3803 |
msgstr ""
|
3804 |
|
3805 |
-
#:
|
3806 |
-
msgid "
|
3807 |
msgstr ""
|
3808 |
|
3809 |
-
|
3810 |
-
|
|
|
3811 |
msgstr ""
|
3812 |
|
3813 |
-
#:
|
3814 |
-
msgid "
|
3815 |
msgstr ""
|
3816 |
|
3817 |
-
#:
|
3818 |
-
|
|
|
|
|
3819 |
msgstr ""
|
3820 |
|
3821 |
-
#:
|
3822 |
-
msgid "
|
3823 |
msgstr ""
|
3824 |
|
3825 |
-
#:
|
3826 |
-
msgid "
|
3827 |
msgstr ""
|
3828 |
|
3829 |
-
#:
|
3830 |
-
msgid "
|
3831 |
msgstr ""
|
3832 |
|
3833 |
-
#:
|
3834 |
-
msgid "
|
3835 |
msgstr ""
|
3836 |
|
3837 |
-
#:
|
3838 |
-
msgid "
|
3839 |
msgstr ""
|
3840 |
|
3841 |
-
#:
|
3842 |
-
msgid "
|
3843 |
msgstr ""
|
3844 |
|
3845 |
-
#:
|
3846 |
-
msgid "
|
3847 |
msgstr ""
|
3848 |
|
3849 |
-
#:
|
3850 |
-
|
|
|
|
|
3851 |
msgstr ""
|
3852 |
|
3853 |
-
#:
|
3854 |
-
msgid "
|
3855 |
msgstr ""
|
3856 |
|
3857 |
-
#:
|
3858 |
-
|
|
|
|
|
3859 |
msgstr ""
|
3860 |
|
3861 |
-
#:
|
3862 |
-
msgid "
|
3863 |
msgstr ""
|
3864 |
|
3865 |
-
#:
|
3866 |
-
msgid "
|
3867 |
msgstr ""
|
3868 |
|
3869 |
-
#:
|
3870 |
-
msgid "
|
3871 |
msgstr ""
|
3872 |
|
3873 |
-
#:
|
3874 |
-
|
|
|
3875 |
msgstr ""
|
3876 |
|
3877 |
-
#:
|
3878 |
-
msgid "
|
3879 |
msgstr ""
|
3880 |
|
3881 |
-
#:
|
3882 |
-
msgid "
|
3883 |
msgstr ""
|
3884 |
|
3885 |
-
#:
|
3886 |
-
|
|
|
|
|
|
|
|
|
|
|
3887 |
msgstr ""
|
3888 |
|
3889 |
-
#:
|
3890 |
-
|
|
|
|
|
|
|
|
|
|
|
3891 |
msgstr ""
|
3892 |
|
3893 |
-
#:
|
3894 |
-
|
|
|
3895 |
msgstr ""
|
3896 |
|
3897 |
-
#:
|
3898 |
-
msgid "
|
3899 |
msgstr ""
|
3900 |
|
3901 |
-
#:
|
3902 |
-
msgid "
|
3903 |
msgstr ""
|
3904 |
|
3905 |
-
#:
|
3906 |
-
msgid "
|
3907 |
msgstr ""
|
3908 |
|
3909 |
-
#:
|
3910 |
-
msgid "
|
3911 |
msgstr ""
|
3912 |
|
3913 |
-
#:
|
3914 |
-
|
|
|
3915 |
msgstr ""
|
3916 |
|
3917 |
-
#:
|
3918 |
-
msgid "
|
3919 |
msgstr ""
|
3920 |
|
3921 |
-
#:
|
3922 |
-
msgid "
|
3923 |
msgstr ""
|
3924 |
|
3925 |
-
#:
|
3926 |
-
msgid "
|
3927 |
msgstr ""
|
3928 |
|
3929 |
-
#:
|
3930 |
-
msgid "
|
3931 |
msgstr ""
|
3932 |
|
3933 |
-
#:
|
3934 |
-
msgid "
|
3935 |
msgstr ""
|
3936 |
|
3937 |
-
#:
|
3938 |
-
msgid "
|
3939 |
msgstr ""
|
3940 |
|
3941 |
-
#:
|
3942 |
-
msgid "
|
3943 |
msgstr ""
|
3944 |
|
3945 |
-
#:
|
3946 |
-
|
|
|
3947 |
msgstr ""
|
3948 |
|
3949 |
-
#:
|
3950 |
-
msgid "
|
3951 |
msgstr ""
|
3952 |
|
3953 |
-
|
3954 |
-
#:
|
3955 |
-
msgid "
|
3956 |
msgstr ""
|
3957 |
|
3958 |
-
#:
|
3959 |
-
#:
|
3960 |
-
msgid "
|
3961 |
msgstr ""
|
3962 |
|
3963 |
-
#:
|
3964 |
-
msgid "
|
3965 |
msgstr ""
|
3966 |
|
3967 |
-
#:
|
3968 |
-
#:
|
3969 |
-
msgid "
|
3970 |
msgstr ""
|
3971 |
|
3972 |
-
#:
|
3973 |
-
|
3974 |
-
msgid "%1$s out of %2$s Comments Indexed"
|
3975 |
msgstr ""
|
3976 |
|
3977 |
-
#:
|
3978 |
-
msgid "
|
3979 |
msgstr ""
|
3980 |
|
3981 |
-
#:
|
3982 |
-
|
|
|
3983 |
msgstr ""
|
3984 |
|
3985 |
-
#:
|
3986 |
-
|
|
|
3987 |
msgstr ""
|
3988 |
|
3989 |
-
#:
|
3990 |
-
msgid "
|
3991 |
msgstr ""
|
3992 |
|
3993 |
-
#:
|
3994 |
-
|
|
|
3995 |
msgstr ""
|
3996 |
|
3997 |
-
#:
|
3998 |
-
msgid "
|
3999 |
msgstr ""
|
4000 |
|
4001 |
-
#:
|
4002 |
-
msgid "
|
4003 |
msgstr ""
|
4004 |
|
4005 |
-
#:
|
4006 |
-
msgid "
|
4007 |
msgstr ""
|
4008 |
|
4009 |
-
#:
|
4010 |
-
msgid "
|
4011 |
msgstr ""
|
4012 |
|
4013 |
-
#:
|
4014 |
-
msgid "
|
4015 |
msgstr ""
|
4016 |
|
4017 |
-
#:
|
4018 |
-
msgid "
|
4019 |
msgstr ""
|
4020 |
|
4021 |
-
#:
|
4022 |
-
|
|
|
4023 |
msgstr ""
|
4024 |
|
4025 |
-
#:
|
4026 |
-
|
4027 |
-
msgid "Shortlink URL"
|
4028 |
msgstr ""
|
4029 |
|
4030 |
-
#:
|
4031 |
-
msgid "
|
4032 |
msgstr ""
|
4033 |
|
4034 |
-
#:
|
4035 |
-
msgid "
|
4036 |
msgstr ""
|
4037 |
|
4038 |
-
#:
|
4039 |
-
msgid "
|
4040 |
msgstr ""
|
4041 |
|
4042 |
-
|
4043 |
-
|
|
|
4044 |
msgstr ""
|
4045 |
|
4046 |
-
#:
|
4047 |
-
msgid "
|
4048 |
msgstr ""
|
4049 |
|
4050 |
-
#:
|
4051 |
-
msgid "
|
4052 |
msgstr ""
|
4053 |
|
4054 |
-
|
4055 |
-
|
|
|
4056 |
msgstr ""
|
4057 |
|
4058 |
-
#:
|
4059 |
-
msgid "
|
4060 |
msgstr ""
|
4061 |
|
4062 |
-
#:
|
4063 |
-
msgid "
|
4064 |
msgstr ""
|
4065 |
|
4066 |
-
#:
|
4067 |
-
msgid "
|
4068 |
msgstr ""
|
4069 |
|
4070 |
-
#:
|
4071 |
-
msgid "
|
4072 |
msgstr ""
|
4073 |
|
4074 |
-
#:
|
4075 |
-
msgid "
|
4076 |
msgstr ""
|
4077 |
|
4078 |
-
#:
|
4079 |
-
msgid "
|
4080 |
msgstr ""
|
4081 |
|
4082 |
-
#:
|
4083 |
-
|
4084 |
-
msgid "Link Name"
|
4085 |
msgstr ""
|
4086 |
|
4087 |
-
#:
|
4088 |
-
|
4089 |
-
#: pro/app/views/reports/split-test-report.php:32
|
4090 |
-
#: pro/app/views/reports/split-test-report.php:64
|
4091 |
-
msgid "Conv Rate"
|
4092 |
msgstr ""
|
4093 |
|
4094 |
-
#:
|
4095 |
-
msgid "
|
4096 |
msgstr ""
|
4097 |
|
4098 |
-
#:
|
4099 |
-
|
4100 |
-
msgid "This is how you'll identify your Report."
|
4101 |
msgstr ""
|
4102 |
|
4103 |
-
#:
|
4104 |
-
|
4105 |
-
msgid "Select Links to Analyze in this Report:"
|
4106 |
msgstr ""
|
4107 |
|
4108 |
-
#:
|
4109 |
-
|
4110 |
-
msgid "Select some links to be analyzed in this report."
|
4111 |
msgstr ""
|
4112 |
|
4113 |
-
#:
|
4114 |
-
|
4115 |
-
msgid "Select Your Goal Link (optional):"
|
4116 |
msgstr ""
|
4117 |
|
4118 |
-
|
4119 |
-
#:
|
4120 |
-
msgid "
|
4121 |
msgstr ""
|
4122 |
|
4123 |
-
#:
|
4124 |
-
|
4125 |
-
msgid "Link Reports"
|
4126 |
msgstr ""
|
4127 |
|
4128 |
-
#:
|
4129 |
-
msgid "
|
4130 |
msgstr ""
|
4131 |
|
4132 |
-
#:
|
4133 |
-
msgid "
|
4134 |
msgstr ""
|
4135 |
|
4136 |
-
#:
|
4137 |
-
msgid "
|
4138 |
msgstr ""
|
4139 |
|
4140 |
-
#:
|
4141 |
-
msgid "
|
4142 |
msgstr ""
|
4143 |
|
4144 |
-
#:
|
4145 |
-
msgid "
|
4146 |
msgstr ""
|
4147 |
|
4148 |
-
#:
|
4149 |
-
msgid "
|
4150 |
msgstr ""
|
4151 |
|
4152 |
-
#:
|
4153 |
-
msgid "
|
4154 |
msgstr ""
|
4155 |
|
4156 |
-
#:
|
4157 |
-
msgid "
|
4158 |
msgstr ""
|
4159 |
|
4160 |
-
|
4161 |
-
|
|
|
4162 |
msgstr ""
|
4163 |
|
4164 |
-
#:
|
4165 |
-
msgid "
|
4166 |
msgstr ""
|
4167 |
|
4168 |
-
#:
|
4169 |
-
msgid "
|
4170 |
msgstr ""
|
4171 |
|
4172 |
-
#:
|
4173 |
-
msgid "
|
4174 |
msgstr ""
|
4175 |
|
4176 |
-
#:
|
4177 |
-
msgid "
|
4178 |
msgstr ""
|
4179 |
|
4180 |
-
#:
|
4181 |
-
msgid "
|
4182 |
msgstr ""
|
4183 |
|
4184 |
-
#:
|
4185 |
-
|
4186 |
-
msgid "Pretty Link Options"
|
4187 |
msgstr ""
|
4188 |
|
4189 |
-
#:
|
4190 |
-
msgid "
|
4191 |
msgstr ""
|
4192 |
|
4193 |
-
#:
|
4194 |
-
#:
|
4195 |
-
msgid "
|
4196 |
msgstr ""
|
4197 |
|
4198 |
-
#:
|
4199 |
-
msgid "
|
4200 |
msgstr ""
|
4201 |
|
4202 |
-
#:
|
4203 |
-
#:
|
4204 |
-
msgid "
|
4205 |
msgstr ""
|
4206 |
|
4207 |
-
#:
|
4208 |
-
msgid "
|
4209 |
msgstr ""
|
4210 |
|
4211 |
-
|
4212 |
-
|
|
|
4213 |
msgstr ""
|
4214 |
|
4215 |
-
|
4216 |
-
|
|
|
4217 |
msgstr ""
|
4218 |
|
4219 |
-
|
4220 |
-
|
|
|
4221 |
msgstr ""
|
4222 |
|
4223 |
-
|
4224 |
-
|
|
|
4225 |
msgstr ""
|
4226 |
|
4227 |
-
#:
|
4228 |
-
msgid "
|
4229 |
msgstr ""
|
4230 |
|
4231 |
-
#:
|
4232 |
-
msgid "
|
4233 |
msgstr ""
|
4234 |
|
4235 |
-
#:
|
4236 |
-
msgid "
|
4237 |
msgstr ""
|
4238 |
|
4239 |
-
#:
|
4240 |
-
msgid "
|
4241 |
msgstr ""
|
4242 |
|
4243 |
-
#:
|
4244 |
-
msgid "
|
4245 |
msgstr ""
|
4246 |
|
4247 |
-
#:
|
4248 |
-
msgid "
|
4249 |
msgstr ""
|
4250 |
|
4251 |
-
#:
|
4252 |
-
|
|
|
4253 |
msgstr ""
|
4254 |
|
4255 |
-
#:
|
4256 |
-
|
|
|
4257 |
msgstr ""
|
4258 |
|
4259 |
-
#:
|
4260 |
-
|
|
|
4261 |
msgstr ""
|
4262 |
|
4263 |
-
#:
|
4264 |
-
|
|
|
4265 |
msgstr ""
|
4266 |
|
4267 |
-
#:
|
4268 |
-
|
|
|
4269 |
msgstr ""
|
4270 |
|
4271 |
-
#:
|
4272 |
-
msgid "
|
4273 |
msgstr ""
|
4274 |
|
4275 |
-
#:
|
4276 |
-
msgid "
|
4277 |
msgstr ""
|
4278 |
|
4279 |
-
#:
|
4280 |
-
msgid "
|
4281 |
msgstr ""
|
4282 |
|
4283 |
-
#:
|
4284 |
-
msgid "
|
4285 |
msgstr ""
|
4286 |
|
4287 |
-
#:
|
4288 |
-
msgid "
|
4289 |
msgstr ""
|
4290 |
|
4291 |
-
#:
|
4292 |
-
msgid "
|
4293 |
msgstr ""
|
4294 |
|
4295 |
-
#:
|
4296 |
-
msgid "
|
4297 |
msgstr ""
|
4298 |
|
4299 |
-
#:
|
4300 |
-
msgid "
|
4301 |
msgstr ""
|
4302 |
|
4303 |
-
#:
|
4304 |
-
msgid "
|
4305 |
msgstr ""
|
4306 |
|
4307 |
-
#:
|
4308 |
-
|
|
|
4309 |
msgstr ""
|
4310 |
|
4311 |
-
#:
|
4312 |
-
msgid "
|
4313 |
msgstr ""
|
4314 |
|
4315 |
-
#:
|
4316 |
-
msgid "
|
4317 |
msgstr ""
|
4318 |
|
4319 |
-
#:
|
4320 |
-
msgid "
|
4321 |
msgstr ""
|
4322 |
|
4323 |
-
#:
|
4324 |
-
msgid "
|
4325 |
msgstr ""
|
4326 |
|
4327 |
-
#:
|
4328 |
-
msgid "
|
4329 |
msgstr ""
|
4330 |
|
4331 |
-
#:
|
4332 |
-
msgid "
|
4333 |
msgstr ""
|
4334 |
|
4335 |
-
#:
|
4336 |
-
msgid "
|
4337 |
msgstr ""
|
4338 |
|
4339 |
-
#:
|
4340 |
-
msgid "
|
4341 |
msgstr ""
|
4342 |
|
4343 |
-
#:
|
4344 |
-
msgid "
|
4345 |
msgstr ""
|
4346 |
|
4347 |
-
#:
|
4348 |
-
msgid "
|
4349 |
msgstr ""
|
4350 |
|
4351 |
-
#:
|
4352 |
-
msgid "
|
4353 |
msgstr ""
|
4354 |
|
4355 |
-
#:
|
4356 |
-
|
|
|
4357 |
msgstr ""
|
4358 |
|
4359 |
-
#:
|
4360 |
-
msgid "
|
4361 |
msgstr ""
|
4362 |
|
4363 |
-
|
4364 |
-
|
|
|
4365 |
msgstr ""
|
4366 |
|
4367 |
-
#:
|
4368 |
-
msgid "
|
4369 |
msgstr ""
|
4370 |
|
4371 |
-
#:
|
4372 |
-
msgid "
|
4373 |
msgstr ""
|
4374 |
|
4375 |
-
#:
|
4376 |
-
msgid "
|
4377 |
msgstr ""
|
4378 |
|
4379 |
-
#:
|
4380 |
-
msgid "
|
4381 |
msgstr ""
|
4382 |
|
4383 |
-
#:
|
4384 |
-
msgid "
|
4385 |
msgstr ""
|
4386 |
|
4387 |
-
#:
|
4388 |
-
msgid "
|
4389 |
msgstr ""
|
4390 |
|
4391 |
-
#:
|
4392 |
-
msgid "
|
4393 |
msgstr ""
|
4394 |
|
4395 |
-
#:
|
4396 |
-
msgid "
|
4397 |
msgstr ""
|
4398 |
|
4399 |
-
#:
|
4400 |
-
msgid "
|
4401 |
msgstr ""
|
4402 |
|
4403 |
-
#:
|
4404 |
-
msgid "
|
4405 |
msgstr ""
|
4406 |
|
4407 |
-
#:
|
4408 |
-
msgid "
|
4409 |
msgstr ""
|
4410 |
|
4411 |
-
#:
|
4412 |
-
|
|
|
4413 |
msgstr ""
|
4414 |
|
4415 |
-
#:
|
4416 |
-
msgid "
|
4417 |
msgstr ""
|
4418 |
|
4419 |
-
#:
|
4420 |
-
msgid "
|
4421 |
msgstr ""
|
4422 |
|
4423 |
-
#:
|
4424 |
-
msgid "
|
4425 |
msgstr ""
|
4426 |
|
4427 |
-
#:
|
4428 |
-
msgid "
|
4429 |
msgstr ""
|
4430 |
|
4431 |
-
#:
|
4432 |
-
msgid "
|
4433 |
msgstr ""
|
4434 |
|
4435 |
-
#:
|
4436 |
-
msgid "
|
4437 |
msgstr ""
|
4438 |
|
4439 |
-
#:
|
4440 |
-
msgid "
|
4441 |
msgstr ""
|
4442 |
|
4443 |
-
#:
|
4444 |
-
msgid "
|
4445 |
msgstr ""
|
4446 |
|
4447 |
-
#:
|
4448 |
-
msgid "
|
4449 |
msgstr ""
|
4450 |
|
4451 |
-
#:
|
4452 |
-
msgid "
|
4453 |
msgstr ""
|
4454 |
|
4455 |
-
#:
|
4456 |
-
msgid "
|
4457 |
msgstr ""
|
4458 |
|
4459 |
-
#:
|
4460 |
-
msgid "
|
4461 |
msgstr ""
|
4462 |
|
4463 |
-
#:
|
4464 |
-
|
|
|
4465 |
msgstr ""
|
4466 |
|
4467 |
-
#:
|
4468 |
-
msgid "
|
4469 |
msgstr ""
|
4470 |
|
4471 |
-
#:
|
4472 |
-
msgid "
|
4473 |
msgstr ""
|
4474 |
|
4475 |
-
#:
|
4476 |
-
msgid "
|
4477 |
msgstr ""
|
4478 |
|
4479 |
-
#:
|
4480 |
-
msgid "
|
4481 |
msgstr ""
|
4482 |
|
4483 |
-
#:
|
4484 |
-
msgid "
|
4485 |
msgstr ""
|
4486 |
|
4487 |
-
#:
|
4488 |
-
msgid "
|
4489 |
msgstr ""
|
4490 |
|
4491 |
-
#:
|
4492 |
-
msgid "
|
4493 |
msgstr ""
|
4494 |
|
4495 |
-
#:
|
4496 |
-
msgid "
|
4497 |
msgstr ""
|
4498 |
|
4499 |
-
#:
|
4500 |
-
msgid "
|
4501 |
msgstr ""
|
4502 |
|
4503 |
-
#:
|
4504 |
-
msgid "
|
4505 |
msgstr ""
|
4506 |
|
4507 |
-
#:
|
4508 |
-
msgid "
|
4509 |
msgstr ""
|
4510 |
|
4511 |
-
#:
|
4512 |
-
|
|
|
4513 |
msgstr ""
|
4514 |
|
4515 |
-
#:
|
4516 |
-
msgid "
|
4517 |
msgstr ""
|
4518 |
|
4519 |
-
#:
|
4520 |
-
|
|
|
4521 |
msgstr ""
|
4522 |
|
4523 |
-
#:
|
4524 |
-
msgid "
|
4525 |
msgstr ""
|
4526 |
|
4527 |
-
#:
|
4528 |
-
msgid "
|
4529 |
msgstr ""
|
4530 |
|
4531 |
-
#:
|
4532 |
-
msgid "
|
4533 |
msgstr ""
|
4534 |
|
4535 |
-
#:
|
4536 |
-
msgid "
|
4537 |
msgstr ""
|
4538 |
|
4539 |
-
#:
|
4540 |
-
msgid "
|
4541 |
msgstr ""
|
4542 |
|
4543 |
-
#:
|
4544 |
-
msgid "
|
4545 |
msgstr ""
|
4546 |
|
4547 |
-
#:
|
4548 |
-
msgid "
|
4549 |
msgstr ""
|
4550 |
|
4551 |
-
#:
|
4552 |
-
msgid "
|
4553 |
msgstr ""
|
4554 |
|
4555 |
-
#:
|
4556 |
-
msgid "
|
4557 |
msgstr ""
|
4558 |
|
4559 |
-
#:
|
4560 |
-
msgid "
|
4561 |
msgstr ""
|
4562 |
|
4563 |
-
#:
|
4564 |
-
|
|
|
4565 |
msgstr ""
|
4566 |
|
4567 |
-
#:
|
4568 |
-
|
|
|
4569 |
msgstr ""
|
4570 |
|
4571 |
-
#:
|
4572 |
-
|
|
|
4573 |
msgstr ""
|
4574 |
|
4575 |
-
#:
|
4576 |
-
|
|
|
4577 |
msgstr ""
|
4578 |
|
4579 |
-
#:
|
4580 |
-
|
|
|
4581 |
msgstr ""
|
4582 |
|
4583 |
-
|
4584 |
-
|
|
|
|
|
4585 |
msgstr ""
|
4586 |
|
4587 |
-
#:
|
4588 |
-
msgid "
|
4589 |
msgstr ""
|
4590 |
|
4591 |
-
#:
|
4592 |
-
msgid "
|
4593 |
msgstr ""
|
4594 |
|
4595 |
-
#:
|
4596 |
-
msgid "
|
4597 |
msgstr ""
|
4598 |
|
4599 |
-
#:
|
4600 |
-
msgid "
|
4601 |
msgstr ""
|
4602 |
|
4603 |
-
#:
|
4604 |
-
|
|
|
4605 |
msgstr ""
|
4606 |
|
4607 |
-
#:
|
4608 |
-
msgid "
|
4609 |
msgstr ""
|
4610 |
|
4611 |
-
#:
|
4612 |
-
msgid "
|
4613 |
msgstr ""
|
4614 |
|
4615 |
-
#:
|
4616 |
-
|
|
|
4617 |
msgstr ""
|
4618 |
|
4619 |
-
#:
|
4620 |
-
|
|
|
4621 |
msgstr ""
|
4622 |
|
4623 |
-
#:
|
4624 |
-
|
|
|
4625 |
msgstr ""
|
4626 |
|
4627 |
-
#:
|
4628 |
-
msgid "
|
4629 |
msgstr ""
|
4630 |
|
4631 |
-
|
4632 |
-
|
|
|
4633 |
msgstr ""
|
4634 |
|
4635 |
-
#:
|
4636 |
-
msgid "
|
4637 |
msgstr ""
|
4638 |
|
4639 |
-
|
4640 |
-
|
|
|
4641 |
msgstr ""
|
4642 |
|
4643 |
-
#:
|
4644 |
-
msgid "
|
4645 |
msgstr ""
|
4646 |
|
4647 |
-
#:
|
4648 |
-
msgid "
|
4649 |
msgstr ""
|
4650 |
|
4651 |
-
#:
|
4652 |
-
msgid "
|
4653 |
msgstr ""
|
4654 |
|
4655 |
-
#:
|
4656 |
-
msgid "
|
4657 |
msgstr ""
|
4658 |
|
4659 |
-
#:
|
4660 |
-
msgid "
|
4661 |
msgstr ""
|
4662 |
|
4663 |
-
#:
|
4664 |
-
msgid "
|
4665 |
msgstr ""
|
4666 |
|
4667 |
-
|
4668 |
-
|
|
|
4669 |
msgstr ""
|
4670 |
|
4671 |
-
#:
|
4672 |
-
msgid "
|
4673 |
msgstr ""
|
4674 |
|
4675 |
-
#:
|
4676 |
-
msgid "
|
4677 |
msgstr ""
|
4678 |
|
4679 |
-
#:
|
4680 |
-
msgid "
|
4681 |
msgstr ""
|
4682 |
|
4683 |
-
#:
|
4684 |
-
msgid "
|
4685 |
msgstr ""
|
4686 |
|
4687 |
-
#:
|
4688 |
-
msgid "
|
4689 |
msgstr ""
|
4690 |
|
4691 |
-
#:
|
4692 |
-
msgid "
|
4693 |
msgstr ""
|
4694 |
|
4695 |
-
#:
|
4696 |
-
msgid "
|
4697 |
msgstr ""
|
4698 |
|
4699 |
-
#:
|
4700 |
-
msgid "
|
4701 |
msgstr ""
|
4702 |
|
4703 |
-
#:
|
4704 |
-
msgid "
|
4705 |
msgstr ""
|
4706 |
|
4707 |
-
#:
|
4708 |
-
msgid "
|
4709 |
msgstr ""
|
4710 |
|
4711 |
-
#:
|
4712 |
-
msgid "
|
4713 |
msgstr ""
|
4714 |
|
4715 |
-
#:
|
4716 |
-
msgid "
|
4717 |
msgstr ""
|
4718 |
|
4719 |
-
#:
|
4720 |
-
msgid "
|
4721 |
msgstr ""
|
4722 |
|
4723 |
-
#:
|
4724 |
-
msgid "
|
4725 |
msgstr ""
|
4726 |
|
4727 |
-
#:
|
4728 |
-
|
|
|
4729 |
msgstr ""
|
4730 |
|
4731 |
-
#:
|
4732 |
-
msgid "
|
4733 |
msgstr ""
|
4734 |
|
4735 |
-
#:
|
4736 |
-
msgid "
|
4737 |
msgstr ""
|
4738 |
|
4739 |
-
#:
|
4740 |
-
msgid "
|
4741 |
msgstr ""
|
4742 |
|
4743 |
-
#:
|
4744 |
-
msgid "
|
4745 |
msgstr ""
|
4746 |
|
4747 |
-
#:
|
4748 |
-
|
|
|
4749 |
msgstr ""
|
4750 |
|
4751 |
-
#:
|
4752 |
-
|
|
|
4753 |
msgstr ""
|
4754 |
|
4755 |
-
#:
|
4756 |
-
|
|
|
4757 |
msgstr ""
|
4758 |
|
4759 |
-
#:
|
4760 |
-
|
|
|
4761 |
msgstr ""
|
4762 |
|
4763 |
-
#:
|
4764 |
-
|
|
|
4765 |
msgstr ""
|
4766 |
|
4767 |
-
#:
|
4768 |
-
|
|
|
4769 |
msgstr ""
|
4770 |
|
4771 |
-
#:
|
4772 |
-
|
|
|
4773 |
msgstr ""
|
4774 |
|
4775 |
-
#:
|
4776 |
-
|
|
|
4777 |
msgstr ""
|
4778 |
|
4779 |
-
#:
|
4780 |
-
msgid "
|
4781 |
msgstr ""
|
4782 |
|
4783 |
-
#:
|
4784 |
-
msgid "
|
4785 |
msgstr ""
|
4786 |
|
4787 |
-
#:
|
4788 |
-
msgid "
|
4789 |
msgstr ""
|
4790 |
|
4791 |
-
#:
|
4792 |
-
msgid "
|
4793 |
msgstr ""
|
4794 |
|
4795 |
-
#:
|
4796 |
-
msgid "
|
4797 |
msgstr ""
|
4798 |
|
4799 |
-
#:
|
4800 |
-
msgid "
|
4801 |
msgstr ""
|
4802 |
|
4803 |
-
#:
|
4804 |
-
msgid "
|
4805 |
msgstr ""
|
4806 |
|
4807 |
-
#:
|
4808 |
-
msgid "
|
4809 |
msgstr ""
|
4810 |
|
4811 |
-
#:
|
4812 |
-
msgid "
|
4813 |
msgstr ""
|
4814 |
|
4815 |
-
#:
|
4816 |
-
msgid "
|
4817 |
msgstr ""
|
4818 |
|
4819 |
-
#:
|
4820 |
-
msgid "
|
4821 |
msgstr ""
|
4822 |
|
4823 |
-
#:
|
4824 |
-
msgid "
|
4825 |
msgstr ""
|
4826 |
|
4827 |
-
#:
|
4828 |
-
msgid "
|
4829 |
msgstr ""
|
4830 |
|
4831 |
-
#:
|
4832 |
-
msgid "
|
4833 |
msgstr ""
|
4834 |
|
4835 |
-
#:
|
4836 |
-
|
|
|
|
|
4837 |
msgstr ""
|
4838 |
|
4839 |
-
#:
|
4840 |
-
|
|
|
|
|
4841 |
msgstr ""
|
4842 |
|
4843 |
-
#:
|
4844 |
-
msgid "
|
4845 |
msgstr ""
|
4846 |
|
4847 |
-
#:
|
4848 |
-
msgid "
|
4849 |
msgstr ""
|
4850 |
|
4851 |
-
#:
|
4852 |
-
msgid "
|
4853 |
msgstr ""
|
4854 |
|
4855 |
-
#:
|
4856 |
-
msgid "
|
4857 |
msgstr ""
|
4858 |
|
4859 |
-
#:
|
4860 |
-
msgid "
|
4861 |
msgstr ""
|
4862 |
|
4863 |
-
#:
|
4864 |
-
msgid "
|
4865 |
msgstr ""
|
4866 |
|
4867 |
-
#:
|
4868 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4869 |
msgstr ""
|
4870 |
|
4871 |
-
#:
|
4872 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4873 |
msgstr ""
|
4874 |
|
4875 |
-
#:
|
4876 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4877 |
msgstr ""
|
4878 |
|
4879 |
-
#:
|
4880 |
-
msgid "
|
4881 |
msgstr ""
|
4882 |
|
4883 |
-
#:
|
4884 |
-
|
|
|
4885 |
msgstr ""
|
4886 |
|
4887 |
-
#:
|
4888 |
-
msgid "
|
4889 |
msgstr ""
|
4890 |
|
4891 |
-
#:
|
4892 |
-
msgid "
|
4893 |
msgstr ""
|
4894 |
|
4895 |
-
#:
|
4896 |
-
msgid "
|
4897 |
msgstr ""
|
4898 |
|
4899 |
-
#:
|
4900 |
-
msgid "
|
4901 |
msgstr ""
|
4902 |
|
4903 |
-
#:
|
4904 |
-
|
|
|
4905 |
msgstr ""
|
4906 |
|
4907 |
-
#:
|
4908 |
-
|
|
|
4909 |
msgstr ""
|
4910 |
|
4911 |
-
#:
|
4912 |
-
msgid "
|
4913 |
msgstr ""
|
4914 |
|
4915 |
-
#:
|
4916 |
-
msgid "
|
4917 |
msgstr ""
|
4918 |
|
4919 |
-
#:
|
4920 |
-
msgid "
|
4921 |
msgstr ""
|
4922 |
|
4923 |
-
#:
|
4924 |
-
msgid "
|
4925 |
msgstr ""
|
4926 |
|
4927 |
-
#:
|
4928 |
-
msgid "
|
4929 |
msgstr ""
|
4930 |
|
4931 |
-
#:
|
4932 |
-
|
|
|
|
|
4933 |
msgstr ""
|
4934 |
|
4935 |
-
#:
|
4936 |
-
msgid "
|
4937 |
msgstr ""
|
4938 |
|
4939 |
-
#:
|
4940 |
-
msgid "
|
4941 |
msgstr ""
|
4942 |
|
4943 |
-
#:
|
4944 |
-
msgid "
|
4945 |
msgstr ""
|
4946 |
|
4947 |
-
#:
|
4948 |
-
msgid "
|
4949 |
msgstr ""
|
4950 |
|
4951 |
-
#:
|
4952 |
-
|
|
|
4953 |
msgstr ""
|
4954 |
|
4955 |
-
#:
|
4956 |
-
msgid "
|
4957 |
msgstr ""
|
4958 |
|
4959 |
-
#:
|
4960 |
-
msgid "
|
4961 |
msgstr ""
|
4962 |
|
4963 |
-
#:
|
4964 |
-
msgid "
|
4965 |
msgstr ""
|
4966 |
|
4967 |
-
#:
|
4968 |
-
msgid "
|
4969 |
msgstr ""
|
4970 |
|
4971 |
-
#:
|
4972 |
-
msgid "
|
4973 |
msgstr ""
|
4974 |
|
4975 |
-
#:
|
4976 |
-
msgid "
|
4977 |
msgstr ""
|
4978 |
|
4979 |
-
#:
|
4980 |
-
|
|
|
|
|
4981 |
msgstr ""
|
4982 |
|
4983 |
-
#:
|
4984 |
-
msgid "
|
4985 |
msgstr ""
|
4986 |
|
4987 |
-
#:
|
4988 |
-
msgid "
|
4989 |
msgstr ""
|
4990 |
|
4991 |
-
#:
|
4992 |
-
msgid "
|
4993 |
msgstr ""
|
4994 |
|
4995 |
-
#:
|
4996 |
-
msgid "
|
4997 |
msgstr ""
|
4998 |
|
4999 |
-
#:
|
5000 |
-
msgid "
|
5001 |
msgstr ""
|
5002 |
|
5003 |
-
#:
|
5004 |
-
msgid "
|
5005 |
msgstr ""
|
5006 |
|
5007 |
-
#:
|
5008 |
-
msgid "
|
5009 |
msgstr ""
|
5010 |
|
5011 |
-
#:
|
5012 |
-
msgid "
|
5013 |
msgstr ""
|
5014 |
|
5015 |
-
#:
|
5016 |
-
msgid "
|
5017 |
msgstr ""
|
5018 |
|
5019 |
-
#:
|
5020 |
-
msgid "
|
5021 |
msgstr ""
|
5022 |
|
5023 |
-
#:
|
5024 |
-
msgid "
|
5025 |
msgstr ""
|
5026 |
|
5027 |
-
#:
|
5028 |
-
msgid "
|
5029 |
msgstr ""
|
5030 |
|
5031 |
-
#:
|
5032 |
-
msgid "
|
5033 |
msgstr ""
|
5034 |
|
5035 |
-
#:
|
5036 |
-
msgid "
|
5037 |
msgstr ""
|
5038 |
|
5039 |
-
#:
|
5040 |
-
msgid "
|
5041 |
msgstr ""
|
5042 |
|
5043 |
-
#:
|
5044 |
-
msgid "
|
5045 |
msgstr ""
|
5046 |
|
5047 |
-
#:
|
5048 |
-
msgid "
|
5049 |
msgstr ""
|
5050 |
|
5051 |
-
#:
|
5052 |
-
msgid "
|
5053 |
msgstr ""
|
5054 |
|
5055 |
-
#:
|
5056 |
-
msgid "
|
5057 |
msgstr ""
|
5058 |
|
5059 |
-
#:
|
5060 |
-
msgid "
|
5061 |
msgstr ""
|
5062 |
|
5063 |
-
#:
|
5064 |
-
msgid "
|
5065 |
msgstr ""
|
5066 |
|
5067 |
-
#:
|
5068 |
-
msgid "
|
5069 |
msgstr ""
|
5070 |
|
5071 |
-
#:
|
5072 |
-
msgid "
|
5073 |
msgstr ""
|
5074 |
|
5075 |
-
#:
|
5076 |
-
|
|
|
|
|
5077 |
msgstr ""
|
5078 |
|
5079 |
-
#:
|
5080 |
-
msgid "
|
5081 |
msgstr ""
|
5082 |
|
5083 |
-
#:
|
5084 |
-
msgid "
|
5085 |
msgstr ""
|
5086 |
|
5087 |
-
#:
|
5088 |
-
msgid "
|
5089 |
msgstr ""
|
5090 |
|
5091 |
-
#:
|
5092 |
-
|
|
|
5093 |
msgstr ""
|
5094 |
|
5095 |
-
#:
|
5096 |
-
msgid "
|
5097 |
msgstr ""
|
5098 |
|
5099 |
-
#:
|
5100 |
-
msgid "
|
5101 |
msgstr ""
|
5102 |
|
5103 |
-
#:
|
5104 |
-
msgid "
|
5105 |
msgstr ""
|
5106 |
|
5107 |
-
#:
|
5108 |
-
msgid "
|
5109 |
msgstr ""
|
5110 |
|
5111 |
-
#:
|
5112 |
-
msgid "
|
5113 |
msgstr ""
|
5114 |
|
5115 |
-
#:
|
5116 |
-
msgid "
|
5117 |
msgstr ""
|
5118 |
|
5119 |
-
#:
|
5120 |
-
msgid "
|
5121 |
msgstr ""
|
5122 |
|
5123 |
-
#:
|
5124 |
-
msgid "
|
5125 |
msgstr ""
|
5126 |
|
5127 |
-
#:
|
5128 |
-
msgid "
|
5129 |
msgstr ""
|
5130 |
|
5131 |
-
#:
|
5132 |
-
|
|
|
|
|
5133 |
msgstr ""
|
5134 |
|
5135 |
-
#:
|
5136 |
-
msgid "
|
5137 |
msgstr ""
|
5138 |
|
5139 |
-
#:
|
5140 |
-
msgid "
|
5141 |
msgstr ""
|
5142 |
|
5143 |
-
#:
|
5144 |
-
|
|
|
|
|
5145 |
msgstr ""
|
5146 |
|
5147 |
-
#:
|
5148 |
-
|
|
|
5149 |
msgstr ""
|
5150 |
|
5151 |
-
#:
|
5152 |
-
msgid "
|
5153 |
msgstr ""
|
5154 |
|
5155 |
-
#:
|
5156 |
-
msgid "
|
5157 |
msgstr ""
|
5158 |
|
5159 |
-
#:
|
5160 |
-
msgid "
|
5161 |
msgstr ""
|
5162 |
|
5163 |
-
#:
|
5164 |
-
msgid "
|
5165 |
msgstr ""
|
5166 |
|
5167 |
-
#:
|
5168 |
-
msgid "
|
5169 |
msgstr ""
|
5170 |
|
5171 |
-
|
5172 |
-
|
|
|
5173 |
msgstr ""
|
5174 |
|
5175 |
-
#:
|
5176 |
-
msgid "
|
5177 |
msgstr ""
|
5178 |
|
5179 |
-
#:
|
5180 |
-
msgid "
|
5181 |
msgstr ""
|
5182 |
|
5183 |
-
#:
|
5184 |
-
msgid "
|
5185 |
msgstr ""
|
5186 |
|
5187 |
-
#:
|
5188 |
-
msgid "
|
5189 |
msgstr ""
|
5190 |
|
5191 |
-
#:
|
5192 |
-
msgid "
|
5193 |
msgstr ""
|
5194 |
|
5195 |
-
#:
|
5196 |
-
msgid "
|
5197 |
msgstr ""
|
5198 |
|
5199 |
-
|
5200 |
-
|
|
|
5201 |
msgstr ""
|
5202 |
|
5203 |
-
#:
|
5204 |
-
msgid "
|
5205 |
msgstr ""
|
5206 |
|
5207 |
-
#:
|
5208 |
-
msgid "
|
5209 |
msgstr ""
|
5210 |
|
5211 |
-
#:
|
5212 |
-
msgid "
|
5213 |
msgstr ""
|
5214 |
|
5215 |
-
#:
|
5216 |
-
msgid "
|
5217 |
msgstr ""
|
5218 |
|
5219 |
-
#:
|
5220 |
-
msgid "
|
5221 |
msgstr ""
|
5222 |
|
5223 |
-
#:
|
5224 |
-
msgid "
|
5225 |
msgstr ""
|
5226 |
|
5227 |
-
#:
|
5228 |
-
msgid "
|
5229 |
msgstr ""
|
2 |
# This file is distributed under the same license as the Pretty Links plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Pretty Links 3.2.1\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pretty-link\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2020-10-07T15:20:19-06:00\n"
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
+
"X-Generator: WP-CLI 2.2.0\n"
|
15 |
"X-Domain: pretty-link\n"
|
16 |
|
17 |
#. Plugin Name of the plugin
|
18 |
#. Author of the plugin
|
|
|
|
|
19 |
#: pro/app/views/links/prettybar.php:68
|
20 |
+
#: app/controllers/PrliLinksController.php:58
|
21 |
+
#: app/controllers/PrliLinksController.php:506
|
22 |
msgid "Pretty Links"
|
23 |
msgstr ""
|
24 |
|
34 |
msgid "http://prettylinks.com"
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: pro/app/helpers/PlpLinksHelper.php:18
|
38 |
+
#: pro/app/views/links/form.php:226
|
39 |
+
msgid "weight:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
msgstr ""
|
41 |
|
42 |
+
#: pro/app/helpers/PlpPostsHelper.php:19
|
43 |
+
msgid "Hide Social Buttons on this post."
|
44 |
msgstr ""
|
45 |
|
46 |
+
#: pro/app/helpers/PlpPostsHelper.php:26
|
47 |
+
msgid "Disable Keyword Replacements on this post."
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: pro/app/helpers/PlpPostsHelper.php:44
|
51 |
+
msgid "A Pretty Link will be created on Publish"
|
52 |
msgstr ""
|
53 |
|
|
|
|
|
|
|
|
|
|
|
54 |
#: pro/app/helpers/PlpPostsHelper.php:61
|
55 |
#: pro/app/views/links/form.php:39
|
56 |
#: pro/app/views/links/form.php:49
|
|
|
|
|
57 |
#: pro/app/views/reports/split-test-report.php:28
|
58 |
#: pro/app/views/reports/split-test-report.php:60
|
59 |
+
#: pro/app/views/reports/custom-report.php:31
|
60 |
+
#: pro/app/views/reports/custom-report.php:64
|
61 |
+
#: app/models/PrliClick.php:256
|
62 |
+
#: app/views/groups/list.php:81
|
63 |
+
#: app/views/clicks/list.php:4
|
64 |
+
#: app/controllers/PrliLinksController.php:504
|
65 |
+
#: app/controllers/PrliAppController.php:168
|
66 |
msgid "Clicks"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: pro/app/helpers/PlpPostsHelper.php:63
|
70 |
+
#: pro/app/views/reports/split-test-report.php:29
|
71 |
+
#: pro/app/views/reports/split-test-report.php:61
|
72 |
+
#: pro/app/views/reports/custom-report.php:32
|
73 |
+
#: pro/app/views/reports/custom-report.php:65
|
74 |
+
msgid "Uniques"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: pro/app/helpers/PlpPostsHelper.php:66
|
78 |
+
#: app/models/PrliClick.php:251
|
79 |
+
msgid "Pretty Link:"
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: pro/app/helpers/PlpPostsHelper.php:68
|
83 |
+
msgid "edit"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: pro/app/helpers/PlpPostsHelper.php:70
|
87 |
+
msgid "Visit Pretty Link:"
|
|
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: pro/app/helpers/PlpPostsHelper.php:70
|
91 |
+
msgid "in a New Window"
|
|
|
|
|
92 |
msgstr ""
|
93 |
|
94 |
+
#: pro/app/helpers/PlpPostsHelper.php:70
|
95 |
+
msgid "visit"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: pro/app/helpers/PlpPostsHelper.php:76
|
99 |
+
msgid "A Pretty Link hasn't been generated for this entry yet. Click \"Update Post\" to generate."
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: pro/app/helpers/PlpPublicLinksHelper.php:6
|
103 |
+
#: pro/app/controllers/PlpPublicLinksController.php:110
|
104 |
+
msgid "Enter a URL:"
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: pro/app/helpers/PlpPublicLinksHelper.php:7
|
108 |
+
#: pro/app/controllers/PlpPublicLinksController.php:111
|
109 |
+
#: pro/app/widgets/PlpPublicLinksWidget.php:61
|
110 |
+
msgid "Shrink"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: pro/app/models/PlpUtils.php:36
|
114 |
+
msgid "Google Analyticator"
|
|
|
115 |
msgstr ""
|
116 |
|
117 |
+
#: pro/app/models/PlpOptions.php:100
|
118 |
+
msgid "Facebook"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: pro/app/models/PlpOptions.php:107
|
122 |
+
msgid "Twitter"
|
|
|
|
|
|
|
123 |
msgstr ""
|
124 |
|
125 |
+
#: pro/app/models/PlpOptions.php:114
|
126 |
+
msgid "Google+"
|
|
|
|
|
|
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: pro/app/models/PlpOptions.php:121
|
130 |
+
msgid "Pinterest"
|
131 |
msgstr ""
|
132 |
|
133 |
+
#: pro/app/models/PlpOptions.php:128
|
134 |
+
msgid "LinkedIn"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#: pro/app/models/PlpOptions.php:135
|
138 |
+
msgid "Reddit"
|
139 |
msgstr ""
|
140 |
|
141 |
+
#: pro/app/models/PlpOptions.php:142
|
142 |
+
msgid "StumbleUpon"
|
143 |
msgstr ""
|
144 |
|
145 |
+
#: pro/app/models/PlpOptions.php:149
|
146 |
+
msgid "Digg"
|
|
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: pro/app/models/PlpOptions.php:156
|
150 |
+
#: app/controllers/PrliLinksController.php:731
|
151 |
+
msgid "Email"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: pro/app/models/PlpOptions.php:242
|
155 |
+
msgid "Affiliate Link Disclosures"
|
156 |
msgstr ""
|
157 |
|
158 |
+
#: pro/app/models/PlpOptions.php:251
|
159 |
+
msgid "(aff)"
|
160 |
msgstr ""
|
161 |
|
162 |
+
#: pro/app/models/PlpReport.php:150
|
163 |
+
msgid "Report must have a name."
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: pro/app/models/PlpReport.php:154
|
167 |
+
msgid "At least one link must be selected for analysis."
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: pro/app/models/PlpReport.php:259
|
171 |
+
msgid "Pretty Links Pro: Clicks for"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: pro/app/models/PlpReport.php:259
|
175 |
+
msgid "report between"
|
|
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: pro/app/models/PlpReport.php:259
|
179 |
+
#: pro/app/models/PlpReport.php:400
|
180 |
+
#: app/models/PrliClick.php:251
|
181 |
+
msgid "and"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: pro/app/models/PlpReport.php:266
|
185 |
+
#: pro/app/models/PlpReport.php:275
|
186 |
+
#: app/views/clicks/list.php:101
|
187 |
+
#: app/views/clicks/list.php:184
|
188 |
+
msgid "Link"
|
189 |
msgstr ""
|
190 |
|
191 |
+
#: pro/app/models/PlpReport.php:266
|
192 |
+
#: pro/app/models/PlpReport.php:275
|
193 |
+
#: pro/app/models/PlpReport.php:412
|
194 |
+
#: pro/app/models/PlpReport.php:419
|
195 |
+
#: app/views/clicks/list.php:32
|
196 |
+
msgid "All Clicks"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: pro/app/models/PlpReport.php:266
|
200 |
+
#: pro/app/models/PlpReport.php:275
|
201 |
+
#: pro/app/models/PlpReport.php:412
|
202 |
+
#: pro/app/models/PlpReport.php:419
|
203 |
+
#: app/views/clicks/list.php:33
|
204 |
+
msgid "Unique Clicks"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: pro/app/models/PlpReport.php:266
|
208 |
+
#: pro/app/models/PlpReport.php:412
|
209 |
+
#: pro/app/views/reports/split-test-report.php:31
|
210 |
+
#: pro/app/views/reports/split-test-report.php:63
|
211 |
+
#: pro/app/views/reports/custom-report.php:34
|
212 |
+
#: pro/app/views/reports/custom-report.php:67
|
213 |
+
msgid "Conversions"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: pro/app/models/PlpReport.php:400
|
217 |
+
msgid "Pretty Links Pro: Split Report for"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: pro/app/models/PlpReport.php:400
|
221 |
+
#: app/models/PrliClick.php:251
|
222 |
+
msgid "between"
|
|
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: pro/app/models/PlpReport.php:412
|
226 |
+
#: pro/app/models/PlpReport.php:419
|
227 |
+
#: pro/app/views/links/form.php:199
|
228 |
+
#: app/views/links/form_pro.php:97
|
229 |
+
msgid "Rotation"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: pro/app/views/links/link-options.php:3
|
233 |
+
#: pro/app/views/links/link-options.php:5
|
234 |
+
#: app/views/options/form.php:147
|
235 |
+
#: app/views/options/form.php:149
|
236 |
+
msgid "Base Slug Prefix"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#. translators: %1$s: open b tag, %2$s close b tag
|
240 |
+
#: pro/app/views/links/link-options.php:8
|
241 |
+
#: app/views/options/form.php:152
|
242 |
+
msgid "Use this to prefix all newly generated pretty links with a directory of your choice. For example set to %1$sout%2$s to make your pretty links look like http://site.com/%1$sout%2$s/xyz. Changing this option will NOT affect existing pretty links. If you do not wish to use a directory prefix, leave this text field blank. Whatever you type here will be sanitized and modified to ensure it is URL-safe. So %1$sHello World%2$s might get changed to something like %1$shello-world%2$s instead. Lowercase letters, numbers, dashes, and underscores are allowed."
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: pro/app/views/links/link-options.php:21
|
246 |
+
#: pro/app/views/links/link-options.php:23
|
247 |
+
#: app/views/options/form.php:166
|
248 |
+
#: app/views/options/form.php:168
|
249 |
+
msgid "Slug Character Count"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: pro/app/views/links/link-options.php:24
|
253 |
+
#: app/views/options/form.php:169
|
254 |
+
msgid "The number of characters to use when auto-generating a random slug for pretty links. The default is 4. You cannot use less than 2."
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: pro/app/views/links/link-options.php:34
|
258 |
+
#: pro/app/views/links/link-options.php:35
|
259 |
+
#: app/views/options/form.php:180
|
260 |
+
#: app/views/options/form.php:181
|
261 |
+
msgid "Enable Google Analytics"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: pro/app/views/links/link-options.php:36
|
265 |
+
msgid "Requires Google Analyticator, Google Analytics by MonsterInsights (formerly Yoast), or the Google Analytics Plugin to be installed and configured on your site."
|
266 |
msgstr ""
|
267 |
|
268 |
+
#. translators: %1s: open link tag, %2$s: close link tag
|
269 |
+
#: pro/app/views/links/link-options.php:50
|
270 |
+
msgid "Enable %1sQR Codes%2$s"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: pro/app/views/links/link-options.php:57
|
274 |
+
#: app/views/options/form.php:195
|
275 |
+
msgid "Generate QR Codes"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: pro/app/views/links/link-options.php:58
|
279 |
+
#: app/views/options/form.php:196
|
280 |
+
msgid "This will enable a link in your pretty link admin that will allow you to automatically download a QR Code for each individual Pretty Link."
|
|
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: pro/app/views/links/link-options.php:68
|
284 |
+
#: pro/app/views/links/link-options.php:70
|
285 |
+
#: app/views/options/form.php:207
|
286 |
+
#: app/views/options/form.php:209
|
287 |
+
msgid "Global Head Scripts"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#. translators: %1$s: br tag, %2$s: open b tag, %3$s close b tag
|
291 |
+
#: pro/app/views/links/link-options.php:73
|
292 |
+
#: app/views/options/form.php:212
|
293 |
+
msgid "Useful for adding Google Analytics tracking, Facebook retargeting pixels, or any other kind of tracking script to the HTML head.%1$s%1$sWhat you enter in this box will be applied to all supported pretty links.%1$s%1$s%2$sNOTE:%3$s This does NOT work with 301, 302 and 307 type redirects."
|
294 |
msgstr ""
|
295 |
|
296 |
+
#: pro/app/views/links/form.php:6
|
297 |
+
#: app/views/links/form_pro.php:17
|
298 |
+
msgid "Expire"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: pro/app/views/links/form.php:9
|
302 |
+
#: app/views/links/form_pro.php:20
|
303 |
+
msgid "Expire Link"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: pro/app/views/links/form.php:10
|
307 |
+
#: app/views/links/form_pro.php:21
|
308 |
+
msgid "Set this link to expire after a specific date or number of clicks."
|
|
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: pro/app/views/links/form.php:23
|
312 |
+
msgid "Expire After"
|
|
|
|
|
|
|
|
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: pro/app/views/links/form.php:26
|
316 |
+
msgid "Expiration Type"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
317 |
msgstr ""
|
318 |
|
319 |
+
#. translators: %1$s: br tag, %2$s: open b tag, %3$s close b tag
|
320 |
+
#: pro/app/views/links/form.php:29
|
321 |
+
msgid "Select the type of expiration you want for this link.%1$s%1$s%2$sDate%3$s Select this option if you'd like to expire your link after a certain date.%1%s%1$s%2$sClicks%3$s: Select this option to expire this link after it has been clicked a specific number of times."
|
322 |
msgstr ""
|
323 |
|
|
|
|
|
324 |
#: pro/app/views/links/form.php:38
|
325 |
#: pro/app/views/links/form.php:73
|
326 |
+
#: app/models/PrliClick.php:256
|
327 |
+
#: app/controllers/PrliLinksController.php:505
|
328 |
msgid "Date"
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: pro/app/views/links/form.php:52
|
332 |
+
msgid "Number of Clicks"
|
|
|
333 |
msgstr ""
|
334 |
|
335 |
+
#. translators: %1$s: br tag, %2$s: open b tag, %3$s close b tag
|
336 |
+
#: pro/app/views/links/form.php:55
|
337 |
+
msgid "Enter the number of times this link can be clicked before it expires.%1$s%1$s%2$sNote: Expirations based on clicks wouldn't work properly if you had tracking turned off for this link so as long as this is set to Clicks, Pretty Link will ensure tracking is turned on for this link as well.%3$s"
|
|
|
338 |
msgstr ""
|
339 |
|
340 |
+
#: pro/app/views/links/form.php:76
|
341 |
+
msgid "Expiration Date"
|
|
|
|
|
|
|
|
|
|
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: pro/app/views/links/form.php:77
|
345 |
+
msgid "Enter a date here in the format YYYY-MM-DD to set when this link should expire."
|
|
|
|
|
|
|
|
|
|
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: pro/app/views/links/form.php:91
|
349 |
+
msgid "Expired Redirect"
|
|
|
|
|
350 |
msgstr ""
|
351 |
|
352 |
+
#: pro/app/views/links/form.php:94
|
353 |
+
msgid "Redirect to URL when Expired"
|
|
|
|
|
|
|
354 |
msgstr ""
|
355 |
|
356 |
+
#. translators: %1$s: br tag, %2$s: open b tag, %3$s close b tag
|
357 |
+
#: pro/app/views/links/form.php:97
|
358 |
+
msgid "When this link expires, do you want to redirect to a specific URL. You can use this to redirect to a page you've setup to indicate that the link is expired.%1$s%1$s%2$sNote: If this is not set the link will throw a 404 error when expired%3$s."
|
|
|
|
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: pro/app/views/links/form.php:114
|
362 |
+
#: pro/app/views/options/form.php:208
|
363 |
+
msgid "URL"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: pro/app/views/links/form.php:117
|
367 |
+
msgid "Expired URL"
|
|
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: pro/app/views/links/form.php:118
|
371 |
+
msgid "This is the URL that this link will redirect to after the expiration date above."
|
372 |
msgstr ""
|
373 |
|
374 |
+
#: pro/app/views/links/form.php:133
|
375 |
+
#: app/views/links/form_pro.php:32
|
376 |
+
#: app/controllers/PrliLinksController.php:467
|
377 |
+
msgid "Keywords"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: pro/app/views/links/form.php:136
|
381 |
+
#: app/views/links/form_pro.php:35
|
382 |
+
msgid "Auto-Replace Keywords"
|
383 |
msgstr ""
|
384 |
|
385 |
+
#: pro/app/views/links/form.php:137
|
386 |
+
msgid "Enter a comma separated list of keywords / keyword phrases that you'd like to replace with this link in your Posts & Pages."
|
387 |
msgstr ""
|
388 |
|
389 |
+
#: pro/app/views/links/form.php:145
|
390 |
+
#: app/views/links/form_pro.php:46
|
391 |
+
msgid "URL Replacements"
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: pro/app/views/links/form.php:148
|
395 |
+
#: app/views/links/form_pro.php:49
|
396 |
+
msgid "Auto-Replace URLs"
|
397 |
msgstr ""
|
398 |
|
399 |
+
#. translators: %1$s: open code tag, %2$s: close code tag
|
400 |
+
#: pro/app/views/links/form.php:151
|
401 |
+
msgid "Enter a comma separated list of the URLs that you'd like to replace with this Pretty Link in your Posts & Pages. These must be formatted as URLs for example: %1$shttp://example.com%2$s or %1$shttp://example.com?product_id=53%2$s"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: pro/app/views/links/form.php:167
|
405 |
+
#: pro/app/views/links/form.php:170
|
406 |
+
#: app/views/links/form_pro.php:66
|
407 |
+
#: app/views/links/form_pro.php:69
|
408 |
+
msgid "Head Scripts"
|
409 |
msgstr ""
|
410 |
|
411 |
+
#. translators: %1$s: br tag, %2$s: open b tag, %3$s close b tag
|
412 |
+
#: pro/app/views/links/form.php:173
|
413 |
+
#: app/views/links/form_pro.php:72
|
414 |
+
msgid "Useful for adding Google Analytics tracking, Facebook retargeting pixels, or any other kind of tracking script to the HTML head for this pretty link.%1$s%1$sThese scripts will be in addition to any global one's you've defined in the options.%1$s%1$s%2$sNOTE:%3$s This does NOT work with 301, 302 and 307 type redirects."
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: pro/app/views/links/form.php:189
|
418 |
+
#: app/views/links/form_pro.php:86
|
419 |
+
msgid "Dynamic Redirection"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: pro/app/views/links/form.php:192
|
423 |
+
#: app/views/links/form_pro.php:89
|
424 |
+
msgid "Dynamic Redirection Options"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: pro/app/views/links/form.php:193
|
428 |
+
#: app/views/links/form_pro.php:90
|
429 |
+
msgid "These powerful options are available to give you dynamic control over redirection for this pretty link."
|
430 |
msgstr ""
|
431 |
|
432 |
+
#: pro/app/views/links/form.php:198
|
433 |
+
#: pro/app/views/options/form.php:833
|
434 |
+
#: pro/app/views/options/autocreate.php:44
|
435 |
+
#: pro/app/views/tools/generator.php:37
|
436 |
+
#: pro/app/widgets/PlpPublicLinksWidget.php:94
|
437 |
+
#: app/views/links/form_pro.php:96
|
438 |
+
#: app/views/shared/tinymce_form_popup.php:83
|
439 |
+
#: app/views/shared/tinymce_form_popup.php:87
|
440 |
+
#: app/views/options/form.php:1015
|
441 |
+
msgid "None"
|
442 |
msgstr ""
|
443 |
|
444 |
+
#: pro/app/views/links/form.php:200
|
445 |
+
#: app/views/links/form_pro.php:98
|
446 |
+
msgid "Geographic"
|
447 |
msgstr ""
|
448 |
|
449 |
+
#: pro/app/views/links/form.php:201
|
450 |
+
#: app/views/links/form_pro.php:99
|
451 |
+
msgid "Technology"
|
452 |
msgstr ""
|
453 |
|
454 |
+
#: pro/app/views/links/form.php:202
|
455 |
+
#: app/views/links/form_pro.php:100
|
456 |
+
msgid "Time"
|
457 |
msgstr ""
|
458 |
|
459 |
+
#: pro/app/views/links/form.php:211
|
460 |
+
#: pro/app/views/links/form.php:214
|
461 |
+
msgid "Target URL Rotations"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#. translators: %1$s: open code tag, %2$s: close code tag
|
465 |
+
#: pro/app/views/links/form.php:217
|
466 |
+
msgid "Enter the Target URLs that you'd like to rotate through when this Pretty Link is Clicked. These must be formatted as URLs example: %1$shttp://example.com%2$s or %1$shttp://example.com?product_id=53%2$s"
|
467 |
msgstr ""
|
468 |
|
469 |
+
#: pro/app/views/links/form.php:225
|
470 |
+
msgid "Target URL (above)"
|
471 |
msgstr ""
|
472 |
|
473 |
+
#: pro/app/views/links/form.php:237
|
474 |
+
msgid "Add Link Rotation"
|
475 |
msgstr ""
|
476 |
|
477 |
+
#: pro/app/views/links/form.php:242
|
478 |
+
msgid "Split Test"
|
479 |
msgstr ""
|
480 |
|
481 |
+
#: pro/app/views/links/form.php:245
|
482 |
+
msgid "Split Test This Link"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: pro/app/views/links/form.php:246
|
486 |
+
msgid "Split testing will enable you to track the effectiveness of several links against each other. This works best when you have multiple link rotation URLs entered."
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: pro/app/views/links/form.php:260
|
490 |
+
#: pro/app/views/reports/list.php:37
|
491 |
+
#: pro/app/views/reports/list.php:87
|
492 |
+
#: app/views/admin/upgrade/reports.php:13
|
493 |
+
#: app/views/admin/upgrade/reports.php:36
|
494 |
+
msgid "Goal Link"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: pro/app/views/links/form.php:263
|
498 |
+
msgid "Goal Link for Split Test"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: pro/app/views/links/form.php:264
|
502 |
+
msgid "This is the goal link for your split test."
|
503 |
msgstr ""
|
504 |
|
505 |
+
#: pro/app/views/links/form.php:275
|
506 |
+
msgid "id: %1$s | slug: %3$s | name: %2$s"
|
507 |
msgstr ""
|
508 |
|
509 |
+
#: pro/app/views/links/form.php:293
|
510 |
+
#: pro/app/views/links/form.php:296
|
511 |
+
msgid "Geographic Redirects"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: pro/app/views/links/form.php:297
|
515 |
+
msgid "This will enable you to setup specific target urls that this pretty link will redirect to based on the country of the person visiting the url."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
516 |
msgstr ""
|
517 |
|
518 |
+
#: pro/app/views/links/form.php:302
|
519 |
+
#: pro/app/views/links/form.php:316
|
520 |
+
#: pro/app/views/links/form.php:336
|
521 |
+
msgid "Add"
|
|
|
|
|
|
|
|
|
|
|
522 |
msgstr ""
|
523 |
|
524 |
+
#: pro/app/views/links/form.php:307
|
525 |
+
#: pro/app/views/links/form.php:310
|
526 |
+
msgid "Technology Redirects"
|
|
|
|
|
|
|
|
|
|
|
|
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: pro/app/views/links/form.php:311
|
530 |
+
msgid "This will allow you to redirect based on your visitor's device, operating system and/or browser"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: pro/app/views/links/form.php:321
|
534 |
+
#: pro/app/views/links/form.php:324
|
535 |
+
msgid "Time Period Redirects"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#. translators: %1$s: br tag, %2$s: open b tag, %3$s close b tag
|
539 |
+
#: pro/app/views/links/form.php:327
|
540 |
+
msgid "This will allow you to redirect based on the time period in which your visitor visits this link.%1$s%1$s%2$sNote: If your visitor doesn't visit the link during any of the specified time periods set here, they'll simply be redirected to the main target url.%3$s"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: pro/app/views/links/bulk-edit.php:6
|
544 |
+
msgid "Advanced Link Options"
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: pro/app/views/links/bulk-edit.php:10
|
548 |
+
#: app/views/links/form_advanced.php:71
|
549 |
+
#: app/views/links/form_advanced.php:74
|
550 |
+
msgid "Google Analytics"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: pro/app/views/links/cloaked-redirect.php:19
|
554 |
+
msgid "Your browser does not support frames."
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: pro/app/views/links/link-has-expired.php:9
|
558 |
+
msgid "Link Not Found"
|
|
|
|
|
|
|
|
|
|
|
|
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: pro/app/views/links/link-has-expired.php:23
|
562 |
+
msgid "Sorry, this link has expired"
|
563 |
msgstr ""
|
564 |
|
565 |
+
#: pro/app/views/links/time_row.php:13
|
566 |
+
msgid "Start Time:"
|
567 |
msgstr ""
|
568 |
|
569 |
+
#: pro/app/views/links/time_row.php:16
|
570 |
+
msgid "Start of Time Period"
|
|
|
|
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: pro/app/views/links/time_row.php:17
|
574 |
+
msgid "This is where you'll enter the beginning of the time period for this redirect"
|
|
|
|
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: pro/app/views/links/time_row.php:26
|
578 |
+
msgid "End Time:"
|
|
|
|
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: pro/app/views/links/time_row.php:29
|
582 |
+
msgid "End of Time Period"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: pro/app/views/links/time_row.php:30
|
586 |
+
msgid "This is where you'll enter the end of the time period for this redirect"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: pro/app/views/links/time_row.php:39
|
590 |
+
#: pro/app/views/links/tech_row.php:85
|
591 |
+
#: pro/app/views/links/geo_row.php:25
|
592 |
+
msgid "URL:"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: pro/app/views/links/time_row.php:42
|
596 |
+
msgid "Time Period Redirect URL"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: pro/app/views/links/time_row.php:43
|
600 |
+
msgid "This is the URL that this Pretty Link will redirect to when the visitor visits the link in the associated time period."
|
601 |
msgstr ""
|
602 |
|
603 |
+
#: pro/app/views/links/time_row.php:52
|
604 |
+
#: pro/app/views/links/tech_row.php:98
|
605 |
+
#: pro/app/views/links/geo_row.php:38
|
606 |
+
msgid "Remove"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: pro/app/views/links/tech_row.php:14
|
610 |
+
msgid "Device:"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: pro/app/views/links/tech_row.php:17
|
614 |
+
msgid "Technology Redirection Device"
|
615 |
msgstr ""
|
616 |
|
617 |
+
#. translators: %1$s: open b tag, %2$s: close b tag, %3$s: br tag
|
618 |
+
#: pro/app/views/links/tech_row.php:20
|
619 |
+
msgid "%1$sDesktop%2$s will match on any conventional laptop or desktop computer.%3$s%3$s%1$sMobile%2$s will match on any phone, tablet or other portable device.%3$s%3$s%1$sPhone%2$s will match on any phone or similarly small device.%3$s%3$s%1$sTablet%2$s will match on any tablet sized device."
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: pro/app/views/links/tech_row.php:29
|
623 |
+
#: pro/app/views/links/tech_row.php:48
|
624 |
+
#: pro/app/views/links/tech_row.php:68
|
625 |
+
msgid "Any"
|
626 |
msgstr ""
|
627 |
|
628 |
+
#: pro/app/views/links/tech_row.php:30
|
629 |
+
msgid "Desktop"
|
630 |
msgstr ""
|
631 |
|
632 |
+
#: pro/app/views/links/tech_row.php:31
|
633 |
+
msgid "Mobile"
|
|
|
|
|
|
|
|
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: pro/app/views/links/tech_row.php:32
|
637 |
+
msgid "Phone"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: pro/app/views/links/tech_row.php:33
|
641 |
+
msgid "Tablet"
|
|
|
|
|
642 |
msgstr ""
|
643 |
|
644 |
+
#: pro/app/views/links/tech_row.php:39
|
645 |
+
msgid "Operating System:"
|
646 |
msgstr ""
|
647 |
|
648 |
+
#: pro/app/views/links/tech_row.php:42
|
649 |
+
msgid "Technology Redirection OS"
|
|
|
650 |
msgstr ""
|
651 |
|
652 |
+
#: pro/app/views/links/tech_row.php:43
|
653 |
+
msgid "Use this dropdown to select which Operating System this redirect will match on."
|
|
|
654 |
msgstr ""
|
655 |
|
656 |
+
#: pro/app/views/links/tech_row.php:49
|
657 |
+
#: pro/app/views/links/tech_row.php:70
|
658 |
+
msgid "Android"
|
659 |
msgstr ""
|
660 |
|
661 |
+
#: pro/app/views/links/tech_row.php:50
|
662 |
+
msgid "iOS"
|
|
|
663 |
msgstr ""
|
664 |
|
665 |
+
#: pro/app/views/links/tech_row.php:51
|
666 |
+
msgid "Linux"
|
|
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: pro/app/views/links/tech_row.php:52
|
670 |
+
msgid "Mac"
|
|
|
671 |
msgstr ""
|
672 |
|
673 |
+
#: pro/app/views/links/tech_row.php:53
|
674 |
+
msgid "Windows"
|
675 |
msgstr ""
|
676 |
|
677 |
+
#: pro/app/views/links/tech_row.php:59
|
678 |
+
msgid "Browser:"
|
679 |
msgstr ""
|
680 |
|
681 |
+
#: pro/app/views/links/tech_row.php:62
|
682 |
+
msgid "Technology Redirection Browser"
|
683 |
msgstr ""
|
684 |
|
685 |
+
#: pro/app/views/links/tech_row.php:63
|
686 |
+
msgid "Use this dropdown to select which Browser this redirect will match on."
|
687 |
msgstr ""
|
688 |
|
689 |
+
#: pro/app/views/links/tech_row.php:69
|
690 |
+
msgid "Amazon Silk"
|
691 |
msgstr ""
|
692 |
|
693 |
+
#: pro/app/views/links/tech_row.php:71
|
694 |
+
msgid "Chrome"
|
695 |
msgstr ""
|
696 |
|
697 |
+
#: pro/app/views/links/tech_row.php:72
|
698 |
+
msgid "Chromium"
|
|
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: pro/app/views/links/tech_row.php:73
|
702 |
+
msgid "Edge"
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: pro/app/views/links/tech_row.php:74
|
706 |
+
msgid "Firefox"
|
|
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: pro/app/views/links/tech_row.php:75
|
710 |
+
msgid "Internet Explorer"
|
|
|
|
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: pro/app/views/links/tech_row.php:76
|
714 |
+
msgid "Kindle"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: pro/app/views/links/tech_row.php:77
|
718 |
+
msgid "Opera"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: pro/app/views/links/tech_row.php:78
|
722 |
+
msgid "Opera Coast"
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: pro/app/views/links/tech_row.php:79
|
726 |
+
msgid "Safari"
|
727 |
msgstr ""
|
728 |
|
729 |
+
#: pro/app/views/links/tech_row.php:88
|
730 |
+
msgid "Technology Redirection URL"
|
731 |
msgstr ""
|
732 |
|
733 |
+
#: pro/app/views/links/tech_row.php:89
|
734 |
+
msgid "This is the URL that this Pretty Link will redirect to if the visitor's device, os and browser match the settings here."
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: pro/app/views/links/prettybar.php:46
|
738 |
+
msgid "You're viewing: %s"
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: pro/app/views/links/prettybar.php:46
|
742 |
+
msgid "Viewing: %s"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: pro/app/views/links/prettybar.php:51
|
746 |
+
msgid "Share on Twitter"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: pro/app/views/links/prettybar.php:68
|
750 |
+
msgid "Powered by"
|
|
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: pro/app/views/links/geo_row.php:12
|
754 |
+
msgid "Countries:"
|
|
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: pro/app/views/links/geo_row.php:15
|
758 |
+
msgid "Technology Redirection Countries"
|
|
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: pro/app/views/links/geo_row.php:16
|
762 |
+
msgid "This is a comma-separated list of countries that this redirect will match on. Just start typing a country's name and an autocomplete dropdown will appear to select from. Once a country is selected, feel free to start typing the name of another country. You can add as many as you'd like this redirect to match on"
|
|
|
763 |
msgstr ""
|
764 |
|
765 |
+
#: pro/app/views/links/geo_row.php:28
|
766 |
+
msgid "Geographic Redirection URL"
|
|
|
767 |
msgstr ""
|
768 |
|
769 |
+
#: pro/app/views/links/geo_row.php:29
|
770 |
+
msgid "This is the URL that this Pretty Link will redirect to if the visitor's country match the settings here."
|
|
|
771 |
msgstr ""
|
772 |
|
773 |
+
#: pro/app/views/public/form.php:28
|
774 |
+
msgid "ERROR:"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: pro/app/views/reports/edit.php:7
|
778 |
+
msgid "Edit Link Report"
|
779 |
msgstr ""
|
780 |
|
781 |
+
#: pro/app/views/reports/edit.php:18
|
782 |
+
#: app/views/groups/edit.php:21
|
783 |
+
msgid "Name:"
|
784 |
msgstr ""
|
785 |
|
786 |
+
#: pro/app/views/reports/edit.php:20
|
787 |
+
#: pro/app/views/reports/new.php:19
|
788 |
+
msgid "This is how you'll identify your Report."
|
|
|
|
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: pro/app/views/reports/edit.php:26
|
792 |
+
#: pro/app/views/reports/new.php:26
|
793 |
+
msgid "Select Links to Analyze in this Report:"
|
794 |
msgstr ""
|
795 |
|
796 |
+
#: pro/app/views/reports/edit.php:36
|
797 |
+
#: pro/app/views/reports/new.php:36
|
798 |
+
msgid "Select some links to be analyzed in this report."
|
799 |
msgstr ""
|
800 |
|
801 |
+
#: pro/app/views/reports/edit.php:39
|
802 |
+
#: pro/app/views/reports/new.php:39
|
803 |
+
msgid "Select Your Goal Link (optional):"
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: pro/app/views/reports/edit.php:44
|
807 |
+
#: pro/app/views/reports/list.php:32
|
808 |
+
#: pro/app/views/reports/list.php:86
|
809 |
+
#: pro/app/views/reports/new.php:44
|
810 |
+
#: app/views/admin/upgrade/reports.php:8
|
811 |
+
#: app/views/admin/upgrade/reports.php:35
|
812 |
+
#: app/views/groups/edit.php:36
|
813 |
+
#: app/views/groups/list.php:41
|
814 |
+
#: app/views/groups/list.php:93
|
815 |
+
#: app/views/groups/new.php:37
|
816 |
+
msgid "Name"
|
817 |
msgstr ""
|
818 |
|
819 |
+
#: pro/app/views/reports/edit.php:60
|
820 |
+
#: pro/app/views/reports/new.php:60
|
821 |
+
msgid "If you want to enable conversion tracking in this report then select a goal link."
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: pro/app/views/reports/edit.php:66
|
825 |
+
#: app/views/options/form.php:1082
|
826 |
+
#: app/views/groups/edit.php:72
|
827 |
+
#: app/controllers/PrliAppController.php:429
|
828 |
+
msgid "Update"
|
829 |
msgstr ""
|
830 |
|
831 |
+
#: pro/app/views/reports/edit.php:66
|
832 |
+
#: pro/app/views/reports/split-test-report.php:19
|
833 |
+
#: pro/app/views/reports/custom-report.php:22
|
834 |
+
#: pro/app/views/reports/new.php:66
|
835 |
+
#: app/views/groups/edit.php:72
|
836 |
+
#: app/views/groups/new.php:71
|
837 |
+
#: app/views/clicks/list.php:43
|
838 |
+
msgid "Cancel"
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: pro/app/views/reports/list.php:4
|
842 |
+
#: pro/app/views/reports/reports.php:7
|
843 |
+
#: app/controllers/PrliUpdateController.php:504
|
844 |
+
#: app/controllers/PrliAppController.php:150
|
845 |
+
msgid "Link Reports"
|
846 |
msgstr ""
|
847 |
|
848 |
+
#: pro/app/views/reports/list.php:5
|
849 |
+
msgid "Add Report"
|
|
|
850 |
msgstr ""
|
851 |
|
852 |
+
#: pro/app/views/reports/list.php:18
|
853 |
+
#: app/views/groups/list.php:20
|
854 |
+
msgid "Search"
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: pro/app/views/reports/list.php:20
|
858 |
+
#: app/views/groups/list.php:24
|
859 |
+
#: app/views/clicks/list.php:64
|
860 |
+
#: app/controllers/PrliLinksController.php:727
|
861 |
+
msgid "Reset"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: pro/app/views/reports/list.php:42
|
865 |
+
#: pro/app/views/reports/list.php:88
|
866 |
+
#: app/views/admin/upgrade/reports.php:18
|
867 |
+
#: app/views/admin/upgrade/reports.php:37
|
868 |
+
#: app/views/options/form.php:51
|
869 |
+
#: app/views/groups/list.php:46
|
870 |
+
#: app/views/groups/list.php:80
|
871 |
+
#: app/views/groups/list.php:94
|
872 |
+
msgid "Links"
|
873 |
msgstr ""
|
874 |
|
875 |
+
#: pro/app/views/reports/list.php:47
|
876 |
+
#: pro/app/views/reports/list.php:89
|
877 |
+
#: app/views/admin/upgrade/reports.php:23
|
878 |
+
#: app/views/admin/upgrade/reports.php:38
|
879 |
+
#: app/views/groups/list.php:51
|
880 |
+
#: app/views/groups/list.php:95
|
881 |
+
msgid "Created"
|
882 |
msgstr ""
|
883 |
|
884 |
+
#: pro/app/views/reports/list.php:57
|
885 |
+
#: app/views/admin/upgrade/reports.php:30
|
886 |
+
msgid "No Pretty Link Reports were found"
|
887 |
msgstr ""
|
888 |
|
889 |
+
#: pro/app/views/reports/list.php:68
|
890 |
+
#: pro/app/views/reports/list.php:71
|
891 |
+
#: app/helpers/PrliLinksHelper.php:71
|
892 |
+
#: app/views/groups/list.php:75
|
893 |
+
#: app/views/groups/list.php:78
|
894 |
+
msgid "Edit %s"
|
895 |
msgstr ""
|
896 |
|
897 |
+
#: pro/app/views/reports/list.php:71
|
898 |
+
#: app/views/groups/list.php:78
|
899 |
+
msgid "Edit"
|
900 |
msgstr ""
|
901 |
|
902 |
+
#: pro/app/views/reports/list.php:72
|
903 |
+
msgid "Are you sure you want to delete your %s Pretty Link Report?"
|
904 |
msgstr ""
|
905 |
|
906 |
+
#: pro/app/views/reports/list.php:72
|
907 |
+
#: app/helpers/PrliLinksHelper.php:72
|
908 |
+
#: app/views/groups/list.php:79
|
909 |
+
msgid "Delete %s"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: pro/app/views/reports/list.php:72
|
913 |
+
#: app/views/groups/list.php:79
|
914 |
+
msgid "Delete"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: pro/app/views/reports/list.php:73
|
918 |
+
msgid "View report for %s"
|
919 |
msgstr ""
|
920 |
|
921 |
+
#: pro/app/views/reports/list.php:73
|
922 |
+
msgid "View"
|
923 |
msgstr ""
|
924 |
|
925 |
+
#: pro/app/views/reports/split-test-report.php:4
|
926 |
+
msgid "Link Split-Test Report"
|
927 |
msgstr ""
|
928 |
|
929 |
+
#: pro/app/views/reports/split-test-report.php:5
|
930 |
+
msgid "For Link:"
|
931 |
msgstr ""
|
932 |
|
933 |
+
#: pro/app/views/reports/split-test-report.php:7
|
934 |
+
msgid "Goal Link:"
|
935 |
msgstr ""
|
936 |
|
937 |
+
#: pro/app/views/reports/split-test-report.php:9
|
938 |
+
#: app/views/clicks/list.php:18
|
939 |
+
msgid "Back to Links"
|
940 |
msgstr ""
|
941 |
|
942 |
+
#: pro/app/views/reports/split-test-report.php:9
|
943 |
+
#: pro/app/views/reports/custom-report.php:12
|
944 |
+
#: app/views/clicks/list.php:11
|
945 |
+
msgid "Customize Report"
|
946 |
msgstr ""
|
947 |
|
948 |
+
#: pro/app/views/reports/split-test-report.php:13
|
949 |
+
#: pro/app/views/reports/custom-report.php:16
|
950 |
+
#: app/views/clicks/list.php:37
|
951 |
+
msgid "Date Range:"
|
952 |
msgstr ""
|
953 |
|
954 |
+
#: pro/app/views/reports/split-test-report.php:19
|
955 |
+
#: pro/app/views/reports/custom-report.php:22
|
956 |
+
#: app/views/clicks/list.php:43
|
957 |
+
msgid "Customize"
|
958 |
msgstr ""
|
959 |
|
960 |
+
#: pro/app/views/reports/split-test-report.php:27
|
961 |
+
msgid "Link Rotation URL"
|
962 |
msgstr ""
|
963 |
|
964 |
+
#: pro/app/views/reports/split-test-report.php:32
|
965 |
+
#: pro/app/views/reports/split-test-report.php:64
|
966 |
+
#: pro/app/views/reports/custom-report.php:35
|
967 |
+
#: pro/app/views/reports/custom-report.php:68
|
968 |
+
msgid "Conv Rate"
|
969 |
msgstr ""
|
970 |
|
971 |
+
#: pro/app/views/reports/split-test-report.php:59
|
972 |
+
msgid "Rotation URL"
|
|
|
973 |
msgstr ""
|
974 |
|
975 |
+
#: pro/app/views/reports/custom-report.php:7
|
976 |
+
msgid "Link Report"
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: pro/app/views/reports/custom-report.php:8
|
980 |
+
msgid "Report:"
|
|
|
981 |
msgstr ""
|
982 |
|
983 |
+
#: pro/app/views/reports/custom-report.php:10
|
984 |
+
msgid "For Goal Link:"
|
985 |
msgstr ""
|
986 |
|
987 |
+
#: pro/app/views/reports/custom-report.php:30
|
988 |
+
#: pro/app/views/reports/custom-report.php:63
|
989 |
+
msgid "Link Name"
|
990 |
msgstr ""
|
991 |
|
992 |
+
#: pro/app/views/reports/reports.php:4
|
993 |
+
#: pro/app/controllers/PlpReportsController.php:15
|
994 |
+
#: app/controllers/PrliAppController.php:151
|
995 |
+
msgid "Reports"
|
996 |
msgstr ""
|
997 |
|
998 |
+
#: pro/app/views/reports/new.php:7
|
999 |
+
msgid "Add Link Report"
|
1000 |
msgstr ""
|
1001 |
|
1002 |
+
#: pro/app/views/reports/new.php:17
|
1003 |
+
#: app/views/groups/new.php:22
|
1004 |
+
msgid "Name*:"
|
1005 |
msgstr ""
|
1006 |
|
1007 |
+
#: pro/app/views/reports/new.php:66
|
1008 |
+
#: app/views/groups/new.php:71
|
1009 |
+
#: app/views/widgets/widget.php:21
|
1010 |
+
msgid "Create"
|
1011 |
msgstr ""
|
1012 |
|
1013 |
+
#: pro/app/views/options/form.php:4
|
1014 |
+
#: app/views/options/form.php:324
|
1015 |
+
msgid "Keyword & URL Auto Replacements Options"
|
1016 |
msgstr ""
|
1017 |
|
1018 |
+
#: pro/app/views/options/form.php:13
|
1019 |
+
#: app/views/options/form.php:332
|
1020 |
+
msgid "Enable Replacements"
|
1021 |
msgstr ""
|
1022 |
|
1023 |
+
#: pro/app/views/options/form.php:15
|
1024 |
+
#: app/views/options/form.php:334
|
1025 |
+
msgid "Enable Keyword and URL Auto Replacement"
|
1026 |
msgstr ""
|
1027 |
|
1028 |
+
#: pro/app/views/options/form.php:16
|
1029 |
+
#: app/views/options/form.php:335
|
1030 |
+
msgid "If checked, this will enable you to automatically replace keywords and/or URLs on your blog with pretty links. You will specify the specific keywords and urls from your Pretty Link edit page."
|
1031 |
msgstr ""
|
1032 |
|
1033 |
+
#: pro/app/views/options/form.php:34
|
1034 |
+
#: app/views/options/form.php:354
|
1035 |
+
msgid "Thresholds"
|
1036 |
msgstr ""
|
1037 |
|
1038 |
+
#: pro/app/views/options/form.php:36
|
1039 |
+
#: app/views/options/form.php:356
|
1040 |
+
msgid "Set Keyword Replacement Thresholds"
|
|
|
1041 |
msgstr ""
|
1042 |
|
1043 |
+
#: pro/app/views/options/form.php:37
|
1044 |
+
#: app/views/options/form.php:357
|
1045 |
+
msgid "Don't want to have too many keyword replacements per page? Select to set some reasonable keyword replacement thresholds."
|
|
|
1046 |
msgstr ""
|
1047 |
|
1048 |
+
#: pro/app/views/options/form.php:54
|
1049 |
+
msgid "Max Keywords"
|
1050 |
msgstr ""
|
1051 |
|
1052 |
+
#: pro/app/views/options/form.php:56
|
1053 |
+
msgid "Set Maximum Keywords per Page"
|
1054 |
msgstr ""
|
1055 |
|
1056 |
+
#: pro/app/views/options/form.php:57
|
1057 |
+
msgid "Maximum number of unique keyword / keyphrases you can replace with Pretty Links per page."
|
|
|
1058 |
msgstr ""
|
1059 |
|
1060 |
+
#: pro/app/views/options/form.php:68
|
1061 |
+
msgid "Max Replacements"
|
|
|
1062 |
msgstr ""
|
1063 |
|
1064 |
+
#: pro/app/views/options/form.php:70
|
1065 |
+
msgid "Set Maximum Replacements per Keyword"
|
1066 |
msgstr ""
|
1067 |
|
1068 |
+
#: pro/app/views/options/form.php:71
|
1069 |
+
msgid "Maximum number of Pretty Link replacements per Keyword / Keyphrase."
|
|
|
1070 |
msgstr ""
|
1071 |
|
1072 |
+
#: pro/app/views/options/form.php:87
|
1073 |
+
#: app/views/options/form.php:373
|
1074 |
+
msgid "Open in New Window"
|
1075 |
msgstr ""
|
1076 |
|
1077 |
+
#: pro/app/views/options/form.php:89
|
1078 |
+
#: app/views/options/form.php:375
|
1079 |
+
msgid "Open Keyword Replacement Links in New Window"
|
1080 |
msgstr ""
|
1081 |
|
1082 |
+
#. translators: %1$s: open strong tag, %2$s: close strong tag
|
1083 |
+
#: pro/app/views/options/form.php:92
|
1084 |
+
#: app/views/options/form.php:378
|
1085 |
+
msgid "Ensure that these keyword replacement links are opened in a separate window. %1$sNote:%2$s This does not apply to url replacements--only keyword replacements."
|
1086 |
msgstr ""
|
1087 |
|
1088 |
+
#: pro/app/views/options/form.php:106
|
1089 |
+
#: app/views/options/form.php:393
|
1090 |
+
msgid "Add No Follows"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: pro/app/views/options/form.php:108
|
1094 |
+
#: app/views/options/form.php:395
|
1095 |
+
msgid "Add 'nofollow' attribute to all Keyword Pretty Links"
|
1096 |
msgstr ""
|
1097 |
|
1098 |
+
#. translators: %1$s: open code tag, %2$s: close code tag, %3$s: open strong tag, %4$s close strong tag
|
1099 |
+
#: pro/app/views/options/form.php:111
|
1100 |
+
#: app/views/options/form.php:398
|
1101 |
+
msgid "This adds the html %1$sNOFOLLOW%2$s attribute to all keyword replacement links. %3$sNote:%4$s This does not apply to url replacements--only keyword replacements."
|
1102 |
msgstr ""
|
1103 |
|
1104 |
+
#: pro/app/views/options/form.php:127
|
1105 |
+
#: app/views/options/form.php:121
|
1106 |
+
#: app/views/options/form.php:415
|
1107 |
+
msgid "Add Sponsored"
|
1108 |
msgstr ""
|
1109 |
|
1110 |
+
#: pro/app/views/options/form.php:129
|
1111 |
+
#: app/views/options/form.php:417
|
1112 |
+
msgid "Add 'sponsored' attribute to all Keyword Pretty Links"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
+
#. translators: %1$s: open code tag, %2$s: close code tag, %3$s: open strong tag, %4$s close strong tag
|
1116 |
+
#: pro/app/views/options/form.php:132
|
1117 |
+
#: app/views/options/form.php:420
|
1118 |
+
msgid "This adds the html %1$sSPONSORED%2$s attribute to all keyword replacement links. %3$sNote:%4$s This does not apply to url replacements--only keyword replacements."
|
|
|
|
|
|
|
1119 |
msgstr ""
|
1120 |
|
1121 |
+
#: pro/app/views/options/form.php:148
|
1122 |
+
#: app/views/options/form.php:437
|
1123 |
+
msgid "Custom CSS"
|
1124 |
msgstr ""
|
1125 |
|
1126 |
+
#: pro/app/views/options/form.php:150
|
1127 |
+
#: app/views/options/form.php:439
|
1128 |
+
msgid "Add custom CSS to your keyword replacement links"
|
1129 |
msgstr ""
|
1130 |
|
1131 |
+
#. translators: %1$s: open strong tag, %2$s: close strong tag
|
1132 |
+
#: pro/app/views/options/form.php:153
|
1133 |
+
#: app/views/options/form.php:442
|
1134 |
+
msgid "Add some custom formatting to your keyword pretty link replacements. %1$sNote:%2$s This does not apply to url replacements--only keyword replacements."
|
1135 |
msgstr ""
|
1136 |
|
1137 |
+
#: pro/app/views/options/form.php:167
|
1138 |
+
#: app/views/options/form.php:457
|
1139 |
+
msgid "Custom Hover CSS"
|
1140 |
msgstr ""
|
1141 |
|
1142 |
+
#: pro/app/views/options/form.php:169
|
1143 |
+
#: app/views/options/form.php:459
|
1144 |
+
msgid "Add custom hover CSS to your keyword replacement links"
|
1145 |
msgstr ""
|
1146 |
|
1147 |
+
#. translators: %1$s: open strong tag, %2$s: close strong tag
|
1148 |
+
#: pro/app/views/options/form.php:172
|
1149 |
+
#: app/views/options/form.php:462
|
1150 |
+
msgid "Add some custom formatting to the hover attribute of your keyword pretty links. %1$sNote%2$s: This does not apply to url replacements--only keyword replacements."
|
1151 |
msgstr ""
|
1152 |
|
1153 |
+
#: pro/app/views/options/form.php:186
|
1154 |
+
#: app/views/options/form.php:477
|
1155 |
+
msgid "Link to Disclosures"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: pro/app/views/options/form.php:189
|
1159 |
+
#: app/views/options/form.php:480
|
1160 |
+
msgid "Automatically Add a Link to Disclosures"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: pro/app/views/options/form.php:190
|
1164 |
+
#: app/views/options/form.php:481
|
1165 |
+
msgid "When enabled, this will add a link to your official affiliate link disclosure page to any page, post or custom post type that have any keyword or URL replacements. You'll also be able to customize the URL and position of the disclosure link."
|
1166 |
msgstr ""
|
1167 |
|
1168 |
+
#: pro/app/views/options/form.php:211
|
1169 |
+
msgid "Disclosures Link URL"
|
|
|
1170 |
msgstr ""
|
1171 |
|
1172 |
+
#: pro/app/views/options/form.php:212
|
1173 |
+
msgid "This is the URL of the page that contains your official affiliate link disclosures. This URL will be used in the link that will be generated."
|
|
|
1174 |
msgstr ""
|
1175 |
|
1176 |
+
#: pro/app/views/options/form.php:223
|
1177 |
+
msgid "Text"
|
1178 |
msgstr ""
|
1179 |
|
1180 |
+
#: pro/app/views/options/form.php:226
|
1181 |
+
msgid "Disclosures Link Text"
|
1182 |
msgstr ""
|
1183 |
|
1184 |
+
#: pro/app/views/options/form.php:227
|
1185 |
+
msgid "This is the text of the link to your disclosures. This text will be visible to your visitors when the link is displayed."
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: pro/app/views/options/form.php:238
|
1189 |
+
msgid "Position"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: pro/app/views/options/form.php:241
|
1193 |
+
msgid "Disclosures Link Position"
|
|
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: pro/app/views/options/form.php:242
|
1197 |
+
msgid "This is the position of the link to your disclosures in relation to your post content."
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: pro/app/views/options/form.php:248
|
1201 |
+
#: pro/app/views/options/form.php:831
|
1202 |
+
#: app/views/options/form.php:1013
|
1203 |
+
msgid "Bottom"
|
1204 |
msgstr ""
|
1205 |
|
1206 |
+
#: pro/app/views/options/form.php:249
|
1207 |
+
#: pro/app/views/options/form.php:830
|
1208 |
+
#: app/views/options/form.php:1012
|
1209 |
+
msgid "Top"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
+
#: pro/app/views/options/form.php:250
|
1213 |
+
#: pro/app/views/options/form.php:832
|
1214 |
+
#: app/views/options/form.php:1014
|
1215 |
+
msgid "Top and Bottom"
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: pro/app/views/options/form.php:262
|
1219 |
+
#: app/views/options/form.php:494
|
1220 |
+
msgid "Keyword Disclosures"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: pro/app/views/options/form.php:265
|
1224 |
+
#: app/views/options/form.php:497
|
1225 |
+
msgid "Automatically Add Affiliate Link Disclosures to Keyword Replacements"
|
1226 |
msgstr ""
|
1227 |
|
1228 |
+
#. translators: %1$s: open b tag, %2$s close b tag
|
1229 |
+
#: pro/app/views/options/form.php:268
|
1230 |
+
#: app/views/options/form.php:500
|
1231 |
+
msgid "When enabled, this will add an affiliate link disclosure next to each one of your keyword replacements. %1$sNote:%2$s This does not apply to url replacements--only keyword replacements."
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: pro/app/views/options/form.php:289
|
1235 |
+
msgid "Disclosure Text"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: pro/app/views/options/form.php:292
|
1239 |
+
msgid "Keyword Link Disclosure Text"
|
|
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: pro/app/views/options/form.php:293
|
1243 |
+
msgid "This is the text that will be added after each keyword replacement to indicate that the link is an affiliate link."
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: pro/app/views/options/form.php:309
|
1247 |
+
#: app/views/options/form.php:516
|
1248 |
+
msgid "Replace All URLs"
|
1249 |
msgstr ""
|
1250 |
|
1251 |
+
#: pro/app/views/options/form.php:311
|
1252 |
+
#: app/views/options/form.php:518
|
1253 |
+
msgid "Replace All non-Pretty Link URLs With Pretty Link URLs"
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: pro/app/views/options/form.php:312
|
1257 |
+
#: app/views/options/form.php:519
|
1258 |
+
msgid "This feature will take each url it finds and create or use an existing pretty link pointing to the url and replace it with the pretty link."
|
1259 |
msgstr ""
|
1260 |
|
1261 |
+
#: pro/app/views/options/form.php:329
|
1262 |
+
msgid "Domain Blacklist"
|
|
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: pro/app/views/options/form.php:331
|
1266 |
+
msgid "Do not replace links from these domains"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#. translators: %1$s: br tag, %2$s: open b tag, %3$s: close b tag
|
1270 |
+
#: pro/app/views/options/form.php:334
|
1271 |
+
msgid "Any links on your site which point to domains you define here will not be replaced automatically with Pretty Links. Place one domain per line.%1$s%1$sYou MUST enter http:// or https:// in front of the domain names and do NOT include any /'s or other text after the domain name.%1$s%1$sProper entry example:%1$s%2$shttps://www.google.com%3$s%1$s%2$shttp://mysite.org%3$s%1$s%1$sImproperly entered domains will be removed upon saving the Options."
|
1272 |
msgstr ""
|
1273 |
|
1274 |
+
#: pro/app/views/options/form.php:354
|
1275 |
+
#: app/views/options/form.php:531
|
1276 |
+
msgid "Replace in Comments"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: pro/app/views/options/form.php:356
|
1280 |
+
#: app/views/options/form.php:533
|
1281 |
+
msgid "Replace Keywords and URLs in Comments"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: pro/app/views/options/form.php:357
|
1285 |
+
#: app/views/options/form.php:534
|
1286 |
+
msgid "This option will enable the keyword / URL replacement routine to run in Comments."
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: pro/app/views/options/form.php:368
|
1290 |
+
#: app/views/options/form.php:546
|
1291 |
+
msgid "Replace in Feeds"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: pro/app/views/options/form.php:370
|
1295 |
+
#: app/views/options/form.php:548
|
1296 |
+
msgid "Replace Keywords and URLs in Feeds"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#. translators: %1$s: br tag, %2$s open strong tag, %3$s: close strong tag
|
1300 |
+
#: pro/app/views/options/form.php:373
|
1301 |
+
#: app/views/options/form.php:551
|
1302 |
+
msgid "This option will enable the keyword / URL replacement routine to run in RSS Feeds.%1$s%2$sNote:%3$s This option can slow the load speed of your RSS feed -- unless used in conjunction with a caching plugin like W3 Total Cache or WP Super Cache.%1$s%2$sNote #2%3$s This option will only work if you have \"Full Text\" selected in your General WordPress Reading settings.%1$s%2$sNote #3:%3$s If this option is used along with \"Replace Keywords and URLs in Comments\" then your post comment feeds will have keywords replaced in them as well."
|
1303 |
msgstr ""
|
1304 |
|
1305 |
+
#: pro/app/views/options/form.php:388
|
1306 |
+
#: pro/app/views/options/form.php:390
|
1307 |
+
#: app/views/options/form.php:567
|
1308 |
+
#: app/views/options/form.php:569
|
1309 |
+
msgid "Index Replacements"
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#. translators: %1$s: br tag, %2$s open strong tag, %3$s: close strong tag
|
1313 |
+
#: pro/app/views/options/form.php:393
|
1314 |
+
#: app/views/options/form.php:572
|
1315 |
+
msgid "This feature will index all of your keyword & URL replacements to dramatically improve performance.%1$s%1$sIf your site has a large number of replacements and/or posts then this feature may increase the load on your server temporarily and your replacements may not show up on your posts for a day or two initially (until all posts are indexed).%1$s%1$s%2$sNote:%3$s this feature requires the use of wp-cron."
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: pro/app/views/options/form.php:414
|
1319 |
+
#: pro/app/views/options/form.php:416
|
1320 |
+
msgid "Keyword Index Status"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: pro/app/views/options/form.php:417
|
1324 |
+
msgid "This shows how many posts have keywords indexed for and are ready for replacement."
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: pro/app/views/options/form.php:425
|
1328 |
+
#: pro/app/views/options/form.php:448
|
1329 |
+
msgid "%1$s out of %2$s Posts Indexed"
|
1330 |
msgstr ""
|
1331 |
|
1332 |
+
#: pro/app/views/options/form.php:429
|
1333 |
+
#: pro/app/views/options/form.php:452
|
1334 |
+
msgid "%1$s out of %2$s Comments Indexed"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: pro/app/views/options/form.php:437
|
1338 |
+
msgid "URL Index Status"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: pro/app/views/options/form.php:439
|
1342 |
+
msgid "URL Replacements Index Status"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: pro/app/views/options/form.php:440
|
1346 |
+
msgid "This shows how many posts have url replacements indexed for and are ready for replacement."
|
1347 |
msgstr ""
|
1348 |
|
1349 |
+
#: pro/app/views/options/form.php:468
|
1350 |
+
#: app/views/options/form.php:598
|
1351 |
+
#: app/views/options/form.php:642
|
1352 |
+
msgid "Auto-Create Shortlink Options"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
+
#: pro/app/views/options/form.php:489
|
1356 |
+
#: app/views/options/form.php:649
|
1357 |
+
#: app/views/options/form.php:959
|
1358 |
+
msgid "Pretty Bar Options"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: pro/app/views/options/form.php:495
|
1362 |
+
#: app/views/options/form.php:657
|
1363 |
+
msgid "Image URL"
|
1364 |
msgstr ""
|
1365 |
|
1366 |
+
#: pro/app/views/options/form.php:497
|
1367 |
+
#: app/views/options/form.php:659
|
1368 |
+
msgid "Pretty Bar Image URL"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: pro/app/views/options/form.php:498
|
1372 |
+
#: app/views/options/form.php:660
|
1373 |
+
msgid "If set, this will replace the logo image on the Pretty Bar. The image that this URL references should be 48x48 Pixels to fit."
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: pro/app/views/options/form.php:509
|
1377 |
+
#: app/views/options/form.php:672
|
1378 |
+
msgid "Background Image URL"
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: pro/app/views/options/form.php:511
|
1382 |
+
#: app/views/options/form.php:674
|
1383 |
+
msgid "Pretty Bar Background Image URL"
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: pro/app/views/options/form.php:512
|
1387 |
+
#: app/views/options/form.php:675
|
1388 |
+
msgid "If set, this will replace the background image on Pretty Bar. The image that this URL references should be 65px tall - this image will be repeated horizontally across the bar."
|
1389 |
msgstr ""
|
1390 |
|
1391 |
+
#: pro/app/views/options/form.php:523
|
1392 |
+
#: app/views/options/form.php:687
|
1393 |
+
msgid "Background Color"
|
1394 |
msgstr ""
|
1395 |
|
1396 |
+
#: pro/app/views/options/form.php:525
|
1397 |
+
#: app/views/options/form.php:689
|
1398 |
+
msgid "Pretty Bar Background Color"
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: pro/app/views/options/form.php:526
|
1402 |
+
#: app/views/options/form.php:690
|
1403 |
+
msgid "This will alter the background color of the Pretty Bar if you haven't specified a Pretty Bar background image."
|
1404 |
msgstr ""
|
1405 |
|
1406 |
+
#: pro/app/views/options/form.php:537
|
1407 |
+
#: app/views/options/form.php:702
|
1408 |
+
msgid "Text Color"
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: pro/app/views/options/form.php:539
|
1412 |
+
#: app/views/options/form.php:704
|
1413 |
+
msgid "Pretty Bar Text Color"
|
1414 |
msgstr ""
|
1415 |
|
1416 |
+
#. translators: %1$s: open code tag, %2$s: close code tag
|
1417 |
+
#: pro/app/views/options/form.php:542
|
1418 |
+
#: app/views/options/form.php:707
|
1419 |
+
msgid "If not set, this defaults to black (RGB value %1$s#000000%2$s) but you can change it to whatever color you like."
|
1420 |
msgstr ""
|
1421 |
|
1422 |
+
#: pro/app/views/options/form.php:556
|
1423 |
+
#: app/views/options/form.php:722
|
1424 |
+
msgid "Link Color"
|
|
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: pro/app/views/options/form.php:558
|
1428 |
+
#: app/views/options/form.php:724
|
1429 |
+
msgid "Pretty Bar Link Color"
|
1430 |
msgstr ""
|
1431 |
|
1432 |
+
#. translators: %1$s: open code tag, %2$s: close code tag
|
1433 |
+
#: pro/app/views/options/form.php:561
|
1434 |
+
#: app/views/options/form.php:727
|
1435 |
+
msgid "If not set, this defaults to blue (RGB value %1$s#0000ee%2$s) but you can change it to whatever color you like."
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: pro/app/views/options/form.php:575
|
1439 |
+
#: app/views/options/form.php:742
|
1440 |
+
msgid "Link Hover Color"
|
1441 |
msgstr ""
|
1442 |
|
1443 |
+
#: pro/app/views/options/form.php:577
|
1444 |
+
#: app/views/options/form.php:744
|
1445 |
+
msgid "Pretty Bar Link Hover Color"
|
|
|
|
|
|
|
1446 |
msgstr ""
|
1447 |
|
1448 |
+
#. translators: %1$s: open code tag, %2$s: close code tag
|
1449 |
+
#: pro/app/views/options/form.php:580
|
1450 |
+
#: app/views/options/form.php:747
|
1451 |
+
msgid "If not set, this defaults to RGB value %1$s#ababab%2$s but you can change it to whatever color you like."
|
|
|
|
|
1452 |
msgstr ""
|
1453 |
|
1454 |
+
#: pro/app/views/options/form.php:594
|
1455 |
+
#: app/views/options/form.php:762
|
1456 |
+
msgid "Visited Link Color"
|
|
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: pro/app/views/options/form.php:596
|
1460 |
+
#: app/views/options/form.php:764
|
1461 |
+
msgid "Pretty Bar Visited Link Color"
|
1462 |
msgstr ""
|
1463 |
|
1464 |
+
#. translators: %1$s: open code tag, %2$s: close code tag
|
1465 |
+
#: pro/app/views/options/form.php:599
|
1466 |
+
#: app/views/options/form.php:767
|
1467 |
+
msgid "If not set, this defaults to RGB value %1$s#551a8b%2$s but you can change it to whatever color you like."
|
1468 |
msgstr ""
|
1469 |
|
1470 |
+
#: pro/app/views/options/form.php:613
|
1471 |
+
#: app/views/options/form.php:782
|
1472 |
+
msgid "Title Char Limit"
|
|
|
|
|
|
|
|
|
|
|
1473 |
msgstr ""
|
1474 |
|
1475 |
+
#: pro/app/views/options/form.php:615
|
1476 |
+
#: app/views/options/form.php:784
|
1477 |
+
msgid "Pretty Bar Title Char Limit"
|
1478 |
msgstr ""
|
1479 |
|
1480 |
+
#. translators: %1$s: open code tag, %2$s: close code tag
|
1481 |
+
#: pro/app/views/options/form.php:618
|
1482 |
+
#: app/views/options/form.php:787
|
1483 |
+
msgid "If your Website has a long title then you may need to adjust this value so that it will all fit on the Pretty Bar. It is recommended that you keep this value to %1$s30%2$s characters or less so the Pretty Bar's format looks good across different browsers and screen resolutions."
|
1484 |
msgstr ""
|
1485 |
|
1486 |
+
#: pro/app/views/options/form.php:632
|
1487 |
+
#: app/views/options/form.php:802
|
1488 |
+
msgid "Description Char Limit"
|
1489 |
msgstr ""
|
1490 |
|
1491 |
+
#: pro/app/views/options/form.php:634
|
1492 |
+
#: app/views/options/form.php:804
|
1493 |
+
msgid "Pretty Bar Description Char Limit"
|
1494 |
msgstr ""
|
1495 |
|
1496 |
+
#. translators: %1$s: open code tag, %2$s: close code tag
|
1497 |
+
#: pro/app/views/options/form.php:637
|
1498 |
+
#: app/views/options/form.php:807
|
1499 |
+
msgid "If your Website has a long Description (tagline) then you may need to adjust this value so that it will all fit on the Pretty Bar. It is recommended that you keep this value to %1$s40%2$s characters or less so the Pretty Bar's format looks good across different browsers and screen resolutions."
|
1500 |
msgstr ""
|
1501 |
|
1502 |
+
#: pro/app/views/options/form.php:651
|
1503 |
+
#: app/views/options/form.php:822
|
1504 |
+
msgid "Target URL Char Limit"
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: pro/app/views/options/form.php:653
|
1508 |
+
#: app/views/options/form.php:824
|
1509 |
+
msgid "Pretty Bar Target URL Char Limit"
|
1510 |
msgstr ""
|
1511 |
|
1512 |
+
#. translators: %1$s: open code tag, %2$s: close code tag
|
1513 |
+
#: pro/app/views/options/form.php:656
|
1514 |
+
#: app/views/options/form.php:827
|
1515 |
+
msgid "If you link to a lot of large Target URLs you may want to adjust this value. It is recommended that you keep this value to %1$s40%2$s or below so the Pretty Bar's format looks good across different browsers and URL sizes"
|
1516 |
msgstr ""
|
1517 |
|
1518 |
+
#: pro/app/views/options/form.php:670
|
1519 |
+
#: app/views/options/form.php:842
|
1520 |
+
msgid "Show Title"
|
1521 |
msgstr ""
|
1522 |
|
1523 |
+
#: pro/app/views/options/form.php:672
|
1524 |
+
#: app/views/options/form.php:844
|
1525 |
+
msgid "Pretty Bar Show Title"
|
|
|
|
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#: pro/app/views/options/form.php:673
|
1529 |
+
#: app/views/options/form.php:845
|
1530 |
+
msgid "Make sure this is checked if you want the title of your blog (and link) to show up on the Pretty Bar."
|
1531 |
msgstr ""
|
1532 |
|
1533 |
+
#: pro/app/views/options/form.php:684
|
1534 |
+
#: app/views/options/form.php:857
|
1535 |
+
msgid "Show Description"
|
1536 |
msgstr ""
|
1537 |
|
1538 |
+
#: pro/app/views/options/form.php:686
|
1539 |
+
#: app/views/options/form.php:859
|
1540 |
+
msgid "Pretty Bar Show Description"
|
1541 |
msgstr ""
|
1542 |
|
1543 |
+
#: pro/app/views/options/form.php:687
|
1544 |
+
#: app/views/options/form.php:860
|
1545 |
+
msgid "Make sure this is checked if you want your site description to show up on the Pretty Bar."
|
1546 |
msgstr ""
|
1547 |
|
1548 |
+
#: pro/app/views/options/form.php:698
|
1549 |
+
#: app/views/options/form.php:872
|
1550 |
+
msgid "Show Share Links"
|
1551 |
msgstr ""
|
1552 |
|
1553 |
+
#: pro/app/views/options/form.php:700
|
1554 |
+
#: app/views/options/form.php:874
|
1555 |
+
msgid "Pretty Bar Show Share Links"
|
1556 |
msgstr ""
|
1557 |
|
1558 |
+
#: pro/app/views/options/form.php:701
|
1559 |
+
#: app/views/options/form.php:875
|
1560 |
+
msgid "Make sure this is checked if you want \"share links\" to show up on the Pretty Bar."
|
1561 |
msgstr ""
|
1562 |
|
1563 |
+
#: pro/app/views/options/form.php:712
|
1564 |
+
#: app/views/options/form.php:887
|
1565 |
+
msgid "Show Target URL"
|
1566 |
msgstr ""
|
1567 |
|
1568 |
+
#: pro/app/views/options/form.php:714
|
1569 |
+
#: app/views/options/form.php:889
|
1570 |
+
msgid "Pretty Bar Show Target URL Links"
|
1571 |
msgstr ""
|
1572 |
|
1573 |
+
#: pro/app/views/options/form.php:715
|
1574 |
+
#: app/views/options/form.php:890
|
1575 |
+
msgid "Make sure this is checked if you want a link displaying the Target URL to show up on the Pretty Bar."
|
1576 |
msgstr ""
|
1577 |
|
1578 |
+
#: pro/app/views/options/form.php:726
|
1579 |
+
#: pro/app/views/options/form.php:728
|
1580 |
+
#: app/views/options/form.php:902
|
1581 |
+
#: app/views/options/form.php:904
|
1582 |
+
msgid "Hide Attribution Link"
|
|
|
|
|
|
|
|
|
1583 |
msgstr ""
|
1584 |
|
1585 |
+
#. translators: %1$s: br tag, %2$s: open strong tag, %3$s close strong tag, %4$s open em tag, %5$s close em tag, %6$s open link tag, %7$s close link tag
|
1586 |
+
#: pro/app/views/options/form.php:731
|
1587 |
+
#: app/views/options/form.php:907
|
1588 |
+
msgid "Check this to hide the pretty link attribution link on the pretty bar.%1$s%1$s%2$sWait, before you do this, you might want to leave this un-checked and set the alternate URL of this link to your %4$sPretty Links Pro%5$s %6$sAffiliate URL%7$s to earn a few bucks while you are at it.%3$s"
|
1589 |
msgstr ""
|
1590 |
|
1591 |
+
#: pro/app/views/options/form.php:757
|
1592 |
+
#: app/views/options/form.php:934
|
1593 |
+
msgid "Attribution URL"
|
1594 |
+
msgstr ""
|
1595 |
+
|
1596 |
+
#: pro/app/views/options/form.php:759
|
1597 |
+
#: app/views/options/form.php:936
|
1598 |
+
msgid "Alternate Pretty Bar Attribution URL"
|
1599 |
msgstr ""
|
1600 |
|
1601 |
+
#. translators: %1$s open em tag, %2$s close em tag, %3$s open link tag, %4$s close link tag
|
1602 |
+
#: pro/app/views/options/form.php:762
|
1603 |
+
#: app/views/options/form.php:939
|
1604 |
+
msgid "If set, this will replace the Pretty Bars attribution URL. This is a very good place to put your %1$sPretty Links Pro%2$s %3$sAffiliate Link%4$s."
|
1605 |
msgstr ""
|
1606 |
|
1607 |
+
#: pro/app/views/options/form.php:781
|
1608 |
+
#: app/views/options/form.php:966
|
1609 |
+
#: app/views/options/form.php:1032
|
1610 |
+
msgid "Social Buttons Options"
|
1611 |
msgstr ""
|
1612 |
|
1613 |
+
#: pro/app/views/options/form.php:784
|
1614 |
+
#: app/views/options/form.php:970
|
1615 |
+
msgid "Buttons"
|
1616 |
msgstr ""
|
1617 |
|
1618 |
+
#: pro/app/views/options/form.php:786
|
1619 |
+
#: app/views/options/form.php:972
|
1620 |
+
msgid "Social Buttons"
|
|
|
|
|
|
|
|
|
1621 |
msgstr ""
|
1622 |
|
1623 |
+
#. translators: %1$s: br tag, %2$s open code tag, %3$s close code tag
|
1624 |
+
#: pro/app/views/options/form.php:789
|
1625 |
+
#: app/views/options/form.php:975
|
1626 |
+
msgid "Select which buttons you want to be visible on the Social Buttons Bar.%1$s%1$s%2$sNote:%3$s In order for the Social Buttons Bar to be visible on Pages and or Posts, you must first enable it in the \"Page & Post Options\" section above."
|
|
|
1627 |
msgstr ""
|
1628 |
|
1629 |
+
#: pro/app/views/options/form.php:816
|
1630 |
+
#: app/views/options/form.php:997
|
1631 |
+
msgid "Buttons Placement"
|
1632 |
msgstr ""
|
1633 |
|
1634 |
+
#: pro/app/views/options/form.php:818
|
1635 |
+
#: app/views/options/form.php:999
|
1636 |
+
msgid "Social Buttons Placement"
|
1637 |
msgstr ""
|
1638 |
|
1639 |
+
#. translators: %1$s: br tag, %2$s open code tag, %3$s close code tag
|
1640 |
+
#: pro/app/views/options/form.php:821
|
1641 |
+
#: app/views/options/form.php:1002
|
1642 |
+
msgid "This determines where your Social Buttons Placement should appear in relation to content on Pages and/or Posts.%1$s%1$s%2$sNote:%3$s If you want this bar to appear then you must enable it in the \"Auto-Create Links\" section above."
|
1643 |
msgstr ""
|
1644 |
|
1645 |
+
#: pro/app/views/options/form.php:835
|
1646 |
+
#: app/views/options/form.php:1017
|
1647 |
+
msgid "Social Buttons Manual Placement"
|
1648 |
msgstr ""
|
1649 |
|
1650 |
+
#. translators: %1$s: example shortcode, %2$s: example template tag
|
1651 |
+
#: pro/app/views/options/form.php:838
|
1652 |
+
#: app/views/options/form.php:1020
|
1653 |
+
msgid "If you select none, you can still show your Social Buttons by manually adding the %1$s shortcode to your blog posts or %2$s template tag to your WordPress Theme."
|
1654 |
msgstr ""
|
1655 |
|
1656 |
+
#: pro/app/views/options/form.php:866
|
1657 |
+
#: app/views/options/form.php:1040
|
1658 |
+
msgid "Public Links Creation Options"
|
1659 |
msgstr ""
|
1660 |
|
1661 |
+
#: pro/app/views/options/form.php:872
|
1662 |
+
#: app/views/options/form.php:1048
|
1663 |
+
msgid "Enable Public Links"
|
1664 |
msgstr ""
|
1665 |
|
1666 |
+
#: pro/app/views/options/form.php:874
|
1667 |
+
#: app/views/options/form.php:1050
|
1668 |
+
msgid "Enable Public Link Creation on this Site"
|
1669 |
msgstr ""
|
1670 |
|
1671 |
+
#: pro/app/views/options/form.php:876
|
1672 |
+
#: app/views/options/form.php:1052
|
1673 |
+
msgid "This option will give you the ability to turn your website into a link shortening service for your users. Once selected, you can enable the Pretty Links Pro Sidebar Widget or just display the link creation form with the %s shortcode in any post or page on your website."
|
|
|
1674 |
msgstr ""
|
1675 |
|
1676 |
+
#: pro/app/views/options/form.php:895
|
1677 |
+
msgid "Use Display Page"
|
1678 |
msgstr ""
|
1679 |
|
1680 |
+
#: pro/app/views/options/form.php:897
|
1681 |
+
msgid "Use Public Link Display Page"
|
1682 |
msgstr ""
|
1683 |
|
1684 |
+
#: pro/app/views/options/form.php:898
|
1685 |
+
msgid "When a link is created using the public form, the user is typically redirected to a simple page displaying their new pretty link. But, you can specify a page that you want them to be redirected to on your website, using your branding instead by selecting this box and entering the url of the page you want them to go to."
|
1686 |
msgstr ""
|
1687 |
|
1688 |
+
#: pro/app/views/options/form.php:915
|
1689 |
+
msgid "Display Page"
|
1690 |
msgstr ""
|
1691 |
|
1692 |
+
#: pro/app/views/options/form.php:917
|
1693 |
+
msgid "Public Pretty Link Creation Display URL"
|
1694 |
msgstr ""
|
1695 |
|
1696 |
+
#: pro/app/views/options/form.php:919
|
1697 |
+
msgid "To set this up, create a new page on your WordPress site and make sure the %s appears somewhere on this page -- otherwise the link will never get created. Once this page is created, just enter the full URL to it here. Make sure this URL does not end with a slash (/)."
|
1698 |
msgstr ""
|
1699 |
|
1700 |
+
#: pro/app/views/options/autocreate.php:7
|
1701 |
+
msgid "%s Shortlinks"
|
|
|
1702 |
msgstr ""
|
1703 |
|
1704 |
+
#: pro/app/views/options/autocreate.php:10
|
1705 |
+
msgid "Create Pretty Links for %s"
|
1706 |
msgstr ""
|
1707 |
|
1708 |
+
#: pro/app/views/options/autocreate.php:11
|
1709 |
+
msgid "Automatically Create a Pretty Link for each of your published %s"
|
|
|
1710 |
msgstr ""
|
1711 |
|
1712 |
+
#: pro/app/views/options/autocreate.php:30
|
1713 |
+
msgid "Category"
|
1714 |
msgstr ""
|
1715 |
|
1716 |
+
#: pro/app/views/options/autocreate.php:33
|
1717 |
+
msgid "%s Auto Link Category"
|
1718 |
msgstr ""
|
1719 |
|
1720 |
+
#: pro/app/views/options/autocreate.php:34
|
1721 |
+
msgid "Category that Pretty Links for %s will be automatically added to."
|
|
|
|
|
1722 |
msgstr ""
|
1723 |
|
1724 |
+
#: pro/app/views/options/autocreate.php:51
|
1725 |
+
msgid "Add a New Category"
|
1726 |
msgstr ""
|
1727 |
|
1728 |
+
#: pro/app/views/options/autocreate.php:57
|
1729 |
+
msgid "Show Social Buttons"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
+
#: pro/app/views/options/autocreate.php:60
|
1733 |
+
msgid "Show Social Buttons on %s"
|
1734 |
msgstr ""
|
1735 |
|
1736 |
+
#: pro/app/views/options/autocreate.php:61
|
1737 |
+
msgid "If this button is checked then you'll have the ability to include a social buttons bar on your %s."
|
1738 |
msgstr ""
|
1739 |
|
1740 |
+
#: pro/app/views/options/general.php:8
|
1741 |
+
msgid "Use Shortlink URL"
|
|
|
1742 |
msgstr ""
|
1743 |
|
1744 |
+
#: pro/app/views/options/general.php:10
|
1745 |
+
msgid "Use an Alternate Shortlink URL"
|
1746 |
msgstr ""
|
1747 |
|
1748 |
+
#: pro/app/views/options/general.php:11
|
1749 |
+
msgid "Use this option if you want to substitute your actual blog's url with another URL. You must have another valid domain name pointing to this WordPress install before you enable this option. If you are using this option to just get rid of the www in the beginning of your url that is fine -- just make sure your domain works without the www before enabling this option."
|
|
|
1750 |
msgstr ""
|
1751 |
|
1752 |
+
#: pro/app/views/options/general.php:28
|
1753 |
+
#: pro/app/views/options/general.php:30
|
1754 |
+
msgid "Shortlink URL"
|
1755 |
msgstr ""
|
1756 |
|
1757 |
+
#: pro/app/views/options/general.php:31
|
1758 |
+
msgid "Enter a valid base url that points at this WordPress install. Make sure this URL does not end with a slash (/)."
|
|
|
|
|
|
|
1759 |
msgstr ""
|
1760 |
|
1761 |
+
#: pro/app/views/options/general.php:47
|
1762 |
+
msgid "Minimum Admin Role"
|
1763 |
msgstr ""
|
1764 |
|
1765 |
+
#: pro/app/views/options/general.php:49
|
1766 |
+
msgid "Set Minimum Role Required To Access Pretty Link"
|
1767 |
msgstr ""
|
1768 |
|
1769 |
+
#: pro/app/views/options/general.php:50
|
1770 |
+
msgid "Use this option to set the minimum role of users who can access the Admin interface for Pretty Link."
|
1771 |
msgstr ""
|
1772 |
|
1773 |
+
#: pro/app/views/options/general.php:56
|
1774 |
+
msgid "Administrator"
|
|
|
1775 |
msgstr ""
|
1776 |
|
1777 |
+
#: pro/app/views/options/general.php:57
|
1778 |
+
msgid "Editor"
|
1779 |
msgstr ""
|
1780 |
|
1781 |
+
#: pro/app/views/options/general.php:58
|
1782 |
+
msgid "Author"
|
|
|
1783 |
msgstr ""
|
1784 |
|
1785 |
+
#: pro/app/views/options/general.php:59
|
1786 |
+
msgid "Contributor"
|
|
|
1787 |
msgstr ""
|
1788 |
|
1789 |
+
#: pro/app/views/options/general.php:60
|
1790 |
+
msgid "Subscriber"
|
|
|
1791 |
msgstr ""
|
1792 |
|
1793 |
+
#: pro/app/views/tools/nav.php:3
|
1794 |
+
msgid "Custom Bookmarklet"
|
|
|
1795 |
msgstr ""
|
1796 |
|
1797 |
+
#: pro/app/views/tools/generator.php:6
|
1798 |
+
msgid "Custom Bookmarklet:"
|
1799 |
msgstr ""
|
1800 |
|
1801 |
+
#: pro/app/views/tools/generator.php:7
|
1802 |
+
#: pro/app/views/tools/generator.php:17
|
1803 |
+
#: app/views/tools/form.php:26
|
1804 |
+
msgid "Get Pretty Link"
|
1805 |
msgstr ""
|
1806 |
|
1807 |
+
#: pro/app/views/tools/generator.php:9
|
1808 |
+
msgid "Customize Pretty Link Bookmarklet"
|
|
|
1809 |
msgstr ""
|
1810 |
|
1811 |
+
#: pro/app/views/tools/generator.php:10
|
1812 |
+
msgid "Alter the options below to customize this Bookmarklet. As you modify the label, redirect type, tracking and category, you will see this bookmarklet update -- when the settings are how you want them, drag the bookmarklet into your toolbar. You can create as many bookmarklets as you want each with different settings."
|
|
|
1813 |
msgstr ""
|
1814 |
|
1815 |
+
#: pro/app/views/tools/generator.php:13
|
1816 |
+
#: pro/app/widgets/PlpPublicLinksWidget.php:66
|
1817 |
+
msgid "Pretty Link Options"
|
|
|
|
|
1818 |
msgstr ""
|
1819 |
|
1820 |
+
#: pro/app/views/tools/generator.php:16
|
1821 |
+
msgid "Label:"
|
|
|
|
|
1822 |
msgstr ""
|
1823 |
|
1824 |
+
#: pro/app/views/tools/generator.php:20
|
1825 |
+
#: pro/app/widgets/PlpPublicLinksWidget.php:68
|
1826 |
+
msgid "Redirection:"
|
1827 |
msgstr ""
|
1828 |
|
1829 |
+
#: pro/app/views/tools/generator.php:21
|
1830 |
+
#: pro/app/views/tools/generator.php:26
|
1831 |
+
#: pro/app/widgets/PlpPublicLinksWidget.php:70
|
1832 |
+
#: pro/app/widgets/PlpPublicLinksWidget.php:82
|
1833 |
+
#: app/views/shared/tinymce_form_popup.php:31
|
1834 |
+
#: app/views/shared/tinymce_form_popup.php:48
|
1835 |
+
#: app/views/shared/tinymce_form_popup.php:56
|
1836 |
+
#: app/views/shared/tinymce_form_popup.php:64
|
1837 |
+
msgid "Default"
|
1838 |
+
msgstr ""
|
1839 |
+
|
1840 |
+
#: pro/app/views/tools/generator.php:24
|
1841 |
+
msgid "Tracking:"
|
1842 |
msgstr ""
|
1843 |
|
1844 |
+
#: pro/app/views/tools/generator.php:27
|
1845 |
+
#: pro/app/widgets/PlpPublicLinksWidget.php:83
|
1846 |
+
#: app/views/admin/popups/rating.php:12
|
1847 |
+
msgid "Yes"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
+
#: pro/app/views/tools/generator.php:28
|
1851 |
+
#: pro/app/widgets/PlpPublicLinksWidget.php:84
|
1852 |
+
#: app/views/admin/popups/rating.php:13
|
1853 |
+
msgid "No"
|
|
|
|
|
|
|
|
|
|
|
|
|
1854 |
msgstr ""
|
1855 |
|
1856 |
+
#: pro/app/views/tools/generator.php:32
|
1857 |
+
#: pro/app/widgets/PlpPublicLinksWidget.php:89
|
1858 |
+
msgid "Category:"
|
|
|
|
|
1859 |
msgstr ""
|
1860 |
|
1861 |
+
#: pro/app/views/import-export/form.php:4
|
1862 |
+
msgid "Import / Export Links"
|
|
|
1863 |
msgstr ""
|
1864 |
|
1865 |
+
#: pro/app/views/import-export/form.php:9
|
1866 |
+
#: pro/app/views/import-export/form.php:12
|
1867 |
+
msgid "Export Pretty Links"
|
1868 |
msgstr ""
|
1869 |
|
1870 |
+
#: pro/app/views/import-export/form.php:13
|
1871 |
+
msgid "Export Links to a CSV File"
|
|
|
1872 |
msgstr ""
|
1873 |
|
1874 |
+
#: pro/app/views/import-export/form.php:17
|
1875 |
+
msgid "Export"
|
1876 |
msgstr ""
|
1877 |
|
1878 |
+
#: pro/app/views/import-export/form.php:22
|
1879 |
+
#: pro/app/views/import-export/form.php:25
|
1880 |
+
msgid "Import Pretty Links"
|
1881 |
msgstr ""
|
1882 |
|
1883 |
+
#: pro/app/views/import-export/form.php:27
|
1884 |
+
msgid "There are two ways to import a file.%1$s%1$s1) Importing to update existing links and%1$s%1$s2) Importing to generate new links. When Importing to generate new links, you must delete the \"id\" column from the CSV before importing. If the \"id\" column is present, Pretty Links Pro will attempt to update existing links."
|
1885 |
msgstr ""
|
1886 |
|
1887 |
+
#: pro/app/views/import-export/form.php:39
|
1888 |
+
msgid "Import"
|
1889 |
msgstr ""
|
1890 |
|
1891 |
+
#: pro/app/views/import-export/form.php:42
|
1892 |
+
msgid "Links Import File"
|
1893 |
msgstr ""
|
1894 |
|
1895 |
+
#: pro/app/views/import-export/form.php:43
|
1896 |
+
msgid "Select a file that has been formatted as a Pretty Link CSV import file and click \"Import\""
|
1897 |
msgstr ""
|
1898 |
|
1899 |
+
#: pro/app/views/import-export/form.php:51
|
1900 |
+
msgid "Import/Export Help"
|
1901 |
msgstr ""
|
1902 |
|
1903 |
+
#: pro/app/views/import-export/import-error.php:4
|
1904 |
+
msgid "Import Error"
|
|
|
|
|
|
|
1905 |
msgstr ""
|
1906 |
|
1907 |
+
#: pro/app/views/import-export/import-error.php:8
|
1908 |
+
msgid "← Go back"
|
1909 |
msgstr ""
|
1910 |
|
1911 |
+
#: pro/app/views/import-export/import.php:4
|
1912 |
+
msgid "Import Results"
|
1913 |
msgstr ""
|
1914 |
|
1915 |
+
#: pro/app/views/import-export/import.php:5
|
1916 |
+
msgid "Total Rows: %s"
|
1917 |
msgstr ""
|
1918 |
|
1919 |
+
#: pro/app/views/import-export/import.php:7
|
1920 |
+
msgid "%s Pretty Links were Successfully Created"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
+
#: pro/app/views/import-export/import.php:8
|
1924 |
+
msgid "%s Pretty Links were Successfully Updated"
|
1925 |
msgstr ""
|
1926 |
|
1927 |
+
#: pro/app/views/import-export/import.php:13
|
1928 |
+
msgid "Pretty Links were unable to be Created: %s"
|
1929 |
msgstr ""
|
1930 |
|
1931 |
+
#: pro/app/views/import-export/import.php:17
|
1932 |
+
msgid "Error(s) for Pretty Link with Slug: %s"
|
|
|
1933 |
msgstr ""
|
1934 |
|
1935 |
+
#: pro/app/views/import-export/import.php:32
|
1936 |
+
msgid "Pretty Links were unable to be Updated: %s"
|
1937 |
msgstr ""
|
1938 |
|
1939 |
+
#: pro/app/views/import-export/import.php:36
|
1940 |
+
msgid "Error(s) for Pretty Link with id: %s"
|
1941 |
msgstr ""
|
1942 |
|
1943 |
+
#: pro/app/controllers/PlpLinksController.php:195
|
1944 |
+
msgid "Your URL Replacements must be formatted as a comma separated list of properly formatted URLs (http[s]://example.com/whatever)"
|
1945 |
msgstr ""
|
1946 |
|
1947 |
+
#: pro/app/controllers/PlpLinksController.php:206
|
1948 |
+
msgid "Date must be valid and formatted YYYY-MM-DD."
|
1949 |
msgstr ""
|
1950 |
|
1951 |
+
#: pro/app/controllers/PlpLinksController.php:218
|
1952 |
+
msgid "Expire Clicks must be a number greater than zero."
|
1953 |
msgstr ""
|
1954 |
|
1955 |
+
#: pro/app/controllers/PlpLinksController.php:225
|
1956 |
+
msgid "Expired URL must be a valid URL."
|
|
|
|
|
1957 |
msgstr ""
|
1958 |
|
1959 |
+
#: pro/app/controllers/PlpLinksController.php:237
|
1960 |
+
msgid "Your URL Rotations must all be properly formatted URLs."
|
1961 |
msgstr ""
|
1962 |
|
1963 |
+
#: pro/app/controllers/PlpLinksController.php:246
|
1964 |
+
msgid "Your Link Rotation Weights must add up to 100%."
|
1965 |
msgstr ""
|
1966 |
|
1967 |
+
#: pro/app/controllers/PlpLinksController.php:256
|
1968 |
+
msgid "Your Geographic Redirect URLs must all be properly formatted."
|
1969 |
msgstr ""
|
1970 |
|
1971 |
+
#: pro/app/controllers/PlpLinksController.php:260
|
1972 |
+
msgid "Your Geographic Redirects URLs must not be empty."
|
1973 |
msgstr ""
|
1974 |
|
1975 |
+
#: pro/app/controllers/PlpLinksController.php:264
|
1976 |
+
msgid "Your Geographic Redirect Countries must not be empty."
|
|
|
|
|
|
|
1977 |
msgstr ""
|
1978 |
|
1979 |
+
#: pro/app/controllers/PlpLinksController.php:275
|
1980 |
+
msgid "Your Technology Redirect URLs must all be properly formatted."
|
|
|
|
|
1981 |
msgstr ""
|
1982 |
|
1983 |
+
#: pro/app/controllers/PlpLinksController.php:279
|
1984 |
+
msgid "Your Technology Redirects URLs must not be empty."
|
|
|
|
|
|
|
1985 |
msgstr ""
|
1986 |
|
1987 |
+
#: pro/app/controllers/PlpLinksController.php:290
|
1988 |
+
msgid "Your Time Period Redirect URLs must all be properly formatted."
|
|
|
1989 |
msgstr ""
|
1990 |
|
1991 |
+
#: pro/app/controllers/PlpLinksController.php:294
|
1992 |
+
msgid "Your Time Period Redirects URLs must not be empty."
|
|
|
|
|
|
|
1993 |
msgstr ""
|
1994 |
|
1995 |
+
#: pro/app/controllers/PlpLinksController.php:299
|
1996 |
+
msgid "Your Time Period Redirect start time must not be empty."
|
1997 |
msgstr ""
|
1998 |
|
1999 |
+
#: pro/app/controllers/PlpLinksController.php:302
|
2000 |
+
msgid "Your Time Period Redirect start time must be a properly formatted date."
|
2001 |
msgstr ""
|
2002 |
|
2003 |
+
#: pro/app/controllers/PlpLinksController.php:308
|
2004 |
+
msgid "Your Time Period Redirect end time must not be empty."
|
|
|
2005 |
msgstr ""
|
2006 |
|
2007 |
+
#: pro/app/controllers/PlpLinksController.php:311
|
2008 |
+
msgid "Your Time Period Redirect end time must be a properly formatted date."
|
|
|
2009 |
msgstr ""
|
2010 |
|
2011 |
+
#: pro/app/controllers/PlpLinksController.php:319
|
2012 |
+
msgid "Your Time Period Redirect start time must come before the end time."
|
|
|
|
|
|
|
2013 |
msgstr ""
|
2014 |
|
2015 |
+
#: pro/app/controllers/PlpLinksController.php:327
|
2016 |
+
msgid "Delay Redirect must be a number"
|
|
|
|
|
2017 |
msgstr ""
|
2018 |
|
2019 |
+
#: pro/app/controllers/PlpLinksController.php:623
|
2020 |
+
#: pro/app/controllers/PlpLinksController.php:669
|
2021 |
+
#: app/views/shared/tinymce_form_popup.php:37
|
2022 |
+
#: app/views/options/form.php:55
|
2023 |
+
msgid "Pretty Bar"
|
2024 |
msgstr ""
|
2025 |
|
2026 |
+
#: pro/app/controllers/PlpLinksController.php:624
|
2027 |
+
#: app/views/shared/tinymce_form_popup.php:38
|
2028 |
+
msgid "Cloaked"
|
2029 |
msgstr ""
|
2030 |
|
2031 |
+
#: pro/app/controllers/PlpLinksController.php:625
|
2032 |
+
#: pro/app/controllers/PlpLinksController.php:671
|
2033 |
+
#: app/views/shared/tinymce_form_popup.php:39
|
2034 |
+
msgid "Pixel"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
+
#: pro/app/controllers/PlpLinksController.php:626
|
2038 |
+
#: pro/app/controllers/PlpLinksController.php:672
|
2039 |
+
#: app/views/shared/tinymce_form_popup.php:40
|
2040 |
+
msgid "Meta Refresh"
|
2041 |
msgstr ""
|
2042 |
|
2043 |
+
#: pro/app/controllers/PlpLinksController.php:627
|
2044 |
+
#: pro/app/controllers/PlpLinksController.php:673
|
2045 |
+
#: app/views/shared/tinymce_form_popup.php:41
|
2046 |
+
msgid "Javascript"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
+
#: pro/app/controllers/PlpLinksController.php:670
|
2050 |
+
#: pro/app/widgets/PlpPublicLinksWidget.php:75
|
2051 |
+
msgid "Cloak"
|
2052 |
msgstr ""
|
2053 |
|
2054 |
+
#: pro/app/controllers/PlpLinksController.php:735
|
2055 |
+
msgid "View QR Code for this link: %s"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
+
#: pro/app/controllers/PlpLinksController.php:735
|
2059 |
+
#: pro/app/controllers/PlpLinksController.php:739
|
2060 |
+
msgid "QR Code"
|
2061 |
msgstr ""
|
2062 |
|
2063 |
+
#: pro/app/controllers/PlpLinksController.php:739
|
2064 |
+
msgid "Download QR Code for this link: %s"
|
2065 |
msgstr ""
|
2066 |
|
2067 |
+
#: pro/app/controllers/PlpLinksController.php:812
|
2068 |
+
msgid "This link expired on %1$s and will now cause a 404 error when visited"
|
2069 |
msgstr ""
|
2070 |
|
2071 |
+
#: pro/app/controllers/PlpLinksController.php:815
|
2072 |
+
msgid "This link expired on %1$s and now redirects to %2$s"
|
2073 |
msgstr ""
|
2074 |
|
2075 |
+
#: pro/app/controllers/PlpLinksController.php:819
|
2076 |
+
msgid "This link is set to expire after the date %s"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
+
#: pro/app/controllers/PlpLinksController.php:830
|
2080 |
+
msgid "This link expired after %d clicks and will now cause a 404 error when visited"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
+
#: pro/app/controllers/PlpLinksController.php:833
|
2084 |
+
msgid "This link expired after %1$d clicks and now redirects to %2$s"
|
|
|
2085 |
msgstr ""
|
2086 |
|
2087 |
+
#: pro/app/controllers/PlpLinksController.php:837
|
2088 |
+
msgid "This link is set to expire after %d clicks"
|
2089 |
msgstr ""
|
2090 |
|
2091 |
+
#: pro/app/controllers/PlpLinksController.php:845
|
2092 |
+
msgid "This link has additional Target URL rotations"
|
|
|
2093 |
msgstr ""
|
2094 |
|
2095 |
+
#: pro/app/controllers/PlpLinksController.php:848
|
2096 |
+
msgid "This link has additional Geographic Target URLs"
|
2097 |
msgstr ""
|
2098 |
|
2099 |
+
#: pro/app/controllers/PlpLinksController.php:851
|
2100 |
+
msgid "This link has additional Technology Dependent Conditional Target URLs"
|
|
|
2101 |
msgstr ""
|
2102 |
|
2103 |
+
#: pro/app/controllers/PlpLinksController.php:856
|
2104 |
+
msgid "A Time Period Redirect is currently active for this link. When visited it will currently redirect to %s rather than the Target URL unless the link is expired."
|
|
|
2105 |
msgstr ""
|
2106 |
|
2107 |
+
#: pro/app/controllers/PlpLinksController.php:860
|
2108 |
+
msgid "Time Period Redirects have been setup for this link but the current time is not within any of them currently."
|
|
|
2109 |
msgstr ""
|
2110 |
|
2111 |
+
#: pro/app/controllers/PlpKeywordsController.php:68
|
2112 |
+
msgid "Pretty Link Post Build Index"
|
|
|
2113 |
msgstr ""
|
2114 |
|
2115 |
+
#: pro/app/controllers/PlpLinkCategoriesController.php:15
|
2116 |
+
msgctxt "taxonomy general name"
|
2117 |
+
msgid "Link Categories"
|
2118 |
msgstr ""
|
2119 |
|
2120 |
+
#: pro/app/controllers/PlpLinkCategoriesController.php:16
|
2121 |
+
msgctxt "taxonomy singular name"
|
2122 |
+
msgid "Link Category"
|
2123 |
msgstr ""
|
2124 |
|
2125 |
+
#: pro/app/controllers/PlpLinkCategoriesController.php:17
|
2126 |
+
msgid "Search Link Categories"
|
|
|
2127 |
msgstr ""
|
2128 |
|
2129 |
+
#: pro/app/controllers/PlpLinkCategoriesController.php:18
|
2130 |
+
msgid "All Link Categories"
|
|
|
2131 |
msgstr ""
|
2132 |
|
2133 |
+
#: pro/app/controllers/PlpLinkCategoriesController.php:19
|
2134 |
+
msgid "Parent Link Category"
|
|
|
2135 |
msgstr ""
|
2136 |
|
2137 |
+
#: pro/app/controllers/PlpLinkCategoriesController.php:20
|
2138 |
+
msgid "Parent Link Category:"
|
|
|
|
|
2139 |
msgstr ""
|
2140 |
|
2141 |
+
#: pro/app/controllers/PlpLinkCategoriesController.php:21
|
2142 |
+
msgid "Edit Link Category"
|
|
|
2143 |
msgstr ""
|
2144 |
|
2145 |
+
#: pro/app/controllers/PlpLinkCategoriesController.php:22
|
2146 |
+
msgid "Update Link Category"
|
|
|
2147 |
msgstr ""
|
2148 |
|
2149 |
+
#: pro/app/controllers/PlpLinkCategoriesController.php:23
|
2150 |
+
msgid "Add New Link Category"
|
|
|
|
|
2151 |
msgstr ""
|
2152 |
|
2153 |
+
#: pro/app/controllers/PlpLinkCategoriesController.php:24
|
2154 |
+
msgid "New Link Category Name"
|
|
|
2155 |
msgstr ""
|
2156 |
|
2157 |
+
#: pro/app/controllers/PlpLinkCategoriesController.php:25
|
2158 |
+
#: app/controllers/PrliLinksController.php:465
|
2159 |
+
#: app/controllers/PrliAppController.php:135
|
2160 |
+
msgid "Categories"
|
2161 |
msgstr ""
|
2162 |
|
2163 |
+
#: pro/app/controllers/PlpPrettyBarController.php:50
|
2164 |
+
msgid "Logo Image URL must be a correctly formatted URL"
|
|
|
2165 |
msgstr ""
|
2166 |
|
2167 |
+
#: pro/app/controllers/PlpPrettyBarController.php:54
|
2168 |
+
msgid "Background Image URL must be a correctly formatted URL"
|
|
|
2169 |
msgstr ""
|
2170 |
|
2171 |
+
#: pro/app/controllers/PlpPrettyBarController.php:60
|
2172 |
+
msgid "PrettyBar Background Color must be an actual RGB Value"
|
|
|
|
|
2173 |
msgstr ""
|
2174 |
|
2175 |
+
#: pro/app/controllers/PlpPrettyBarController.php:64
|
2176 |
+
msgid "PrettyBar Text Color must be an actual RGB Value"
|
|
|
2177 |
msgstr ""
|
2178 |
|
2179 |
+
#: pro/app/controllers/PlpPrettyBarController.php:68
|
2180 |
+
msgid "PrettyBar Link Color must be an actual RGB Value"
|
|
|
2181 |
msgstr ""
|
2182 |
|
2183 |
+
#: pro/app/controllers/PlpPrettyBarController.php:72
|
2184 |
+
#: pro/app/controllers/PlpPrettyBarController.php:76
|
2185 |
+
msgid "PrettyBar Hover Color must be an actual RGB Value"
|
|
|
2186 |
msgstr ""
|
2187 |
|
2188 |
+
#: pro/app/controllers/PlpPrettyBarController.php:80
|
2189 |
+
msgid "PrettyBar Title Character Limit must not be blank"
|
|
|
2190 |
msgstr ""
|
2191 |
|
2192 |
+
#: pro/app/controllers/PlpPrettyBarController.php:84
|
2193 |
+
msgid "PrettyBar Description Character Limit must not be blank"
|
|
|
2194 |
msgstr ""
|
2195 |
|
2196 |
+
#: pro/app/controllers/PlpPrettyBarController.php:88
|
2197 |
+
msgid "PrettyBar Link Character Limit must not be blank"
|
|
|
2198 |
msgstr ""
|
2199 |
|
2200 |
+
#: pro/app/controllers/PlpPrettyBarController.php:92
|
2201 |
+
msgid "PrettyBar Title Character Limit must be a number"
|
|
|
2202 |
msgstr ""
|
2203 |
|
2204 |
+
#: pro/app/controllers/PlpPrettyBarController.php:96
|
2205 |
+
msgid "PrettyBar Description Character Limit must be a number"
|
|
|
2206 |
msgstr ""
|
2207 |
|
2208 |
+
#: pro/app/controllers/PlpPrettyBarController.php:100
|
2209 |
+
msgid "PrettyBar Link Character Limit must be a number"
|
|
|
|
|
2210 |
msgstr ""
|
2211 |
|
2212 |
+
#: pro/app/controllers/PlpPostsController.php:50
|
2213 |
+
msgid "Pretty Links Pro"
|
|
|
2214 |
msgstr ""
|
2215 |
|
2216 |
+
#: pro/app/controllers/PlpPostsController.php:54
|
2217 |
+
msgid "Pretty Links Pro Options"
|
|
|
2218 |
msgstr ""
|
2219 |
|
2220 |
+
#: pro/app/controllers/PlpPostsController.php:139
|
2221 |
+
#: pro/app/controllers/PlpPostsController.php:155
|
2222 |
+
#: pro/app/controllers/PlpPostsController.php:237
|
2223 |
+
msgid "Untitled"
|
2224 |
msgstr ""
|
2225 |
|
2226 |
+
#: pro/app/controllers/PlpReportsController.php:14
|
2227 |
+
msgid "Pretty Links Pro | Reports"
|
|
|
2228 |
msgstr ""
|
2229 |
|
2230 |
+
#: pro/app/controllers/PlpReportsController.php:51
|
2231 |
+
msgid "Create a custom link report and analyze your data."
|
|
|
2232 |
msgstr ""
|
2233 |
|
2234 |
+
#: pro/app/controllers/PlpReportsController.php:94
|
2235 |
+
msgid "Your Pretty Link Report was Successfully Created"
|
|
|
2236 |
msgstr ""
|
2237 |
|
2238 |
+
#: pro/app/controllers/PlpReportsController.php:130
|
2239 |
+
msgid "Your Pretty Link Report was Successfully Updated"
|
|
|
2240 |
msgstr ""
|
2241 |
|
2242 |
+
#: pro/app/controllers/PlpReportsController.php:139
|
2243 |
+
msgid "Your Pretty Link Report was Successfully Deleted"
|
|
|
2244 |
msgstr ""
|
2245 |
|
2246 |
+
#: pro/app/controllers/PlpAppController.php:169
|
2247 |
+
msgid "ERROR: Your Pretty Link was unable to be created"
|
|
|
|
|
2248 |
msgstr ""
|
2249 |
|
2250 |
+
#: pro/app/controllers/PlpAppController.php:173
|
2251 |
+
msgid "Unauthorized"
|
|
|
|
|
|
|
2252 |
msgstr ""
|
2253 |
|
2254 |
+
#: pro/app/controllers/PlpPublicLinksController.php:37
|
2255 |
+
#: app/controllers/PrliLinksController.php:796
|
2256 |
+
msgid "Security check failed"
|
|
|
2257 |
msgstr ""
|
2258 |
|
2259 |
+
#: pro/app/controllers/PlpLinkTagsController.php:15
|
2260 |
+
msgctxt "taxonomy general name"
|
2261 |
+
msgid "Link Tags"
|
2262 |
msgstr ""
|
2263 |
|
2264 |
+
#: pro/app/controllers/PlpLinkTagsController.php:16
|
2265 |
+
msgctxt "taxonomy singular name"
|
2266 |
+
msgid "Link Tag"
|
2267 |
msgstr ""
|
2268 |
|
2269 |
+
#: pro/app/controllers/PlpLinkTagsController.php:17
|
2270 |
+
msgid "Search Link Tags"
|
2271 |
msgstr ""
|
2272 |
|
2273 |
+
#: pro/app/controllers/PlpLinkTagsController.php:18
|
2274 |
+
msgid "All Link Tags"
|
2275 |
msgstr ""
|
2276 |
|
2277 |
+
#: pro/app/controllers/PlpLinkTagsController.php:21
|
2278 |
+
msgid "Edit Link Tag"
|
2279 |
msgstr ""
|
2280 |
|
2281 |
+
#: pro/app/controllers/PlpLinkTagsController.php:22
|
2282 |
+
msgid "Update Link Tag"
|
2283 |
msgstr ""
|
2284 |
|
2285 |
+
#: pro/app/controllers/PlpLinkTagsController.php:23
|
2286 |
+
msgid "Add New Link Tag"
|
2287 |
msgstr ""
|
2288 |
|
2289 |
+
#: pro/app/controllers/PlpLinkTagsController.php:24
|
2290 |
+
msgid "New Link Tag Name"
|
|
|
2291 |
msgstr ""
|
2292 |
|
2293 |
+
#: pro/app/controllers/PlpLinkTagsController.php:25
|
2294 |
+
msgid "Separate Link Tags with commas"
|
|
|
2295 |
msgstr ""
|
2296 |
|
2297 |
+
#: pro/app/controllers/PlpLinkTagsController.php:26
|
2298 |
+
msgid "Add or remove Link Tags"
|
|
|
2299 |
msgstr ""
|
2300 |
|
2301 |
+
#: pro/app/controllers/PlpLinkTagsController.php:27
|
2302 |
+
msgid "Choose from the most used Link Tags"
|
|
|
2303 |
msgstr ""
|
2304 |
|
2305 |
+
#: pro/app/controllers/PlpLinkTagsController.php:28
|
2306 |
+
msgid "No Link Tags found."
|
|
|
2307 |
msgstr ""
|
2308 |
|
2309 |
+
#: pro/app/controllers/PlpLinkTagsController.php:29
|
2310 |
+
#: app/controllers/PrliLinksController.php:466
|
2311 |
+
#: app/controllers/PrliAppController.php:143
|
2312 |
+
msgid "Tags"
|
2313 |
msgstr ""
|
2314 |
|
2315 |
+
#: pro/app/controllers/PlpImportExportController.php:14
|
2316 |
+
msgid "Pretty Links Pro | Import / Export"
|
|
|
2317 |
msgstr ""
|
2318 |
|
2319 |
+
#: pro/app/controllers/PlpImportExportController.php:15
|
2320 |
+
#: app/controllers/PrliUpdateController.php:510
|
2321 |
+
#: app/controllers/PrliAppController.php:158
|
2322 |
+
#: app/controllers/PrliAppController.php:159
|
2323 |
+
msgid "Import / Export"
|
2324 |
msgstr ""
|
2325 |
|
2326 |
+
#: pro/app/controllers/PlpImportExportController.php:34
|
2327 |
+
msgid "Import file not found."
|
|
|
2328 |
msgstr ""
|
2329 |
|
2330 |
+
#: pro/app/controllers/PlpImportExportController.php:50
|
2331 |
+
msgid "Import file could not be opened."
|
|
|
2332 |
msgstr ""
|
2333 |
|
2334 |
+
#: pro/app/controllers/PlpOptionsController.php:98
|
2335 |
+
msgid "Keywords Per Page is required"
|
|
|
2336 |
msgstr ""
|
2337 |
|
2338 |
+
#: pro/app/controllers/PlpOptionsController.php:102
|
2339 |
+
msgid "Keyword Links Per Page is required"
|
|
|
2340 |
msgstr ""
|
2341 |
|
2342 |
+
#: pro/app/controllers/PlpOptionsController.php:107
|
2343 |
+
msgid "You need to enter a valid Pretty Link Base URL now that you have selected \"Use an alternate base url for your Pretty Links\""
|
|
|
|
|
2344 |
msgstr ""
|
2345 |
|
2346 |
+
#: pro/app/controllers/PlpOptionsController.php:112
|
2347 |
+
msgid "You need to enter a valid Public Link Display URL now that you have selected \"Use a custom public link display page\""
|
|
|
2348 |
msgstr ""
|
2349 |
|
2350 |
+
#: pro/app/controllers/PlpOptionsController.php:118
|
2351 |
+
msgid "Pretty Bar Attribution URL must be a correctly formatted URL"
|
|
|
2352 |
msgstr ""
|
2353 |
|
2354 |
+
#: pro/app/widgets/PlpPublicLinksWidget.php:11
|
2355 |
+
msgid "Create a Short URL"
|
|
|
|
|
2356 |
msgstr ""
|
2357 |
|
2358 |
+
#: pro/app/widgets/PlpPublicLinksWidget.php:13
|
2359 |
+
msgid "Displays a form to create a Pretty Link."
|
|
|
2360 |
msgstr ""
|
2361 |
|
2362 |
+
#: pro/app/widgets/PlpPublicLinksWidget.php:60
|
2363 |
+
msgid "Enter a URL: "
|
|
|
2364 |
msgstr ""
|
2365 |
|
2366 |
+
#: pro/app/widgets/PlpPublicLinksWidget.php:64
|
2367 |
+
msgid "Label Text:"
|
|
|
|
|
2368 |
msgstr ""
|
2369 |
|
2370 |
+
#: pro/app/widgets/PlpPublicLinksWidget.php:65
|
2371 |
+
msgid "Button Text:"
|
|
|
2372 |
msgstr ""
|
2373 |
|
2374 |
+
#: pro/app/widgets/PlpPublicLinksWidget.php:65
|
2375 |
+
msgid "if left blank, no button will display"
|
|
|
2376 |
msgstr ""
|
2377 |
|
2378 |
+
#: pro/app/widgets/PlpPublicLinksWidget.php:71
|
2379 |
+
msgid "Permanent/301"
|
|
|
|
|
2380 |
msgstr ""
|
2381 |
|
2382 |
+
#: pro/app/widgets/PlpPublicLinksWidget.php:72
|
2383 |
+
msgid "Temporary/302"
|
|
|
2384 |
msgstr ""
|
2385 |
|
2386 |
+
#: pro/app/widgets/PlpPublicLinksWidget.php:73
|
2387 |
+
msgid "Temporary/307"
|
|
|
2388 |
msgstr ""
|
2389 |
|
2390 |
+
#: pro/app/widgets/PlpPublicLinksWidget.php:74
|
2391 |
+
msgid "PrettyBar"
|
|
|
|
|
2392 |
msgstr ""
|
2393 |
|
2394 |
+
#: pro/app/widgets/PlpPublicLinksWidget.php:80
|
2395 |
+
msgid "Tracking Enabled:"
|
|
|
2396 |
msgstr ""
|
2397 |
|
2398 |
+
#: pro/i18n/countries.php:5
|
2399 |
+
msgid "Afghanistan"
|
|
|
2400 |
msgstr ""
|
2401 |
|
2402 |
+
#: pro/i18n/countries.php:6
|
2403 |
+
msgid "Åland Islands"
|
|
|
|
|
2404 |
msgstr ""
|
2405 |
|
2406 |
+
#: pro/i18n/countries.php:7
|
2407 |
+
msgid "Albania"
|
|
|
2408 |
msgstr ""
|
2409 |
|
2410 |
+
#: pro/i18n/countries.php:8
|
2411 |
+
msgid "Algeria"
|
|
|
2412 |
msgstr ""
|
2413 |
|
2414 |
+
#: pro/i18n/countries.php:9
|
2415 |
+
msgid "Andorra"
|
|
|
|
|
2416 |
msgstr ""
|
2417 |
|
2418 |
+
#: pro/i18n/countries.php:10
|
2419 |
+
msgid "Angola"
|
|
|
2420 |
msgstr ""
|
2421 |
|
2422 |
+
#: pro/i18n/countries.php:11
|
2423 |
+
msgid "Anguilla"
|
|
|
2424 |
msgstr ""
|
2425 |
|
2426 |
+
#: pro/i18n/countries.php:12
|
2427 |
+
msgid "Antarctica"
|
|
|
2428 |
msgstr ""
|
2429 |
|
2430 |
+
#: pro/i18n/countries.php:13
|
2431 |
+
msgid "Antigua and Barbuda"
|
|
|
2432 |
msgstr ""
|
2433 |
|
2434 |
+
#: pro/i18n/countries.php:14
|
2435 |
+
msgid "Argentina"
|
|
|
2436 |
msgstr ""
|
2437 |
|
2438 |
+
#: pro/i18n/countries.php:15
|
2439 |
+
msgid "Armenia"
|
|
|
2440 |
msgstr ""
|
2441 |
|
2442 |
+
#: pro/i18n/countries.php:16
|
2443 |
+
msgid "Aruba"
|
|
|
2444 |
msgstr ""
|
2445 |
|
2446 |
+
#: pro/i18n/countries.php:17
|
2447 |
+
msgid "Australia"
|
|
|
2448 |
msgstr ""
|
2449 |
|
2450 |
+
#: pro/i18n/countries.php:18
|
2451 |
+
msgid "Austria"
|
|
|
2452 |
msgstr ""
|
2453 |
|
2454 |
+
#: pro/i18n/countries.php:19
|
2455 |
+
msgid "Azerbaijan"
|
|
|
2456 |
msgstr ""
|
2457 |
|
2458 |
+
#: pro/i18n/countries.php:20
|
2459 |
+
msgid "Bahamas"
|
|
|
2460 |
msgstr ""
|
2461 |
|
2462 |
+
#: pro/i18n/countries.php:21
|
2463 |
+
msgid "Bahrain"
|
|
|
2464 |
msgstr ""
|
2465 |
|
2466 |
+
#: pro/i18n/countries.php:22
|
2467 |
+
msgid "Bangladesh"
|
|
|
|
|
|
|
2468 |
msgstr ""
|
2469 |
|
2470 |
+
#: pro/i18n/countries.php:23
|
2471 |
+
msgid "Barbados"
|
|
|
|
|
2472 |
msgstr ""
|
2473 |
|
2474 |
+
#: pro/i18n/countries.php:24
|
2475 |
+
msgid "Belarus"
|
|
|
2476 |
msgstr ""
|
2477 |
|
2478 |
+
#: pro/i18n/countries.php:25
|
2479 |
+
msgid "Belgium"
|
|
|
2480 |
msgstr ""
|
2481 |
|
2482 |
+
#: pro/i18n/countries.php:26
|
2483 |
+
msgid "Belau"
|
|
|
|
|
2484 |
msgstr ""
|
2485 |
|
2486 |
+
#: pro/i18n/countries.php:27
|
2487 |
+
msgid "Belize"
|
|
|
2488 |
msgstr ""
|
2489 |
|
2490 |
+
#: pro/i18n/countries.php:28
|
2491 |
+
msgid "Benin"
|
|
|
2492 |
msgstr ""
|
2493 |
|
2494 |
+
#: pro/i18n/countries.php:29
|
2495 |
+
msgid "Bermuda"
|
|
|
2496 |
msgstr ""
|
2497 |
|
2498 |
+
#: pro/i18n/countries.php:30
|
2499 |
+
msgid "Bhutan"
|
|
|
|
|
2500 |
msgstr ""
|
2501 |
|
2502 |
+
#: pro/i18n/countries.php:31
|
2503 |
+
msgid "Bolivia"
|
|
|
2504 |
msgstr ""
|
2505 |
|
2506 |
+
#: pro/i18n/countries.php:32
|
2507 |
+
msgid "Bonaire, Saint Eustatius and Saba"
|
|
|
2508 |
msgstr ""
|
2509 |
|
2510 |
+
#: pro/i18n/countries.php:33
|
2511 |
+
msgid "Bosnia and Herzegovina"
|
|
|
|
|
2512 |
msgstr ""
|
2513 |
|
2514 |
+
#: pro/i18n/countries.php:34
|
2515 |
+
msgid "Botswana"
|
|
|
|
|
2516 |
msgstr ""
|
2517 |
|
2518 |
+
#: pro/i18n/countries.php:35
|
2519 |
+
msgid "Bouvet Island"
|
|
|
|
|
2520 |
msgstr ""
|
2521 |
|
2522 |
+
#: pro/i18n/countries.php:36
|
2523 |
+
msgid "Brazil"
|
|
|
|
|
2524 |
msgstr ""
|
2525 |
|
2526 |
+
#: pro/i18n/countries.php:37
|
2527 |
+
msgid "British Indian Ocean Territory"
|
|
|
2528 |
msgstr ""
|
2529 |
|
2530 |
+
#: pro/i18n/countries.php:38
|
2531 |
+
msgid "British Virgin Islands"
|
|
|
|
|
2532 |
msgstr ""
|
2533 |
|
2534 |
+
#: pro/i18n/countries.php:39
|
2535 |
+
msgid "Brunei"
|
|
|
2536 |
msgstr ""
|
2537 |
|
2538 |
+
#: pro/i18n/countries.php:40
|
2539 |
+
msgid "Bulgaria"
|
|
|
2540 |
msgstr ""
|
2541 |
|
2542 |
+
#: pro/i18n/countries.php:41
|
2543 |
+
msgid "Burkina Faso"
|
|
|
2544 |
msgstr ""
|
2545 |
|
2546 |
+
#: pro/i18n/countries.php:42
|
2547 |
+
msgid "Burundi"
|
|
|
2548 |
msgstr ""
|
2549 |
|
2550 |
+
#: pro/i18n/countries.php:43
|
2551 |
+
msgid "Cambodia"
|
|
|
|
|
2552 |
msgstr ""
|
2553 |
|
2554 |
+
#: pro/i18n/countries.php:44
|
2555 |
+
msgid "Cameroon"
|
2556 |
msgstr ""
|
2557 |
|
2558 |
+
#: pro/i18n/countries.php:45
|
2559 |
+
msgid "Canada"
|
2560 |
msgstr ""
|
2561 |
|
2562 |
+
#: pro/i18n/countries.php:46
|
2563 |
+
msgid "Cape Verde"
|
2564 |
msgstr ""
|
2565 |
|
2566 |
+
#: pro/i18n/countries.php:47
|
2567 |
+
msgid "Cayman Islands"
|
2568 |
msgstr ""
|
2569 |
|
2570 |
+
#: pro/i18n/countries.php:48
|
2571 |
+
msgid "Central African Republic"
|
2572 |
msgstr ""
|
2573 |
|
2574 |
+
#: pro/i18n/countries.php:49
|
2575 |
+
msgid "Chad"
|
2576 |
msgstr ""
|
2577 |
|
2578 |
+
#: pro/i18n/countries.php:50
|
2579 |
+
msgid "Chile"
|
2580 |
msgstr ""
|
2581 |
|
2582 |
+
#: pro/i18n/countries.php:51
|
2583 |
+
msgid "China"
|
2584 |
msgstr ""
|
2585 |
|
2586 |
+
#: pro/i18n/countries.php:52
|
2587 |
+
msgid "Christmas Island"
|
2588 |
msgstr ""
|
2589 |
|
2590 |
+
#: pro/i18n/countries.php:53
|
2591 |
+
msgid "Cocos/Keeling Islands"
|
|
|
|
|
2592 |
msgstr ""
|
2593 |
|
2594 |
+
#: pro/i18n/countries.php:54
|
2595 |
+
msgid "Colombia"
|
2596 |
msgstr ""
|
2597 |
|
2598 |
+
#: pro/i18n/countries.php:55
|
2599 |
+
msgid "Comoros"
|
2600 |
msgstr ""
|
2601 |
|
2602 |
+
#: pro/i18n/countries.php:56
|
2603 |
+
msgid "Congo (Brazzaville)"
|
2604 |
msgstr ""
|
2605 |
|
2606 |
+
#: pro/i18n/countries.php:57
|
2607 |
+
msgid "Congo (Kinshasa)"
|
|
|
2608 |
msgstr ""
|
2609 |
|
2610 |
+
#: pro/i18n/countries.php:58
|
2611 |
+
msgid "Cook Islands"
|
2612 |
msgstr ""
|
2613 |
|
2614 |
+
#: pro/i18n/countries.php:59
|
2615 |
+
msgid "Costa Rica"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2616 |
msgstr ""
|
2617 |
|
2618 |
+
#: pro/i18n/countries.php:60
|
2619 |
+
msgid "Croatia"
|
|
|
2620 |
msgstr ""
|
2621 |
|
2622 |
+
#: pro/i18n/countries.php:61
|
2623 |
+
msgid "Cuba"
|
|
|
|
|
2624 |
msgstr ""
|
2625 |
|
2626 |
+
#: pro/i18n/countries.php:62
|
2627 |
+
msgid "CuraÇao"
|
|
|
|
|
2628 |
msgstr ""
|
2629 |
|
2630 |
+
#: pro/i18n/countries.php:63
|
2631 |
+
msgid "Cyprus"
|
|
|
|
|
2632 |
msgstr ""
|
2633 |
|
2634 |
+
#: pro/i18n/countries.php:64
|
2635 |
+
msgid "Czech Republic"
|
2636 |
msgstr ""
|
2637 |
|
2638 |
+
#: pro/i18n/countries.php:65
|
2639 |
+
msgid "Denmark"
|
|
|
2640 |
msgstr ""
|
2641 |
|
2642 |
+
#: pro/i18n/countries.php:66
|
2643 |
+
msgid "Djibouti"
|
2644 |
msgstr ""
|
2645 |
|
2646 |
+
#: pro/i18n/countries.php:67
|
2647 |
+
msgid "Dominica"
|
2648 |
msgstr ""
|
2649 |
|
2650 |
+
#: pro/i18n/countries.php:68
|
2651 |
+
msgid "Dominican Republic"
|
2652 |
msgstr ""
|
2653 |
|
2654 |
+
#: pro/i18n/countries.php:69
|
2655 |
+
msgid "Ecuador"
|
2656 |
msgstr ""
|
2657 |
|
2658 |
+
#: pro/i18n/countries.php:70
|
2659 |
+
msgid "Egypt"
|
|
|
2660 |
msgstr ""
|
2661 |
|
2662 |
+
#: pro/i18n/countries.php:71
|
2663 |
+
msgid "El Salvador"
|
|
|
2664 |
msgstr ""
|
2665 |
|
2666 |
+
#: pro/i18n/countries.php:72
|
2667 |
+
msgid "Equatorial Guinea"
|
|
|
|
|
2668 |
msgstr ""
|
2669 |
|
2670 |
+
#: pro/i18n/countries.php:73
|
2671 |
+
msgid "Eritrea"
|
2672 |
msgstr ""
|
2673 |
|
2674 |
+
#: pro/i18n/countries.php:74
|
2675 |
+
msgid "Estonia"
|
|
|
2676 |
msgstr ""
|
2677 |
|
2678 |
+
#: pro/i18n/countries.php:75
|
2679 |
+
msgid "Ethiopia"
|
2680 |
msgstr ""
|
2681 |
|
2682 |
+
#: pro/i18n/countries.php:76
|
2683 |
+
msgid "Falkland Islands"
|
|
|
2684 |
msgstr ""
|
2685 |
|
2686 |
+
#: pro/i18n/countries.php:77
|
2687 |
+
msgid "Faroe Islands"
|
2688 |
msgstr ""
|
2689 |
|
2690 |
+
#: pro/i18n/countries.php:78
|
2691 |
+
msgid "Fiji"
|
2692 |
msgstr ""
|
2693 |
|
2694 |
+
#: pro/i18n/countries.php:79
|
2695 |
+
msgid "Finland"
|
2696 |
msgstr ""
|
2697 |
|
2698 |
+
#: pro/i18n/countries.php:80
|
2699 |
+
msgid "France"
|
2700 |
msgstr ""
|
2701 |
|
2702 |
+
#: pro/i18n/countries.php:81
|
2703 |
+
msgid "French Guiana"
|
2704 |
msgstr ""
|
2705 |
|
2706 |
+
#: pro/i18n/countries.php:82
|
2707 |
+
msgid "French Polynesia"
|
2708 |
msgstr ""
|
2709 |
|
2710 |
+
#: pro/i18n/countries.php:83
|
2711 |
+
msgid "French Southern Territories"
|
|
|
2712 |
msgstr ""
|
2713 |
|
2714 |
+
#: pro/i18n/countries.php:84
|
2715 |
+
msgid "Gabon"
|
2716 |
msgstr ""
|
2717 |
|
2718 |
+
#: pro/i18n/countries.php:85
|
2719 |
+
msgid "Gambia"
|
2720 |
msgstr ""
|
2721 |
|
2722 |
+
#: pro/i18n/countries.php:86
|
2723 |
+
msgid "Georgia"
|
2724 |
msgstr ""
|
2725 |
|
2726 |
+
#: pro/i18n/countries.php:87
|
2727 |
+
msgid "Germany"
|
2728 |
msgstr ""
|
2729 |
|
2730 |
+
#: pro/i18n/countries.php:88
|
2731 |
+
msgid "Ghana"
|
2732 |
msgstr ""
|
2733 |
|
2734 |
+
#: pro/i18n/countries.php:89
|
2735 |
+
msgid "Gibraltar"
|
2736 |
msgstr ""
|
2737 |
|
2738 |
+
#: pro/i18n/countries.php:90
|
2739 |
+
msgid "Greece"
|
2740 |
msgstr ""
|
2741 |
|
2742 |
+
#: pro/i18n/countries.php:91
|
2743 |
+
msgid "Greenland"
|
2744 |
msgstr ""
|
2745 |
|
2746 |
+
#: pro/i18n/countries.php:92
|
2747 |
+
msgid "Grenada"
|
2748 |
msgstr ""
|
2749 |
|
2750 |
+
#: pro/i18n/countries.php:93
|
2751 |
+
msgid "Guadeloupe"
|
2752 |
msgstr ""
|
2753 |
|
2754 |
+
#: pro/i18n/countries.php:94
|
2755 |
+
msgid "Guatemala"
|
2756 |
msgstr ""
|
2757 |
|
2758 |
+
#: pro/i18n/countries.php:95
|
2759 |
+
msgid "Guernsey"
|
2760 |
msgstr ""
|
2761 |
|
2762 |
+
#: pro/i18n/countries.php:96
|
2763 |
+
msgid "Guinea"
|
2764 |
msgstr ""
|
2765 |
|
2766 |
+
#: pro/i18n/countries.php:97
|
2767 |
+
msgid "Guinea-Bissau"
|
2768 |
msgstr ""
|
2769 |
|
2770 |
+
#: pro/i18n/countries.php:98
|
2771 |
+
msgid "Guyana"
|
2772 |
msgstr ""
|
2773 |
|
2774 |
+
#: pro/i18n/countries.php:99
|
2775 |
+
msgid "Haiti"
|
2776 |
msgstr ""
|
2777 |
|
2778 |
+
#: pro/i18n/countries.php:100
|
2779 |
+
msgid "Heard Island and McDonald Islands"
|
2780 |
msgstr ""
|
2781 |
|
2782 |
+
#: pro/i18n/countries.php:101
|
2783 |
+
msgid "Honduras"
|
2784 |
msgstr ""
|
2785 |
|
2786 |
+
#: pro/i18n/countries.php:102
|
2787 |
+
msgid "Hong Kong"
|
2788 |
msgstr ""
|
2789 |
|
2790 |
+
#: pro/i18n/countries.php:103
|
2791 |
+
msgid "Hungary"
|
2792 |
msgstr ""
|
2793 |
|
2794 |
+
#: pro/i18n/countries.php:104
|
2795 |
+
msgid "Iceland"
|
2796 |
msgstr ""
|
2797 |
|
2798 |
+
#: pro/i18n/countries.php:105
|
2799 |
+
msgid "India"
|
|
|
2800 |
msgstr ""
|
2801 |
|
2802 |
+
#: pro/i18n/countries.php:106
|
2803 |
+
msgid "Indonesia"
|
2804 |
+
msgstr ""
|
2805 |
+
|
2806 |
+
#: pro/i18n/countries.php:107
|
2807 |
+
msgid "Iran"
|
2808 |
msgstr ""
|
2809 |
|
2810 |
+
#: pro/i18n/countries.php:108
|
2811 |
+
msgid "Iraq"
|
2812 |
msgstr ""
|
2813 |
|
2814 |
+
#: pro/i18n/countries.php:109
|
2815 |
+
msgid "Republic of Ireland"
|
2816 |
msgstr ""
|
2817 |
|
2818 |
+
#: pro/i18n/countries.php:110
|
2819 |
+
msgid "Isle of Man"
|
2820 |
msgstr ""
|
2821 |
|
2822 |
+
#: pro/i18n/countries.php:111
|
2823 |
+
msgid "Israel"
|
2824 |
msgstr ""
|
2825 |
|
2826 |
+
#: pro/i18n/countries.php:112
|
2827 |
+
msgid "Italy"
|
2828 |
msgstr ""
|
2829 |
|
2830 |
+
#: pro/i18n/countries.php:113
|
2831 |
+
msgid "Ivory Coast"
|
2832 |
msgstr ""
|
2833 |
|
2834 |
+
#: pro/i18n/countries.php:114
|
2835 |
+
msgid "Jamaica"
|
2836 |
msgstr ""
|
2837 |
|
2838 |
+
#: pro/i18n/countries.php:115
|
2839 |
+
msgid "Japan"
|
2840 |
msgstr ""
|
2841 |
|
2842 |
+
#: pro/i18n/countries.php:116
|
2843 |
+
msgid "Jersey"
|
2844 |
msgstr ""
|
2845 |
|
2846 |
+
#: pro/i18n/countries.php:117
|
2847 |
+
msgid "Jordan"
|
2848 |
msgstr ""
|
2849 |
|
2850 |
+
#: pro/i18n/countries.php:118
|
2851 |
+
msgid "Kazakhstan"
|
2852 |
msgstr ""
|
2853 |
|
2854 |
+
#: pro/i18n/countries.php:119
|
2855 |
+
msgid "Kenya"
|
2856 |
msgstr ""
|
2857 |
|
2858 |
+
#: pro/i18n/countries.php:120
|
2859 |
+
msgid "Kiribati"
|
2860 |
msgstr ""
|
2861 |
|
2862 |
+
#: pro/i18n/countries.php:121
|
2863 |
+
msgid "Kuwait"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
+
#: pro/i18n/countries.php:122
|
2867 |
+
msgid "Kyrgyzstan"
|
2868 |
msgstr ""
|
2869 |
|
2870 |
+
#: pro/i18n/countries.php:123
|
2871 |
+
msgid "Laos"
|
2872 |
msgstr ""
|
2873 |
|
2874 |
+
#: pro/i18n/countries.php:124
|
2875 |
+
msgid "Latvia"
|
2876 |
msgstr ""
|
2877 |
|
2878 |
+
#: pro/i18n/countries.php:125
|
2879 |
+
msgid "Lebanon"
|
2880 |
msgstr ""
|
2881 |
|
2882 |
+
#: pro/i18n/countries.php:126
|
2883 |
+
msgid "Lesotho"
|
2884 |
msgstr ""
|
2885 |
|
2886 |
+
#: pro/i18n/countries.php:127
|
2887 |
+
msgid "Liberia"
|
2888 |
msgstr ""
|
2889 |
|
2890 |
+
#: pro/i18n/countries.php:128
|
2891 |
+
msgid "Libya"
|
2892 |
msgstr ""
|
2893 |
|
2894 |
+
#: pro/i18n/countries.php:129
|
2895 |
+
msgid "Liechtenstein"
|
2896 |
msgstr ""
|
2897 |
|
2898 |
+
#: pro/i18n/countries.php:130
|
2899 |
+
msgid "Lithuania"
|
2900 |
msgstr ""
|
2901 |
|
2902 |
+
#: pro/i18n/countries.php:131
|
2903 |
+
msgid "Luxembourg"
|
2904 |
msgstr ""
|
2905 |
|
2906 |
+
#: pro/i18n/countries.php:132
|
2907 |
+
msgid "Macao S.A.R., China"
|
2908 |
msgstr ""
|
2909 |
|
2910 |
+
#: pro/i18n/countries.php:133
|
2911 |
+
msgid "Macedonia"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
+
#: pro/i18n/countries.php:134
|
2915 |
+
msgid "Madagascar"
|
2916 |
msgstr ""
|
2917 |
|
2918 |
+
#: pro/i18n/countries.php:135
|
2919 |
+
msgid "Malawi"
|
|
|
2920 |
msgstr ""
|
2921 |
|
2922 |
+
#: pro/i18n/countries.php:136
|
2923 |
+
msgid "Malaysia"
|
2924 |
msgstr ""
|
2925 |
|
2926 |
+
#: pro/i18n/countries.php:137
|
2927 |
+
msgid "Maldives"
|
|
|
2928 |
msgstr ""
|
2929 |
|
2930 |
+
#: pro/i18n/countries.php:138
|
2931 |
+
msgid "Mali"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
+
#: pro/i18n/countries.php:139
|
2935 |
+
msgid "Malta"
|
2936 |
msgstr ""
|
2937 |
|
2938 |
+
#: pro/i18n/countries.php:140
|
2939 |
+
msgid "Marshall Islands"
|
2940 |
msgstr ""
|
2941 |
|
2942 |
+
#: pro/i18n/countries.php:141
|
2943 |
+
msgid "Martinique"
|
2944 |
msgstr ""
|
2945 |
|
2946 |
+
#: pro/i18n/countries.php:142
|
2947 |
+
msgid "Mauritania"
|
2948 |
msgstr ""
|
2949 |
|
2950 |
+
#: pro/i18n/countries.php:143
|
2951 |
+
msgid "Mauritius"
|
2952 |
msgstr ""
|
2953 |
|
2954 |
+
#: pro/i18n/countries.php:144
|
2955 |
+
msgid "Mayotte"
|
2956 |
msgstr ""
|
2957 |
|
2958 |
+
#: pro/i18n/countries.php:145
|
2959 |
+
msgid "Mexico"
|
2960 |
msgstr ""
|
2961 |
|
2962 |
+
#: pro/i18n/countries.php:146
|
2963 |
+
msgid "Micronesia"
|
2964 |
msgstr ""
|
2965 |
|
2966 |
+
#: pro/i18n/countries.php:147
|
2967 |
+
msgid "Moldova"
|
2968 |
msgstr ""
|
2969 |
|
2970 |
+
#: pro/i18n/countries.php:148
|
2971 |
+
msgid "Monaco"
|
2972 |
msgstr ""
|
2973 |
|
2974 |
+
#: pro/i18n/countries.php:149
|
2975 |
+
msgid "Mongolia"
|
2976 |
msgstr ""
|
2977 |
|
2978 |
+
#: pro/i18n/countries.php:150
|
2979 |
+
msgid "Montenegro"
|
|
|
2980 |
msgstr ""
|
2981 |
|
2982 |
+
#: pro/i18n/countries.php:151
|
2983 |
+
msgid "Montserrat"
|
|
|
2984 |
msgstr ""
|
2985 |
|
2986 |
+
#: pro/i18n/countries.php:152
|
2987 |
+
msgid "Morocco"
|
2988 |
msgstr ""
|
2989 |
|
2990 |
+
#: pro/i18n/countries.php:153
|
2991 |
+
msgid "Mozambique"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
+
#: pro/i18n/countries.php:154
|
2995 |
+
msgid "Myanmar"
|
2996 |
msgstr ""
|
2997 |
|
2998 |
+
#: pro/i18n/countries.php:155
|
2999 |
+
msgid "Namibia"
|
3000 |
msgstr ""
|
3001 |
|
3002 |
+
#: pro/i18n/countries.php:156
|
3003 |
+
msgid "Nauru"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
+
#: pro/i18n/countries.php:157
|
3007 |
+
msgid "Nepal"
|
3008 |
msgstr ""
|
3009 |
|
3010 |
+
#: pro/i18n/countries.php:158
|
3011 |
+
msgid "Netherlands"
|
3012 |
msgstr ""
|
3013 |
|
3014 |
+
#: pro/i18n/countries.php:159
|
3015 |
+
msgid "Netherlands Antilles"
|
3016 |
msgstr ""
|
3017 |
|
3018 |
+
#: pro/i18n/countries.php:160
|
3019 |
+
msgid "New Caledonia"
|
3020 |
msgstr ""
|
3021 |
|
3022 |
+
#: pro/i18n/countries.php:161
|
3023 |
+
msgid "New Zealand"
|
3024 |
msgstr ""
|
3025 |
|
3026 |
+
#: pro/i18n/countries.php:162
|
3027 |
+
msgid "Nicaragua"
|
3028 |
msgstr ""
|
3029 |
|
3030 |
+
#: pro/i18n/countries.php:163
|
3031 |
+
msgid "Niger"
|
3032 |
msgstr ""
|
3033 |
|
3034 |
+
#: pro/i18n/countries.php:164
|
3035 |
+
msgid "Nigeria"
|
3036 |
msgstr ""
|
3037 |
|
3038 |
+
#: pro/i18n/countries.php:165
|
3039 |
+
msgid "Niue"
|
3040 |
msgstr ""
|
3041 |
|
3042 |
+
#: pro/i18n/countries.php:166
|
3043 |
+
msgid "Norfolk Island"
|
3044 |
msgstr ""
|
3045 |
|
3046 |
+
#: pro/i18n/countries.php:167
|
3047 |
+
msgid "North Korea"
|
3048 |
msgstr ""
|
3049 |
|
3050 |
+
#: pro/i18n/countries.php:168
|
3051 |
+
msgid "Norway"
|
3052 |
msgstr ""
|
3053 |
|
3054 |
+
#: pro/i18n/countries.php:169
|
3055 |
+
msgid "Oman"
|
|
|
|
|
3056 |
msgstr ""
|
3057 |
|
3058 |
+
#: pro/i18n/countries.php:170
|
3059 |
+
msgid "Pakistan"
|
3060 |
msgstr ""
|
3061 |
|
3062 |
+
#: pro/i18n/countries.php:171
|
3063 |
+
msgid "Palestinian Territory"
|
3064 |
msgstr ""
|
3065 |
|
3066 |
+
#: pro/i18n/countries.php:172
|
3067 |
+
msgid "Panama"
|
3068 |
msgstr ""
|
3069 |
|
3070 |
+
#: pro/i18n/countries.php:173
|
3071 |
+
msgid "Papua New Guinea"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
+
#: pro/i18n/countries.php:174
|
3075 |
+
msgid "Paraguay"
|
3076 |
msgstr ""
|
3077 |
|
3078 |
+
#: pro/i18n/countries.php:175
|
3079 |
+
msgid "Peru"
|
|
|
3080 |
msgstr ""
|
3081 |
|
3082 |
+
#: pro/i18n/countries.php:176
|
3083 |
+
msgid "Philippines"
|
3084 |
msgstr ""
|
3085 |
|
3086 |
+
#: pro/i18n/countries.php:177
|
3087 |
+
msgid "Pitcairn"
|
3088 |
msgstr ""
|
3089 |
|
3090 |
+
#: pro/i18n/countries.php:178
|
3091 |
+
msgid "Poland"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
+
#: pro/i18n/countries.php:179
|
3095 |
+
msgid "Portugal"
|
3096 |
msgstr ""
|
3097 |
|
3098 |
+
#: pro/i18n/countries.php:180
|
3099 |
+
msgid "Qatar"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
+
#: pro/i18n/countries.php:181
|
3103 |
+
msgid "Reunion"
|
3104 |
msgstr ""
|
3105 |
|
3106 |
+
#: pro/i18n/countries.php:182
|
3107 |
+
msgid "Romania"
|
|
|
3108 |
msgstr ""
|
3109 |
|
3110 |
+
#: pro/i18n/countries.php:183
|
3111 |
+
msgid "Russia"
|
|
|
|
|
3112 |
msgstr ""
|
3113 |
|
3114 |
+
#: pro/i18n/countries.php:184
|
3115 |
+
msgid "Rwanda"
|
3116 |
msgstr ""
|
3117 |
|
3118 |
+
#: pro/i18n/countries.php:185
|
3119 |
+
msgid "Saint Barthélemy"
|
|
|
3120 |
msgstr ""
|
3121 |
|
3122 |
+
#: pro/i18n/countries.php:186
|
3123 |
+
msgid "Saint Helena"
|
3124 |
msgstr ""
|
3125 |
|
3126 |
+
#: pro/i18n/countries.php:187
|
3127 |
+
msgid "Saint Kitts and Nevis"
|
3128 |
msgstr ""
|
3129 |
|
3130 |
+
#: pro/i18n/countries.php:188
|
3131 |
+
msgid "Saint Lucia"
|
3132 |
msgstr ""
|
3133 |
|
3134 |
+
#: pro/i18n/countries.php:189
|
3135 |
+
msgid "Saint Martin (French part)"
|
3136 |
msgstr ""
|
3137 |
|
3138 |
+
#: pro/i18n/countries.php:190
|
3139 |
+
msgid "Saint Martin (Dutch part)"
|
|
|
3140 |
msgstr ""
|
3141 |
|
3142 |
+
#: pro/i18n/countries.php:191
|
3143 |
+
msgid "Saint Pierre and Miquelon"
|
3144 |
msgstr ""
|
3145 |
|
3146 |
+
#: pro/i18n/countries.php:192
|
3147 |
+
msgid "Saint Vincent and the Grenadines"
|
3148 |
msgstr ""
|
3149 |
|
3150 |
+
#: pro/i18n/countries.php:193
|
3151 |
+
msgid "San Marino"
|
3152 |
msgstr ""
|
3153 |
|
3154 |
+
#: pro/i18n/countries.php:194
|
3155 |
+
msgid "São Tomé and Príncipe"
|
|
|
|
|
|
|
|
|
3156 |
msgstr ""
|
3157 |
|
3158 |
+
#: pro/i18n/countries.php:195
|
3159 |
+
msgid "Saudi Arabia"
|
3160 |
msgstr ""
|
3161 |
|
3162 |
+
#: pro/i18n/countries.php:196
|
3163 |
+
msgid "Senegal"
|
3164 |
msgstr ""
|
3165 |
|
3166 |
+
#: pro/i18n/countries.php:197
|
3167 |
+
msgid "Serbia"
|
3168 |
msgstr ""
|
3169 |
|
3170 |
+
#: pro/i18n/countries.php:198
|
3171 |
+
msgid "Seychelles"
|
3172 |
msgstr ""
|
3173 |
|
3174 |
+
#: pro/i18n/countries.php:199
|
3175 |
+
msgid "Sierra Leone"
|
3176 |
msgstr ""
|
3177 |
|
3178 |
+
#: pro/i18n/countries.php:200
|
3179 |
+
msgid "Singapore"
|
3180 |
msgstr ""
|
3181 |
|
3182 |
+
#: pro/i18n/countries.php:201
|
3183 |
+
msgid "Slovakia"
|
3184 |
msgstr ""
|
3185 |
|
3186 |
+
#: pro/i18n/countries.php:202
|
3187 |
+
msgid "Slovenia"
|
3188 |
msgstr ""
|
3189 |
|
3190 |
+
#: pro/i18n/countries.php:203
|
3191 |
+
msgid "Solomon Islands"
|
3192 |
msgstr ""
|
3193 |
|
3194 |
+
#: pro/i18n/countries.php:204
|
3195 |
+
msgid "Somalia"
|
3196 |
msgstr ""
|
3197 |
|
3198 |
+
#: pro/i18n/countries.php:205
|
3199 |
+
msgid "South Africa"
|
3200 |
msgstr ""
|
3201 |
|
3202 |
+
#: pro/i18n/countries.php:206
|
3203 |
+
msgid "South Georgia/Sandwich Islands"
|
3204 |
msgstr ""
|
3205 |
|
3206 |
+
#: pro/i18n/countries.php:207
|
3207 |
+
msgid "South Korea"
|
3208 |
msgstr ""
|
3209 |
|
3210 |
+
#: pro/i18n/countries.php:208
|
3211 |
+
msgid "South Sudan"
|
3212 |
msgstr ""
|
3213 |
|
3214 |
+
#: pro/i18n/countries.php:209
|
3215 |
+
msgid "Spain"
|
3216 |
msgstr ""
|
3217 |
|
3218 |
+
#: pro/i18n/countries.php:210
|
3219 |
+
msgid "Sri Lanka"
|
3220 |
msgstr ""
|
3221 |
|
3222 |
+
#: pro/i18n/countries.php:211
|
3223 |
+
msgid "Sudan"
|
3224 |
msgstr ""
|
3225 |
|
3226 |
+
#: pro/i18n/countries.php:212
|
3227 |
+
msgid "Suriname"
|
3228 |
msgstr ""
|
3229 |
|
3230 |
+
#: pro/i18n/countries.php:213
|
3231 |
+
msgid "Svalbard and Jan Mayen"
|
3232 |
msgstr ""
|
3233 |
|
3234 |
+
#: pro/i18n/countries.php:214
|
3235 |
+
msgid "Swaziland"
|
|
|
|
|
|
|
|
|
|
|
3236 |
msgstr ""
|
3237 |
|
3238 |
+
#: pro/i18n/countries.php:215
|
3239 |
+
msgid "Sweden"
|
3240 |
msgstr ""
|
3241 |
|
3242 |
+
#: pro/i18n/countries.php:216
|
3243 |
+
msgid "Switzerland"
|
3244 |
msgstr ""
|
3245 |
|
3246 |
+
#: pro/i18n/countries.php:217
|
3247 |
+
msgid "Syria"
|
3248 |
msgstr ""
|
3249 |
|
3250 |
+
#: pro/i18n/countries.php:218
|
3251 |
+
msgid "Taiwan"
|
|
|
3252 |
msgstr ""
|
3253 |
|
3254 |
+
#: pro/i18n/countries.php:219
|
3255 |
+
msgid "Tajikistan"
|
3256 |
msgstr ""
|
3257 |
|
3258 |
+
#: pro/i18n/countries.php:220
|
3259 |
+
msgid "Tanzania"
|
3260 |
msgstr ""
|
3261 |
|
3262 |
+
#: pro/i18n/countries.php:221
|
3263 |
+
msgid "Thailand"
|
|
|
3264 |
msgstr ""
|
3265 |
|
3266 |
+
#: pro/i18n/countries.php:222
|
3267 |
+
msgid "Timor-Leste"
|
3268 |
msgstr ""
|
3269 |
|
3270 |
+
#: pro/i18n/countries.php:223
|
3271 |
+
msgid "Togo"
|
3272 |
msgstr ""
|
3273 |
|
3274 |
+
#: pro/i18n/countries.php:224
|
3275 |
+
msgid "Tokelau"
|
3276 |
msgstr ""
|
3277 |
|
3278 |
+
#: pro/i18n/countries.php:225
|
3279 |
+
msgid "Tonga"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
+
#: pro/i18n/countries.php:226
|
3283 |
+
msgid "Trinidad and Tobago"
|
3284 |
msgstr ""
|
3285 |
|
3286 |
+
#: pro/i18n/countries.php:227
|
3287 |
+
msgid "Tunisia"
|
3288 |
msgstr ""
|
3289 |
|
3290 |
+
#: pro/i18n/countries.php:228
|
3291 |
+
msgid "Turkey"
|
3292 |
+
msgstr ""
|
3293 |
+
|
3294 |
+
#: pro/i18n/countries.php:229
|
3295 |
+
msgid "Turkmenistan"
|
3296 |
msgstr ""
|
3297 |
|
3298 |
+
#: pro/i18n/countries.php:230
|
3299 |
+
msgid "Turks and Caicos Islands"
|
3300 |
msgstr ""
|
3301 |
|
3302 |
+
#: pro/i18n/countries.php:231
|
3303 |
+
msgid "Tuvalu"
|
3304 |
msgstr ""
|
3305 |
|
3306 |
+
#: pro/i18n/countries.php:232
|
3307 |
+
msgid "Uganda"
|
3308 |
msgstr ""
|
3309 |
|
3310 |
+
#: pro/i18n/countries.php:233
|
3311 |
+
msgid "Ukraine"
|
3312 |
msgstr ""
|
3313 |
|
3314 |
+
#: pro/i18n/countries.php:234
|
3315 |
+
msgid "United Arab Emirates"
|
3316 |
msgstr ""
|
3317 |
|
3318 |
+
#: pro/i18n/countries.php:235
|
3319 |
+
msgid "United Kingdom (UK)"
|
3320 |
msgstr ""
|
3321 |
|
3322 |
+
#: pro/i18n/countries.php:236
|
3323 |
+
msgid "United States"
|
3324 |
msgstr ""
|
3325 |
|
3326 |
+
#: pro/i18n/countries.php:237
|
3327 |
+
msgid "Uruguay"
|
3328 |
msgstr ""
|
3329 |
|
3330 |
+
#: pro/i18n/countries.php:238
|
3331 |
+
msgid "Uzbekistan"
|
3332 |
msgstr ""
|
3333 |
|
3334 |
+
#: pro/i18n/countries.php:239
|
3335 |
+
msgid "Vanuatu"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
+
#: pro/i18n/countries.php:240
|
3339 |
+
msgid "Vatican"
|
3340 |
msgstr ""
|
3341 |
|
3342 |
+
#: pro/i18n/countries.php:241
|
3343 |
+
msgid "Venezuela"
|
3344 |
msgstr ""
|
3345 |
|
3346 |
+
#: pro/i18n/countries.php:242
|
3347 |
+
msgid "Vietnam"
|
|
|
3348 |
msgstr ""
|
3349 |
|
3350 |
+
#: pro/i18n/countries.php:243
|
3351 |
+
msgid "Wallis and Futuna"
|
3352 |
msgstr ""
|
3353 |
|
3354 |
+
#: pro/i18n/countries.php:244
|
3355 |
+
msgid "Western Sahara"
|
|
|
3356 |
msgstr ""
|
3357 |
|
3358 |
+
#: pro/i18n/countries.php:245
|
3359 |
+
msgid "Western Samoa"
|
3360 |
msgstr ""
|
3361 |
|
3362 |
+
#: pro/i18n/countries.php:246
|
3363 |
+
msgid "Yemen"
|
3364 |
msgstr ""
|
3365 |
|
3366 |
+
#: pro/i18n/countries.php:247
|
3367 |
+
msgid "Zambia"
|
3368 |
msgstr ""
|
3369 |
|
3370 |
+
#: pro/i18n/countries.php:248
|
3371 |
+
msgid "Zimbabwe"
|
3372 |
msgstr ""
|
3373 |
|
3374 |
+
#: app/helpers/PrliAppHelper.php:20
|
3375 |
+
#: app/views/links/form.php:30
|
3376 |
+
#: app/controllers/PrliLinksController.php:479
|
3377 |
+
#: app/controllers/PrliLinksController.php:485
|
3378 |
+
#: app/controllers/PrliLinksController.php:491
|
3379 |
+
msgid "Pro"
|
3380 |
msgstr ""
|
3381 |
|
3382 |
+
#: app/helpers/PrliAppHelper.php:21
|
3383 |
+
msgid "Upgrade to Pro to unlock this feature"
|
|
|
3384 |
msgstr ""
|
3385 |
|
3386 |
+
#: app/helpers/PrliLinksHelper.php:14
|
3387 |
+
#: app/views/links/form_basic.php:15
|
3388 |
+
#: app/views/shared/tinymce_form_popup.php:32
|
3389 |
+
msgid "307 (Temporary)"
|
3390 |
msgstr ""
|
3391 |
|
3392 |
+
#: app/helpers/PrliLinksHelper.php:15
|
3393 |
+
#: app/views/links/form_basic.php:16
|
3394 |
+
#: app/views/shared/tinymce_form_popup.php:33
|
3395 |
+
msgid "302 (Temporary)"
|
3396 |
msgstr ""
|
3397 |
|
3398 |
+
#: app/helpers/PrliLinksHelper.php:16
|
3399 |
+
#: app/views/links/form_basic.php:17
|
3400 |
+
#: app/views/shared/tinymce_form_popup.php:34
|
3401 |
+
msgid "301 (Permanent)"
|
3402 |
msgstr ""
|
3403 |
|
3404 |
+
#: app/helpers/PrliLinksHelper.php:27
|
3405 |
+
msgid "PrettyBar Redirection"
|
|
|
3406 |
msgstr ""
|
3407 |
|
3408 |
+
#: app/helpers/PrliLinksHelper.php:30
|
3409 |
+
msgid "Cloaked Redirection"
|
|
|
3410 |
msgstr ""
|
3411 |
|
3412 |
+
#: app/helpers/PrliLinksHelper.php:33
|
3413 |
+
msgid "Pixel Tracking Redirection"
|
|
|
3414 |
msgstr ""
|
3415 |
|
3416 |
+
#: app/helpers/PrliLinksHelper.php:36
|
3417 |
+
msgid "Meta Refresh Redirection"
|
3418 |
msgstr ""
|
3419 |
|
3420 |
+
#: app/helpers/PrliLinksHelper.php:39
|
3421 |
+
msgid "Javascript Redirection"
|
3422 |
msgstr ""
|
3423 |
|
3424 |
+
#: app/helpers/PrliLinksHelper.php:42
|
3425 |
+
msgid "Temporary (307) Redirection"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
+
#: app/helpers/PrliLinksHelper.php:45
|
3429 |
+
msgid "Temporary (302) Redirection"
|
3430 |
msgstr ""
|
3431 |
|
3432 |
+
#: app/helpers/PrliLinksHelper.php:48
|
3433 |
+
msgid "Permanent (301) Redirection"
|
3434 |
msgstr ""
|
3435 |
|
3436 |
+
#: app/helpers/PrliLinksHelper.php:52
|
3437 |
+
msgid "Nofollow Enabled"
|
|
|
|
|
3438 |
msgstr ""
|
3439 |
|
3440 |
+
#: app/helpers/PrliLinksHelper.php:56
|
3441 |
+
msgid "Sponsored Enabled"
|
3442 |
msgstr ""
|
3443 |
|
3444 |
+
#: app/helpers/PrliLinksHelper.php:60
|
3445 |
+
msgid "Parameter Forwarding Enabled"
|
3446 |
msgstr ""
|
3447 |
|
3448 |
+
#: app/helpers/PrliLinksHelper.php:72
|
3449 |
+
msgid "Are you sure you want to delete your %s Pretty Link? This will delete the Pretty Link and all of the statistical data about it in your database."
|
3450 |
msgstr ""
|
3451 |
|
3452 |
+
#: app/helpers/PrliLinksHelper.php:73
|
3453 |
+
msgid "Are you sure you want to reset your %s Pretty Link? This will delete all of the statistical data about this Pretty Link in your database."
|
|
|
3454 |
msgstr ""
|
3455 |
|
3456 |
+
#: app/helpers/PrliLinksHelper.php:73
|
3457 |
+
#: app/helpers/PrliLinksHelper.php:151
|
3458 |
+
msgid "Reset %s"
|
3459 |
msgstr ""
|
3460 |
|
3461 |
+
#: app/helpers/PrliLinksHelper.php:76
|
3462 |
+
#: app/views/clicks/list.php:161
|
3463 |
+
msgid "View clicks for %s"
|
|
|
3464 |
msgstr ""
|
3465 |
|
3466 |
+
#: app/helpers/PrliLinksHelper.php:81
|
3467 |
+
#: app/helpers/PrliLinksHelper.php:162
|
3468 |
+
msgid "Post %s to Twitter"
|
3469 |
msgstr ""
|
3470 |
|
3471 |
+
#: app/helpers/PrliLinksHelper.php:82
|
3472 |
+
#: app/helpers/PrliLinksHelper.php:173
|
3473 |
+
msgid "Send %s in an Email"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
+
#: app/helpers/PrliLinksHelper.php:87
|
3477 |
+
#: app/helpers/PrliLinksHelper.php:184
|
3478 |
+
msgid "Visit Target URL: %s in a New Window"
|
3479 |
msgstr ""
|
3480 |
|
3481 |
+
#: app/helpers/PrliLinksHelper.php:88
|
3482 |
+
#: app/helpers/PrliLinksHelper.php:195
|
3483 |
+
msgid "Visit Short URL: %s in a New Window"
|
3484 |
msgstr ""
|
3485 |
|
3486 |
+
#: app/helpers/PrliLinksHelper.php:106
|
3487 |
+
msgid "%d Clicks / %d Uniques"
|
3488 |
msgstr ""
|
3489 |
|
3490 |
+
#: app/helpers/PrliLinksHelper.php:115
|
3491 |
+
msgid "This link isn't being tracked"
|
3492 |
msgstr ""
|
3493 |
|
3494 |
+
#: app/helpers/PrliLinksHelper.php:139
|
3495 |
+
msgid "Target URL:"
|
3496 |
msgstr ""
|
3497 |
|
3498 |
+
#: app/helpers/PrliLinksHelper.php:171
|
3499 |
+
#: app/views/links/form_basic.php:48
|
3500 |
+
#: app/views/shared/tinymce_form_popup.php:86
|
3501 |
+
#: app/views/widgets/widget.php:15
|
3502 |
+
#: app/controllers/PrliLinksController.php:59
|
3503 |
+
msgid "Pretty Link"
|
3504 |
msgstr ""
|
3505 |
|
3506 |
+
#: app/models/PrliUtils.php:88
|
3507 |
+
msgid "*** Pretty Links Debug: %s"
|
3508 |
msgstr ""
|
3509 |
|
3510 |
+
#: app/models/PrliUtils.php:96
|
3511 |
+
msgid "The Slug can't be empty"
|
3512 |
msgstr ""
|
3513 |
|
3514 |
+
#: app/models/PrliUtils.php:103
|
3515 |
+
msgid "This Pretty Link Slug is already taken. There's already another pretty link with this slug: %s"
|
|
|
|
|
3516 |
msgstr ""
|
3517 |
|
3518 |
+
#. translators: %1$s: open link tag, %2$s: close link tag, %3$s: br tag
|
3519 |
+
#: app/models/PrliUtils.php:1082
|
3520 |
+
msgid "Get started by %1$sadding a URL%2$s that you want to turn into a pretty link.%3$sCome back to see how many times it was clicked."
|
3521 |
msgstr ""
|
3522 |
|
3523 |
+
#: app/models/PrliLink.php:480
|
3524 |
+
msgid "Target URL can't be blank"
|
3525 |
msgstr ""
|
3526 |
|
3527 |
+
#: app/models/PrliLink.php:484
|
3528 |
+
msgid "Target URL must be different than the Pretty Link"
|
3529 |
msgstr ""
|
3530 |
|
3531 |
+
#: app/models/PrliLink.php:488
|
3532 |
+
msgid "Link URL must be a correctly formatted url"
|
|
|
3533 |
msgstr ""
|
3534 |
|
3535 |
+
#: app/models/PrliLink.php:492
|
3536 |
+
msgid "Pretty Link slugs must not contain question marks, ampersands or number signs."
|
3537 |
msgstr ""
|
3538 |
|
3539 |
+
#: app/models/PrliLink.php:496
|
3540 |
+
msgid "Pretty Link slugs must not end with a slash (\"/\")"
|
3541 |
msgstr ""
|
3542 |
|
3543 |
+
#: app/models/PrliClick.php:237
|
3544 |
+
msgid "all links"
|
3545 |
msgstr ""
|
3546 |
|
3547 |
+
#: app/models/PrliClick.php:244
|
3548 |
+
msgid "All clicks"
|
3549 |
msgstr ""
|
3550 |
|
3551 |
+
#: app/models/PrliClick.php:247
|
3552 |
+
msgid "Unique hits"
|
3553 |
msgstr ""
|
3554 |
|
3555 |
+
#: app/models/PrliClick.php:251
|
3556 |
+
msgid "on"
|
3557 |
msgstr ""
|
3558 |
|
3559 |
+
#: app/models/PrliGroup.php:114
|
3560 |
+
msgid "Group must have a name."
|
|
|
3561 |
msgstr ""
|
3562 |
|
3563 |
+
#: app/views/links/form_advanced.php:6
|
3564 |
+
#: app/controllers/PrliLinksController.php:607
|
3565 |
+
msgid "No Follow"
|
|
|
3566 |
msgstr ""
|
3567 |
|
3568 |
+
#: app/views/links/form_advanced.php:9
|
3569 |
+
msgid "Nofollow Link"
|
3570 |
msgstr ""
|
3571 |
|
3572 |
+
#: app/views/links/form_advanced.php:10
|
3573 |
+
msgid "Add a nofollow and noindex to this link's http redirect header. (Recommended)"
|
3574 |
msgstr ""
|
3575 |
|
3576 |
+
#: app/views/links/form_advanced.php:19
|
3577 |
+
#: app/views/shared/tinymce_form_popup.php:54
|
3578 |
+
#: app/controllers/PrliLinksController.php:614
|
3579 |
+
msgid "Sponsored"
|
3580 |
msgstr ""
|
3581 |
|
3582 |
+
#: app/views/links/form_advanced.php:22
|
3583 |
+
msgid "Sponsored Link"
|
3584 |
msgstr ""
|
3585 |
|
3586 |
+
#: app/views/links/form_advanced.php:23
|
3587 |
+
msgid "Add a sponsored attribute to this link's http redirect header. Recommended if this is an affiliate link."
|
3588 |
msgstr ""
|
3589 |
|
3590 |
+
#: app/views/links/form_advanced.php:32
|
3591 |
+
#: app/views/links/form_advanced.php:35
|
3592 |
+
msgid "Delay Redirect"
|
3593 |
msgstr ""
|
3594 |
|
3595 |
+
#: app/views/links/form_advanced.php:36
|
3596 |
+
msgid "Time in seconds to wait before redirecting"
|
3597 |
msgstr ""
|
3598 |
|
3599 |
+
#: app/views/links/form_advanced.php:45
|
3600 |
+
#: app/views/links/form_advanced.php:48
|
3601 |
+
msgid "Parameter Forwarding"
|
3602 |
msgstr ""
|
3603 |
|
3604 |
+
#: app/views/links/form_advanced.php:49
|
3605 |
+
msgid "Forward parameters passed to this link onto the Target URL"
|
3606 |
msgstr ""
|
3607 |
|
3608 |
+
#: app/views/links/form_advanced.php:58
|
3609 |
+
#: app/views/links/form_advanced.php:61
|
3610 |
+
#: app/views/shared/tinymce_form_popup.php:62
|
3611 |
+
#: app/controllers/PrliLinksController.php:621
|
3612 |
+
msgid "Tracking"
|
3613 |
msgstr ""
|
3614 |
|
3615 |
+
#: app/views/links/form_advanced.php:62
|
3616 |
+
msgid "Enable Pretty Link's built-in hit (click) tracking"
|
3617 |
msgstr ""
|
3618 |
|
3619 |
+
#: app/views/links/form_advanced.php:75
|
3620 |
+
msgid "Requires the Google Analyticator plugin be installed and configured. This setting has no impact on the MonsterInsights integration with Pretty Links."
|
3621 |
msgstr ""
|
3622 |
|
3623 |
+
#: app/views/links/form_advanced.php:88
|
3624 |
+
msgid "It appears that %s is currently installed. Pretty Link will attempt to use its settings to track this link."
|
3625 |
msgstr ""
|
3626 |
|
3627 |
+
#: app/views/links/form_advanced.php:97
|
3628 |
+
msgid "No Google Analytics Plugin is currently installed. Pretty Link cannot track links using Google Analytics until one is."
|
3629 |
msgstr ""
|
3630 |
|
3631 |
+
#: app/views/links/form.php:28
|
3632 |
+
msgid "Basic"
|
3633 |
msgstr ""
|
3634 |
|
3635 |
+
#: app/views/links/form.php:29
|
3636 |
+
msgid "Advanced"
|
3637 |
msgstr ""
|
3638 |
|
3639 |
+
#: app/views/links/form_basic.php:6
|
3640 |
+
msgid "Redirection*"
|
3641 |
msgstr ""
|
3642 |
|
3643 |
+
#: app/views/links/form_basic.php:9
|
3644 |
+
#: app/views/options/form.php:77
|
3645 |
+
msgid "Redirection Type"
|
3646 |
msgstr ""
|
3647 |
|
3648 |
+
#: app/views/links/form_basic.php:10
|
3649 |
+
msgid "This is the method of redirection for your link."
|
3650 |
msgstr ""
|
3651 |
|
3652 |
+
#: app/views/links/form_basic.php:24
|
3653 |
+
#: app/views/options/form.php:87
|
3654 |
+
msgid "Get cloaked redirects, Javascript redirects and more when you %1$sUpgrade to PRO%2$s"
|
3655 |
msgstr ""
|
3656 |
|
3657 |
+
#: app/views/links/form_basic.php:32
|
3658 |
+
msgid "Target URL*"
|
3659 |
msgstr ""
|
3660 |
|
3661 |
+
#: app/views/links/form_basic.php:35
|
3662 |
+
#: app/views/shared/tinymce_form_popup.php:13
|
3663 |
+
#: app/views/shared/tinymce_form_popup.php:82
|
3664 |
+
#: app/views/widgets/widget.php:11
|
3665 |
+
msgid "Target URL"
|
3666 |
msgstr ""
|
3667 |
|
3668 |
+
#: app/views/links/form_basic.php:36
|
3669 |
+
msgid "This is the URL that your Pretty Link will redirect to."
|
3670 |
msgstr ""
|
3671 |
|
3672 |
+
#: app/views/links/form_basic.php:45
|
3673 |
+
msgid "Pretty Link*"
|
3674 |
msgstr ""
|
3675 |
|
3676 |
+
#: app/views/links/form_basic.php:49
|
3677 |
+
msgid "This is how your pretty link will appear. You can edit the Pretty Link slug here."
|
3678 |
msgstr ""
|
3679 |
|
3680 |
+
#: app/views/links/form_basic.php:61
|
3681 |
+
#: app/views/links/form_basic.php:64
|
3682 |
+
msgid "Notes"
|
3683 |
msgstr ""
|
3684 |
|
3685 |
+
#: app/views/links/form_basic.php:65
|
3686 |
+
msgid "This is a field where you can enter notes about a particular link. This notes field is mainly for your own link management needs. It isn't currently used anywhere on the front end."
|
3687 |
msgstr ""
|
3688 |
|
3689 |
+
#: app/views/links/form_pro.php:36
|
3690 |
+
msgid "Enter a comma separated list of keywords / keyword phrases that you'd like to replace with this link in your Posts & Pages."
|
3691 |
msgstr ""
|
3692 |
|
3693 |
+
#. translators: %1$s: open code tag, %2$s: close code tag
|
3694 |
+
#: app/views/links/form_pro.php:52
|
3695 |
+
msgid "Enter a comma separated list of the URLs that you'd like to replace with this Pretty Link in your Posts & Pages. These must be formatted as URLs for example: %1$shttp://example.com%2$s or %1$shttp://example.com?product_id=53%2$s"
|
3696 |
msgstr ""
|
3697 |
|
3698 |
+
#: app/views/shared/nav.php:6
|
3699 |
+
msgid "Pro Manual"
|
3700 |
msgstr ""
|
3701 |
|
3702 |
+
#: app/views/shared/nav.php:9
|
3703 |
+
#: app/views/admin/update/license.php:39
|
3704 |
+
#: app/controllers/PrliAppController.php:327
|
3705 |
+
msgid "Upgrade to Pro"
|
3706 |
msgstr ""
|
3707 |
|
3708 |
+
#: app/views/shared/nav.php:14
|
3709 |
+
msgid "Connect:"
|
3710 |
msgstr ""
|
3711 |
|
3712 |
+
#: app/views/shared/nav.php:18
|
3713 |
+
msgid "Get Help:"
|
3714 |
msgstr ""
|
3715 |
|
3716 |
+
#: app/views/shared/nav.php:19
|
3717 |
+
msgid "Tutorials"
|
3718 |
msgstr ""
|
3719 |
|
3720 |
+
#: app/views/shared/public_link.php:22
|
3721 |
+
msgid "Here is your Pretty Link"
|
3722 |
msgstr ""
|
3723 |
|
3724 |
+
#: app/views/shared/public_link.php:30
|
3725 |
+
msgid "Here's your pretty link for"
|
3726 |
msgstr ""
|
3727 |
|
3728 |
+
#: app/views/shared/public_link.php:41
|
3729 |
+
msgid "send this link to:"
|
3730 |
msgstr ""
|
3731 |
|
3732 |
+
#: app/views/shared/public_link.php:45
|
3733 |
+
msgid "back"
|
3734 |
msgstr ""
|
3735 |
|
3736 |
+
#: app/views/shared/table-nav.php:14
|
3737 |
+
#: app/views/shared/link-table-nav.php:16
|
3738 |
+
#: app/views/shared/link-table-nav.php:106
|
3739 |
+
msgid "Displaying %1$s–%2$s of %3$s"
|
3740 |
msgstr ""
|
3741 |
|
3742 |
+
#: app/views/shared/tinymce_form_popup.php:4
|
3743 |
+
msgid "Insert Pretty Link"
|
3744 |
msgstr ""
|
3745 |
|
3746 |
+
#: app/views/shared/tinymce_form_popup.php:10
|
3747 |
+
#: js/editor/components/link-editor/index.js:432
|
3748 |
+
#: js/editor.js:12
|
3749 |
+
msgid "Create New Pretty Link"
|
3750 |
msgstr ""
|
3751 |
|
3752 |
+
#: app/views/shared/tinymce_form_popup.php:17
|
3753 |
+
msgid "Slug"
|
3754 |
msgstr ""
|
3755 |
|
3756 |
+
#: app/views/shared/tinymce_form_popup.php:20
|
3757 |
+
msgid "valid"
|
3758 |
msgstr ""
|
3759 |
|
3760 |
+
#: app/views/shared/tinymce_form_popup.php:21
|
3761 |
+
msgid "invalid"
|
3762 |
msgstr ""
|
3763 |
|
3764 |
+
#: app/views/shared/tinymce_form_popup.php:25
|
3765 |
+
#: app/views/shared/tinymce_form_popup.php:90
|
3766 |
+
msgid "Link Text"
|
3767 |
msgstr ""
|
3768 |
|
3769 |
+
#: app/views/shared/tinymce_form_popup.php:29
|
3770 |
+
msgid "Redirect Type"
|
3771 |
msgstr ""
|
3772 |
|
3773 |
+
#: app/views/shared/tinymce_form_popup.php:46
|
3774 |
+
msgid "Nofollow"
|
3775 |
msgstr ""
|
3776 |
|
3777 |
+
#: app/views/shared/tinymce_form_popup.php:49
|
3778 |
+
#: app/views/shared/tinymce_form_popup.php:57
|
3779 |
+
#: app/views/shared/tinymce_form_popup.php:65
|
3780 |
+
#: app/controllers/PrliLinksController.php:610
|
3781 |
+
#: app/controllers/PrliLinksController.php:617
|
3782 |
+
#: app/controllers/PrliLinksController.php:624
|
3783 |
+
msgid "Enabled"
|
3784 |
msgstr ""
|
3785 |
|
3786 |
+
#: app/views/shared/tinymce_form_popup.php:50
|
3787 |
+
#: app/views/shared/tinymce_form_popup.php:58
|
3788 |
+
#: app/views/shared/tinymce_form_popup.php:66
|
3789 |
+
#: app/controllers/PrliLinksController.php:611
|
3790 |
+
#: app/controllers/PrliLinksController.php:618
|
3791 |
+
#: app/controllers/PrliLinksController.php:625
|
3792 |
+
msgid "Disabled"
|
3793 |
msgstr ""
|
3794 |
|
3795 |
+
#: app/views/shared/tinymce_form_popup.php:71
|
3796 |
+
#: app/views/shared/tinymce_form_popup.php:95
|
3797 |
+
msgid "Open this Pretty Link in a new window/tab"
|
3798 |
msgstr ""
|
3799 |
|
3800 |
+
#: app/views/shared/tinymce_form_popup.php:74
|
3801 |
+
msgid "Insert New Pretty Link"
|
3802 |
msgstr ""
|
3803 |
|
3804 |
+
#: app/views/shared/tinymce_form_popup.php:78
|
3805 |
+
msgid "Use Existing Pretty Link"
|
3806 |
msgstr ""
|
3807 |
|
3808 |
+
#: app/views/shared/tinymce_form_popup.php:80
|
3809 |
+
msgid "Search by Slug, Title, or Target URL..."
|
3810 |
msgstr ""
|
3811 |
|
3812 |
+
#: app/views/shared/tinymce_form_popup.php:100
|
3813 |
+
msgid "Insert Existing Pretty Link"
|
3814 |
msgstr ""
|
3815 |
|
3816 |
+
#: app/views/shared/errors.php:12
|
3817 |
+
#: app/views/admin/errors.php:7
|
3818 |
+
msgid "ERROR"
|
3819 |
msgstr ""
|
3820 |
|
3821 |
+
#: app/views/admin/popups/upgrade.php:6
|
3822 |
+
msgid "Upgrade to Pretty Links PRO"
|
3823 |
msgstr ""
|
3824 |
|
3825 |
+
#: app/views/admin/popups/upgrade.php:7
|
3826 |
+
msgid "Unlock Pretty Links' PRO features and you'll be able to:"
|
3827 |
msgstr ""
|
3828 |
|
3829 |
+
#: app/views/admin/popups/upgrade.php:9
|
3830 |
+
msgid "Monetize existing content with automated Pretty Link placement"
|
3831 |
msgstr ""
|
3832 |
|
3833 |
+
#: app/views/admin/popups/upgrade.php:10
|
3834 |
+
msgid "Redirect with cloaking, Javascript or Meta-refresh"
|
3835 |
msgstr ""
|
3836 |
|
3837 |
+
#: app/views/admin/popups/upgrade.php:11
|
3838 |
+
msgid "Redirect by location, time, device or rotation"
|
3839 |
msgstr ""
|
3840 |
|
3841 |
+
#: app/views/admin/popups/upgrade.php:12
|
3842 |
+
msgid "Expire your Pretty Links"
|
3843 |
msgstr ""
|
3844 |
|
3845 |
+
#: app/views/admin/popups/upgrade.php:13
|
3846 |
+
msgid "Split-test your Pretty Links"
|
3847 |
msgstr ""
|
3848 |
|
3849 |
+
#: app/views/admin/popups/upgrade.php:14
|
3850 |
+
#: app/views/admin/update/license.php:60
|
3851 |
+
msgid "And much, much more!"
|
3852 |
msgstr ""
|
3853 |
|
3854 |
+
#: app/views/admin/popups/upgrade.php:17
|
3855 |
+
msgid "Plus, upgrading is fast, easy and won't disrupt any of your existing links or data."
|
3856 |
msgstr ""
|
3857 |
|
3858 |
+
#: app/views/admin/popups/upgrade.php:18
|
3859 |
+
#: app/views/admin/update/license.php:66
|
3860 |
+
msgid "We think you'll love it!"
|
3861 |
msgstr ""
|
3862 |
|
3863 |
+
#: app/views/admin/popups/upgrade.php:23
|
3864 |
+
#: app/controllers/PrliFlyoutMenuController.php:79
|
3865 |
+
msgid "Upgrade to Pretty Links Pro"
|
3866 |
msgstr ""
|
3867 |
|
3868 |
+
#: app/views/admin/popups/upgrade.php:24
|
3869 |
+
msgid "Maybe Later"
|
3870 |
msgstr ""
|
3871 |
|
3872 |
+
#: app/views/admin/popups/rating.php:8
|
3873 |
+
#: app/controllers/PrliReviewNoticeController.php:56
|
3874 |
+
msgid "Are you enjoying using Pretty Links?"
|
3875 |
msgstr ""
|
3876 |
|
3877 |
+
#: app/views/admin/popups/rating.php:17
|
3878 |
+
msgid "Rate Pretty Links"
|
|
|
3879 |
msgstr ""
|
3880 |
|
3881 |
+
#: app/views/admin/popups/rating.php:18
|
3882 |
+
msgid "If you enjoy using Pretty Links would you mind taking a moment to rate it on WordPress.org? It won't take more than a minute."
|
3883 |
msgstr ""
|
3884 |
|
3885 |
+
#: app/views/admin/popups/rating.php:19
|
3886 |
+
#: app/views/admin/popups/rating.php:31
|
3887 |
+
msgid "Thanks for your support!"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
+
#: app/views/admin/popups/rating.php:24
|
3891 |
+
#: app/views/admin/popups/rating.php:36
|
3892 |
+
msgid "Remind Me Later"
|
3893 |
msgstr ""
|
3894 |
|
3895 |
+
#: app/views/admin/popups/rating.php:25
|
3896 |
+
msgid "Review Pretty Links"
|
3897 |
msgstr ""
|
3898 |
|
3899 |
+
#: app/views/admin/popups/rating.php:29
|
3900 |
+
#: app/views/admin/popups/rating.php:37
|
3901 |
+
msgid "Leave Feedback"
|
3902 |
msgstr ""
|
3903 |
|
3904 |
+
#: app/views/admin/popups/rating.php:30
|
3905 |
+
msgid "To help us improve Pretty Links, would you mind taking a moment to leave feedback?"
|
3906 |
msgstr ""
|
3907 |
|
3908 |
+
#: app/views/admin/popups/rating.php:40
|
3909 |
+
msgid "Never Remind Me Again"
|
3910 |
msgstr ""
|
3911 |
|
3912 |
+
#: app/views/admin/update/addons.php:3
|
3913 |
+
msgid "Pretty Link Add-ons"
|
3914 |
msgstr ""
|
3915 |
|
3916 |
+
#: app/views/admin/update/addons.php:8
|
3917 |
+
msgid "There were no Add-ons found for your license or lack thereof..."
|
3918 |
msgstr ""
|
3919 |
|
3920 |
+
#: app/views/admin/update/addons.php:14
|
3921 |
+
msgid "Add-on"
|
3922 |
msgstr ""
|
3923 |
|
3924 |
+
#: app/views/admin/update/addons.php:15
|
3925 |
+
msgid "Description"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
+
#: app/views/admin/update/addons.php:16
|
3929 |
+
#: app/views/admin/update/addons.php:54
|
3930 |
+
msgid "Install"
|
3931 |
msgstr ""
|
3932 |
|
3933 |
+
#: app/views/admin/update/addons.php:42
|
3934 |
+
msgid "(Update Available)"
|
|
|
3935 |
msgstr ""
|
3936 |
|
3937 |
+
#: app/views/admin/update/addons.php:50
|
3938 |
+
msgid "Installed & Active"
|
3939 |
msgstr ""
|
3940 |
|
3941 |
+
#: app/views/admin/update/addons.php:52
|
3942 |
+
msgid "Installed & Inactive"
|
3943 |
msgstr ""
|
3944 |
|
3945 |
+
#: app/views/admin/update/license.php:7
|
3946 |
+
msgid "Pretty Links Pro License"
|
3947 |
msgstr ""
|
3948 |
|
3949 |
+
#. translators: %1$s: link to pro site, %2$s: link to pro site login page
|
3950 |
+
#: app/views/admin/update/license.php:14
|
3951 |
+
msgid "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."
|
3952 |
msgstr ""
|
3953 |
|
3954 |
+
#: app/views/admin/update/license.php:25
|
3955 |
+
msgid "Enter Your Pretty Links Pro License Key:"
|
3956 |
msgstr ""
|
3957 |
|
3958 |
+
#: app/views/admin/update/license.php:32
|
3959 |
+
msgid "Activate License Key on %s"
|
3960 |
msgstr ""
|
3961 |
|
3962 |
+
#. translators: %1$s: open link tag, %2$s: close link tag
|
3963 |
+
#: app/views/admin/update/license.php:45
|
3964 |
+
msgid "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:"
|
3965 |
msgstr ""
|
3966 |
|
3967 |
+
#: app/views/admin/update/license.php:55
|
3968 |
+
msgid "Auto-replace keywords throughout your site with Pretty Links"
|
3969 |
msgstr ""
|
3970 |
|
3971 |
+
#: app/views/admin/update/license.php:56
|
3972 |
+
msgid "Protect your affiliate links by using Cloaked Redirects"
|
3973 |
msgstr ""
|
3974 |
|
3975 |
+
#: app/views/admin/update/license.php:57
|
3976 |
+
msgid "Redirect based on a visitor's location"
|
3977 |
msgstr ""
|
3978 |
|
3979 |
+
#: app/views/admin/update/license.php:58
|
3980 |
+
msgid "Auto-prettylink your Pages & Posts"
|
3981 |
msgstr ""
|
3982 |
|
3983 |
+
#: app/views/admin/update/license.php:59
|
3984 |
+
msgid "Find out what works and what doesn't by split testing your links"
|
3985 |
msgstr ""
|
3986 |
|
3987 |
+
#: app/views/admin/update/license.php:64
|
3988 |
+
msgid "Plus, upgrading is fast, easy and won't disrupt any of your existing links or data. And there's even a 14 day money back guarantee."
|
3989 |
msgstr ""
|
3990 |
|
3991 |
+
#: app/views/admin/update/license.php:68
|
3992 |
+
msgid "Upgrade to Pro today!"
|
|
|
3993 |
msgstr ""
|
3994 |
|
3995 |
+
#: app/views/admin/update/license.php:72
|
3996 |
+
msgid "Active License Key Information:"
|
|
|
|
|
|
|
3997 |
msgstr ""
|
3998 |
|
3999 |
+
#: app/views/admin/update/license.php:75
|
4000 |
+
msgid "License Key:"
|
4001 |
msgstr ""
|
4002 |
|
4003 |
+
#: app/views/admin/update/license.php:79
|
4004 |
+
msgid "Status:"
|
|
|
4005 |
msgstr ""
|
4006 |
|
4007 |
+
#: app/views/admin/update/license.php:80
|
4008 |
+
msgid "Active on %s"
|
|
|
4009 |
msgstr ""
|
4010 |
|
4011 |
+
#: app/views/admin/update/license.php:83
|
4012 |
+
msgid "Product:"
|
|
|
4013 |
msgstr ""
|
4014 |
|
4015 |
+
#: app/views/admin/update/license.php:87
|
4016 |
+
msgid "Activations:"
|
|
|
4017 |
msgstr ""
|
4018 |
|
4019 |
+
#. translators: %1$s: open b tag, %2$s: close b tag, %3$d: current activation count, %4$s: max activations
|
4020 |
+
#: app/views/admin/update/license.php:92
|
4021 |
+
msgid "%1$s%3$d of %4$s%2$s sites have been activated with this license key"
|
4022 |
msgstr ""
|
4023 |
|
4024 |
+
#: app/views/admin/update/license.php:102
|
4025 |
+
msgid "Are you sure? Pretty Links Pro will not be functional on %s if this License Key is deactivated."
|
|
|
4026 |
msgstr ""
|
4027 |
|
4028 |
+
#: app/views/admin/update/license.php:102
|
4029 |
+
msgid "Deactivate License Key on %s"
|
4030 |
msgstr ""
|
4031 |
|
4032 |
+
#: app/views/admin/update/license.php:105
|
4033 |
+
msgid "Upgrade plugin to Pro"
|
4034 |
msgstr ""
|
4035 |
|
4036 |
+
#: app/views/admin/update/license.php:110
|
4037 |
+
msgid "You're currently running version %s of Pretty Links Pro"
|
4038 |
msgstr ""
|
4039 |
|
4040 |
+
#: app/views/admin/update/addon_popup.php:4
|
4041 |
+
msgid "ACTION REQUIRED"
|
4042 |
msgstr ""
|
4043 |
|
4044 |
+
#: app/views/admin/update/addon_popup.php:5
|
4045 |
+
msgid "The %s features in your Pretty Link options have been moved from Pretty Link into a separate plugin."
|
4046 |
msgstr ""
|
4047 |
|
4048 |
+
#: app/views/admin/update/addon_popup.php:6
|
4049 |
+
msgid "Why you ask? Well, it's to streamline and increase the performance of Pretty Link for you."
|
4050 |
msgstr ""
|
4051 |
|
4052 |
+
#: app/views/admin/update/addon_popup.php:9
|
4053 |
+
msgid "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."
|
4054 |
msgstr ""
|
4055 |
|
4056 |
+
#: app/views/admin/update/addon_popup.php:11
|
4057 |
+
msgid "Luckily it's easy to get these features back now. Just click the \"Install %s Add-on\" button below."
|
4058 |
msgstr ""
|
4059 |
|
4060 |
+
#. translators: %1$s: open link tag, %2$s: close link tag
|
4061 |
+
#: app/views/admin/update/addon_popup.php:16
|
4062 |
+
msgid "If you have problems with the auto-install please refer to %1$sthe user manual%2$s for manual install instructions."
|
4063 |
msgstr ""
|
4064 |
|
4065 |
+
#: app/views/admin/update/addon_popup.php:27
|
4066 |
+
msgid "Activate %s Add-on"
|
4067 |
msgstr ""
|
4068 |
|
4069 |
+
#: app/views/admin/update/addon_popup.php:29
|
4070 |
+
msgid "Install %s Add-on"
|
4071 |
msgstr ""
|
4072 |
|
4073 |
+
#: app/views/admin/update/addon_popup.php:31
|
4074 |
+
msgid "Don't Show This Message Again"
|
4075 |
msgstr ""
|
4076 |
|
4077 |
+
#: app/views/admin/update/ui.php:3
|
4078 |
+
msgid "Activate Pretty Links Pro"
|
4079 |
msgstr ""
|
4080 |
|
4081 |
+
#: app/views/admin/update/ui.php:16
|
4082 |
+
msgid "License"
|
4083 |
msgstr ""
|
4084 |
|
4085 |
+
#: app/views/admin/update/ui.php:17
|
4086 |
+
msgid "Add-Ons"
|
|
|
4087 |
msgstr ""
|
4088 |
|
4089 |
+
#: app/views/admin/update/edge_updates.php:4
|
4090 |
+
msgid "Include Pretty Links Pro edge (development) releases in automatic updates (not recommended for production websites)"
|
4091 |
msgstr ""
|
4092 |
|
4093 |
+
#: app/views/admin/update/edge_updates.php:4
|
4094 |
+
#: app/views/widgets/widget.php:22
|
4095 |
+
msgid "Loading..."
|
4096 |
msgstr ""
|
4097 |
|
4098 |
+
#: app/views/admin/update/activation_warning.php:7
|
4099 |
+
msgid "Error with PRETTYLINK_LICENSE_KEY: %s"
|
4100 |
msgstr ""
|
4101 |
|
4102 |
+
#: app/views/admin/update/activation_warning.php:14
|
4103 |
+
#: app/views/admin/update/activation_warning.php:41
|
4104 |
+
msgid "Pretty Links Pro isn't able to get critical automatic updates"
|
4105 |
msgstr ""
|
4106 |
|
4107 |
+
#: app/views/admin/update/activation_warning.php:15
|
4108 |
+
msgid "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."
|
4109 |
msgstr ""
|
4110 |
|
4111 |
+
#. translators: %1$s: open link tag, %2$s: close link tag
|
4112 |
+
#: app/views/admin/update/activation_warning.php:21
|
4113 |
+
msgid "You can get your license key by logging in at %1$sPrettyLinkPro.com.%2$s"
|
4114 |
msgstr ""
|
4115 |
|
4116 |
+
#. translators: %1$s: open link tag, %2$s: close link tag
|
4117 |
+
#: app/views/admin/update/activation_warning.php:32
|
4118 |
+
msgid "After you paste your license key on the %1$s\"Pretty Link\" -> \"Activate Pro\" admin page,%2$s you'll start getting updates again."
|
4119 |
msgstr ""
|
4120 |
|
4121 |
+
#. translators: %1$s: open link tag, %2$s: close link tag
|
4122 |
+
#: app/views/admin/update/activation_warning.php:47
|
4123 |
+
msgid "You can retrieve or purchase a license key at %1$sPrettyLinks.com%2$s to enable automatic updates today."
|
4124 |
msgstr ""
|
4125 |
|
4126 |
+
#. translators: %1$s: open link tag, %2$s: close link tag
|
4127 |
+
#: app/views/admin/update/activation_warning.php:58
|
4128 |
+
msgid "After you paste your license key on the %1$s\"Pretty Links\" -> \"Activate Pro\" admin page,%2$s you'll start getting automatic updates."
|
4129 |
msgstr ""
|
4130 |
|
4131 |
+
#: app/views/admin/onboarding/welcome.php:15
|
4132 |
+
msgid "Welcome to"
|
4133 |
msgstr ""
|
4134 |
|
4135 |
+
#: app/views/admin/onboarding/welcome.php:18
|
4136 |
+
msgid "Welcome to Pretty Links!"
|
4137 |
msgstr ""
|
4138 |
|
4139 |
+
#: app/views/admin/onboarding/welcome.php:21
|
4140 |
+
msgid "Congratulations, you've just installed the most powerful link management platform for WordPress on Earth!"
|
4141 |
msgstr ""
|
4142 |
|
4143 |
+
#: app/views/admin/onboarding/welcome.php:22
|
4144 |
+
msgid "With Pretty Links, you'll no longer need to manage links from a spreadsheet and you'll be able to maximize the visibility of your links - these benefits (and more) will make it possible to make more money from your content like never before!"
|
4145 |
msgstr ""
|
4146 |
|
4147 |
+
#: app/views/admin/onboarding/welcome.php:25
|
4148 |
+
msgid "Getting Started is Easy"
|
4149 |
msgstr ""
|
4150 |
|
4151 |
+
#: app/views/admin/onboarding/welcome.php:26
|
4152 |
+
msgid "Start by creating your first Pretty Link:"
|
4153 |
msgstr ""
|
4154 |
|
4155 |
+
#: app/views/admin/onboarding/welcome.php:34
|
4156 |
+
#: app/views/admin/onboarding/welcome.php:35
|
4157 |
+
msgid "Click \"Add New Link\""
|
4158 |
msgstr ""
|
4159 |
|
4160 |
+
#: app/views/admin/onboarding/welcome.php:39
|
4161 |
+
#: app/views/admin/onboarding/welcome.php:40
|
4162 |
+
msgid "Enter the URL of your Affiliate Link"
|
4163 |
msgstr ""
|
4164 |
|
4165 |
+
#: app/views/admin/onboarding/welcome.php:44
|
4166 |
+
#: app/views/admin/onboarding/welcome.php:45
|
4167 |
+
msgid "Customize your Pretty Link Slug"
|
4168 |
msgstr ""
|
4169 |
|
4170 |
+
#: app/views/admin/onboarding/welcome.php:49
|
4171 |
+
#: app/views/admin/onboarding/welcome.php:50
|
4172 |
+
msgid "Click \"Update\""
|
4173 |
msgstr ""
|
4174 |
|
4175 |
+
#: app/views/admin/onboarding/welcome.php:54
|
4176 |
+
#: app/views/admin/onboarding/welcome.php:55
|
4177 |
+
msgid "Copy the Pretty Link URL"
|
4178 |
msgstr ""
|
4179 |
|
4180 |
+
#: app/views/admin/onboarding/welcome.php:59
|
4181 |
+
msgid "Wasn't that easy? Now, you can use this link wherever you want!"
|
4182 |
msgstr ""
|
4183 |
|
4184 |
+
#: app/views/admin/onboarding/welcome.php:63
|
4185 |
+
msgid "The Power of"
|
4186 |
msgstr ""
|
4187 |
|
4188 |
+
#: app/views/admin/onboarding/welcome.php:66
|
4189 |
+
msgid "The Power of Pretty Links Pro"
|
4190 |
msgstr ""
|
4191 |
|
4192 |
+
#: app/views/admin/onboarding/welcome.php:70
|
4193 |
+
msgid "There are many reasons that premium users of Pretty Links <br> are able to take their business to the next level:"
|
4194 |
msgstr ""
|
4195 |
|
4196 |
+
#: app/views/admin/onboarding/welcome.php:77
|
4197 |
+
msgid "Automated, Site-Wide Link Placement (Keyword Replacement)"
|
4198 |
msgstr ""
|
4199 |
|
4200 |
+
#: app/views/admin/onboarding/welcome.php:79
|
4201 |
+
msgid "Imagine if you never had to hand-edit links, copy and paste from a spreadsheet, or actively have to keep up with you links ever again. Well that time has come! Now with Pretty Links, all you have to do is create your links and let Pretty Links do the rest!"
|
4202 |
msgstr ""
|
4203 |
|
4204 |
+
#: app/views/admin/onboarding/welcome.php:80
|
4205 |
+
msgid "Pretty Links will scan your content for the keywords or URLs that you want to target and will replace them with Pretty Links automatically! This will save you tons of time so you can focus on growing your business!"
|
4206 |
msgstr ""
|
4207 |
|
4208 |
+
#: app/views/admin/onboarding/welcome.php:87
|
4209 |
+
msgid "Categories & Tags"
|
4210 |
msgstr ""
|
4211 |
|
4212 |
+
#: app/views/admin/onboarding/welcome.php:89
|
4213 |
+
msgid "When you are dealing with a large number of links, it can be easy to be overwhelmed and confused by which links to you planned to use where. It's now easier than ever to organize your links and group them any way that you like for ultimate productivity and monetization!"
|
4214 |
msgstr ""
|
4215 |
|
4216 |
+
#: app/views/admin/onboarding/welcome.php:96
|
4217 |
+
#: app/controllers/PrliLinksController.php:162
|
4218 |
+
msgid "Advanced Redirect Types"
|
4219 |
msgstr ""
|
4220 |
|
4221 |
+
#: app/views/admin/onboarding/welcome.php:98
|
4222 |
+
msgid "Lite users can take advantage of 301 & 302 server side redirects but our pro users can also redirect with cloaking, JavaScript, Meta-refresh and more."
|
4223 |
msgstr ""
|
4224 |
|
4225 |
+
#: app/views/admin/onboarding/welcome.php:99
|
4226 |
+
msgid "So if you have social media links, a landing page, or a new page or post you'd like to redirect your customers to, this feature will definitely come in handy!"
|
4227 |
msgstr ""
|
4228 |
|
4229 |
+
#: app/views/admin/onboarding/welcome.php:106
|
4230 |
+
msgid "Dynamic Redirect Types"
|
4231 |
msgstr ""
|
4232 |
|
4233 |
+
#: app/views/admin/onboarding/welcome.php:108
|
4234 |
+
msgid "Would you like your Pretty Link to redirect somewhere custom depending on what country your user is in, device they're using, time they're clicking the link or just randomly? Our pro users can do this easily with our Dynamic Redirections!"
|
4235 |
msgstr ""
|
4236 |
|
4237 |
+
#: app/views/admin/onboarding/welcome.php:109
|
4238 |
+
msgid "This feature is excellent if you are running a time-sensitive sales, want to create custom content for you customers, create stellar landing pages for customers in different countries!"
|
4239 |
msgstr ""
|
4240 |
|
4241 |
+
#: app/views/admin/onboarding/welcome.php:116
|
4242 |
+
msgid "Import and Export Links"
|
4243 |
msgstr ""
|
4244 |
|
4245 |
+
#: app/views/admin/onboarding/welcome.php:118
|
4246 |
+
msgid "Export your links to a spreadsheet or import them en masse - our pro users can do this with ease. Simply download your spreadsheet, upload to WordPress, and your links are automatically added to Pretty Links!"
|
4247 |
msgstr ""
|
4248 |
|
4249 |
+
#: app/views/admin/onboarding/welcome.php:125
|
4250 |
+
msgid "The list goes on and on"
|
4251 |
msgstr ""
|
4252 |
|
4253 |
+
#: app/views/admin/onboarding/welcome.php:126
|
4254 |
+
msgid "Our premium editions of Pretty Links are a HUGE upgrade from Lite. <br> Don’t miss out on our critical PRO benefits!"
|
4255 |
msgstr ""
|
4256 |
|
4257 |
+
#: app/views/admin/onboarding/welcome.php:130
|
4258 |
+
msgid "Upgrade to Pretty Links Pro Now"
|
4259 |
msgstr ""
|
4260 |
|
4261 |
+
#: app/views/admin/onboarding/welcome.php:131
|
4262 |
+
msgid "Upgrade NOW and get $50 off of your subscription!!!"
|
4263 |
msgstr ""
|
4264 |
|
4265 |
+
#: app/views/options/form.php:3
|
4266 |
+
#: app/controllers/PrliAppController.php:175
|
4267 |
+
msgid "Options"
|
4268 |
msgstr ""
|
4269 |
|
4270 |
+
#: app/views/options/form.php:4
|
4271 |
+
msgid "User Manual"
|
4272 |
msgstr ""
|
4273 |
|
4274 |
+
#. translators: %1$s: open strong tag, %2$s: close strong tag
|
4275 |
+
#: app/views/options/form.php:17
|
4276 |
+
msgid "%1$sWordPress Must be Configured:%2$s Pretty Links won't work until you select a Permalink Structure other than 'Default'"
|
4277 |
msgstr ""
|
4278 |
|
4279 |
+
#: app/views/options/form.php:22
|
4280 |
+
msgid "Permalink Settings"
|
4281 |
msgstr ""
|
4282 |
|
4283 |
+
#: app/views/options/form.php:49
|
4284 |
+
msgid "General"
|
4285 |
msgstr ""
|
4286 |
|
4287 |
+
#: app/views/options/form.php:52
|
4288 |
+
msgid "Reporting"
|
4289 |
msgstr ""
|
4290 |
|
4291 |
+
#: app/views/options/form.php:53
|
4292 |
+
msgid "Replacements"
|
4293 |
msgstr ""
|
4294 |
|
4295 |
+
#: app/views/options/form.php:54
|
4296 |
+
msgid "Auto-Create Links"
|
4297 |
msgstr ""
|
4298 |
|
4299 |
+
#: app/views/options/form.php:56
|
4300 |
+
msgid "Social"
|
4301 |
msgstr ""
|
4302 |
|
4303 |
+
#: app/views/options/form.php:57
|
4304 |
+
msgid "Public"
|
4305 |
msgstr ""
|
4306 |
|
4307 |
+
#: app/views/options/form.php:64
|
4308 |
+
msgid "General Options"
|
4309 |
msgstr ""
|
4310 |
|
4311 |
+
#: app/views/options/form.php:70
|
4312 |
+
msgid "Default Link Options"
|
4313 |
msgstr ""
|
4314 |
|
4315 |
+
#: app/views/options/form.php:75
|
4316 |
+
msgid "Redirection"
|
4317 |
msgstr ""
|
4318 |
|
4319 |
+
#: app/views/options/form.php:78
|
4320 |
+
msgid "Select the type of redirection you want your newly created links to have."
|
4321 |
msgstr ""
|
4322 |
|
4323 |
+
#: app/views/options/form.php:95
|
4324 |
+
#: app/views/options/form.php:97
|
4325 |
+
msgid "Enable Tracking"
|
4326 |
msgstr ""
|
4327 |
|
4328 |
+
#: app/views/options/form.php:98
|
4329 |
+
msgid "Default all new links to be tracked."
|
4330 |
msgstr ""
|
4331 |
|
4332 |
+
#: app/views/options/form.php:107
|
4333 |
+
msgid "Enable No Follow"
|
4334 |
msgstr ""
|
4335 |
|
4336 |
+
#: app/views/options/form.php:109
|
4337 |
+
msgid "Add No Follow"
|
4338 |
msgstr ""
|
4339 |
|
4340 |
+
#: app/views/options/form.php:110
|
4341 |
+
msgid "Add the 'nofollow' attribute by default to new links. This will add nofollow and noindex in the HTTP Response headers when enabled."
|
4342 |
msgstr ""
|
4343 |
|
4344 |
+
#: app/views/options/form.php:119
|
4345 |
+
msgid "Enable Sponsored"
|
4346 |
msgstr ""
|
4347 |
|
4348 |
+
#: app/views/options/form.php:122
|
4349 |
+
msgid "Add the 'sponsored' attribute by default to new links. This will add sponsored in the HTTP Response headers when enabled."
|
4350 |
msgstr ""
|
4351 |
|
4352 |
+
#: app/views/options/form.php:131
|
4353 |
+
msgid "Enable Permalink Fix"
|
4354 |
msgstr ""
|
4355 |
|
4356 |
+
#: app/views/options/form.php:133
|
4357 |
+
msgid "Use fix for index.php Permalink Structure"
|
4358 |
msgstr ""
|
4359 |
|
4360 |
+
#: app/views/options/form.php:134
|
4361 |
+
msgid "This option should ONLY be checked if you have elements in your permalink structure that must be present in any link on your site. For example, some WordPress installs don't have the benefit of full rewrite capabilities and in this case you'd need an index.php included in each link (http://example.com/index.php/mycoolslug instead of http://example.com/mycoolslug). If this is the case for you then check this option but the vast majority of users will want to keep this unchecked."
|
4362 |
msgstr ""
|
4363 |
|
4364 |
+
#: app/views/options/form.php:182
|
4365 |
+
msgid "Requires the Google Analyticator plugin be installed. If you rely on MonsterInsights plugin for Google Analytics, leave this setting disabled as it has no affect."
|
4366 |
msgstr ""
|
4367 |
|
4368 |
+
#: app/views/options/form.php:193
|
4369 |
+
msgid "Enable %sQR Codes%s"
|
4370 |
msgstr ""
|
4371 |
|
4372 |
+
#: app/views/options/form.php:239
|
4373 |
+
msgid "Reporting Options"
|
4374 |
msgstr ""
|
4375 |
|
4376 |
+
#: app/views/options/form.php:244
|
4377 |
+
#: app/views/options/form.php:246
|
4378 |
+
msgid "Tracking Style"
|
4379 |
msgstr ""
|
4380 |
|
4381 |
+
#: app/views/options/form.php:247
|
4382 |
+
msgid "Changing your tracking style can affect the accuracy of your existing statistics. Extended mode must be used for Conversion reporting."
|
4383 |
msgstr ""
|
4384 |
|
4385 |
+
#: app/views/options/form.php:251
|
4386 |
+
msgid "Normal Tracking"
|
4387 |
msgstr ""
|
4388 |
|
4389 |
+
#: app/views/options/form.php:252
|
4390 |
+
msgid "Extended Tracking (more stats / slower performance)"
|
4391 |
msgstr ""
|
4392 |
|
4393 |
+
#: app/views/options/form.php:253
|
4394 |
+
msgid "Simple Click Count Tracking (less stats / faster performance)"
|
4395 |
msgstr ""
|
4396 |
|
4397 |
+
#: app/views/options/form.php:259
|
4398 |
+
msgid "Excluded IP Addresses:"
|
4399 |
msgstr ""
|
4400 |
|
4401 |
+
#: app/views/options/form.php:261
|
4402 |
+
msgid "Excluded IP Addresses"
|
4403 |
msgstr ""
|
4404 |
|
4405 |
+
#: app/views/options/form.php:262
|
4406 |
+
msgid "Enter IP Addresses or IP Ranges you want to exclude from your Click data and Stats. Each IP Address should be separated by commas. Example: 192.168.0.1, 192.168.2.1, 192.168.3.4 or 192.168.*.*"
|
4407 |
msgstr ""
|
4408 |
|
4409 |
+
#: app/views/options/form.php:265
|
4410 |
+
msgid "FYI, your current IP address is %s."
|
4411 |
msgstr ""
|
4412 |
|
4413 |
+
#: app/views/options/form.php:276
|
4414 |
+
msgid "Auto-Trim Clicks"
|
4415 |
msgstr ""
|
4416 |
|
4417 |
+
#: app/views/options/form.php:278
|
4418 |
+
msgid "Automatically Trim Clicks"
|
4419 |
msgstr ""
|
4420 |
|
4421 |
+
#: app/views/options/form.php:279
|
4422 |
+
msgid "Will automatically delete all hits older than 90 days. We strongly recommend doing this to keep your database performance up. This will permanently delete this click data, and is not undo-able. "
|
4423 |
msgstr ""
|
4424 |
|
4425 |
+
#: app/views/options/form.php:288
|
4426 |
+
#: app/views/options/form.php:290
|
4427 |
+
msgid "Filter Robots"
|
4428 |
msgstr ""
|
4429 |
|
4430 |
+
#: app/views/options/form.php:291
|
4431 |
+
msgid "Filter known Robots and unidentifiable browser clients from your click data, stats and reports. Works best if Tracking Style above is set to 'Extended Tracking'."
|
4432 |
msgstr ""
|
4433 |
|
4434 |
+
#: app/views/options/form.php:307
|
4435 |
+
#: app/views/options/form.php:309
|
4436 |
+
msgid "Whitelist IP Addresses"
|
4437 |
msgstr ""
|
4438 |
|
4439 |
+
#: app/views/options/form.php:310
|
4440 |
+
msgid "Enter IP Addresses or IP Ranges you want to always include in your Click data and Stats even if they are flagged as robots. Each IP Address should be separated by commas. Example: 192.168.0.1, 192.168.2.1, 192.168.3.4 or 192.168.*.*"
|
4441 |
msgstr ""
|
4442 |
|
4443 |
+
#: app/views/options/form.php:591
|
4444 |
+
msgid "Keywork & URL Options"
|
4445 |
msgstr ""
|
4446 |
|
4447 |
+
#: app/views/options/form.php:606
|
4448 |
+
msgid "Post Shortlinks"
|
4449 |
msgstr ""
|
4450 |
|
4451 |
+
#: app/views/options/form.php:609
|
4452 |
+
msgid "Create Pretty Links for Posts"
|
4453 |
msgstr ""
|
4454 |
|
4455 |
+
#: app/views/options/form.php:610
|
4456 |
+
msgid "Automatically Create a Pretty Link for each of your published Posts"
|
4457 |
msgstr ""
|
4458 |
|
4459 |
+
#: app/views/options/form.php:623
|
4460 |
+
msgid "Page Shortlinks"
|
4461 |
msgstr ""
|
4462 |
|
4463 |
+
#: app/views/options/form.php:626
|
4464 |
+
msgid "Create Pretty Links for Pages"
|
4465 |
msgstr ""
|
4466 |
|
4467 |
+
#: app/views/options/form.php:627
|
4468 |
+
msgid "Automatically Create a Pretty Link for each of your published Pages"
|
4469 |
msgstr ""
|
4470 |
|
4471 |
+
#: app/views/options/form.php:1068
|
4472 |
+
msgid "Public Link Options"
|
4473 |
msgstr ""
|
4474 |
|
4475 |
+
#: app/views/groups/edit.php:10
|
4476 |
+
msgid "Edit Group"
|
4477 |
msgstr ""
|
4478 |
|
4479 |
+
#: app/views/groups/edit.php:23
|
4480 |
+
#: app/views/groups/new.php:24
|
4481 |
+
msgid "This is how you'll identify your Group."
|
4482 |
msgstr ""
|
4483 |
|
4484 |
+
#: app/views/groups/edit.php:26
|
4485 |
+
#: app/views/groups/new.php:27
|
4486 |
+
msgid "Description:"
|
4487 |
msgstr ""
|
4488 |
|
4489 |
+
#: app/views/groups/edit.php:28
|
4490 |
+
#: app/views/groups/new.php:29
|
4491 |
+
msgid "A Description of this group."
|
4492 |
msgstr ""
|
4493 |
|
4494 |
+
#: app/views/groups/edit.php:31
|
4495 |
+
#: app/views/groups/new.php:32
|
4496 |
+
msgid "Links:"
|
4497 |
msgstr ""
|
4498 |
|
4499 |
+
#: app/views/groups/edit.php:37
|
4500 |
+
#: app/views/groups/new.php:38
|
4501 |
+
msgid "Current Group"
|
4502 |
msgstr ""
|
4503 |
|
4504 |
+
#. translators: %1$s: open strong tag, %2$s close strong tag
|
4505 |
+
#: app/views/groups/edit.php:61
|
4506 |
+
#: app/views/groups/new.php:60
|
4507 |
+
msgid "Select some links for this group. %1$sNote: each link can only be in one group at a time.%2$s"
|
4508 |
msgstr ""
|
4509 |
|
4510 |
+
#: app/views/groups/list.php:6
|
4511 |
+
msgid "Groups"
|
4512 |
msgstr ""
|
4513 |
|
4514 |
+
#: app/views/groups/list.php:7
|
4515 |
+
msgid "Add Group"
|
4516 |
msgstr ""
|
4517 |
|
4518 |
+
#: app/views/groups/list.php:62
|
4519 |
+
msgid "No Pretty Link Groups were found"
|
4520 |
msgstr ""
|
4521 |
|
4522 |
+
#: app/views/groups/list.php:79
|
4523 |
+
msgid "Are you sure you want to delete your %s Pretty Link Group?"
|
4524 |
msgstr ""
|
4525 |
|
4526 |
+
#: app/views/groups/list.php:80
|
4527 |
+
#: app/views/groups/list.php:84
|
4528 |
+
msgid "View links in %s"
|
4529 |
msgstr ""
|
4530 |
|
4531 |
+
#: app/views/groups/list.php:81
|
4532 |
+
msgid "View hits in %s"
|
4533 |
msgstr ""
|
4534 |
|
4535 |
+
#: app/views/groups/new.php:10
|
4536 |
+
msgid "New Group"
|
4537 |
msgstr ""
|
4538 |
|
4539 |
+
#: app/views/tools/form.php:3
|
4540 |
+
#: app/controllers/PrliAppController.php:172
|
4541 |
+
msgid "Tools"
|
4542 |
msgstr ""
|
4543 |
|
4544 |
+
#: app/views/tools/form.php:18
|
4545 |
+
#: app/views/tools/form.php:25
|
4546 |
+
msgid "Bookmarklet"
|
4547 |
msgstr ""
|
4548 |
|
4549 |
+
#: app/views/tools/form.php:19
|
4550 |
+
#: app/views/tools/form.php:70
|
4551 |
+
msgid "Trim Clicks"
|
4552 |
msgstr ""
|
4553 |
|
4554 |
+
#: app/views/tools/form.php:28
|
4555 |
+
msgid "Install Pretty Link Bookmarklet"
|
4556 |
msgstr ""
|
4557 |
|
4558 |
+
#. translators: %1$s: open link tag, %2$s close link tag
|
4559 |
+
#: app/views/tools/form.php:31
|
4560 |
+
msgid "Just drag this \"Get PrettyLink\" link to your toolbar to install the bookmarklet. As you browse the web, you can just click this bookmarklet to create a pretty link from the current url you're looking at. %1$s(more help)%2$s"
|
4561 |
msgstr ""
|
4562 |
|
4563 |
+
#: app/views/tools/form.php:36
|
4564 |
+
msgid "Show iPhone Bookmarklet Instructions"
|
4565 |
msgstr ""
|
4566 |
|
4567 |
+
#. translators: %1$s: open strong tag, %2$s close strong tag
|
4568 |
+
#: app/views/tools/form.php:43
|
4569 |
+
msgid "%1$sNote:%2$s iPhone users can install this bookmarklet in their Safari to create Pretty Links with the following steps:"
|
4570 |
msgstr ""
|
4571 |
|
4572 |
+
#: app/views/tools/form.php:49
|
4573 |
+
msgid "Copy this text:"
|
4574 |
msgstr ""
|
4575 |
|
4576 |
+
#: app/views/tools/form.php:50
|
4577 |
+
msgid "Tap the + button at the bottom of the screen"
|
4578 |
msgstr ""
|
4579 |
|
4580 |
+
#: app/views/tools/form.php:51
|
4581 |
+
msgid "Choose to share the page, then click on \"Bookmark\". We recommend saving it in your Favorites folder. Rename your bookmark to \"Get PrettyLink\" (or whatever you want) and then \"Save\""
|
4582 |
msgstr ""
|
4583 |
|
4584 |
+
#: app/views/tools/form.php:52
|
4585 |
+
msgid "Navigate through your Bookmarks until you find the new bookmark and click \"Edit\""
|
4586 |
msgstr ""
|
4587 |
|
4588 |
+
#: app/views/tools/form.php:53
|
4589 |
+
msgid "Delete all the text from the address"
|
4590 |
msgstr ""
|
4591 |
|
4592 |
+
#: app/views/tools/form.php:54
|
4593 |
+
msgid "Paste the text you copied in Step 1 into the address field"
|
4594 |
msgstr ""
|
4595 |
|
4596 |
+
#. translators: %1$s: open strong tag, %2$s close strong tag
|
4597 |
+
#: app/views/tools/form.php:59
|
4598 |
+
msgid "To save the changes hit \"Bookmarks\" and %1$syou're done!%2$s"
|
4599 |
msgstr ""
|
4600 |
|
4601 |
+
#: app/views/tools/form.php:64
|
4602 |
+
msgid "Now when you find a page you want to save off as a Pretty Link, just click the \"Bookmarks\" icon at the bottom of the screen and select your \"Get PrettyLink\" bookmarklet."
|
4603 |
msgstr ""
|
4604 |
|
4605 |
+
#: app/views/tools/form.php:72
|
4606 |
+
msgid "Pretty Link is already automatically trimming Clicks older than 90 days. Although not necessary, you can still use the buttons below to force click trimming."
|
4607 |
msgstr ""
|
4608 |
|
4609 |
+
#: app/views/tools/form.php:75
|
4610 |
+
msgid "***WARNING*** If you click OK you will delete ALL of the Click data that is older than 30 days. Your data will be gone forever -- no way to retreive it. Do not click OK unless you are absolutely sure you want to delete this data because there is no going back!"
|
4611 |
msgstr ""
|
4612 |
|
4613 |
+
#: app/views/tools/form.php:75
|
4614 |
+
msgid "Delete Clicks older than 30 days"
|
4615 |
msgstr ""
|
4616 |
|
4617 |
+
#: app/views/tools/form.php:77
|
4618 |
+
msgid "Clear clicks 30 days or older"
|
4619 |
msgstr ""
|
4620 |
|
4621 |
+
#: app/views/tools/form.php:78
|
4622 |
+
msgid "This will clear all clicks in your database that are older than 30 days."
|
4623 |
msgstr ""
|
4624 |
|
4625 |
+
#: app/views/tools/form.php:80
|
4626 |
+
msgid "***WARNING*** If you click OK you will delete ALL of the Click data that is older than 90 days. Your data will be gone forever -- no way to retreive it. Do not click OK unless you are absolutely sure you want to delete this data because there is no going back!"
|
4627 |
msgstr ""
|
4628 |
|
4629 |
+
#: app/views/tools/form.php:80
|
4630 |
+
msgid "Delete Clicks older than 90 days"
|
4631 |
msgstr ""
|
4632 |
|
4633 |
+
#: app/views/tools/form.php:82
|
4634 |
+
msgid "Clear clicks 90 days or older"
|
4635 |
msgstr ""
|
4636 |
|
4637 |
+
#: app/views/tools/form.php:83
|
4638 |
+
msgid "This will clear all clicks in your database that are older than 90 days."
|
4639 |
msgstr ""
|
4640 |
|
4641 |
+
#: app/views/tools/form.php:87
|
4642 |
+
msgid "***WARNING*** If you click OK you will delete ALL of the Click data in your Database. Your data will be gone forever -- no way to retreive it. Do not click OK unless you are absolutely sure you want to delete all your data because there is no going back!"
|
4643 |
msgstr ""
|
4644 |
|
4645 |
+
#: app/views/tools/form.php:87
|
4646 |
+
msgid "Delete All Clicks"
|
4647 |
msgstr ""
|
4648 |
|
4649 |
+
#: app/views/tools/form.php:89
|
4650 |
+
msgid "Clear all clicks"
|
4651 |
msgstr ""
|
4652 |
|
4653 |
+
#: app/views/tools/form.php:90
|
4654 |
+
msgid "Seriously, only click this link if you want to delete all the Click data in your database."
|
4655 |
msgstr ""
|
4656 |
|
4657 |
+
#: app/views/clicks/list.php:6
|
4658 |
+
#: app/views/clicks/csv_download.php:4
|
4659 |
+
msgid "For %s"
|
4660 |
msgstr ""
|
4661 |
|
4662 |
+
#: app/views/clicks/list.php:21
|
4663 |
+
msgid "Back to Clicks"
|
4664 |
msgstr ""
|
4665 |
|
4666 |
+
#: app/views/clicks/list.php:30
|
4667 |
+
msgid "Type:"
|
4668 |
msgstr ""
|
4669 |
|
4670 |
+
#: app/views/clicks/list.php:39
|
4671 |
+
msgid "to"
|
4672 |
msgstr ""
|
4673 |
|
4674 |
+
#: app/views/clicks/list.php:62
|
4675 |
+
msgid "Search Clicks"
|
4676 |
msgstr ""
|
4677 |
|
4678 |
+
#: app/views/clicks/list.php:73
|
4679 |
+
#: app/views/clicks/list.php:171
|
4680 |
+
msgid "Browser"
|
4681 |
msgstr ""
|
4682 |
|
4683 |
+
#: app/views/clicks/list.php:75
|
4684 |
+
#: app/views/clicks/list.php:172
|
4685 |
+
msgid "OS"
|
4686 |
msgstr ""
|
4687 |
|
4688 |
+
#: app/views/clicks/list.php:79
|
4689 |
+
#: app/views/clicks/list.php:174
|
4690 |
+
msgid "IP"
|
4691 |
msgstr ""
|
4692 |
|
4693 |
+
#: app/views/clicks/list.php:83
|
4694 |
+
#: app/views/clicks/list.php:176
|
4695 |
+
msgid "Visitor"
|
4696 |
msgstr ""
|
4697 |
|
4698 |
+
#: app/views/clicks/list.php:87
|
4699 |
+
#: app/views/clicks/list.php:178
|
4700 |
+
msgid "Timestamp"
|
4701 |
msgstr ""
|
4702 |
|
4703 |
+
#: app/views/clicks/list.php:91
|
4704 |
+
#: app/views/clicks/list.php:180
|
4705 |
+
msgid "Host"
|
4706 |
msgstr ""
|
4707 |
|
4708 |
+
#: app/views/clicks/list.php:95
|
4709 |
+
#: app/views/clicks/list.php:182
|
4710 |
+
msgid "URI"
|
4711 |
msgstr ""
|
4712 |
|
4713 |
+
#: app/views/clicks/list.php:98
|
4714 |
+
#: app/views/clicks/list.php:183
|
4715 |
+
msgid "Referrer"
|
4716 |
msgstr ""
|
4717 |
|
4718 |
+
#: app/views/clicks/list.php:111
|
4719 |
+
msgid "No Clicks have been recorded yet"
|
4720 |
msgstr ""
|
4721 |
|
4722 |
+
#: app/views/clicks/list.php:147
|
4723 |
+
msgid "View All Activity for IP Address: %s"
|
4724 |
msgstr ""
|
4725 |
|
4726 |
+
#: app/views/clicks/list.php:150
|
4727 |
+
msgid "View All Activity for Visitor: %s"
|
4728 |
msgstr ""
|
4729 |
|
4730 |
+
#: app/views/clicks/list.php:190
|
4731 |
+
msgid "Download CSV"
|
4732 |
msgstr ""
|
4733 |
|
4734 |
+
#: app/views/clicks/csv_download.php:3
|
4735 |
+
msgid "Download Clicks"
|
4736 |
msgstr ""
|
4737 |
|
4738 |
+
#: app/views/clicks/csv_download.php:6
|
4739 |
+
msgid "Click Reports:"
|
4740 |
msgstr ""
|
4741 |
|
4742 |
+
#: app/views/clicks/csv_download.php:7
|
4743 |
+
msgid "All clicks on %s"
|
4744 |
msgstr ""
|
4745 |
|
4746 |
+
#: app/views/clicks/csv_download.php:24
|
4747 |
+
msgid "Clicks %d-%d (%d Records)"
|
4748 |
msgstr ""
|
4749 |
|
4750 |
+
#: app/controllers/PrliUpdateController.php:74
|
4751 |
+
msgid "Why you creepin'?"
|
4752 |
msgstr ""
|
4753 |
|
4754 |
+
#: app/controllers/PrliUpdateController.php:318
|
4755 |
+
msgid "Check for Update"
|
4756 |
msgstr ""
|
4757 |
|
4758 |
+
#: app/controllers/PrliUpdateController.php:387
|
4759 |
+
msgid "You had an HTTP error connecting to Caseproof's Mothership API"
|
4760 |
msgstr ""
|
4761 |
|
4762 |
+
#: app/controllers/PrliUpdateController.php:399
|
4763 |
+
msgid "Your License Key was invalid"
|
4764 |
msgstr ""
|
4765 |
|
4766 |
+
#: app/controllers/PrliUpdateController.php:425
|
4767 |
+
msgid "You do not have access."
|
4768 |
msgstr ""
|
4769 |
|
4770 |
+
#: app/controllers/PrliUpdateController.php:429
|
4771 |
+
msgid "Edge updates couldn't be updated."
|
4772 |
msgstr ""
|
4773 |
|
4774 |
+
#: app/controllers/PrliUpdateController.php:492
|
4775 |
+
#: app/controllers/PrliLinksController.php:166
|
4776 |
+
#: app/controllers/PrliAppController.php:134
|
4777 |
+
msgid "Link Categories"
|
4778 |
msgstr ""
|
4779 |
|
4780 |
+
#: app/controllers/PrliUpdateController.php:498
|
4781 |
+
#: app/controllers/PrliLinksController.php:167
|
4782 |
+
#: app/controllers/PrliAppController.php:142
|
4783 |
+
msgid "Link Tags"
|
4784 |
msgstr ""
|
4785 |
|
4786 |
+
#: app/controllers/PrliToolsController.php:94
|
4787 |
+
msgid "Click Database was Cleared."
|
4788 |
msgstr ""
|
4789 |
|
4790 |
+
#: app/controllers/PrliToolsController.php:100
|
4791 |
+
msgid "Clicks older than %1$d days (%2$d Clicks) were deleted"
|
4792 |
msgstr ""
|
4793 |
|
4794 |
+
#: app/controllers/PrliToolsController.php:103
|
4795 |
+
msgid "No clicks older than %1$d days were found, so nothing was deleted"
|
4796 |
msgstr ""
|
4797 |
|
4798 |
+
#: app/controllers/PrliClicksController.php:90
|
4799 |
+
msgid "IP Address: "
|
4800 |
msgstr ""
|
4801 |
|
4802 |
+
#: app/controllers/PrliClicksController.php:95
|
4803 |
+
msgid "Visitor: "
|
4804 |
msgstr ""
|
4805 |
|
4806 |
+
#: app/controllers/PrliClicksController.php:100
|
4807 |
+
msgid "All Links"
|
4808 |
msgstr ""
|
4809 |
|
4810 |
+
#: app/controllers/PrliXmlRpcController.php:36
|
4811 |
+
#: app/controllers/PrliXmlRpcController.php:103
|
4812 |
+
#: app/controllers/PrliXmlRpcController.php:152
|
4813 |
+
#: app/controllers/PrliXmlRpcController.php:209
|
4814 |
+
#: app/controllers/PrliXmlRpcController.php:238
|
4815 |
+
#: app/controllers/PrliXmlRpcController.php:266
|
4816 |
+
#: app/controllers/PrliXmlRpcController.php:299
|
4817 |
+
#: app/controllers/PrliXmlRpcController.php:331
|
4818 |
+
msgid "Sorry, XML-RPC Not enabled for this website"
|
4819 |
msgstr ""
|
4820 |
|
4821 |
+
#: app/controllers/PrliXmlRpcController.php:39
|
4822 |
+
#: app/controllers/PrliXmlRpcController.php:106
|
4823 |
+
#: app/controllers/PrliXmlRpcController.php:155
|
4824 |
+
#: app/controllers/PrliXmlRpcController.php:212
|
4825 |
+
#: app/controllers/PrliXmlRpcController.php:241
|
4826 |
+
#: app/controllers/PrliXmlRpcController.php:269
|
4827 |
+
#: app/controllers/PrliXmlRpcController.php:302
|
4828 |
+
#: app/controllers/PrliXmlRpcController.php:334
|
4829 |
+
msgid "Sorry, Login failed"
|
4830 |
msgstr ""
|
4831 |
|
4832 |
+
#: app/controllers/PrliXmlRpcController.php:45
|
4833 |
+
#: app/controllers/PrliXmlRpcController.php:112
|
4834 |
+
#: app/controllers/PrliXmlRpcController.php:161
|
4835 |
+
#: app/controllers/PrliXmlRpcController.php:218
|
4836 |
+
#: app/controllers/PrliXmlRpcController.php:247
|
4837 |
+
#: app/controllers/PrliXmlRpcController.php:275
|
4838 |
+
#: app/controllers/PrliXmlRpcController.php:308
|
4839 |
+
#: app/controllers/PrliXmlRpcController.php:340
|
4840 |
+
msgid "Sorry, you must be an administrator to access this resource"
|
4841 |
msgstr ""
|
4842 |
|
4843 |
+
#: app/controllers/PrliXmlRpcController.php:116
|
4844 |
+
msgid "You must provide a target URL"
|
4845 |
msgstr ""
|
4846 |
|
4847 |
+
#: app/controllers/PrliXmlRpcController.php:144
|
4848 |
+
#: app/controllers/PrliXmlRpcController.php:194
|
4849 |
+
msgid "There was an error creating your Pretty Link"
|
4850 |
msgstr ""
|
4851 |
|
4852 |
+
#: app/controllers/PrliXmlRpcController.php:165
|
4853 |
+
msgid "You must provide the id of the link you want to update"
|
4854 |
msgstr ""
|
4855 |
|
4856 |
+
#: app/controllers/PrliXmlRpcController.php:223
|
4857 |
+
msgid "There was an error fetching the Pretty Link Groups"
|
4858 |
msgstr ""
|
4859 |
|
4860 |
+
#: app/controllers/PrliXmlRpcController.php:252
|
4861 |
+
msgid "There was an error fetching the Pretty Links"
|
4862 |
msgstr ""
|
4863 |
|
4864 |
+
#: app/controllers/PrliXmlRpcController.php:278
|
4865 |
+
msgid "Sorry, you must provide a slug to lookup"
|
4866 |
msgstr ""
|
4867 |
|
4868 |
+
#: app/controllers/PrliXmlRpcController.php:285
|
4869 |
+
#: app/controllers/PrliXmlRpcController.php:318
|
4870 |
+
msgid "There was an error fetching your Pretty Link"
|
4871 |
msgstr ""
|
4872 |
|
4873 |
+
#: app/controllers/PrliXmlRpcController.php:311
|
4874 |
+
#: app/controllers/PrliXmlRpcController.php:343
|
4875 |
+
msgid "Sorry, you must provide an id to lookup"
|
4876 |
msgstr ""
|
4877 |
|
4878 |
+
#: app/controllers/PrliXmlRpcController.php:350
|
4879 |
+
msgid "There was an error fetching your Pretty Link URL"
|
4880 |
msgstr ""
|
4881 |
|
4882 |
+
#: app/controllers/PrliOptionsController.php:62
|
4883 |
+
msgid "Options saved."
|
4884 |
msgstr ""
|
4885 |
|
4886 |
+
#: app/controllers/PrliOptionsController.php:76
|
4887 |
+
msgid "Excluded IP Addresses must be a comma separated list of IPv4 or IPv6 addresses or ranges."
|
4888 |
msgstr ""
|
4889 |
|
4890 |
+
#: app/controllers/PrliOptionsController.php:80
|
4891 |
+
msgid "Whitelist IP Addresses must be a comma separated list of IPv4 or IPv6 addresses or ranges."
|
4892 |
msgstr ""
|
4893 |
|
4894 |
+
#: app/controllers/PrliPopupController.php:63
|
4895 |
+
msgid "An unknown error occurred."
|
4896 |
msgstr ""
|
4897 |
|
4898 |
+
#: app/controllers/PrliPopupController.php:93
|
4899 |
+
#: app/controllers/PrliLinksController.php:432
|
4900 |
+
#: app/controllers/PrliLinksController.php:774
|
4901 |
+
msgid "Forbidden"
|
4902 |
msgstr ""
|
4903 |
|
4904 |
+
#: app/controllers/PrliPopupController.php:97
|
4905 |
+
msgid "Must specify a popup"
|
4906 |
msgstr ""
|
4907 |
|
4908 |
+
#: app/controllers/PrliPopupController.php:103
|
4909 |
+
msgid "Invalid popup"
|
4910 |
msgstr ""
|
4911 |
|
4912 |
+
#: app/controllers/PrliPopupController.php:108
|
4913 |
+
msgid "The popup was successfully delayed"
|
4914 |
msgstr ""
|
4915 |
|
4916 |
+
#: app/controllers/PrliPopupController.php:112
|
4917 |
+
msgid "The popup was successfully stopped"
|
4918 |
msgstr ""
|
4919 |
|
4920 |
+
#: app/controllers/PrliLocalApiController.php:103
|
4921 |
+
#: app/controllers/PrliLocalApiController.php:167
|
4922 |
+
msgid "An error prevented your Pretty Link from being created"
|
4923 |
msgstr ""
|
4924 |
|
4925 |
+
#: app/controllers/PrliLocalApiController.php:128
|
4926 |
+
msgid "Pretty Link ID must be set for successful update."
|
4927 |
msgstr ""
|
4928 |
|
4929 |
+
#: app/controllers/PrliFlyoutMenuController.php:34
|
4930 |
+
msgid "See Quick Links"
|
4931 |
msgstr ""
|
4932 |
|
4933 |
+
#: app/controllers/PrliFlyoutMenuController.php:86
|
4934 |
+
msgid "Support & Docs"
|
4935 |
msgstr ""
|
4936 |
|
4937 |
+
#: app/controllers/PrliFlyoutMenuController.php:91
|
4938 |
+
msgid "Suggest a Feature"
|
4939 |
msgstr ""
|
4940 |
|
4941 |
+
#: app/controllers/PrliLinksController.php:60
|
4942 |
+
msgid "Add New Pretty Link"
|
4943 |
msgstr ""
|
4944 |
|
4945 |
+
#: app/controllers/PrliLinksController.php:61
|
4946 |
+
msgid "Edit Pretty Link"
|
4947 |
msgstr ""
|
4948 |
|
4949 |
+
#: app/controllers/PrliLinksController.php:62
|
4950 |
+
#: js/editor/components/link-editor/index.js:379
|
4951 |
+
#: js/editor.js:12
|
4952 |
+
msgid "New Pretty Link"
|
4953 |
msgstr ""
|
4954 |
|
4955 |
+
#: app/controllers/PrliLinksController.php:63
|
4956 |
+
msgid "View Pretty Link"
|
4957 |
msgstr ""
|
4958 |
|
4959 |
+
#: app/controllers/PrliLinksController.php:64
|
4960 |
+
msgid "Search Pretty Links"
|
4961 |
msgstr ""
|
4962 |
|
4963 |
+
#: app/controllers/PrliLinksController.php:65
|
4964 |
+
msgid "No Pretty Links found"
|
4965 |
msgstr ""
|
4966 |
|
4967 |
+
#: app/controllers/PrliLinksController.php:66
|
4968 |
+
msgid "No Pretty Links found in Trash"
|
4969 |
msgstr ""
|
4970 |
|
4971 |
+
#: app/controllers/PrliLinksController.php:67
|
4972 |
+
msgid "Parent Pretty Link:"
|
4973 |
msgstr ""
|
4974 |
|
4975 |
+
#: app/controllers/PrliLinksController.php:128
|
4976 |
+
msgid "Pretty Link Settings"
|
4977 |
msgstr ""
|
4978 |
|
4979 |
+
#: app/controllers/PrliLinksController.php:136
|
4980 |
+
msgid "Advanced Features"
|
4981 |
msgstr ""
|
4982 |
|
4983 |
+
#: app/controllers/PrliLinksController.php:163
|
4984 |
+
msgid "Auto Create Pretty Links"
|
4985 |
msgstr ""
|
4986 |
|
4987 |
+
#: app/controllers/PrliLinksController.php:164
|
4988 |
+
msgid "Auto-Link Keywords"
|
4989 |
msgstr ""
|
4990 |
|
4991 |
+
#: app/controllers/PrliLinksController.php:165
|
4992 |
+
msgid "Support & Updates"
|
4993 |
msgstr ""
|
4994 |
|
4995 |
+
#: app/controllers/PrliLinksController.php:168
|
4996 |
+
msgid "Plus Much More!"
|
4997 |
msgstr ""
|
4998 |
|
4999 |
+
#: app/controllers/PrliLinksController.php:170
|
5000 |
+
msgid "Tell Me More"
|
5001 |
msgstr ""
|
5002 |
|
5003 |
+
#: app/controllers/PrliLinksController.php:350
|
5004 |
+
msgid "Pretty Link updated."
|
5005 |
msgstr ""
|
5006 |
|
5007 |
+
#: app/controllers/PrliLinksController.php:352
|
5008 |
+
msgid "Pretty Link created."
|
5009 |
msgstr ""
|
5010 |
|
5011 |
+
#: app/controllers/PrliLinksController.php:420
|
5012 |
+
msgid "Pretty Link Cleanup Visitor Locks"
|
5013 |
msgstr ""
|
5014 |
|
5015 |
+
#: app/controllers/PrliLinksController.php:441
|
5016 |
+
msgid "Success!"
|
5017 |
msgstr ""
|
5018 |
|
5019 |
+
#: app/controllers/PrliLinksController.php:443
|
5020 |
+
msgid "Fix the following errors:"
|
5021 |
msgstr ""
|
5022 |
|
5023 |
+
#: app/controllers/PrliLinksController.php:477
|
5024 |
+
msgid "Upgrade to a Pretty Links premium plan to get Link Categories"
|
5025 |
msgstr ""
|
5026 |
|
5027 |
+
#: app/controllers/PrliLinksController.php:483
|
5028 |
+
msgid "Upgrade to a Pretty Links premium plan to get Link Tags"
|
5029 |
msgstr ""
|
5030 |
|
5031 |
+
#: app/controllers/PrliLinksController.php:489
|
5032 |
+
msgid "Upgrade to a Pretty Links premium plan to get Keyword Replacements"
|
5033 |
msgstr ""
|
5034 |
|
5035 |
+
#: app/controllers/PrliLinksController.php:497
|
5036 |
+
msgid "Settings"
|
5037 |
msgstr ""
|
5038 |
|
5039 |
+
#: app/controllers/PrliLinksController.php:498
|
5040 |
+
msgid "Link Title"
|
5041 |
msgstr ""
|
5042 |
|
5043 |
+
#: app/controllers/PrliLinksController.php:500
|
5044 |
+
msgid "Target"
|
5045 |
msgstr ""
|
5046 |
|
5047 |
+
#: app/controllers/PrliLinksController.php:609
|
5048 |
+
#: app/controllers/PrliLinksController.php:616
|
5049 |
+
#: app/controllers/PrliLinksController.php:623
|
5050 |
+
msgid "No Change"
|
5051 |
msgstr ""
|
5052 |
|
5053 |
+
#: app/controllers/PrliLinksController.php:730
|
5054 |
+
msgid "Tweet"
|
5055 |
msgstr ""
|
5056 |
|
5057 |
+
#: app/controllers/PrliLinksController.php:732
|
5058 |
+
msgid "Target »"
|
5059 |
msgstr ""
|
5060 |
|
5061 |
+
#: app/controllers/PrliLinksController.php:733
|
5062 |
+
msgid "Pretty Link »"
|
5063 |
msgstr ""
|
5064 |
|
5065 |
+
#: app/controllers/PrliLinksController.php:755
|
5066 |
+
#: app/controllers/PrliLinksController.php:756
|
5067 |
+
msgid "View Split Test Report"
|
5068 |
msgstr ""
|
5069 |
|
5070 |
+
#: app/controllers/PrliLinksController.php:780
|
5071 |
+
msgid "Your Pretty Link was Successfully Reset"
|
5072 |
msgstr ""
|
5073 |
|
5074 |
+
#: app/controllers/PrliLinksController.php:788
|
5075 |
+
msgid "Bad request"
|
5076 |
msgstr ""
|
5077 |
|
5078 |
+
#: app/controllers/PrliLinksController.php:792
|
5079 |
+
msgid "Insufficient permissions"
|
5080 |
msgstr ""
|
5081 |
|
5082 |
+
#: app/controllers/PrliLinksController.php:825
|
5083 |
+
msgid "An error occurred creating the link"
|
5084 |
msgstr ""
|
5085 |
|
5086 |
+
#: app/controllers/PrliLinksController.php:862
|
5087 |
+
msgid "All Groups (Legacy)"
|
5088 |
msgstr ""
|
5089 |
|
5090 |
+
#: app/controllers/PrliAppController.php:84
|
5091 |
+
msgid "You're using Pretty Links Lite. To unlock more features, consider <a href=\"https://prettylinks.com/pl/main-menu/upgrade?plugin-upgrade-header\">upgrading to Pro.</a>"
|
5092 |
msgstr ""
|
5093 |
|
5094 |
+
#: app/controllers/PrliAppController.php:168
|
5095 |
+
msgid "Pretty Links | Clicks"
|
5096 |
msgstr ""
|
5097 |
|
5098 |
+
#: app/controllers/PrliAppController.php:172
|
5099 |
+
msgid "Pretty Links | Tools"
|
5100 |
msgstr ""
|
5101 |
|
5102 |
+
#: app/controllers/PrliAppController.php:175
|
5103 |
+
msgid "Pretty Links | Options"
|
5104 |
msgstr ""
|
5105 |
|
5106 |
+
#: app/controllers/PrliAppController.php:179
|
5107 |
+
#: app/controllers/PrliAppController.php:182
|
5108 |
+
#: app/controllers/PrliAppController.php:319
|
5109 |
+
msgid "Activate"
|
5110 |
msgstr ""
|
5111 |
|
5112 |
+
#: app/controllers/PrliAppController.php:185
|
5113 |
+
msgid "Upgrade"
|
5114 |
msgstr ""
|
5115 |
|
5116 |
+
#: app/controllers/PrliAppController.php:190
|
5117 |
+
msgid "Welcome"
|
5118 |
msgstr ""
|
5119 |
|
5120 |
+
#: app/controllers/PrliAppController.php:318
|
5121 |
+
#: app/controllers/PrliAppController.php:324
|
5122 |
+
#: app/controllers/PrliAppController.php:329
|
5123 |
+
msgid "Docs"
|
5124 |
msgstr ""
|
5125 |
|
5126 |
+
#: app/controllers/PrliAppController.php:322
|
5127 |
+
#: app/controllers/PrliAppController.php:328
|
5128 |
+
msgid "Activate Pro License"
|
5129 |
msgstr ""
|
5130 |
|
5131 |
+
#: app/controllers/PrliAppController.php:323
|
5132 |
+
msgid "Buy"
|
5133 |
msgstr ""
|
5134 |
|
5135 |
+
#: app/controllers/PrliAppController.php:431
|
5136 |
+
msgid "Copy to Clipboard"
|
5137 |
msgstr ""
|
5138 |
|
5139 |
+
#: app/controllers/PrliAppController.php:432
|
5140 |
+
msgid "Copied!"
|
5141 |
msgstr ""
|
5142 |
|
5143 |
+
#: app/controllers/PrliAppController.php:433
|
5144 |
+
msgid "Oops, Copy Failed!"
|
5145 |
msgstr ""
|
5146 |
|
5147 |
+
#: app/controllers/PrliAppController.php:457
|
5148 |
+
msgid "Are you sure you want to reset your Pretty Link? This will delete all of the statistical data about this Pretty Link in your database."
|
5149 |
msgstr ""
|
5150 |
|
5151 |
+
#. translators: %1$s: br tag, %2$s: open link tag, %3$s: close link tag
|
5152 |
+
#: app/controllers/PrliAppController.php:562
|
5153 |
+
msgid "You're almost done!%1$s%2$sFinish your Re-Install of Pretty Links Pro%3$s"
|
5154 |
msgstr ""
|
5155 |
|
5156 |
+
#: app/controllers/PrliAppController.php:577
|
5157 |
+
msgid "Pretty Links Pro Successfully Uninstalled."
|
5158 |
msgstr ""
|
5159 |
|
5160 |
+
#: app/controllers/PrliAppController.php:626
|
5161 |
+
msgid "Invalid server response"
|
5162 |
msgstr ""
|
5163 |
|
5164 |
+
#: app/controllers/PrliAppController.php:627
|
5165 |
+
msgid "Ajax error"
|
5166 |
msgstr ""
|
5167 |
|
5168 |
+
#: app/controllers/PrliAppController.php:644
|
5169 |
+
msgid "Pretty Link Quick Add"
|
5170 |
msgstr ""
|
5171 |
|
5172 |
+
#: app/controllers/PrliAppController.php:683
|
5173 |
+
msgid "Your Pretty Links Pro installation isn't quite complete yet. %1$sAutomatically Upgrade to Enable Pretty Links Pro%2$s"
|
5174 |
msgstr ""
|
5175 |
|
5176 |
+
#: app/controllers/PrliAppController.php:704
|
5177 |
+
msgid "Your Pretty Links Pro installation isn't quite complete yet.<br/>%1$sAutomatically Upgrade to Enable Pretty Links Pro%2$s"
|
5178 |
msgstr ""
|
5179 |
|
5180 |
+
#. translators: $1$s - Pretty Links plugin name; $2$s - WP.org review link; $3$s - WP.org review link.
|
5181 |
+
#: app/controllers/PrliAppController.php:752
|
5182 |
+
msgid "Enjoying %1$s? Please rate <a href=\"%2$s\" target=\"_blank\" rel=\"noopener noreferrer\">★★★★★</a> on <a href=\"%3$s\" target=\"_blank\" rel=\"noopener\">WordPress.org</a> to help us spread the word. Thanks from the Pretty Links team!"
|
5183 |
msgstr ""
|
5184 |
|
5185 |
+
#: app/controllers/PrliReviewNoticeController.php:60
|
5186 |
+
msgid "That's awesome! Could you please do me a BIG favor and give it a 5-star rating on WordPress to help us spread the word and boost our motivation?"
|
5187 |
msgstr ""
|
5188 |
|
5189 |
+
#: app/controllers/PrliReviewNoticeController.php:63
|
5190 |
+
msgid "Okay, you deserve it"
|
5191 |
msgstr ""
|
5192 |
|
5193 |
+
#: app/controllers/PrliReviewNoticeController.php:64
|
5194 |
+
msgid "Nope, maybe later"
|
5195 |
msgstr ""
|
5196 |
|
5197 |
+
#: app/controllers/PrliReviewNoticeController.php:65
|
5198 |
+
msgid "I already did"
|
5199 |
msgstr ""
|
5200 |
|
5201 |
+
#: app/controllers/PrliReviewNoticeController.php:69
|
5202 |
+
msgid "We're sorry to hear you aren't enjoying Pretty Links. We would love a chance to improve. Could you take a minute and let us know what we can do better?"
|
5203 |
msgstr ""
|
5204 |
|
5205 |
+
#: app/controllers/PrliReviewNoticeController.php:71
|
5206 |
+
msgid "Give Feedback"
|
5207 |
msgstr ""
|
5208 |
|
5209 |
+
#: app/controllers/PrliReviewNoticeController.php:72
|
5210 |
+
msgid "No thanks"
|
5211 |
msgstr ""
|
images/Confetti.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg enable-background="new 0 0 2250 730" viewBox="0 0 2250 730" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><clipPath id="a"><path d="m-.3 1h2250.6v728h-2250.6z"/></clipPath><path d="m-.3 1h2250.6v728h-2250.6z" fill="#fff"/><path clip-path="url(#a)" d="m243.9 99.7c1.6-2.8.6-6.4-2.1-8.1l-18.1-11.4c-1.4-.9-3.1-1.2-4.7-.8s-3 1.5-3.8 2.9c-10.3 18.2-15.9 38.3-15.9 57.2 0 19.7 6.1 35.9 15.9 48.4 5.3-11.9 11.1-21.2 20-32.8-1.5-4.6-2.3-9.8-2.3-15.6-.1-12.6 3.9-26.9 11-39.8" fill="#fff588"/><path clip-path="url(#a)" d="m304.1 133.5c-49 0-85.8 53.4-85.8 96.9 0 28.6 13.2 53.7 36.3 69.6 1.4 1 3.1 1.3 4.8.9s3.1-1.4 3.9-2.9l10.9-18.5c1.6-2.7.9-6.2-1.7-8-43.7-31.6-11.3-104.5 31.6-104.5 10.1 0 11.7 14.9-16.4 17.5-11.6 8-19 19-22.2 32.7 4.5.8 9.1 1.2 13.7 1.2 32.5 0 65.5-15.2 65.5-44.2 0-20-15.2-40.7-40.6-40.7" fill="#fff588"/><path clip-path="url(#a)" d="m1587.4 175.4c-3.1.8-5.1 3.9-4.4 7.1l4.2 21c.3 1.6 1.3 3.1 2.7 4s3.1 1.2 4.7.8c20.3-5.1 38.7-14.9 52.4-27.9 14.3-13.6 21.8-29.2 24.2-44.9-12.2 4.3-23 6.6-37.6 8.1-2.3 4.3-5.5 8.5-9.7 12.5-9.2 8.6-22.3 15.6-36.5 19.3" fill="#0babc4"/><path clip-path="url(#a)" d="m1712.7 76.7-18.3-11.1c-1.4-.8-3.1-1.1-4.7-.7s-2.9 1.4-3.8 2.8c-18 31-68.4 41.7-91.4 17.6-6.9-7.3 2.8-18.7 24-.1v-.1c13.8 2.9 26.9.6 39-6.4-2.6-3.8-5.4-7.4-8.6-10.7-22.4-23.6-56.2-37-77.2-17-14.5 13.8-19 39-1.5 57.4 33.8 35.5 97.9 25.3 129.3-4.6 6.1-5.8 11.1-12.1 15.1-19 1.9-2.7 1-6.4-1.9-8.1" fill="#0babc4"/><path clip-path="url(#a)" d="m536.5 30.7c-.7-1.5-2-2.6-3.5-3.2-1.6-.5-3.3-.4-4.7.3-24.4 12.3-45.9 29.9-68.7 55.9-1.1 1.2-1.6 2.8-1.5 4.5.1 1.6.9 3.1 2.1 4.2l16.3 13.8c2.5 2.2 6.3 1.9 8.5-.6 19.8-22.6 37.5-37.2 57.8-47.5 2.9-1.5 4.1-5 2.8-8z" fill="#bd42b1"/><path clip-path="url(#a)" d="m1535.7-50.3c1-1.3 1.4-3 1.1-4.6s-1.2-3.1-2.5-4c-22.4-15.6-48.1-26.3-81.8-34-1.6-.4-3.3-.1-4.6.8-1.4.9-2.3 2.3-2.7 3.9l-4.5 20.9c-.7 3.3 1.4 6.5 4.6 7.2 29.2 6.7 50.5 15.4 69.2 28.4 2.7 1.9 6.4 1.3 8.4-1.4z" fill="#6e1766"/><path clip-path="url(#a)" d="m751.6 36.9-20.6-5.6c-3.2-.9-6.5.9-7.4 4.1-1.3 4.2-2.8 8.5-4.8 12.7-1.3 2.9-.3 6.3 2.5 7.9l18.6 10.6c1.5.8 3.2 1 4.8.5s2.9-1.6 3.7-3.2c3.3-6.7 5.6-13.3 7.5-19.4.5-1.6.3-3.3-.5-4.7s-2.2-2.5-3.8-2.9" fill="#a2e0eb"/><path clip-path="url(#a)" d="m524.1 227.1 20.6-5.5c3.2-.8 5.1-4.1 4.4-7.3-1-4.3-1.8-8.8-2.2-13.4-.3-3.2-2.9-5.5-6.1-5.5h-21.4c-1.7 0-3.3.8-4.4 2s-1.7 2.9-1.6 4.6c.5 7.5 1.8 14.4 3.3 20.6.4 1.6 1.4 3 2.8 3.8 1.3.8 3 1.1 4.6.7" fill="#ff9263"/><path clip-path="url(#a)" d="m32 56.6 12.7-17.2c2-2.7 1.4-6.4-1.1-8.4-3.5-2.7-6.9-5.7-10.1-9-2.2-2.3-5.8-2.5-8.2-.5l-16.7 13.4c-1.3 1.1-2.1 2.6-2.2 4.3s.5 3.3 1.6 4.6c5.1 5.5 10.4 10.1 15.4 14 1.3 1 3 1.5 4.6 1.2 1.6-.2 3.1-1.1 4-2.4" fill="#ff9263"/><path clip-path="url(#a)" d="m202.7 495.5 10.1 18.8c1.6 2.9 5.1 4 8.1 2.6 3.9-2 8.1-3.8 12.5-5.3 3-1 4.8-4.1 4-7.2l-5.1-20.8c-.4-1.6-1.5-3-2.9-3.9-1.5-.8-3.2-1-4.8-.5-7.1 2.2-13.6 5.1-19.2 7.9-1.5.7-2.6 2-3.1 3.6s-.4 3.3.4 4.8" fill="#bd42b1"/><path clip-path="url(#a)" d="m1841-34.8.7-21.3c.1-3.3-2.4-6.1-5.7-6.3-4.4-.3-8.9-.8-13.5-1.7-3.1-.6-6.2 1.2-7.1 4.3l-6 20.5c-.5 1.6-.3 3.4.6 4.8.9 1.5 2.3 2.5 3.9 2.9 7.3 1.6 14.3 2.4 20.6 2.8 1.6.1 3.3-.5 4.5-1.6 1.2-1.2 1.9-2.7 2-4.4" fill="#bd42b1"/><path clip-path="url(#a)" d="m2079.9 332.1 5.9-20.5c.9-3.2-.9-6.5-4-7.5-4.2-1.3-8.5-2.9-12.7-4.9-2.9-1.4-6.3-.3-7.9 2.4l-10.8 18.5c-.9 1.5-1.1 3.2-.6 4.8s1.6 3 3.1 3.7c6.7 3.4 13.3 5.8 19.3 7.7 1.6.5 3.3.3 4.7-.5 1.5-.8 2.5-2.2 3-3.7" fill="#0babc4"/><path clip-path="url(#a)" d="m85.2 206.5-15.1-15.1c-2.3-2.3-6.1-2.4-8.5-.1-3.2 3-6.7 6-10.5 8.7-2.6 1.8-3.4 5.3-1.7 8.1l10.8 18.5c.9 1.5 2.3 2.5 3.9 2.9s3.4 0 4.8-.9c6.2-4.2 11.5-8.8 16.1-13.1 1.2-1.1 1.9-2.7 1.9-4.3.1-2-.5-3.5-1.7-4.7" fill="#a2e0eb"/><path clip-path="url(#a)" d="m900.8-32.3c-1.5-3-5.1-4.2-8.1-2.7l-19.2 9.4c-1.5.7-2.6 2-3.1 3.5s-.4 3.2.3 4.7c8 15.9 17.1 31.9 30.7 45.2 1.2 1.2 2.8 1.8 4.5 1.7s3.3-.8 4.4-2.1l14-16.2c2.1-2.4 2-6-.3-8.3-9.5-9.7-16.6-22.1-23.2-35.2" fill="#0babc4"/><path clip-path="url(#a)" d="m655.3-113.3c-1.3-1-2.9-1.4-4.6-1.2l-21.2 2.8c-3.3.4-5.6 3.4-5.2 6.7 1.1 9.3 1.6 17.4 1.6 25.3 0 4.4-.2 8.6-.5 12.8-.2 3.3 2.1 6.2 5.4 6.5l21.2 2.4c1.6.2 3.3-.3 4.6-1.4 1.3-1 2.1-2.6 2.2-4.2.4-5.3.6-10.6.6-16.1 0-9.3-.6-18.8-1.8-29.5-.2-1.6-1-3.1-2.3-4.1" fill="#ff9263"/><path clip-path="url(#a)" d="m27.6 600c1.1 1.2 2.6 2 4.2 2.1l21.3 1.3c3.3.2 6.2-2.3 6.5-5.6.7-9.4 1.7-13.4 4.6-24.4.8-3.2-.9-6.5-4-7.4l-20.4-6.4c-1.6-.5-3.3-.3-4.7.4-1.5.8-2.5 2.1-3 3.7-3.4 12.6-5.1 20.5-6 31.9-.1 1.6.4 3.2 1.5 4.4" fill="#6e1766"/><path clip-path="url(#a)" d="m1970.7-106.9c-1 1.3-1.5 2.9-1.3 4.5l2.7 21.2c.4 3.3 3.4 5.7 6.7 5.3 9.4-1 13.5-.8 24.9 0 3.3.2 6.2-2.1 6.6-5.4l2.5-21.2c.2-1.6-.3-3.3-1.3-4.6s-2.6-2.1-4.2-2.2c-13-1-21.1-1.2-32.4.1-1.7.2-3.2 1-4.2 2.3" fill="#a2e0eb"/><path clip-path="url(#a)" d="m245.9-74.2c-.9-3.1-4-4.9-7.1-4.3l-21 4.3c-1.6.3-3.1 1.4-4 2.8s-1.1 3.2-.7 4.8c5.8 21.3 18.5 41.9 35.1 57.1 1.2 1.1 2.9 1.7 4.6 1.6s3.2-.9 4.3-2.2l13.5-16.6c2-2.5 1.8-6.1-.6-8.3-11.3-10.7-20-24.7-24.1-39.2" fill="#6e1766"/><path clip-path="url(#a)" d="m2195.2 502c-2.8 1.5-4 4.9-2.8 7.8l8.4 19.7c.7 1.5 1.9 2.8 3.5 3.3 1.6.6 3.3.5 4.8-.3 19.7-9.9 37.4-26.4 49-45.7.9-1.4 1.1-3.2.6-4.8s-1.6-3-3-3.8l-19-9.9c-2.8-1.5-6.3-.5-8 2.2-8.1 13.3-20.1 24.6-33.5 31.5" fill="#a2e0eb"/><path clip-path="url(#a)" d="m2256.6 21.9c1 3 4.2 4.8 7.3 4l20.8-5.2c1.6-.4 3-1.5 3.8-2.9.8-1.5 1-3.2.5-4.8-6.7-21-20.2-41.1-37.4-55.6-1.3-1.1-3-1.6-4.6-1.4-1.7.2-3.2 1.1-4.2 2.4l-12.8 17.1c-1.9 2.6-1.5 6.2.9 8.3 11.7 10.1 21 23.8 25.7 38.1" fill="#fff588"/><path clip-path="url(#a)" d="m2281.2 207.2c-.3-1.8-1.3-3.4-2.9-4.3l-18.8-11.3c-2.3-1.4-5.3-1.1-7.3.8-11.1 10.3-25.8 13.8-33.4-.5-1.8-3.3-3.1-7.4-4-12.1-.6-3.1-3.5-5.3-6.6-4.9l-21.3 2.3c-1.7.2-3.2 1-4.2 2.4-1 1.3-1.4 3-1.1 4.7 1.5 8.8 4.1 16.6 7.7 23.4 19.3 36.4 62.7 35.2 90.5 4.6 1.1-1.5 1.7-3.3 1.4-5.1" fill="#bd42b1"/><path clip-path="url(#a)" d="m20.3 340.9c-1.6.9-2.7 2.4-3.1 4.2l-4 21.6c-.5 2.7.8 5.4 3.3 6.6 13.6 6.7 22 19.3 11.3 31.4-2.5 2.8-5.8 5.5-9.9 8-2.7 1.6-3.7 5.1-2.3 7.9l9.6 19.1c.8 1.5 2.1 2.6 3.7 3.1s3.4.3 4.8-.6c7.7-4.5 14.2-9.6 19.2-15.4 27.3-30.8 10.9-71.1-27.5-86.4-1.6-.5-3.5-.4-5.1.5" fill="#0babc4"/><path clip-path="url(#a)" d="m1187.9-102c-1-1.3-2.5-2.1-4.1-2.2l-21.2-2.2c-3.3-.3-6.3 2.1-6.7 5.4-2.4 21.4-5.9 43.5-10.7 67.4-.7 3.3 1.5 6.5 4.7 7.2l20.9 4.3c1.6.3 3.2 0 4.6-.9s2.3-2.3 2.6-3.9c5-24.9 8.7-48.1 11.2-70.5.2-1.7-.3-3.3-1.3-4.6" fill="#fff588"/><g fill="#ff9263"><path clip-path="url(#a)" d="m1893 192.3c-3.8-11.1-11.8-38.6-4.6-52.7-1.1-.1-2.3-.2-3.4-.2-4.7 0-12.5 4.8-18.3 9-7.6 5.4-12.2 14.1-12.3 23.4-.2 9.9 3 21.4 9.5 34.7.7 1.5 2 2.6 3.6 3.1s3.3.4 4.8-.4l18-9.6c2.4-1.3 3.7-4.4 2.7-7.3"/><path clip-path="url(#a)" d="m1977.6 195.9c-9.8 0-21.3-4.2-31.4-15.7-4.2-3.6-8.7-8-12.4-11.8-8.6-8.6-17.9-17.8-28.6-23.5v.1c-2.1-1.1-3.3-1.3-4.1-1.3-.4 0-.8.1-1.4.8-1 1.4-5.5 10 3.9 41.4 2.2 2.1 4.4 4.3 6.4 6.3 10 10 21.1 21 34.1 26.1 7.7 3 16.3 2.6 23.7-.9 9.5-4.5 23.3-13.2 25.7-25.7-1.5.9-3.2 1.8-4.9 2.4-3.2 1.1-7 1.8-11 1.8"/><path clip-path="url(#a)" d="m1960.4 177.1c8.8 7.1 17.9 7.7 24.1 5.5 5-1.8 8.2-5.5 8.2-9.4 0-2.8-.3-6.3-.8-9.7-1.4-6.2-3.3-12.4-5.1-18.6-.2-.7-14.1-38.1-.9-57.8-2.9-.7-5.8-1.2-9-1.2-18.5 0-30 11.5-30 30 0 12.8 3.9 25.9 7.7 38.6 2.5 7.9 4.9 15.9 5.8 22.6"/><path clip-path="url(#a)" d="m2037.5 130.1c-1.3-.6-2.8-1.7-4.4-3.1-.2-.2-.4-.3-.6-.5-3.8-3.5-8-8.4-11.3-12.2-4.4-5.1-9.2-10.7-14.6-15.5l-.1.1c-.6-.6-1.2-1.3-1.9-1.9-1.9-1.6-3.9-3-6-4.4-.4-.2-.8-.4-1.1-.5-2.9 2.5-11.5 14.5-3.7 41.7.7.8 1.4 1.6 2 2.3 7.2 8.3 15.5 18 26 23.6 9 4.7 19.6 5 28.9.9 8.7-3.9 19.6-11.6 22.7-26.5-3.8 1.6-8.1 2.4-12.6 2.4-8.2.1-16.8-2.5-23.3-6.4"/><path clip-path="url(#a)" d="m2118.2 59.9c-4.6-3.8-9.2-7.3-13.8-10.4-2.5-1.4-9.7-4.5-14.2-1.8-5.1 3-7.3 13.8-6.1 29.6 4 2.5 8.5 5.6 12.5 8.6 2.6 2 6.2 1.6 8.3-.9l14-16.3c1.1-1.2 1.6-2.9 1.4-4.5 0-1.8-.8-3.3-2.1-4.3"/><path clip-path="url(#a)" d="m2046.2 50.7c-5.1 7.3-7.9 16-8 24.9v.2c0 4.6.6 10.2 1.3 16.8.9 7.8 1.8 16.6 1.8 24.6v.9c6.6 5.3 20.1 8.5 28 4.6 2.7-1.3 5.9-4 5.4-12.1-.5-7.7-1.2-15.3-1.9-21.7-2.1-18.7-3-40.7 9-50.2-19-5-27.5.6-35.6 12"/></g></svg>
|
images/PL-Categories.png
ADDED
Binary file
|
images/Swiss_Army_Knife.png
ADDED
Binary file
|
images/admin-flyout-active.svg
ADDED
@@ -0,0 +1,86 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
2 |
+
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
3 |
+
<svg width="100%" height="100%" viewBox="0 0 170 170" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-miterlimit:2;">
|
4 |
+
<g transform="matrix(1,0,0,1,4.94428,5.08961)">
|
5 |
+
<g transform="matrix(1.33333,0,0,1.33333,0,0)">
|
6 |
+
<path d="M60,116.891C91.429,116.891 117,91.321 117,59.891C117,28.461 91.429,2.891 60,2.891C28.57,2.891 3,28.461 3,59.891C3,91.321 28.57,116.891 60,116.891Z" style="fill:white;fill-rule:nonzero;"/>
|
7 |
+
<g>
|
8 |
+
<clipPath id="_clip1">
|
9 |
+
<path d="M60,119.891C93.137,119.891 120,93.032 120,59.891C120,26.75 93.137,-0.109 60,-0.109C26.862,-0.109 0,26.75 0,59.891C0,93.032 26.862,119.891 60,119.891Z"/>
|
10 |
+
</clipPath>
|
11 |
+
<g clip-path="url(#_clip1)">
|
12 |
+
<path d="M59.955,55.134C58.875,54.054 58.335,52.569 58.335,51.084C49.695,50.679 41.055,50.949 31.875,52.029C31.2,52.164 30.66,52.569 30.525,52.974C30.39,53.514 30.93,53.784 31.065,53.784C34.98,55.539 37.005,56.484 40.65,58.644C40.92,58.779 41.325,58.914 41.73,58.914C43.62,58.779 45.375,58.644 47.13,58.644C52.8,58.509 58.47,58.644 63.87,59.319L59.955,55.134Z" style="fill:rgb(52,169,218);fill-rule:nonzero;"/>
|
13 |
+
<path d="M69,64.584L67.38,62.964C61.305,62.019 55.095,61.614 48.885,61.749C48.345,61.749 47.805,62.019 47.67,62.424C47.535,62.829 47.805,63.234 48.075,63.369C51.315,65.664 52.935,66.879 56.04,69.444C56.31,69.579 56.445,69.714 56.715,69.714C60.36,69.984 63.33,70.119 66.03,70.659L69,64.584Z" style="fill:rgb(147,199,232);fill-rule:nonzero;"/>
|
14 |
+
<path d="M64.005,45.279L64.95,45.279L78.18,46.899L80.205,42.849C56.985,38.259 35.25,39.069 12.165,45.279C11.355,45.549 10.68,46.089 10.68,46.629C10.68,47.034 11.22,47.169 11.355,47.304C15.81,48.384 18.105,49.059 22.29,50.544C22.695,50.679 23.1,50.679 23.64,50.544C31.605,49.059 39.03,48.249 46.59,47.979C50.775,47.844 54.96,47.979 59.145,48.249C60.225,46.494 61.98,45.414 64.005,45.279Z" style="fill:rgb(0,146,206);fill-rule:nonzero;"/>
|
15 |
+
<path d="M111.256,56.079C110.986,54.999 110.176,54.189 109.096,54.054L93.705,52.164L91.275,38.394C91.14,37.314 90.195,36.504 89.115,36.369C88.035,36.234 86.955,36.774 86.415,37.719L79.935,50.544L64.545,48.654C63.465,48.519 62.385,49.059 61.98,50.004C61.44,50.949 61.71,52.164 62.385,52.839L73.05,63.909L65.22,79.839C65.22,79.839 65.22,79.974 65.085,79.974C65.085,79.974 65.085,80.109 64.95,80.109L64.95,81.324C64.95,81.324 64.95,81.459 65.085,81.459C65.085,81.594 65.085,81.594 65.22,81.729C65.22,81.729 65.22,81.864 65.355,81.864L65.76,82.269C65.895,82.404 66.03,82.404 66.03,82.539L66.165,82.539C66.3,82.539 66.3,82.674 66.435,82.674L66.57,82.674C66.705,82.674 66.705,82.674 66.84,82.809L68.055,82.809C68.19,82.809 68.325,82.809 68.325,82.674L68.46,82.674C68.595,82.674 68.73,82.539 68.865,82.539L83.445,73.899L95.325,86.589C95.73,86.994 96.27,87.264 96.81,87.399C97.35,87.399 97.755,87.399 98.295,87.129C99.24,86.589 99.915,85.509 99.645,84.429L96.405,66.339L110.176,58.239C110.986,58.239 111.526,57.159 111.256,56.079Z" style="fill:url(#_Linear2);"/>
|
16 |
+
</g>
|
17 |
+
</g>
|
18 |
+
<path d="M60,116.891C91.429,116.891 117,91.321 117,59.891C117,28.461 91.429,2.891 60,2.891C28.57,2.891 3,28.461 3,59.891C3,91.321 28.57,116.891 60,116.891Z" style="fill:none;stroke:rgb(23,86,126);stroke-width:6px;"/>
|
19 |
+
<path d="M60,116.891C91.429,116.891 117,91.321 117,59.891C117,28.461 91.429,2.891 60,2.891C28.57,2.891 3,28.461 3,59.891C3,91.321 28.57,116.891 60,116.891Z" style="fill:white;fill-rule:nonzero;"/>
|
20 |
+
<g transform="matrix(0.85,0,0,0.850007,-628,-3.86)">
|
21 |
+
<clipPath id="_clip3">
|
22 |
+
<path d="M809.412,145.588C848.396,145.588 880,113.99 880,75.001C880,36.011 848.396,4.413 809.412,4.413C770.426,4.413 738.824,36.011 738.824,75.001C738.824,113.99 770.426,145.588 809.412,145.588Z"/>
|
23 |
+
</clipPath>
|
24 |
+
<g clip-path="url(#_clip3)">
|
25 |
+
<clipPath id="_clip4">
|
26 |
+
<rect x="738.824" y="4.413" width="141.176" height="141.175"/>
|
27 |
+
</clipPath>
|
28 |
+
<g clip-path="url(#_clip4)">
|
29 |
+
<g transform="matrix(0.882353,-0,-0,0.882346,734.461,0.0503441)">
|
30 |
+
<use xlink:href="#_Image5" x="4.944" y="4.944" width="160px" height="160px"/>
|
31 |
+
</g>
|
32 |
+
</g>
|
33 |
+
</g>
|
34 |
+
</g>
|
35 |
+
<path d="M60,116.891C91.429,116.891 117,91.321 117,59.891C117,28.461 91.429,2.891 60,2.891C28.57,2.891 3,28.461 3,59.891C3,91.321 28.57,116.891 60,116.891Z" style="fill:none;stroke:rgb(23,86,126);stroke-width:6px;"/>
|
36 |
+
<g>
|
37 |
+
<clipPath id="_clip6">
|
38 |
+
<path d="M60,119.891C93.137,119.891 120,93.032 120,59.891C120,26.75 93.137,-0.109 60,-0.109C26.862,-0.109 0,26.75 0,59.891C0,93.032 26.862,119.891 60,119.891Z"/>
|
39 |
+
</clipPath>
|
40 |
+
<g clip-path="url(#_clip6)">
|
41 |
+
<path d="M59.955,55.134C58.875,54.054 58.335,52.569 58.335,51.084C49.695,50.679 41.055,50.949 31.875,52.029C31.2,52.164 30.66,52.569 30.525,52.974C30.39,53.514 30.93,53.784 31.065,53.784C34.98,55.539 37.005,56.484 40.65,58.644C40.92,58.779 41.325,58.914 41.73,58.914C43.62,58.779 45.375,58.644 47.13,58.644C52.8,58.509 58.47,58.644 63.87,59.319L59.955,55.134Z" style="fill:rgb(52,169,218);fill-rule:nonzero;"/>
|
42 |
+
<path d="M69,64.584L67.38,62.964C61.305,62.019 55.095,61.614 48.885,61.749C48.345,61.749 47.805,62.019 47.67,62.424C47.535,62.829 47.805,63.234 48.075,63.369C51.315,65.664 52.935,66.879 56.04,69.444C56.31,69.579 56.445,69.714 56.715,69.714C60.36,69.984 63.33,70.119 66.03,70.659L69,64.584Z" style="fill:rgb(147,199,232);fill-rule:nonzero;"/>
|
43 |
+
<path d="M64.005,45.279L64.95,45.279L78.18,46.899L80.205,42.849C56.985,38.259 35.25,39.069 12.165,45.279C11.355,45.549 10.68,46.089 10.68,46.629C10.68,47.034 11.22,47.169 11.355,47.304C15.81,48.384 18.105,49.059 22.29,50.544C22.695,50.679 23.1,50.679 23.64,50.544C31.605,49.059 39.03,48.249 46.59,47.979C50.775,47.844 54.96,47.979 59.145,48.249C60.225,46.494 61.98,45.414 64.005,45.279Z" style="fill:rgb(0,146,206);fill-rule:nonzero;"/>
|
44 |
+
<path d="M111.256,56.079C110.986,54.999 110.176,54.189 109.096,54.054L93.705,52.164L91.275,38.394C91.14,37.314 90.195,36.504 89.115,36.369C88.035,36.234 86.955,36.774 86.415,37.719L79.935,50.544L64.545,48.654C63.465,48.519 62.385,49.059 61.98,50.004C61.44,50.949 61.71,52.164 62.385,52.839L73.05,63.909L65.22,79.839C65.22,79.839 65.22,79.974 65.085,79.974C65.085,79.974 65.085,80.109 64.95,80.109L64.95,81.324C64.95,81.324 64.95,81.459 65.085,81.459C65.085,81.594 65.085,81.594 65.22,81.729C65.22,81.729 65.22,81.864 65.355,81.864L65.76,82.269C65.895,82.404 66.03,82.404 66.03,82.539L66.165,82.539C66.3,82.539 66.3,82.674 66.435,82.674L66.57,82.674C66.705,82.674 66.705,82.674 66.84,82.809L68.055,82.809C68.19,82.809 68.325,82.809 68.325,82.674L68.46,82.674C68.595,82.674 68.73,82.539 68.865,82.539L83.445,73.899L95.325,86.589C95.73,86.994 96.27,87.264 96.81,87.399C97.35,87.399 97.755,87.399 98.295,87.129C99.24,86.589 99.915,85.509 99.645,84.429L96.405,66.339L110.176,58.239C110.986,58.239 111.526,57.159 111.256,56.079Z" style="fill:url(#_Linear7);"/>
|
45 |
+
</g>
|
46 |
+
</g>
|
47 |
+
<path d="M60,116.891C91.429,116.891 117,91.321 117,59.891C117,28.461 91.429,2.891 60,2.891C28.57,2.891 3,28.461 3,59.891C3,91.321 28.57,116.891 60,116.891Z" style="fill:none;stroke:rgb(23,86,126);stroke-width:6px;"/>
|
48 |
+
<path d="M60,116.891C91.429,116.891 117,91.321 117,59.891C117,28.461 91.429,2.891 60,2.891C28.57,2.891 3,28.461 3,59.891C3,91.321 28.57,116.891 60,116.891Z" style="fill:white;fill-rule:nonzero;"/>
|
49 |
+
<g transform="matrix(0.85,0,0,0.850007,-628,-3.86)">
|
50 |
+
<clipPath id="_clip8">
|
51 |
+
<path d="M809.412,145.588C848.396,145.588 880,113.99 880,75.001C880,36.011 848.396,4.413 809.412,4.413C770.426,4.413 738.824,36.011 738.824,75.001C738.824,113.99 770.426,145.588 809.412,145.588Z"/>
|
52 |
+
</clipPath>
|
53 |
+
<g clip-path="url(#_clip8)">
|
54 |
+
<clipPath id="_clip9">
|
55 |
+
<rect x="738.824" y="4.413" width="141.176" height="141.175"/>
|
56 |
+
</clipPath>
|
57 |
+
<g clip-path="url(#_clip9)">
|
58 |
+
<g transform="matrix(0.882353,-0,-0,0.882346,734.461,0.0503441)">
|
59 |
+
<use xlink:href="#_Image5" x="4.944" y="4.944" width="160px" height="160px"/>
|
60 |
+
</g>
|
61 |
+
</g>
|
62 |
+
</g>
|
63 |
+
</g>
|
64 |
+
<path d="M60,116.891C91.429,116.891 117,91.321 117,59.891C117,28.461 91.429,2.891 60,2.891C28.57,2.891 3,28.461 3,59.891C3,91.321 28.57,116.891 60,116.891Z" style="fill:none;stroke:rgb(23,86,126);stroke-width:6px;"/>
|
65 |
+
<path d="M60,116.891C91.429,116.891 117,91.321 117,59.891C117,28.461 91.429,2.891 60,2.891C28.57,2.891 3,28.461 3,59.891C3,91.321 28.57,116.891 60,116.891Z" style="fill:white;fill-rule:nonzero;"/>
|
66 |
+
<g>
|
67 |
+
<clipPath id="_clip10">
|
68 |
+
<path d="M60,119.891C93.137,119.891 120,93.032 120,59.891C120,26.75 93.137,-0.109 60,-0.109C26.862,-0.109 0,26.75 0,59.891C0,93.032 26.862,119.891 60,119.891Z"/>
|
69 |
+
</clipPath>
|
70 |
+
<g clip-path="url(#_clip10)">
|
71 |
+
<path d="M59.955,55.134C58.875,54.054 58.335,52.569 58.335,51.084C49.695,50.679 41.055,50.949 31.875,52.029C31.2,52.164 30.66,52.569 30.525,52.974C30.39,53.514 30.93,53.784 31.065,53.784C34.98,55.539 37.005,56.484 40.65,58.644C40.92,58.779 41.325,58.914 41.73,58.914C43.62,58.779 45.375,58.644 47.13,58.644C52.8,58.509 58.47,58.644 63.87,59.319L59.955,55.134Z" style="fill:rgb(52,169,218);fill-rule:nonzero;"/>
|
72 |
+
<path d="M69,64.584L67.38,62.964C61.305,62.019 55.095,61.614 48.885,61.749C48.345,61.749 47.805,62.019 47.67,62.424C47.535,62.829 47.805,63.234 48.075,63.369C51.315,65.664 52.935,66.879 56.04,69.444C56.31,69.579 56.445,69.714 56.715,69.714C60.36,69.984 63.33,70.119 66.03,70.659L69,64.584Z" style="fill:rgb(147,199,232);fill-rule:nonzero;"/>
|
73 |
+
<path d="M64.005,45.279L64.95,45.279L78.18,46.899L80.205,42.849C56.985,38.259 35.25,39.069 12.165,45.279C11.355,45.549 10.68,46.089 10.68,46.629C10.68,47.034 11.22,47.169 11.355,47.304C15.81,48.384 18.105,49.059 22.29,50.544C22.695,50.679 23.1,50.679 23.64,50.544C31.605,49.059 39.03,48.249 46.59,47.979C50.775,47.844 54.96,47.979 59.145,48.249C60.225,46.494 61.98,45.414 64.005,45.279Z" style="fill:rgb(0,146,206);fill-rule:nonzero;"/>
|
74 |
+
<path d="M111.256,56.079C110.986,54.999 110.176,54.189 109.096,54.054L93.705,52.164L91.275,38.394C91.14,37.314 90.195,36.504 89.115,36.369C88.035,36.234 86.955,36.774 86.415,37.719L79.935,50.544L64.545,48.654C63.465,48.519 62.385,49.059 61.98,50.004C61.44,50.949 61.71,52.164 62.385,52.839L73.05,63.909L65.22,79.839C65.22,79.839 65.22,79.974 65.085,79.974C65.085,79.974 65.085,80.109 64.95,80.109L64.95,81.324C64.95,81.324 64.95,81.459 65.085,81.459C65.085,81.594 65.085,81.594 65.22,81.729C65.22,81.729 65.22,81.864 65.355,81.864L65.76,82.269C65.895,82.404 66.03,82.404 66.03,82.539L66.165,82.539C66.3,82.539 66.3,82.674 66.435,82.674L66.57,82.674C66.705,82.674 66.705,82.674 66.84,82.809L68.055,82.809C68.19,82.809 68.325,82.809 68.325,82.674L68.46,82.674C68.595,82.674 68.73,82.539 68.865,82.539L83.445,73.899L95.325,86.589C95.73,86.994 96.27,87.264 96.81,87.399C97.35,87.399 97.755,87.399 98.295,87.129C99.24,86.589 99.915,85.509 99.645,84.429L96.405,66.339L110.176,58.239C110.986,58.239 111.526,57.159 111.256,56.079Z" style="fill:url(#_Linear11);"/>
|
75 |
+
</g>
|
76 |
+
</g>
|
77 |
+
<path d="M60,116.891C91.429,116.891 117,91.321 117,59.891C117,28.461 91.429,2.891 60,2.891C28.57,2.891 3,28.461 3,59.891C3,91.321 28.57,116.891 60,116.891Z" style="fill:none;stroke:rgb(0,133,191);stroke-width:6px;"/>
|
78 |
+
</g>
|
79 |
+
</g>
|
80 |
+
<defs>
|
81 |
+
<linearGradient id="_Linear2" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(49.422,-1.97093,1.97093,49.422,62.1236,63.3793)"><stop offset="0" style="stop-color:rgb(249,157,27);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(255,207,1);stop-opacity:1"/></linearGradient>
|
82 |
+
<image id="_Image5" width="160px" height="160px" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAKAAAACgCAYAAACLz2ctAAAACXBIWXMAAA7EAAAOxAGVKw4bAAAgAElEQVR4nO2d368s2VXfP2vv6vPj3hmPZzz+iY2MDcZKIMoPQUC8JFKUZxgQmEh+SOI/IP+ASTJWHvKUvEbgJBJRQpRgkPIaKTygROFHQMSAMDHGNoPt8czcuTNz7+nuqtorD2vvql3V1d3Vfar79uk7a9Rzz+lTXb1r17fWj+9ae23hXenKz/6Sgm49rEAQoEYJDnAOcQJifxcUZeBMv/yPZdoB3215aidDfu6LqroOaNsB6AUUJSggYi8nLQgF1p9/QJ5SYD49F/1zvxTRkF1yHyAi8b0RwBFTlJKdU52Ac+CwF5p9x45T/ZQA8rwvsgFdKyJmOpUNGmqU4lIcSoEwQ6hVqQQqFzWhT+a4D0BpPt+caZumPGMwnt+FDYBuZxlzhqgBHYLPPlaJghNwRHPcTrFGc91AsAHe02uqz+NipgBdLiMBKICo4MB8QZQQ/T8ciLfARLOwRiQZbQtTdKzJH5IzAOPdvoAMeCKym9O/SXYBIIBKZyIDikrUgF4MdCIE1QaAzVfdBoBJ7jAQ7+bAexov+XXhyAAEm0CNWjBJSD9EMyzOQKgxcgYzx+1DM9G47yAQ79aAh4IKWrN2VABC9AM3TGFUkc45XPQLA5qNczUguY00Z7tDQLwTA3WfaTm7/q2SjpN/PAD2J25odAKRHwTvHOoMr/k4p3ReWzjHs/7y507+/p70AN1nvrhyfzbSJ1PJiNN7uje8HvigQxCEIKAOXKRmVFqTrUynudfdzFPWiG77IU9GhsAHMcAUWXHmn4QkvlnW3HqJNljVCGmJtI3LjphSNP4HNkcuUT6fHZ7LU5Anfxd7sg54fTmKJtw2gI1vRAcwkdEx2HBOcIUnOEElwiV0PzV4+jMNVE5mMCvAU0DSvVE8LmYwGg9nBYQSTZuqOfvpvYMAdVSkTDTCcdwKiOK8Q71FxSLEQCZxgpEn3DWXvHWQedLwdMzySZhg+cwXGzKieUmDweYmrnxu8Hfp/P5EZzmS0wJ4Nb8RVUIIaDCTjEZCOhU0RI2pkTMUcWtN/HrJ037DsyAnYpafOABnn/n3asVLDL4s22DHDjFmp+ALrhNBcaqIalufgKTIAwnttTVFCxlmmh8PdImnAMIndvfk57+olkslRpDD4pp/E0gHvCNtza1Epz9EzSMxAzG5jIyUXRxx0uIl8RpEIjcohJRMju83P5ICGd3xGgRzXgY038plPFnK5oloQPnMv1NVe8RrAt2KkfXz0N6Q3vsnEhX3xR4Ye3ACapCQeI32piWRgw4A2sywvY4w2M9OnE8fKUcH4OVnflETh6aqmQ2S3mtY1oHwFEWxiumaiLU47DT6EMElCYjGUnfMce529B+01QevDWDS33cyck8AhEcF4P2f/pdKmOO1ijGtGakxTs5qiHz60vFjm2vUNtYA4wcDuABOMZYwBSRI+yM0GrH9qPYi5ZSPMfOrmluXcTnnY/uFRwPg+1/6ZzrTBUU9B60oVHEKUDQ0RP8lqAFVzVcJ8XU34BezcD0tlXLBzYoRVSTYXIhGEEYKYFdtLwhexKpzRADXRNHrmIRBOaImPAoAX/zJf65BBa9Q6AIX3kHlhsIFUCvolBgL+/hyWOQYBII88WB9Vfoew8BL1cxs/uo/PQ4DXQiBOgTqEDMZES5qTx8irjmxiOv8DoITh8OBehBFtIh+jmvOJtJqV4VGy3ZD7wjVI4HwoM7Ue3/qZfVWd9TRbZUUlP4a/D1quYimoh2ORn0H4PDUMRJ0A7ovSyLgc9I3P+ZJZUxGfG/iLg0QCk5w3htuuka8Oaek+eyQ8MTC2GCconqclLEY1hnutJ0vFwn6ofzNymUckLQ+mGp570+93Lk2m8K4jkJrfL0k1AsKLVGBgBAQI0+i+VDE6JR4+cmjyV93XdrraIMQDSGVWHePzU13T5IFQeIiAQ1mdhvcSudTqhnls00OqA2LQ524kfi05vGYQ5lpiQZBRFF/D8Q3peuibTSngNfW99s2E4Nk9YjP7XPsZJLVFUoAexxN36tr583wIg3D1yziA9KoL7WiwPEIwaguh4sTGVRbRcoabbfm/UPJQTTg8y+93JuWHp2AUmjgMizx9Q0SSkRrXNSBOTGTjr+NpIrpbRMr2bGTSPa9W88ZD/AKPgAxXRdtM90ztTOTAhwV4ZmLgh/98PP86Iffw5V3kYpPmlFHXdfQMYf0CScH4PMvvdxhBlIWoL00+6MIeA3MQklRz3G6xFPTnbY+x7V9CreR1evO0KVKxsm2ETWA3vLdJna1TgSnGPhCsHQd3dnI4Gf/xmDiA8/c4+d/5NP87I/8AM9ezCwQQqmpQWvThL3rHHvNghyEopkUgH3wAZYLlZgLVWkoBo08g6BchjlSL0wLijbBmTbH5jRNLsMQ2JW+gD3AlwHLjb2JA8c1VxAvTYE6+R4KEjMlyf9NYZqLNFUOyufvX/ATP/xBfvyvfYznL4qmfYggqLQh3KZ1KNsQNjUIJwNgbnZz8RIyR6Wr1QTz9y5CyWU9h7BAtQINNJVJItS0AUyiZ+y1eyiSANMHQ06V7DPDY0G4ZlSAPZQlSo1VxwgCATQENM5JaI6XjmvyrHf8wHsv+aufeh+f/uQLfOq5K64ceBW8elBv0XHuCKlmZHXf8dkw2glBOAkAc/D170MtEmsxIx0jQoivOpoIXOCCist6yayucJqpgyZTktRiqx3Q/AISeZMCls1zlMzdvjnkcQ7BdtH4P5eChYaBTkwAEKIlIURbYNCrMwi+/94FP/yB9yLAzNV84iPPcX3pUYxXLSSgEuL1ascvTnDeaS4m8glvDcAhzdeUtgkEdQ3YakIbzaq9ageoUBC4YoHTRwS9gaj30ABUCILDNYSryyEgu5vQZqx7Xrd9dqf8AkDHD3OpeoekgQFc85BpLOOXIGgJEmpS8ji49jFTUV587oIf+t7nbES18Hc+8SzPX8+onbCMSuAipJY1pvmcCAXZEoGUQcnI6uFXvOUTgPDgKYatvJ2CV4+qEDQgWuF0gQtLZlRNxXCACN+ASKITtNGuorphwsbzhrsAOb8ZQ9XLa8eQ39wtXxfPjlNFg1ErEsTyxwKigSIoH37hWf7Kpz5MraBO+dSnvpcX7l/jo85UsUc6qOJ9AVIQFLNCMTmtZu8HcswrszR6jrbJrQC4zu/bVZI7rYDXisuwpAg3oEsKlFRVl4xsAiKiaOTQEtE6BoB9vdUB3Q5Zkxx86z616SEY8032GQOGq8FXFTMNSCRNr8Txfc9c88MffI4X3/csZVCqUPPRDz/Hj3zovXz0asaMDFDimgZgKq4J9LxqZ6XfaLmlFtwbymPBN+Z+OpxVDYs5xDVCKTMW/hr8fSotCC66350TGuicRqJCtn9ZXuDeWV+yQ/Ah0Dq7ewYtHdlyAkewR1AdhSjPX13ygeev+MiL9/n4+5/j0x98lh/7/hf4W5/+IEEEDTWFFPzm773Cb3/zDf74O2/zze885FtvvMM3HpU8Kst4RulE04ZLadbT7DToPQta9/rQLppvnEKxgoQLzKQEAktxLNwlS3cP3CWVxCiuOZ82oy/UIQq1bAdDKotfB8J45g0jpVnoNFkouOVEHuW9lwUff+E9fOx9z/DJ9z/DD3zoGT75kXt84mPv40MvPMN1oeYvO0elgquFUpSqhm999xFf/cbrfPXbb/KHrz3ia2884ttvLPjq629wU1mxhwVDMSIWt7LYqxnqpo5ee4Dw8Km4ESLUiDhLzVl8apFbKKm5AVEC10DRmGq7/Sm1npvpzRIr5eL3pkAm/j5CqzXHdPNgBxWn8D33rvgHf+Pj/N2/+T380A++yKwQKq1ikUGsI3KKBMHbAmRqVWYePvmh+3z/R54B93Fu5jW/+0ev8xu//y3+w++8yZ+XFRVF4sQ61E6StECqA8oB3bXPbOzsA07l93UHYVFZjVJBpGlsFchVKCnqGwotKagp0CxqowHBrvrI4GuQdSMNQc71raNx0oLwZlH4BOIQQq288fYN3/j267zy2kNee/gO7zyuuVk6SnVUqpQh4LwgLuCcFaSGAIsK3nq84LsPHvIXr7/Bqw/e4K1HbyOaWswlnzKyrUMB1ZjKnj34wZPQgIiDEKtdkpWNRaqOmss6UMrCggcnhM5zI2t+XiercxQiCPO1xI1PlE18GDBLt127m0z6tjH/2cN3+Be/+WXkf93j+SLw9z76Aj/xqQ/w43/9Y/zgJ17k2Xsera09sNSCliVF4XhUBf74K9/lf//+N/nNr36X//6dt3hncQNSWKrPOYTaLjbWGB6z5Henh3Qf7Tfm/niSNpJmUKJWjCoCLigLN6Nyl+DuEdwFFUKwhbUUama7HjF1tgBttynuA3GTuJ6/NO5Tm2+DJ+AVSjwqgUICF154trjiuZnwgx94lp/+ie/j5//+9+PdDC8lQWf8m1/9Xf7L7/8lX3lzweOqZlmV3NRWaRPUwg9RI7g0BSMSGYmB683N8KYR71I/OFoD7mt6x9BqlnYzn8qg1PJjqpY1KbREVSjVE1QQN7MYTpVaFE/YTqqlMSVubOw1MN6/2a/4dfNn1HRUpJygUkcVlHm55PUb5ds3JR/4yHO8tFSeuS4pA7x9E/hvf/aA3/rLh8xrjdyjxiaZMQWXuL/sezaOY2xXr89+Uce2ADmJWvdA0pQWFDSFqU2OFATHLFTMglXOoCH+IaaltO8+DzBuYoR2WqXWn8Q+T7dOpkrDjZUm3OpRUCH6zG+VNV9/9R3+3589xNbYFPzxn77GNx/ccKMx/akpB5W0WIhRb++79PZuxS4yCoCHCDzWyRBhC6a1PFbI6sMCCUuc1o3zvKpqe8EBebZkWPttJKsHjj2WjHkwXnsw54/+9AHUgnfCH3zluzx6VMZVr9r61seSkQHJSWjAMSLE9maqFDFTUugCrxqzmbpeLTXvj/XI2jKm9NG8nm+sljymfPftOX/wyhv23QL/5+uv8fZ80ZjYcSW5x5etADym9tskSh3LiYRCay7CDT7c4LVqfDTLUPQ/aRU0YZDhWvdd2tGEzZlGVlbnxx5LXp/P+fJrD3j4aMGDt+b83qtv8na5pJ2ZbmfCY8gYWuY0aJgREmKazavg1OgZDXNqPIgg4nG9fHBuUM0WjbND+WdTxUuC5Biy+na1gfvJQoVX3lrwu//3GyCeb76zpA7O8uXpIA0jKJ8T8gFPRfsBxv2pIhrwWAXNhSoXegPhEbOYRhKafgvNJxELWFwYty4iyW3J6mOKquONt5X/8dvf4Td+51UWC5gFwYW26PRJ9M/ZpgVPQgOOmRdRFzWfZh6aMgsVVyyonCe4+1YuF7Ml3pJ8TfSY1tPuI/uQ1YeWrplXvvP2O/zib73KfXfBTSkUTqAAcd6ol1CB+A1nbM+7TabSkmu/6ZS0H9AyKShF/LmOCAjiWTrPonieWma0tR32icTkSUN2a+cvSZpF2x2jO354BzVdW07tUJwAFEhQrqRmEZQwcwQvxD1zWE7kmY65Vi9ta7x15PRJaMCxkny7Ol5KjRVSegKFBqgeEfw9SncRlwJYcZGPVcb1yLlP+vVQZPWu0in/itIdWXygVOIuTYEbEdsWIi5w9876EYq0Gaf28euea6rnaMz6mkEf8OS0X0ek6aKQJGAxhtclhDnoEgjR5Npq4yB5V4FYP0gbtECrEQPDRHV3FANc4QF9rFQpnx7Dbms2abMl0Umwoo5E8ishKCF0KSaTnjVQBtq+7Sed+VvjC94ZDTiQ1xj4vcaFOZ6A4x7irigRggTSqrqVFhU9k5zOl3erGb4VSUd2P3/IJzfPLUuvtUb+aEXuuc1MqpVmBQIqcWd3Et3U+tQr5L8M54SnlDsDwDEiBGYEfFCsjLMgyCxqyxDbAbc+YcYergH4GEh1/34oEOZautHaQ+CQ7P3mn+iHxSfLAc12AukzxLBOsg8yXdXPOlkxwadtfjdLMqqFVviwQMMckViCmmq9Nshqymt4KvpNkjpjOAABnQIcae3w+mN7A0rmVNPfQiAEtS798XT9FOTBZMAMn5UGJO5aWQB1WLIQqIJD3DWmEaFrYNPv/azv+uxr6B3JQLzcUDRTlu2zC8Ujvd8S0sxhCMGsgfULTEfpykx0znEgc3xncsFjJIhDVGwtrQQ8C4rwmFkouXSJyN5ERq8a0D5chz4xlqTeV4TVAGew6npQQ7bhkqRGn7kWjKoxtX4LGy7lEEFW54x32fwCFsElvyeloKRg7q8p/X2CzNY8xTktkf6+eSr6mdWhlWRTacAEwJxrXG0wGaMOSTu4rxLmTpUCqFBqJ+BdJ/xNBant5hLr5VbaMOMEz8oEX2A54yomP6wLQGAW5izFgxta+Zp+D6320DxQGZa2h+vxJPGBqkP7hkgDpLS9WR5g5cB1MSqmtlV01v1EGn8w+7ZMDqObzgqAqdAUrGtA4iOKUPMMc9DAY3efSqyPchdoeZzJwM+5HNdQrIt4OwS1dmt4uqZYIXKCpVrjo0LjQxSi7nZWuJq+a3CxfuYvjpPtJruxInfe/EIkYjPmTloKoggVs9iH0KqBaY+j5dRsq4RchiYx0yxbXlPJ2nOmJjvNuFY1V+5UVNJmKDTtSxLaDXGEgXZzTeuO9ltuJZ/9t81lnJUGzAGVCGIzRJFy1YCEhQUNcomV6Ld8YMoSjAHOKHCJ9Do57HmeW3x2wDMlZU1SFN8cmB6+aMqN65bsuMQjTMd2nhkAMx62mck4s2p9ZGZhbu86y5doPE6jA59yAh3nfsN3bR3PidXfxW8EpNmDJaBxeYha/njNovt2Nt8F4HoxO5LaEbb8VeyRfKk1LiwpxYOAj5kS1RhVjpzbIWN3CDlkJiILgON2dbGJkbj2e2ntSNqZJL0/hTg4D/8P4hMq6ybHgOljpkTCnKBzJFSQTe3U5PFtZPqsilmCxCFWaFPn6CW2Tw5AbQvVXQNEG0VaXeK0LYYYfqWNdDZI9APPSwOmBcUbtYXHEbjQOVIrpffMgic4R9Us9YTj6Lf1cpg1JanzTvJ9AzViDQDyKCP1HpQeGSVCWAnShmT8I3xeAIy0S59BcBDNrPVfti3DBKRCuaH0oHrZ9svbNsViDvq2aR5jpodIZjicJhZxzdaxrc8bTW0EnAs0ENXM7jZ9QWW69h1nBUDNuLBOSzHSjkGRxI1mxXZtWlIHIUhBQWGFrIOTO53jPSQ5p3eooCSBrZ8J71+XV6EOVr5F2l8uHqcYiKeqWj0rAJJMSf7WSuJDm12wBKySOiyZyw3qhEIuzSx1bso6PbZNv+12k6Z28Nd+RxPlSvf96H+k5V0aOcKkpVMXCitqkJUZ6o57HBN6XgAcKW0Rpk2c1xofFlQ4Zs4RpOgcnTYb2wcYY8z0NplS9+YtPvLztv+q7VOS/hrinnPONQBcrZvpZV3oKoJN5lpOPQJuskATeeSKksq2nFpb34BSScFcLhB3Se2uCWJbHNjWp2AAdBm93b8J679xk1hQ0D2yU/k86iy7yzrfEzQ2vIRYKmMBkXcxMsm5wDSylsJPs9L+rs01DclTpwEjljr4cWoLmy6pqGoIMjPfBzu41RfQy9gz9PS372+HTXuzWk0h0USOM2J7inTyINn3xIVLSvPggaC1HWELmyTbODz1mG43Ieom/9LXDdcTrgAwXfRZFQpmoiJtyVaaOLGlSzMt8dSE4KlFEZkhsfNCiBH2LgHC2Cg4SX/d8dgG6PuQ1Zuj7Ai2qPHrSFJL1sdSJNNsWeCWgDhkH4ZA2AHgQZ+4kxHTTIGWfm6XF8WOrMzj5s5WX11HIifupRq3k5VGAwzLuNlsfapUY7h98XvnarJjppIUJdekhp5prEZk24Y2LkbEcUYToLdwqH0QFs3esxNewCmL13bdq2Kd9YXWHwQowpKgUIkjOMHLRcwcJK3U99CmkZABccxWCbuS1U00y7by/lQRE7MeWKouoE0f5ZpoxZP2S4FLdFE2jSsHYQFPi+Yzyedd0//E1tAmH6YAJASQBSWgHmAWWdlIdOv2ORszr0MPf2ii9Mypn5isdlnXguFRAdmjZoUL5opYR+TYFq9xibslCraIav33JxA+dUFI7CSYmc+WAUvi1ZmmpCQolOqwnipWUe00FXG1jrwRvLvHrHkmoiur4JqarF7p+dz4ne28BHLaKrYsUZCgiIsa0WUU1Rbt1//+pw6AnWxA9ojmkWgFOFE8NZeqSO0otcC5S6saFm1SdqkRUjpTu53qWJqG7Jtb2a6bdhfT+MOfVMhqF1tANeVq6f8RYE3XLZc2OGyvOIF5m34WhGJ1jdhuLczumqgQV82tv4k1qUrEMiWiJTVzECOp2x7WLd2QExG7gEPZvOouSR94+y6T3PSJnIoZAk8KMqIFtl0JFNDQ0FY5CMeMbkADHor63E+mXgmoMLg+fXjC04EVBQuWKoheI7apGKm1RdpQuzP9zZqTEeOJP68LBge5wuzz08uIszZrjCE5xeq6NH0r6+D4FPqAY0Wb224dtgpdUinUwVGIp3a+k7Jqdx5nz+C4bR63fkynIQqUebFHyB4Klzsjmx8TJfqAySy9KyapKjo1RkcErzWXoSS4JYJjwSU1BQ2bKGCLnaIWHLlnydaxdH7u6ZVdyGr7wK2DlxSRh0QD9CqARSA4O7KPqVaLt3qy6IJPO5mCp1U0+9dq5ATwFKqUYYk6RYPgXGxlKXH7MPPkjahNONz5W7vv5D6VDPCDo8hqWhrnNpLziGBUjlejc0LQthY4FRau0ef5tRQrf1JrAOmechCaJEJCsG4B4OLKujLu4uvcjKA2jU7ygGI/Ly1laNbJWJK6GcVEldV98LWSjSUrl24r+XXoyOacRbsKJ3Fa7yKv7+6n7oJEfxAUr0tqddb00Tkr9M+efJH8HLuJ9v4dPeYBjnD09lr5uYbOY29k54lhVypqSGCrFafWcKH2OZU+PObCfkg9kaMbPHZp2JmKbcmWIro06aHJewLMtIJgzdEFo2bqaDSNIpHVk8LoyLj/+xgoN2fuAWjXOzn2PIpRMe1CdvMLNaZLxLfOw9AZMgCmdjQhbuV+rrUwI0VWQdi1PsJMwVOx0Dm1CiJXuLhBRJeG6Hvi6+iZzQ/9ztpwx89sOs+mcxmPmRHY0fkNipVwiTSVbUMALlLBZcLoJugN2fCzlUbbrTcfXgM+LKgF1DkKuSbgqLW7rztZNN3VBP1zr5vRcVCagqzuk8irnN7qmLrkkWAdJyIAXdzBveOSJJsLhcP2jNW4ptMFsNKj1a/bBYBTVzKfmtQAWGX1rC4J3Nh+HFxiPmCEmtpxAkisIslv2XhobT5yWrK6/b71AF5/YzufCcEWgaV1nu1RoODuBXtSls42dVltztM7efbzxsaNZwq8vjgVZhq4rBeE8BgNCytWiCbcFmhbxFzHG2suz6luH9gC+Lab7lgFjaK1Rr+w+5CICIXGdl0S4VQ71ziX+RPkWDXPaTsDGE4jnTUIxR5Wp0otsaS/nlMWztYXM4vaL2fybCZT+u4QCbUhnnAXslo2lmntKArmAGqPopHGdyxsnYl9YS0ODYKn7qBpDI7WeTXnKrVYVXWBPdUF4LSiCnPqpvfyjBVjm55KTXvYTasHh3jCXcjqSUU0dmuNv9eGR/E0m2gXASutSQ9pIXYRdRb4Py2g2kUsSoZKhJlaG7bawUyXSC2UTqwNrngLWJCmH19q2N+uTZlWdiarWc1wQNcE58dsAvK68TRNA/LUncb97JbiCKLMVPGqg2XqsJpe7i9PfpoA62KHhWRKHBZkeBSnFTBHxVGLBSWJwiZ24JLoDx2TbV1LVsdxEf8uDACsUzs57qFRbTlCTf6gBis/F2l51Rde+oKWAhdqGwHeOPBKXB9q2nF9OD58oecOwvwmNNfbcIdQizD31yzcPdOC4jvk9HC8uv67xkB1DG/X//uQJhsCWD+lN85PTCupJa1lsjPHbh/6Hz9nFGGNAa7AbHMlfQi1az7bwW8Iw9kNsHdRmvhCExmb3jOoeK25CEtmYRFbwGnzxDdGRfrUxO3HNHbehfWKYvDz2Trl8eZXYqCa7GWUGBFDzIRUIlwGpUApnUDcdVFcCp3bj1tmdJdmtqclY+ZuDCZ6zQRotJm0vMAsVKA33DgILmrB5jbuUj89bp63HZUDrjm26RMz4ty7RsfNuVPTc/tZkab7QgFWdj5rfBPFiaN2NaopuRTMlqtRr07BSaDabThnLl3UtlNdWzV1cJahlxlBUt3gdFHwWM2XNtU5SmV1tsakXyWUTHgEIAieUoSSwGUQSudxIYDY7jkXGncgV8uceA1U7u7ljI/JTToUp7XtzlQLc3W4orCsgCouGPhCS5KkUXb+TWC+azIUTfelALj0UIfUd0FYuMBVJSyLGaXUBrZ4IkHBe5Y4Ymfrd2WDeKAIAWFJjVBqAVqAuobYDyvAS+S1MlY7jtGj6e+3IaunlmbMv/CvflW//LVv8eVXH/JaqbxI4M06MPdF3JvWaANRY/FVoDhQI8VzkYBDFC404AQW4nnor8HdQ+SClH9a5ezGAy/JmEjZjolaac2xu3J8Y2Uliv4V266rqYj+7E/+bd56vOTVB4/5o6+9xh/8ydf5n3/yNcoaSnF4rS2JJJZKUifWteZd2SKpd1TAUXIZhAUe7zwOH3c277KrxyCxUgXo6vuH8QdTE6P+lTUA/NhHP4iK8L0PHzMr4ZVvvwnOIVVU0ZH6T1yWC7tw7ZvlXDlDr1YdrAKlmNa50IoQFtQ41F2ipP3rcjOcg3AcJHbhaMef9bZi19EQ4ANmvgHgb/3en/MXb7zFKw8e8s2/eJ2vv/KAm8ooGiQgapmRNF31hBdwrgC0xWFWrKAITh0XKE6XPEZsU0V3OZAR6RPW4yA4HaEzrXT3HOn9Lf/lxz73r/Uv336HqgxcoLwThLm3zKJXW0LnVKhFKR2TrZ67e7H0OEn8aYiMn1cr3g/AQgpKP6Ny96jlCrSWsDIAAAoJSURBVOtBmLjWtF1q3FiaVO5/+/GMedjH+IDjmckBDfifP9cMo7Mq7g8fvINXuFThgVgYPYvL7UAoBWvmqLZqLkymu87Tl9T4/9QQKYiyjHPmqfF1zVyFUBQ4irhFVlxd14CxHyHfbjyjUnojuKpxgUqr+daR2N0GlU6oQrsQJwyoOIEx62relZ6smzKnFVLPwV3jXQEEAiEWsnpUw4Bx3R+UY4izY1qklSt49me+oIpYidaRxJ+pBhwjCpQyo3T3EHefhSuwwjlzdyzwo1OVdPtv3CxjALh30Wpmfge/y+nxDWIY8TpXccCFllyER5T6mJkGhAJULWXX5N2he2fWacX9RBiuej+0rDQn8sroDMd5N3I7jtgaHCVQchkeM6fg0l2bv62xirDxyTbFxGPvxSoBM002ej8Z/N73vfQFLY86iGnMwl0Ur5YzrgQqHEu5ovb3EXfZENSqaRXe1NLO+64g3MsE98wvrLmvT69HdnwxskVAHT7u4unCY0QrmsZHkhi0oTsztg5mSLo1nrc5074y2B8wHCkd9K6YG6MxLWZlbjWEJQuxjqyIp7uwKb8308JlOsJnvAxqwDe/9Asi2dSse70rt5dUpi5WbIlHKLTChxsIN0ioba8OaduEt+xa+u02kNnvszLi1ZEB8wsbtuo6tQDjXHWyBRlxfza15RAad20KYW7QdFcEKVqCOO51kpoNhLS3261M8W6f3UZWbyKf+9+8Vt7z0hdGjWpIG+4C4DE8YMgm6UlGbVNLKjZ16rCWtbZsvRahkhkVF9T+mrq4Bk1rbFM2xT4dJrdH+weFg+Vca7QfTLRZ4eryzHOBx+HFIBTb/KrE5qIOh+K1Im2NoEEQmRHiUnjEulegib+bJl98bNmKlE1asFX8q6fZ5ZkcxbyfqQZMi9S9GgA9RC2ocbsIoRJP6a8J/ppSLgnqYyWIrcUzLlEmo2rcLYC8ogE3aD+YQAOu03ZJK47ThnfvyZ1KmkbotJ5Y3ehE677lNaBhQSke7wq8OOJCT3sYV1y4w0TJh5CtyuetL31+tLJ5NzLeXUybR0sSN88Omi+dTSCsmVVzivqGSyoKMc9PNW0keIKyRfvBhBtWt9s6j9V6rYwtpDwXs9uV9qqaFcWSZz5S22RlFvNT6hzeXaDqqQ/w2I8vtLq9jMpw7aIF9xEd8TpXERUkRsAh1ltGd5DWy4sPt9R4FoT6BqlLCsDjmr3auhJnrlNFM+42TnI/Rmg/uKUGbLsl9JPb2tDV75rlMWIarq0cjk5dwpXmdZgBH5bUFDgpCM6Zthyc5mg3dqf5jiY7abZ+RJyb2yEaZiz4xprs1syflzne0IjKfo8HtSZamMuMyl8R3DVBLlCNu7o3n0gakPZuTLj7wbpIWQGNSy7HyM73cSw5vfpF6ysvhhzoPijdLdnFU+5ZPQTAdcsm0/EBx8JdEPw1+CtqKYykVjuBlfXXce22RF9xHQD7792CudgBfDBhELKLHCrpvem8I3vwnIwMl+HnGZCay7BkYck8vLskMLOd0IntPkSp4v51ThUR1+vRogM/H1f2wsA+WnDIHCdNOJRK6r8zjqxePfddkG0mOB0jpHlQbONB20i2cjNqf0Xl76G4Nl3nokqMAHQI1dpZyWtuts/ckAkOO2o/uIUGnCLA2JS8G3pnn3PfBRD2AZcDUnr/aiSuU+BbUCMhdqxwM7wUtqBJk6nebQaOrQv3KjR+60ufn2DvRZOxZ7lD1nNSyR+ktBWvtZpOqxdtAwgflvh6jmiJjxU26XPdH9ZJu+X2PrKP9oNbVLofmhsckl25qXPhEAViRwoh7XvVcoQmXisuwg0SFgS1RJ02/x9vCXZRCOm1L/jglkstjgnCMeTokO9yLiBsfbluu+RkvwuUy1Di6wUhlOSUTLvve98z3n92mjm/Bfhs3AeWTRUzYz43xWfa+PE0pU+5pIg9qz/tBViy0hxAUDzKRSgpWVhTD5fKGWxtyTDZ8mRTBZPcl31LtjZJf1rGfH5sJ/lTBmMu61uote/nNUfWLiVQi/DYXaH+GZAr2wE1A7OL6ZW0h6BKVvywdjfPAfmVf3TrqZzsXuQgTFOyT2FC+vwqWb0dXrclq++6iAoq1tBowYwbd434exTughooo1p1AmnPjtWZHikTgA8mXG6b+4NNndoeTWTy1Q3n4bsdS2yunZqvV2jNdT3HhznKMu4CbWBLjY9W+qOPbZg+Efhg4vXeXRDqrfuZHAKEY4KZuylKiDtcXSh4CcwoKcIN1HNUS1x2P0xJREgmykYEvw2AE4IPDtBw4K0vfV5SO7d92rf1jWgLiumWiZ4tCKMfJxo7Lkig0CWuniNhiWidVp/E4oVsvxdJ3ao3XP3E4IMDdbx4+1c/L3v7FgyD8F3ZIjGgqLG1ISlt51EKrXBhgQtLnDUHBmlL5tIJlLB+k8MDgA+eUDHCGNlnpd36+pH8vOctKlAR9/pDELF+qz5Ya8zgHI4ZSNFWXcfGmPEMHJMnOOg37Vu6ta9MxWjdJaqmI6q2mRD2wFqP6navtoBn4e/h3BXqrlk0j2yW8FPoPKYH0nxJjjLPUwDxmHTpXQWgxN1OaxHKmLKzrdfSZrFCGRe6q7/HgiKWbbUNPoJmgDww+OCI83xbEI4B4NNIVieJ3LLVBsbfq6jQrAWcHRBUmbtLbop7OHdNkBlo5GwlBiHqjgK+ZtzHkqGSfoc5zttkKgCOIauTDlgHxMxgnZQM1xW2BVa2vFMoUebFJbV7ltpdRZK/LVrQ/3Qc8KUxHU36ZVxtgvy0ZBvU75aG7M23QFrY5PUGHxaIprhZjgo+eELzmDThvqm628gYDZjSfkMpwVOWMYubNJKFtgTUU7orarlP7a6of+UfHv1Sn9jcvuell5WoDydrAD9CxgGwK9L7965Iv7JaxYpYnRbxwaoopaB0z3DzX//JE7m8Jz6nz/70F6bbgWCE7OID9uUuaUNY1Yhp0XuhHq+CaM2rv/4LT/SSTmI+x0TIUwYh28+zaRwnMmkjZBWA5l7M4rZrr/768ava+/LEB5DkWKT1FHziXQHhCgARgghea978tX96EpdwEoPI5dBA3AeA/U4PpwrAoQLWfmX1m7/2ZE1uX05qMLkcO423i3jgrmWVH3zptICX5CQHlSSBUAWcdvmsJGOonEO0D75L1denCj44cQAmec9LX9C+6czNYh8K/XUoTysATxl4SU5+gLk899LLWdHQkwWgjDzTk5jguwC8JHdmoLk899LLegoA3H7McSf4LgEvyZ0bcC7JND/tALyLwEtyZweey1CVDZw/AO8y8JLc+QvoSx6wnCMAzwF0uZzVxfQlr7pJchcBeG6gy+VsL6wvKYK+KwA8Z9Dl8lRc5JCs8xthfGn/LtW8eYmXg5We1U8L4PryVF70Jskpnk2yCxGdl3c9fEqBtk7+P3W64Dabb0UBAAAAAElFTkSuQmCC"/>
|
83 |
+
<linearGradient id="_Linear7" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(49.422,-1.97093,1.97093,49.422,62.1236,63.3793)"><stop offset="0" style="stop-color:rgb(249,157,27);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(255,207,1);stop-opacity:1"/></linearGradient>
|
84 |
+
<linearGradient id="_Linear11" x1="0" y1="0" x2="1" y2="0" gradientUnits="userSpaceOnUse" gradientTransform="matrix(49.422,-1.97093,1.97093,49.422,62.1236,63.3793)"><stop offset="0" style="stop-color:rgb(249,157,27);stop-opacity:1"/><stop offset="1" style="stop-color:rgb(255,207,1);stop-opacity:1"/></linearGradient>
|
85 |
+
</defs>
|
86 |
+
</svg>
|
images/admin-flyout-default.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-miterlimit="2" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" gradientTransform="matrix(49.422 -1.97093 1.97093 49.422 62.1236 63.434)" gradientUnits="userSpaceOnUse" x1="0" x2="1" y1="0" y2="0"><stop offset="0" stop-color="#ff8c00"/><stop offset="1" stop-color="#ffd100"/></linearGradient><clipPath id="b"><path clip-rule="evenodd" d="m60 119.945c33.137 0 60-26.859 60-59.999 0-33.141-26.863-60-60-60-33.138 0-60 26.859-60 60 0 33.14 26.862 59.999 60 59.999z"/></clipPath><g transform="translate(3.70821 3.76221)"><path d="m60 116.945c31.429 0 57-25.57 57-56.999 0-31.43-25.571-57-57-57-31.43 0-57 25.57-57 57 0 31.429 25.57 56.999 57 56.999z" fill="#06429e" fill-rule="nonzero"/><g clip-path="url(#b)"><g fill-rule="nonzero"><path d="m59.955 55.188c-1.08-1.08-1.62-2.565-1.62-4.05-8.64-.405-17.28-.135-26.46.945-.675.135-1.215.54-1.35.945-.135.54.405.81.54.81 3.915 1.755 5.94 2.7 9.585 4.86.27.135.675.27 1.08.27 1.89-.135 3.645-.27 5.4-.27 5.67-.135 11.34 0 16.74.675z" fill="#4fd6f6"/><path d="m69 64.638-1.62-1.62c-6.075-.945-12.285-1.35-18.495-1.215-.54 0-1.08.27-1.215.675s.135.81.405.945c3.24 2.295 4.86 3.51 7.965 6.075.27.135.405.27.675.27 3.645.27 6.615.405 9.315.945z" fill="#9ae8fa"/><path d="m64.005 45.333h.945l13.23 1.62 2.025-4.05c-23.22-4.59-44.955-3.78-68.04 2.43-.81.27-1.485.81-1.485 1.35 0 .405.54.54.675.675 4.455 1.08 6.75 1.755 10.935 3.24.405.135.81.135 1.35 0 7.965-1.485 15.39-2.295 22.95-2.565 4.185-.135 8.37 0 12.555.27 1.08-1.755 2.835-2.835 4.86-2.97z" fill="#03c5f2"/></g><path d="m111.256 56.133c-.27-1.08-1.08-1.89-2.16-2.025l-15.391-1.89-2.43-13.77c-.135-1.08-1.08-1.89-2.16-2.025s-2.16.405-2.7 1.35l-6.48 12.825-15.39-1.89c-1.08-.135-2.16.405-2.565 1.35-.54.945-.27 2.16.405 2.835l10.665 11.07-7.83 15.93s0 .135-.135.135c0 0 0 .135-.135.135v1.215s0 .135.135.135c0 .135 0 .135.135.27 0 0 0 .135.135.135l.405.405c.135.135.27.135.27.27h.135c.135 0 .135.135.27.135h.135c.135 0 .135 0 .27.135h1.215c.135 0 .27 0 .27-.135h.135c.135 0 .27-.135.405-.135l14.58-8.64 11.88 12.69c.405.405.945.675 1.485.81.54 0 .945 0 1.485-.27.945-.54 1.62-1.62 1.35-2.7l-3.24-18.09 13.771-8.1c.81 0 1.35-1.08 1.08-2.16z" fill="url(#a)"/></g><path d="m60 116.945c31.429 0 57-25.57 57-56.999 0-31.43-25.571-57-57-57-31.43 0-57 25.57-57 57 0 31.429 25.57 56.999 57 56.999z" fill="none" stroke="#01aae9" stroke-width="6"/></g></svg>
|
images/dynamic-redirect-types.jpg
ADDED
Binary file
|
images/import-export.png
ADDED
Binary file
|
images/plp-dialog-logo.svg
ADDED
@@ -0,0 +1 @@
|
|
|
1 |
+
<svg clip-rule="evenodd" fill-rule="evenodd" stroke-linejoin="round" stroke-miterlimit="2" viewBox="0 0 3422 502" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><linearGradient id="a" gradientTransform="matrix(111.724 -4.45546 4.45546 111.724 1350.11 575.56)" gradientUnits="userSpaceOnUse" x1="0" x2="1" y1="0" y2="0"><stop offset="0" stop-color="#f68c1e"/><stop offset=".7" stop-color="#fdd206"/><stop offset="1" stop-color="#fdd206"/></linearGradient><clipPath id="b"><path clip-rule="evenodd" d="m1233.82 514.176h732.43v120.642h-732.43z"/></clipPath><clipPath id="c"><path clip-rule="evenodd" d="m1233.82 514.18h733.46v117.924h-733.46z"/></clipPath><clipPath id="d"><path clip-rule="evenodd" d="m1233.82 514.181h732.432v117.215h-732.432z"/></clipPath><clipPath id="e"><path clip-rule="evenodd" d="m1233.82 514.181h732.432v117.215h-732.432z"/></clipPath><clipPath id="f"><path clip-rule="evenodd" d="m1461.28 559.108c-.5-2.411-2.49-4.236-4.93-4.536l-34.85-4.289-5.51-31.349c-.43-2.441-2.38-4.332-4.83-4.694-2.44-.351-4.86.886-5.97 3.099l-14.7 29.129-35.03-4.31c-2.41-.297-4.76.96-5.84 3.14-1.09 2.18-.69 4.808 1 6.561l24.21 25.101-17.82 35.876-.01.033c-.07.137-.11.279-.17.419-.06.147-.13.291-.18.44-.04.147-.06.297-.1.445-.03.152-.07.303-.1.457-.02.151-.02.303-.03.455 0 .152-.02.304-.02.456 0 .151.03.3.04.451.02.151.02.303.05.453.02.141.07.277.11.416.04.155.07.312.12.463.04.128.11.248.16.373.07.155.13.313.21.462.06.115.14.22.21.331.1.149.18.303.29.444.07.097.17.181.25.274.12.14.24.286.38.416 0 .003 0 .005.01.008v.004c.22.209.46.395.71.562.08.052.16.091.24.139.19.113.37.227.57.317.11.051.23.083.34.127.17.064.34.135.51.183.13.036.26.052.38.078.16.032.31.074.47.094.01.001.02 0 .03.001.19.022.37.02.56.024.12.002.24.016.35.011.21-.009.42-.043.62-.074.1-.016.2-.018.3-.039.23-.048.46-.122.69-.199.07-.024.14-.036.21-.063.29-.113.58-.25.86-.415l32.92-19.395 26.71 28.584c.94 1.013 2.19 1.621 3.5 1.782 1.09.135 2.23-.044 3.27-.561 2.28-1.137 3.54-3.636 3.09-6.143l-7.2-41.006 31.21-18.409c2.12-1.251 3.21-3.714 2.71-6.126z"/></clipPath><clipPath id="g"><path clip-rule="evenodd" d="m1233.82 514.176h732.43v120.642h-732.43z"/></clipPath><g transform="matrix(4.16667 0 0 4.16667 -5140.92 -2129.04)"><g clip-path="url(#b)"><g clip-path="url(#c)"><g clip-path="url(#d)" fill-rule="nonzero"><path d="m1345.24 557.054c-2.4-2.488-3.67-5.758-3.7-9.074-19.44-1.204-38.92-.553-59.66 1.927-1.64.265-2.83 1.359-3.04 2.245-.25 1.081.94 1.695 1.3 1.858 8.87 3.936 13.29 6.178 21.57 10.912.67.396 1.48.563 2.3.5 4.15-.299 8.27-.51 12.35-.633 12.97-.391 25.57.115 37.77 1.487z" fill="#5fcbec"/><path d="m1365.78 578.357-3.73-3.865c-13.83-2.132-27.83-3.086-41.86-2.831-.02 0-.03 0-.05.001-1.26.038-2.4.732-2.73 1.66-.33.958.26 1.786.92 2.241 7.46 5.176 11.13 8.018 17.89 13.829.48.42 1.04.648 1.65.683 8.32.485 14.85 1.067 21.1 1.988z" fill="#a2ddf1"/><path d="m1354.23 534.641c.72-.028 1.44.002 2.15.089l29.8 3.667 4.59-9.099c-52.19-10.523-101.32-8.796-153.58 5.326-1.89.59-3.24 1.996-3.36 2.994-.13.96 1.33 1.348 1.63 1.416 10.09 2.378 15.2 3.853 24.85 7.18.89.316 1.92.355 2.94.125 17.86-3.32 34.95-5.24 51.81-5.749 9.49-.286 18.92-.109 28.37.499 2.28-3.814 6.32-6.269 10.8-6.448z" fill="#19c3f0"/></g></g></g><g clip-path="url(#e)"><g clip-path="url(#f)"><path d="m1349.01 514.181h112.387v117.215h-112.387z" fill="url(#a)" fill-rule="nonzero"/></g></g><g fill-rule="nonzero"><g clip-path="url(#g)" fill="#164699"><path d="m1591.7 576.235c1.37-9.249 8.67-14.312 17.04-14.312 9.41 0 15.82 5.031 16.25 14.312zm37.51 6.721c1.99 0 3.6-1.626 3.6-3.591 0-16.876-10.54-24.647-24.26-24.647-14.51 0-24.93 10.418-24.93 24.925 0 15.286 10.42 25.119 25.32 25.119 7 0 14.96-2.569 19.73-7.471.71-.737 1.05-1.548 1.05-2.54 0-1.983-1.61-3.591-3.59-3.591-1 0-1.91.413-2.56 1.077-3.43 3.316-9.43 5.127-14.44 5.127-9.25 0-16.55-5.551-17.43-14.411z"/><path d="m1513.22 597.265c-9.44 0-16.94-7.107-16.94-17.428 0-10.418 7.4-17.428 16.94-17.428 9.35 0 16.94 6.328 16.94 17.331 0 11.391-7.59 17.525-16.94 17.525zm.49-42.353c-7.11 0-14.22 2.823-17.82 9.152v-5.264c0-2.201-1.74-3.985-3.94-3.985s-3.95 1.801-3.95 4.002v63.938c0 2.177 1.74 3.995 3.95 3.995s3.94-1.811 3.94-3.995 0-27.632 0-27.632c3.31 6.524 11.2 9.542 17.91 9.542 13.73 0 24.44-8.666 24.44-24.925 0-15.871-10.71-24.828-24.53-24.828z"/><path d="m1578.29 556.671c-2.73-1.274-5.37-1.953-8.54-1.953-5.94 0-11.87 2.143-14.99 7.4v-3.497c0-2.116-1.73-3.903-3.89-3.903-2.15 0-3.9 1.747-3.9 3.903v42.051c0 2.172 1.79 3.994 3.99 3.994 2.21 0 4-1.81 4-3.994 0-2.185-.01-23.754-.01-23.754 0-9.153 5.07-14.215 14.22-14.409 2.18 0 4.04.447 5.84 1.251.49.222 1.03.348 1.6.348 2.16 0 3.91-1.749 3.91-3.906 0-1.541-.98-2.953-2.23-3.531z"/><path d="m1945.61 575.651c-6.04-.681-11.98-1.947-12.07-6.815-.1-5.161 5.25-7.79 11.97-7.693 2.92 0 8.28.682 10.81 2.045l2.09 1.013.01-.003c.48.239 1.03.377 1.61.377 2.02 0 3.66-1.641 3.66-3.666 0-1.559-.97-2.888-2.34-3.417-.75-.317-1.51-.612-2.29-.882-4.36-1.509-9.18-2.282-13.65-2.282-9.25-.096-19.76 4.187-19.66 14.508 0 10.223 10.12 12.463 19.37 13.728 7.5.779 13.44 2.337 13.34 7.691-.19 6.329-7.79 7.4-12.56 7.4-4.31 0-8.81-1.038-12.76-3.02-.53-.27-1.13-.425-1.76-.425-2.14 0-3.87 1.733-3.87 3.872 0 1.543.9 2.872 2.21 3.494v.002c.02.011.04.019.07.03.04.02.08.04.13.058 5 2.331 9.75 3.389 15.79 3.389 10.9 0 20.35-4.576 20.54-14.507.19-12.073-11.78-13.729-20.64-14.897z"/><path d="m1669.35 600.397c0-1.95-1.58-3.53-3.53-3.53-.3 0-.59.048-.86.118-.01.001-.01-.001-.01 0-1.07.266-2.13.414-3.12.414-5.75 0-7.6-3.602-7.6-9.249v-25.407h9.03c1.87 0 3.4-1.524 3.4-3.404 0-1.879-1.53-3.403-3.4-3.403l-8.93.001.01-10.129c0-2.205-1.79-3.993-4-3.993-2.2 0-3.99 1.788-3.99 3.993v10.129l-6.23-.001c-1.88 0-3.41 1.524-3.41 3.403 0 1.88 1.53 3.404 3.41 3.404h6.23v25.407c0 10.611 4.87 16.646 15.18 16.452 1.72-.052 3.36-.305 5-.747v-.001c.07-.02.24-.074.26-.08 1.47-.424 2.56-1.767 2.56-3.377z"/><path d="m1704.74 600.397c0-1.95-1.58-3.53-3.53-3.53-.3 0-.59.048-.86.118-.01.001-.01-.001-.01-.001-1.06.267-2.13.415-3.12.415-5.75 0-7.6-3.602-7.6-9.249v-25.407h10.63c1.88 0 3.4-1.524 3.4-3.404 0-1.879-1.52-3.403-3.4-3.403l-10.53.001.01-10.129c0-2.205-1.79-3.993-4-3.993-2.2 0-3.99 1.788-3.99 3.993v10.129l-6.23-.001c-1.89 0-3.41 1.524-3.41 3.403 0 1.88 1.52 3.404 3.41 3.404h6.23v25.407c0 10.611 4.87 16.646 15.18 16.452 1.72-.052 3.36-.305 5-.747v-.001c.07-.02.24-.074.26-.08 1.47-.424 2.56-1.767 2.56-3.377z"/><path d="m1756.38 558.811c0-2.26-1.84-4.093-4.1-4.093-1.76 0-3.26 1.119-3.84 2.685l-14.33 37.27-15.49-37.62c-.66-1.379-2.06-2.335-3.69-2.335-2.26 0-4.09 1.829-4.09 4.085 0 .561.12 1.095.32 1.582v.001l18.28 42.95-4.48 11.585c-2.37 5.088-6.52 4.931-10.64 3.069 0-.002-.01.003-.01.002-.46-.212-.97-.338-1.52-.338-2.01 0-3.64 1.632-3.64 3.645 0 1.469.87 2.727 2.13 3.304 8.79 4.23 17.17 2.677 21.27-7.347l23.55-56.971c.17-.458.28-.954.28-1.474z"/><path d="m1850.51 554.955c-6.42 0-11.58 2.24-16.06 8.372v-3.661c0-2.124-1.72-3.846-3.85-3.846-2.12 0-3.84 1.722-3.84 3.846v41.158c0 2.175 1.76 3.938 3.94 3.938 2.17 0 3.94-1.763 3.94-3.938v-22.797c0-9.443 6.43-15.576 15.19-15.576 9.83 0 13.72 4.673 13.72 14.991v23.327c0 2.205 1.79 3.993 3.99 3.993 2.21 0 4-1.788 4-3.993v-23.424c0-14.212-7.01-22.39-21.03-22.39z"/><path d="m1902.17 575.885 16.82-14.074c.74-.624 1.22-1.546 1.22-2.591 0-1.878-1.53-3.4-3.4-3.4-.9 0-1.7.351-2.31.913l-23.62 20.32v-37.336c0-2.175-1.77-3.939-3.94-3.939-2.18 0-3.94 1.764-3.94 3.939v61.107c0 2.175 1.76 3.938 3.94 3.938 2.17 0 3.93-1.763 3.93-3.938v-15.692l5.37-4.379 16.32 22.491c.73.918 1.84 1.518 3.1 1.518 2.19 0 3.96-1.774 3.96-3.964 0-.903-.31-1.726-.82-2.393z"/><path d="m1786.02 535.778c-2.17 0-3.94 1.764-3.94 3.939v61.107c0 2.175 1.77 3.938 3.94 3.938 2.18 0 3.94-1.763 3.94-3.938v-61.107c0-2.175-1.76-3.939-3.94-3.939z"/><path d="m1814.13 545.465c0-6.396-9.59-6.396-9.59-.089 0 6.394 9.59 6.394 9.59.089z"/><path d="m1809.23 557.517c-2.21 0-3.99 1.789-3.99 3.994v39.258c0 2.205 1.78 3.993 3.99 3.993s3.99-1.788 3.99-3.993v-39.258c0-2.205-1.78-3.994-3.99-3.994z"/></g><path d="m2017.52 510.97 2.78 2.17 3.08-1.708 2.41 2.578 3.32-1.204 1.97 2.923 3.47-.67 1.49 3.196 3.53-.12.97 3.39 3.5.433.43 3.501 3.4.975-.12 3.526 3.19 1.494-.67 3.463 2.92 1.975-1.2 3.316 2.58 2.409-1.71 3.086 2.17 2.782-2.17 2.782 1.71 3.087-2.58 2.408 1.2 3.316-2.92 1.975.67 3.464-3.19 1.493.12 3.526-3.4.975-.43 3.501-3.5.433-.97 3.39-3.53-.12-1.49 3.196-3.47-.67-1.97 2.923-3.32-1.204-2.41 2.578-3.08-1.707-2.78 2.169-2.79-2.169-3.08 1.707-2.41-2.578-3.32 1.204-1.97-2.923-3.47.67-1.49-3.196-3.53.12-.97-3.39-3.5-.433-.44-3.501-3.39-.975.12-3.526-3.19-1.493.67-3.464-2.92-1.975 1.2-3.316-2.58-2.408 1.71-3.087-2.17-2.782 2.17-2.782-1.71-3.086 2.58-2.409-1.2-3.316 2.92-1.975-.67-3.463 3.19-1.494-.12-3.526 3.39-.975.44-3.501 3.5-.433.97-3.39 3.53.12 1.49-3.196 3.47.67 1.97-2.923 3.32 1.204 2.41-2.578 3.08 1.708z" fill="#17567e"/><path d="m1997.62 539.737h-7.99v18.457h4.27v-5.089h3.72c1.63 0 3.06-.263 4.27-.817 1.19-.527 2.11-1.292 2.77-2.32.66-1.002.97-2.189.97-3.534 0-1.371-.31-2.557-.97-3.559s-1.58-1.767-2.77-2.321c-1.21-.554-2.64-.817-4.27-.817zm-.24 9.888h-3.48v-6.408h3.48c1.29 0 2.27.264 2.93.818.66.553 1 1.371 1 2.399 0 1.029-.34 1.793-1 2.347s-1.64.844-2.93.844z" fill="#fff"/><path d="m2024.75 558.195-4.14-5.933c1.21-.528 2.16-1.292 2.82-2.294.66-.976.98-2.163.98-3.534s-.32-2.557-.98-3.559-1.58-1.767-2.77-2.321c-1.21-.554-2.63-.817-4.27-.817h-7.99v18.458h4.27v-5.142h3.93l3.56 5.142zm-4.67-11.761c0 1.029-.34 1.82-1 2.373-.66.554-1.63.844-2.93.844h-3.48v-6.434h3.48c1.3 0 2.27.264 2.93.818s1 1.371 1 2.399z" fill="#fff"/><path d="m2036.46 558.511c1.92 0 3.64-.422 5.17-1.239 1.52-.818 2.74-1.978 3.61-3.428s1.32-3.059 1.32-4.878c0-1.82-.45-3.455-1.32-4.905s-2.09-2.584-3.61-3.401c-1.53-.818-3.25-1.24-5.17-1.24-1.93 0-3.64.422-5.17 1.24-1.56.817-2.74 1.951-3.61 3.401s-1.32 3.085-1.32 4.905c0 1.819.45 3.428 1.32 4.878s2.05 2.61 3.61 3.428c1.53.817 3.24 1.239 5.17 1.239zm0-3.639c-1.08 0-2.08-.263-2.96-.764-.87-.501-1.55-1.187-2.05-2.084-.5-.896-.77-1.924-.77-3.058s.27-2.162.77-3.059 1.18-1.608 2.05-2.109c.88-.501 1.88-.739 2.96-.739s2.08.238 2.95.739 1.58 1.212 2.08 2.109c.51.897.74 1.925.74 3.059s-.23 2.162-.74 3.058c-.5.897-1.21 1.583-2.08 2.084s-1.87.764-2.95.764z" fill="#fff"/></g></g></svg>
|
images/redirection-link-menu_324_original3.png
ADDED
Binary file
|
js/admin_shared.js
CHANGED
@@ -17,3 +17,75 @@ jQuery(document).ready(function($) {
|
|
17 |
}
|
18 |
});
|
19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
}
|
18 |
});
|
19 |
|
20 |
+
jQuery(document).ready(function($) {
|
21 |
+
// Flyout Menu Elements.
|
22 |
+
var $flyoutMenu = $( '#caseproof-flyout' );
|
23 |
+
|
24 |
+
if ( $flyoutMenu.length === 0 ) {
|
25 |
+
return;
|
26 |
+
}
|
27 |
+
|
28 |
+
var $head = $flyoutMenu.find( '.caseproof-flyout-head' ),
|
29 |
+
$sullie = $head.find( 'img' ),
|
30 |
+
menu = {
|
31 |
+
state: 'inactive',
|
32 |
+
srcInactive: $sullie.attr( 'src' ),
|
33 |
+
srcActive: $sullie.data( 'active' ),
|
34 |
+
};
|
35 |
+
|
36 |
+
// Click on the menu head icon.
|
37 |
+
$head.on( 'click', function( e ) {
|
38 |
+
|
39 |
+
e.preventDefault();
|
40 |
+
|
41 |
+
if ( menu.state === 'active' ) {
|
42 |
+
$flyoutMenu.removeClass( 'opened' );
|
43 |
+
$sullie.attr( 'src', menu.srcInactive );
|
44 |
+
menu.state = 'inactive';
|
45 |
+
} else {
|
46 |
+
$flyoutMenu.addClass( 'opened' );
|
47 |
+
$sullie.attr( 'src', menu.srcActive );
|
48 |
+
menu.state = 'active';
|
49 |
+
}
|
50 |
+
} );
|
51 |
+
|
52 |
+
// Page elements and other values.
|
53 |
+
var $wpfooter = $( '#wpfooter' );
|
54 |
+
|
55 |
+
if ( $wpfooter.length === 0 ) {
|
56 |
+
return;
|
57 |
+
}
|
58 |
+
|
59 |
+
var $overlap = $( '#caseproof-overview, #caseproof-entries-list, #caseproof-tools.caseproof-tools-tab-action-scheduler' ),
|
60 |
+
wpfooterTop = $wpfooter.offset().top,
|
61 |
+
wpfooterBottom = wpfooterTop + $wpfooter.height(),
|
62 |
+
overlapBottom = $overlap.length > 0 ? $overlap.offset().top + $overlap.height() + 85 : 0;
|
63 |
+
|
64 |
+
// Hide menu if scrolled down to the bottom of the page.
|
65 |
+
$( window ).on( 'resize scroll', function( e ) {
|
66 |
+
|
67 |
+
var viewTop = $( window ).scrollTop(),
|
68 |
+
viewBottom = viewTop + $( window ).height();
|
69 |
+
|
70 |
+
if ( wpfooterBottom <= viewBottom && wpfooterTop >= viewTop && overlapBottom > viewBottom ) {
|
71 |
+
$flyoutMenu.addClass( 'out' );
|
72 |
+
} else {
|
73 |
+
$flyoutMenu.removeClass( 'out' );
|
74 |
+
}
|
75 |
+
}, 50 );
|
76 |
+
|
77 |
+
// $( window ).trigger( 'scroll' );
|
78 |
+
});
|
79 |
+
|
80 |
+
jQuery(document).ready(function($) {
|
81 |
+
var checkboxes = $('#screen-options-wrap input[type=checkbox]');
|
82 |
+
$.each(checkboxes, function(index, el) {
|
83 |
+
var label = $(el).closest('label');
|
84 |
+
if ( el.name.includes('pro-pretty-link') || label.html().includes('Keywords Pro') ) {
|
85 |
+
var labelHtml = label.html();
|
86 |
+
var newLabel = labelHtml.replace(' Pro', '');
|
87 |
+
label.html(newLabel);
|
88 |
+
}
|
89 |
+
});
|
90 |
+
});
|
91 |
+
|
pretty-link.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Pretty Links
|
4 |
Plugin URI: https://prettylinks.com/pl/plugin-uri
|
5 |
Description: Shrink, track and share any URL using your website and brand!
|
6 |
-
Version: 3.
|
7 |
Author: Pretty Links
|
8 |
Author URI: http://prettylinks.com
|
9 |
Text Domain: pretty-link
|
3 |
Plugin Name: Pretty Links
|
4 |
Plugin URI: https://prettylinks.com/pl/plugin-uri
|
5 |
Description: Shrink, track and share any URL using your website and brand!
|
6 |
+
Version: 3.2.1
|
7 |
Author: Pretty Links
|
8 |
Author URI: http://prettylinks.com
|
9 |
Text Domain: pretty-link
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: supercleanse, cartpauj
|
|
3 |
Donate link: https://prettylinks.com
|
4 |
Tags: links, urls, shortlinks, link branding, link tracking, affiliate links, link cloaking, marketing, redirect, forward, social media, rewrite, shorturl, 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: 5.1
|
6 |
-
Tested up to: 5.
|
7 |
-
Stable tag: 3.
|
8 |
|
9 |
The best WordPress link management, branding, tracking & sharing plugin. Link shortener helps you easily make pretty & trackable shortlinks.
|
10 |
|
@@ -66,6 +66,11 @@ http://blairwilliams.com/w7a
|
|
66 |
3. Make sure you have changed your permalink Common Settings in Settings -> Permalinks away from "Default" to something else. I prefer using custom and then "/%year%/%month%/%postname%/" for the simplest possible URL slugs with the best performance.
|
67 |
|
68 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
69 |
= 3.1.1 =
|
70 |
* Remove duplicate queries to help performance
|
71 |
* Fix compatibility issue with WPML language prefix in URL's
|
3 |
Donate link: https://prettylinks.com
|
4 |
Tags: links, urls, shortlinks, link branding, link tracking, affiliate links, link cloaking, marketing, redirect, forward, social media, rewrite, shorturl, 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: 5.1
|
6 |
+
Tested up to: 5.6
|
7 |
+
Stable tag: 3.2.1
|
8 |
|
9 |
The best WordPress link management, branding, tracking & sharing plugin. Link shortener helps you easily make pretty & trackable shortlinks.
|
10 |
|
66 |
3. Make sure you have changed your permalink Common Settings in Settings -> Permalinks away from "Default" to something else. I prefer using custom and then "/%year%/%month%/%postname%/" for the simplest possible URL slugs with the best performance.
|
67 |
|
68 |
== Changelog ==
|
69 |
+
= 3.2.1 =
|
70 |
+
* UI Tweaks
|
71 |
+
* Pro: Fix auto-created links not using requested slug
|
72 |
+
* Pro: Link rotation weights of 1% supported now
|
73 |
+
|
74 |
= 3.1.1 =
|
75 |
* Remove duplicate queries to help performance
|
76 |
* Fix compatibility issue with WPML language prefix in URL's
|