Shortlinks by Pretty Links – Best WordPress Link Tracking Plugin - Version 1.6.4

Version Description

  • i18n enhancements
  • Small fix to auto tweeting in pro
  • Fixed small IP address issue in hits
  • Added help text
  • Fixed small Google Analytics issue in pro
  • Fixed issue with meta refresh / javascript redirect in pro
  • Added titles to keywords in pro
  • Added redirect header hooks in pro
  • Security Fixes
Download this release

Release Info

Developer supercleanse
Plugin Icon 128x128 Shortlinks by Pretty Links – Best WordPress Link Tracking Plugin
Version 1.6.4
Comparing to
See all releases

Code changes from version 1.6.3 to 1.6.4

classes/models/PrliClick.php CHANGED
@@ -232,11 +232,11 @@ class PrliClick
232
  $type_string = "Unique hits";
233
 
234
  if($title_only)
235
- return __('Pretty Link:').' '.$type_string.' '.__('on').' '.$link_slug.' '.__('between').' '.date("Y-n-j", $start_timestamp).' '.__('and').' '.date("Y-n-j", $end_timestamp);
236
 
237
  $dates_array = $this->get_counts_by_days($start_timestamp,$end_timestamp,$link_id,$type,$group);
238
 
239
- $chart_data = array('cols' => array(array("label" => __('Date'), 'type' => 'string'), array("label" => __('Hits'), 'type' => 'number')));
240
 
241
  foreach($dates_array as $key => $value)
242
  $chart_data['rows'][] = array('c' => array(array('v' => $key, 'f' => null), array('v' => (int)$value, 'f' => null)));
@@ -249,7 +249,7 @@ class PrliClick
249
  {
250
  $values = array(
251
  'paged' => (isset($_GET['paged'])?$_GET['paged']:(isset($_POST['paged'])?$_POST['paged']:1)),
252
- 'l' => (isset($_GET['l'])?$_GET['l']:(isset($_POST['l'])?$_POST['l']:'all')),
253
  'group' => (isset($_GET['group'])?$_GET['group']:(isset($_POST['group'])?$_POST['group']:'')),
254
  'ip' => (isset($_GET['ip'])?$_GET['ip']:(isset($_POST['ip'])?$_POST['ip']:'')),
255
  'vuid' => (isset($_GET['vuid'])?$_GET['vuid']:(isset($_POST['vuid'])?$_POST['vuid']:'')),
@@ -260,7 +260,7 @@ class PrliClick
260
  'sort' => (isset($_GET['sort'])?$_GET['sort']:(isset($_POST['sort'])?$_POST['sort']:'')),
261
  'sdir' => (isset($_GET['sdir'])?$_GET['sdir']:(isset($_POST['sdir'])?$_POST['sdir']:''))
262
  );
263
-
264
  return $values;
265
  }
266
 
232
  $type_string = "Unique hits";
233
 
234
  if($title_only)
235
+ return __('Pretty Link:', 'pretty-link').' '.$type_string.' '.__('on', 'pretty-link').' '.$link_slug.' '.__('between', 'pretty-link').' '.date("Y-n-j", $start_timestamp).' '.__('and', 'pretty-link').' '.date("Y-n-j", $end_timestamp);
236
 
237
  $dates_array = $this->get_counts_by_days($start_timestamp,$end_timestamp,$link_id,$type,$group);
238
 
239
+ $chart_data = array('cols' => array(array("label" => __('Date', 'pretty-link'), 'type' => 'string'), array("label" => __('Hits', 'pretty-link'), 'type' => 'number')));
240
 
241
  foreach($dates_array as $key => $value)
242
  $chart_data['rows'][] = array('c' => array(array('v' => $key, 'f' => null), array('v' => (int)$value, 'f' => null)));
249
  {
250
  $values = array(
251
  'paged' => (isset($_GET['paged'])?$_GET['paged']:(isset($_POST['paged'])?$_POST['paged']:1)),
252
+ 'l' => (isset($_GET['l'])?(int)$_GET['l']:(isset($_POST['l'])?(int)$_POST['l']:'all')),
253
  'group' => (isset($_GET['group'])?$_GET['group']:(isset($_POST['group'])?$_POST['group']:'')),
254
  'ip' => (isset($_GET['ip'])?$_GET['ip']:(isset($_POST['ip'])?$_POST['ip']:'')),
255
  'vuid' => (isset($_GET['vuid'])?$_GET['vuid']:(isset($_POST['vuid'])?$_POST['vuid']:'')),
260
  'sort' => (isset($_GET['sort'])?$_GET['sort']:(isset($_POST['sort'])?$_POST['sort']:'')),
261
  'sdir' => (isset($_GET['sdir'])?$_GET['sdir']:(isset($_POST['sdir'])?$_POST['sdir']:''))
262
  );
263
+
264
  return $values;
265
  }
266
 
classes/models/PrliLink.php CHANGED
@@ -462,34 +462,34 @@ class PrliLink
462
 
463
  $errors = array();
464
  if( ( $values['url'] == null or $values['url'] == '') and $values['redirect_type'] != 'pixel' )
465
- $errors[] = "Target URL can't be blank";
466
 
467
  if( $values['slug'] == null or $values['slug'] == '' )
468
- $errors[] = "Pretty Link can't be blank";
469
 
470
  if( $values['url'] == $prli_blogurl.PrliUtils::get_permalink_pre_slug_uri().$values['slug'] )
471
- $errors[] = "Target URL must be different than the Pretty Link";
472
 
473
  if( !empty($values['url']) and
474
  !preg_match('/^http.?:\/\/.*\..*$/', $values['url'] ) and
475
  !preg_match('!^(http|https)://(localhost|127\.0\.0\.1)(:\d+)?(/[\w- ./?%&=]*)?!', $values['url'] ) )
476
- $errors[] = "Link URL must be a correctly formatted url";
477
 
478
  if( preg_match('/^[\?\&\#]+$/', $values['slug'] ) )
479
- $errors[] = "Pretty Link slugs must not contain question marks, ampersands or number signs.";
480
 
481
  if( preg_match('#/$#', $values['slug']) )
482
- $errors[] = "Pretty Link slugs must not end with a slash (\"/\")";
483
 
484
  $id = isset($values['id'])?$values['id']:null;
485
  if( !$prli_utils->slugIsAvailable($values['slug'],$id) )
486
- $errors[] = "This Pretty Link Slug is already taken. Check to make sure it isn't being used by another pretty link, post, page, category or tag slug. If none of these are true then check to see that this slug isn't the name of a file in the root folder of your wordpress install.";
487
 
488
  if( isset($values['param_forwarding']) and $values['param_forwarding'] == 'custom' and empty($values['param_struct']) )
489
- $errors[] = "If Custom Parameter Forwarding has been selected then you must specify a forwarding format.";
490
 
491
  if( isset($values['param_forwarding']) and $values['param_forwarding'] == 'custom' and !preg_match('#%.*?%#', $values['param_struct']) )
492
- $errors[] = "Your parameter forwarding must have at least one parameter specified in the format ex: <code>/%var1%/%var_two%/%varname3% ...</code>";
493
 
494
  return $errors;
495
  }
462
 
463
  $errors = array();
464
  if( ( $values['url'] == null or $values['url'] == '') and $values['redirect_type'] != 'pixel' )
465
+ $errors[] = __("Target URL can't be blank", 'pretty-link');
466
 
467
  if( $values['slug'] == null or $values['slug'] == '' )
468
+ $errors[] = __("Pretty Link can't be blank", 'pretty-link');
469
 
470
  if( $values['url'] == $prli_blogurl.PrliUtils::get_permalink_pre_slug_uri().$values['slug'] )
471
+ $errors[] = __("Target URL must be different than the Pretty Link", 'pretty-link');
472
 
473
  if( !empty($values['url']) and
474
  !preg_match('/^http.?:\/\/.*\..*$/', $values['url'] ) and
475
  !preg_match('!^(http|https)://(localhost|127\.0\.0\.1)(:\d+)?(/[\w- ./?%&=]*)?!', $values['url'] ) )
476
+ $errors[] = __("Link URL must be a correctly formatted url", 'pretty-link');
477
 
478
  if( preg_match('/^[\?\&\#]+$/', $values['slug'] ) )
479
+ $errors[] = __("Pretty Link slugs must not contain question marks, ampersands or number signs.", 'pretty-link');
480
 
481
  if( preg_match('#/$#', $values['slug']) )
482
+ $errors[] = __("Pretty Link slugs must not end with a slash (\"/\")", 'pretty-link');
483
 
484
  $id = isset($values['id'])?$values['id']:null;
485
  if( !$prli_utils->slugIsAvailable($values['slug'],$id) )
486
+ $errors[] = __("This Pretty Link Slug is already taken. Check to make sure it isn't being used by another pretty link, post, page, category or tag slug. If none of these are true then check to see that this slug isn't the name of a file in the root folder of your wordpress install.", 'pretty-link');
487
 
488
  if( isset($values['param_forwarding']) and $values['param_forwarding'] == 'custom' and empty($values['param_struct']) )
489
+ $errors[] = __("If Custom Parameter Forwarding has been selected then you must specify a forwarding format.", 'pretty-link');
490
 
491
  if( isset($values['param_forwarding']) and $values['param_forwarding'] == 'custom' and !preg_match('#%.*?%#', $values['param_struct']) )
492
+ $errors[] = __("Your parameter forwarding must have at least one parameter specified in the format ex: <code>/%var1%/%var_two%/%varname3% ...</code>", 'pretty-link');
493
 
494
  return $errors;
495
  }
classes/views/prli-clicks/list.php CHANGED
@@ -4,21 +4,21 @@
4
  require(PRLI_VIEWS_PATH.'/shared/nav.php');
5
  ?>
6
  <?php echo PrliAppHelper::page_title(__('Hits', 'pretty-link')); ?>
7
- <span style="font-size: 14px; font-weight: bold;">For <?php echo stripslashes($link_name); ?>: </span>
8
  <?php
9
  // Don't show this sheesh if we're displaying the vuid or ip grouping
10
  if(empty($params['ip']) and empty($params['vuid']))
11
  {
12
  ?>
13
- <a href="#" style="display:inline;" class="filter_toggle">Customize Report</a>
14
  <?php
15
  }
16
  ?>
17
  <?php
18
  if(!empty($params['l']) and $params['l'] != 'all')
19
- echo '<br/><a href="' . admin_url("admin.php?page=pretty-link") . '">&laquo Back to Links</a>';
20
  else if(!empty($params['ip']) or !empty($params['vuid']))
21
- echo '<br/><a href="?page='. PRLI_PLUGIN_NAME .'/prli-clicks.php">&laquo Back to Hits</a>';
22
 
23
  if(empty($params['ip']) and empty($params['vuid']))
24
  {
@@ -28,20 +28,20 @@
28
  <div class="filter_pane">
29
  <form class="form-fields" name="form2" method="post" action="">
30
  <?php wp_nonce_field('prli-reports'); ?>
31
- <span>Type:</span>&nbsp;
32
  <select id="type" name="type" style="display: inline;">
33
- <option value="all"<?php print ((empty($params['type']) or $params['type'] == "all")?" selected=\"true\"":""); ?>>All Hits&nbsp;</option>
34
- <option value="unique"<?php print (($params['type'] == "unique")?" selected=\"true\"":""); ?>>Unique Hits&nbsp;</option>
35
  </select>
36
  <br/>
37
  <br/>
38
- <span>Date Range:</span>
39
  <div id="dateselectors" style="display: inline;">
40
- <input type="text" name="sdate" id="sdate" value="<?php echo $params['sdate']; ?>" style="display:inline;"/>&nbsp;to&nbsp;<input type="text" name="edate" id="edate" value="<?php echo $params['edate']; ?>" style="display:inline;"/>
41
  </div>
42
  <br/>
43
  <br/>
44
- <div class="submit" style="display: inline;"><input type="submit" name="Submit" value="Customize"/> or <a href="#" class="filter_toggle">Cancel</a></div>
45
  </form>
46
  </div>
47
 
@@ -65,7 +65,7 @@
65
  if(!empty($search_str))
66
  {
67
  ?>
68
- or <a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-clicks.php<?php echo (!empty($params['l'])?'&l='.$params['l']:''); ?>">Reset</a>
69
  <?php
70
  }
71
  ?>
@@ -76,33 +76,33 @@
76
  <thead>
77
  <tr>
78
  <?php if( isset($prli_options->extended_tracking) and $prli_options->extended_tracking == "extended" ) { ?>
79
- <th class="manage-column" width="5%"><a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-clicks.php<?php echo $sort_params; ?>&sort=btype<?php echo (($sort_str == 'btype' and $sdir_str == 'asc')?'&sdir=desc':''); ?>">Browser<?php echo (($sort_str == 'btype')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL.'/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a>
80
  </th>
81
  <?php } ?>
82
  <th class="manage-column" width="12%">
83
- <a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-clicks.php<?php echo $sort_params; ?>&sort=ip<?php echo (($sort_str == 'ip' and $sdir_str == 'asc')?'&sdir=desc':''); ?>">IP<?php echo (($sort_str == 'ip')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL.'/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a>
84
  </th>
85
  <?php if( isset($prli_options->extended_tracking) and $prli_options->extended_tracking == "extended" ) { ?>
86
  <th class="manage-column" width="12%">
87
- <a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-clicks.php<?php echo $sort_params; ?>&sort=vuid<?php echo (($sort_str == 'vuid' and $sdir_str == 'asc')?'&sdir=desc':''); ?>">Visitor<?php echo (($sort_str == 'vuid')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL.'/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a>
88
  </th>
89
  <?php } ?>
90
  <th class="manage-column" width="13%">
91
- <a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-clicks.php<?php echo $sort_params; ?>&sort=created_at<?php echo (($sort_str == 'created_at' and $sdir_str == 'asc')?'&sdir=desc':''); ?>">Timestamp<?php echo ((empty($sort_str) or $sort_str == 'created_at')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL.'/'.((empty($sort_str) or $sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a>
92
  </th>
93
  <?php if( isset($prli_options->extended_tracking) and $prli_options->extended_tracking == "extended" ) { ?>
94
  <th class="manage-column" width="16%">
95
- <a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-clicks.php<?php echo $sort_params; ?>&sort=host<?php echo (($sort_str == 'host' and $sdir_str == 'asc')?'&sdir=desc':''); ?>">Host<?php echo (($sort_str == 'host')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL.'/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a>
96
  </th>
97
  <?php } ?>
98
  <th class="manage-column" width="16%">
99
- <a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-clicks.php<?php echo $sort_params; ?>&sort=uri<?php echo (($sort_str == 'uri' and $sdir_str == 'asc')?'&sdir=desc':''); ?>">URI<?php echo (($sort_str == 'uri')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL.'/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a>
100
  </th>
101
  <th class="manage-column" width="16%">
102
- <a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-clicks.php<?php echo $sort_params; ?>&sort=referer<?php echo (($sort_str == 'referer' and $sdir_str == 'asc')?'&sdir=desc':''); ?>">Referrer<?php echo (($sort_str == 'referer')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL.'/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a>
103
  </th>
104
  <th class="manage-column" width="13%">
105
- <a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-clicks.php<?php echo $sort_params; ?>&sort=link<?php echo (($sort_str == 'link' and $sdir_str == 'asc')?'&sdir=desc':''); ?>">Link<?php echo (($sort_str == 'link')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL.'/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a>
106
  </th>
107
  </tr>
108
  </thead>
@@ -112,7 +112,7 @@
112
  {
113
  ?>
114
  <tr>
115
- <td colspan="7">No Hits have been recorded yet</td>
116
  </tr>
117
  <?php
118
  }
@@ -144,24 +144,24 @@
144
  <tfoot>
145
  <tr>
146
  <?php if( isset($prli_options->extended_tracking) and $prli_options->extended_tracking == "extended" ) { ?>
147
- <th class="manage-column">Browser</th>
148
  <?php } ?>
149
- <th class="manage-column">IP</th>
150
  <?php if( isset($prli_options->extended_tracking) and $prli_options->extended_tracking == "extended" ) { ?>
151
- <th class="manage-column">Visitor</th>
152
  <?php } ?>
153
- <th class="manage-column">Timestamp</th>
154
  <?php if( isset($prli_options->extended_tracking) and $prli_options->extended_tracking == "extended" ) { ?>
155
- <th class="manage-column">Host</th>
156
  <?php } ?>
157
- <th class="manage-column">URI</th>
158
- <th class="manage-column">Referrer</th>
159
- <th class="manage-column">Link</th>
160
  </tr>
161
  </tfoot>
162
  </table>
163
 
164
- <a href="?page=pretty-link/prli-clicks.php&action=csv<?php echo $page_params; ?>">Download CSV (<?php echo stripslashes($link_name); ?>)</a>
165
 
166
  <?php
167
  require(PRLI_VIEWS_PATH.'/shared/table-nav.php');
4
  require(PRLI_VIEWS_PATH.'/shared/nav.php');
5
  ?>
6
  <?php echo PrliAppHelper::page_title(__('Hits', 'pretty-link')); ?>
7
+ <span style="font-size: 14px; font-weight: bold;"><?php echo __('For', 'pretty-link').' '.stripslashes($link_name); ?>: </span>
8
  <?php
9
  // Don't show this sheesh if we're displaying the vuid or ip grouping
10
  if(empty($params['ip']) and empty($params['vuid']))
11
  {
12
  ?>
13
+ <a href="#" style="display:inline;" class="filter_toggle"><?php _e('Customize Report', 'pretty-link'); ?></a>
14
  <?php
15
  }
16
  ?>
17
  <?php
18
  if(!empty($params['l']) and $params['l'] != 'all')
19
+ echo '<br/><a href="'.admin_url("admin.php?page=pretty-link").'">&laquo '.__("Back to Links", 'pretty-link').'</a>';
20
  else if(!empty($params['ip']) or !empty($params['vuid']))
21
+ echo '<br/><a href="?page='. PRLI_PLUGIN_NAME .'/prli-clicks.php">&laquo '.__("Back to Hits", 'pretty-link').'</a>';
22
 
23
  if(empty($params['ip']) and empty($params['vuid']))
24
  {
28
  <div class="filter_pane">
29
  <form class="form-fields" name="form2" method="post" action="">
30
  <?php wp_nonce_field('prli-reports'); ?>
31
+ <span><?php _e('Type:', 'pretty-link'); ?></span>&nbsp;
32
  <select id="type" name="type" style="display: inline;">
33
+ <option value="all"<?php print ((empty($params['type']) or $params['type'] == "all")?" selected=\"true\"":""); ?>><?php _e('All Hits', 'pretty-link'); ?>&nbsp;</option>
34
+ <option value="unique"<?php print (($params['type'] == "unique")?" selected=\"true\"":""); ?>><?php _e('Unique Hits', 'pretty-link'); ?>&nbsp;</option>
35
  </select>
36
  <br/>
37
  <br/>
38
+ <span><?php _e('Date Range:', 'pretty-link'); ?></span>
39
  <div id="dateselectors" style="display: inline;">
40
+ <input type="text" name="sdate" id="sdate" value="<?php echo $params['sdate']; ?>" style="display:inline;"/>&nbsp;<?php _e('to', 'pretty-link'); ?>&nbsp;<input type="text" name="edate" id="edate" value="<?php echo $params['edate']; ?>" style="display:inline;"/>
41
  </div>
42
  <br/>
43
  <br/>
44
+ <div class="submit" style="display: inline;"><input type="submit" name="Submit" value="Customize"/> <?php _e('or', 'pretty-link'); ?> <a href="#" class="filter_toggle"><?php _e('Cancel', 'pretty-link'); ?></a></div>
45
  </form>
46
  </div>
47
 
65
  if(!empty($search_str))
66
  {
67
  ?>
68
+ <?php _e('or', 'pretty-link'); ?> <a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-clicks.php<?php echo (!empty($params['l'])?'&l='.$params['l']:''); ?>"><?php _e('Reset', 'pretty-link'); ?></a>
69
  <?php
70
  }
71
  ?>
76
  <thead>
77
  <tr>
78
  <?php if( isset($prli_options->extended_tracking) and $prli_options->extended_tracking == "extended" ) { ?>
79
+ <th class="manage-column" width="5%"><a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-clicks.php<?php echo $sort_params; ?>&sort=btype<?php echo (($sort_str == 'btype' and $sdir_str == 'asc')?'&sdir=desc':''); ?>"><?php _e('Browser', 'pretty-link'); echo (($sort_str == 'btype')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL.'/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a>
80
  </th>
81
  <?php } ?>
82
  <th class="manage-column" width="12%">
83
+ <a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-clicks.php<?php echo $sort_params; ?>&sort=ip<?php echo (($sort_str == 'ip' and $sdir_str == 'asc')?'&sdir=desc':''); ?>"><?php _e('IP', 'pretty-link'); echo (($sort_str == 'ip')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL.'/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a>
84
  </th>
85
  <?php if( isset($prli_options->extended_tracking) and $prli_options->extended_tracking == "extended" ) { ?>
86
  <th class="manage-column" width="12%">
87
+ <a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-clicks.php<?php echo $sort_params; ?>&sort=vuid<?php echo (($sort_str == 'vuid' and $sdir_str == 'asc')?'&sdir=desc':''); ?>"><?php _e('Visitor', 'pretty-link'); echo (($sort_str == 'vuid')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL.'/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a>
88
  </th>
89
  <?php } ?>
90
  <th class="manage-column" width="13%">
91
+ <a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-clicks.php<?php echo $sort_params; ?>&sort=created_at<?php echo (($sort_str == 'created_at' and $sdir_str == 'asc')?'&sdir=desc':''); ?>"><?php _e('Timestamp', 'pretty-link'); echo ((empty($sort_str) or $sort_str == 'created_at')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL.'/'.((empty($sort_str) or $sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a>
92
  </th>
93
  <?php if( isset($prli_options->extended_tracking) and $prli_options->extended_tracking == "extended" ) { ?>
94
  <th class="manage-column" width="16%">
95
+ <a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-clicks.php<?php echo $sort_params; ?>&sort=host<?php echo (($sort_str == 'host' and $sdir_str == 'asc')?'&sdir=desc':''); ?>"><?php _e('Host', 'pretty-link'); echo (($sort_str == 'host')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL.'/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a>
96
  </th>
97
  <?php } ?>
98
  <th class="manage-column" width="16%">
99
+ <a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-clicks.php<?php echo $sort_params; ?>&sort=uri<?php echo (($sort_str == 'uri' and $sdir_str == 'asc')?'&sdir=desc':''); ?>"><?php _e('URI', 'pretty-link'); echo (($sort_str == 'uri')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL.'/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a>
100
  </th>
101
  <th class="manage-column" width="16%">
102
+ <a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-clicks.php<?php echo $sort_params; ?>&sort=referer<?php echo (($sort_str == 'referer' and $sdir_str == 'asc')?'&sdir=desc':''); ?>"><?php _e('Referrer', 'pretty-link'); echo (($sort_str == 'referer')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL.'/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a>
103
  </th>
104
  <th class="manage-column" width="13%">
105
+ <a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-clicks.php<?php echo $sort_params; ?>&sort=link<?php echo (($sort_str == 'link' and $sdir_str == 'asc')?'&sdir=desc':''); ?>"><?php _e('Link', 'pretty-link'); echo (($sort_str == 'link')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL.'/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a>
106
  </th>
107
  </tr>
108
  </thead>
112
  {
113
  ?>
114
  <tr>
115
+ <td colspan="7"><?php _e('No Hits have been recorded yet', 'pretty-link'); ?></td>
116
  </tr>
117
  <?php
118
  }
144
  <tfoot>
145
  <tr>
146
  <?php if( isset($prli_options->extended_tracking) and $prli_options->extended_tracking == "extended" ) { ?>
147
+ <th class="manage-column"><?php _e('Browser', 'pretty-link'); ?></th>
148
  <?php } ?>
149
+ <th class="manage-column"><?php _e('IP', 'pretty-link'); ?></th>
150
  <?php if( isset($prli_options->extended_tracking) and $prli_options->extended_tracking == "extended" ) { ?>
151
+ <th class="manage-column"><?php _e('Visitor', 'pretty-link'); ?></th>
152
  <?php } ?>
153
+ <th class="manage-column"><?php _e('Timestamp', 'pretty-link'); ?></th>
154
  <?php if( isset($prli_options->extended_tracking) and $prli_options->extended_tracking == "extended" ) { ?>
155
+ <th class="manage-column"><?php _e('Host', 'pretty-link'); ?></th>
156
  <?php } ?>
157
+ <th class="manage-column"><?php _e('URI', 'pretty-link'); ?></th>
158
+ <th class="manage-column"><?php _e('Referrer', 'pretty-link'); ?></th>
159
+ <th class="manage-column"><?php _e('Link', 'pretty-link'); ?></th>
160
  </tr>
161
  </tfoot>
162
  </table>
163
 
164
+ <a href="?page=pretty-link/prli-clicks.php&action=csv<?php echo $page_params; ?>"><?php _e('Download CSV', 'pretty-link'); ?> (<?php echo stripslashes($link_name); ?>)</a>
165
 
166
  <?php
167
  require(PRLI_VIEWS_PATH.'/shared/table-nav.php');
classes/views/prli-groups/edit.php CHANGED
@@ -17,23 +17,23 @@ if(!defined('ABSPATH'))
17
 
18
  <table class="form-table">
19
  <tr class="form-field">
20
- <td width="75px" valign="top">Name: </td>
21
  <td><input type="text" name="name" value="<?php echo htmlspecialchars(stripslashes(((isset($_POST['name']) and $record == null)?$_POST['name']:$record->name))); ?>" size="75">
22
- <br/><span class="setting-description">This is how you'll identify your Group.</span></td>
23
  </tr>
24
  <tr class="form-field">
25
- <td valign="top">Description: </td>
26
  <td><textarea style="height: 100px;" name="description"><?php echo ((isset($_POST['description']) and $record == null)?$_POST['description']:$record->description); ?></textarea>
27
- <br/><span class="setting-description">A Description of this group.</span></td>
28
  </tr>
29
  <tr class="form-field" valign="top">
30
- <td valign="top">Links: </td>
31
  <td valign="top">
32
  <div style="height: 150px; width: 95%; border: 1px solid #8cbdd5; overflow: auto;">
33
  <table width="100%" cellspacing="0">
34
  <thead style="background-color: #dedede; padding: 0px; margin: 0px; line-height: 8px; font-size: 14px;">
35
- <th style="padding-left: 5px; margin: 0px; width: 50%; min-width: 50%;"><strong>Name</strong></th>
36
- <th style="padding-left: 5px; margin: 0px; width: 50%; min-width: 50%;"><strong>Current Group</strong></th>
37
  </thead>
38
  <?php
39
  for($i = 0; $i < count($links); $i++)
@@ -50,13 +50,13 @@ if(!defined('ABSPATH'))
50
  ?>
51
  </table>
52
  </div>
53
- <span class="setting-description">Select some links for this group. <strong>Note: each link can only be in one group at a time.</strong></span></td>
54
  </td>
55
  </tr>
56
  </table>
57
 
58
  <p class="submit">
59
- <input type="submit" name="Submit" value="Update" />&nbsp;or&nbsp;<a href="?page=<?php echo PRLI_PLUGIN_NAME ?>/prli-groups.php">Cancel</a>
60
  </p>
61
 
62
  </form>
17
 
18
  <table class="form-table">
19
  <tr class="form-field">
20
+ <td width="75px" valign="top"><?php _e('Name:', 'pretty-link'); ?> </td>
21
  <td><input type="text" name="name" value="<?php echo htmlspecialchars(stripslashes(((isset($_POST['name']) and $record == null)?$_POST['name']:$record->name))); ?>" size="75">
22
+ <br/><span class="setting-description"><?php _e("This is how you'll identify your Group.", 'pretty-link'); ?></span></td>
23
  </tr>
24
  <tr class="form-field">
25
+ <td valign="top"><?php _e('Description:', 'pretty-link'); ?> </td>
26
  <td><textarea style="height: 100px;" name="description"><?php echo ((isset($_POST['description']) and $record == null)?$_POST['description']:$record->description); ?></textarea>
27
+ <br/><span class="setting-description"><?php _e('A Description of this group.', 'pretty-link'); ?></span></td>
28
  </tr>
29
  <tr class="form-field" valign="top">
30
+ <td valign="top"><?php _e('Links:', 'pretty-link'); ?> </td>
31
  <td valign="top">
32
  <div style="height: 150px; width: 95%; border: 1px solid #8cbdd5; overflow: auto;">
33
  <table width="100%" cellspacing="0">
34
  <thead style="background-color: #dedede; padding: 0px; margin: 0px; line-height: 8px; font-size: 14px;">
35
+ <th style="padding-left: 5px; margin: 0px; width: 50%; min-width: 50%;"><strong><?php _e('Name', 'pretty-link'); ?></strong></th>
36
+ <th style="padding-left: 5px; margin: 0px; width: 50%; min-width: 50%;"><strong><?php _e('Current Group', 'pretty-link'); ?></strong></th>
37
  </thead>
38
  <?php
39
  for($i = 0; $i < count($links); $i++)
50
  ?>
51
  </table>
52
  </div>
53
+ <span class="setting-description"><?php _e('Select some links for this group. <strong>Note: each link can only be in one group at a time.</strong>', 'pretty-link'); ?></span>
54
  </td>
55
  </tr>
56
  </table>
57
 
58
  <p class="submit">
59
+ <input type="submit" name="Submit" value="Update" />&nbsp;<?php _e('or', 'pretty-link'); ?>&nbsp;<a href="?page=<?php echo PRLI_PLUGIN_NAME ?>/prli-groups.php"><?php _e('Cancel', 'pretty-link'); ?></a>
60
  </p>
61
 
62
  </form>
classes/views/prli-groups/list.php CHANGED
@@ -19,7 +19,7 @@ if(!defined('ABSPATH'))
19
  if(!empty($search_str))
20
  {
21
  ?>
22
- or <a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-groups.php">Reset</a>
23
  <?php
24
  }
25
  ?>
@@ -27,7 +27,7 @@ if(!defined('ABSPATH'))
27
  </form>
28
  </div>
29
  <div id="button_bar">
30
- <p><a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-groups.php&action=new">Add a Pretty Link Group</a></p>
31
  </div>
32
 
33
  <?php
@@ -36,9 +36,9 @@ if(!defined('ABSPATH'))
36
  <table class="widefat post fixed" cellspacing="0">
37
  <thead>
38
  <tr>
39
- <th class="manage-column" width="50%"><a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-groups.php&sort=name<?php echo (($sort_str == 'name' and $sdir_str == 'asc')?'&sdir=desc':''); ?>">Name<?php echo (($sort_str == 'name')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL.'/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a></th>
40
- <th class="manage-column" width="20%"><a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-groups.php&sort=link_count<?php echo (($sort_str == 'link_count' and $sdir_str == 'asc')?'&sdir=desc':''); ?>">Links<?php echo (($sort_str == 'link_count')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL.'/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a></th>
41
- <th class="manage-column" width="30%"><a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-groups.php&sort=created_at<?php echo (($sort_str == 'created_at' and $sdir_str == 'asc')?'&sdir=desc':''); ?>">Created<?php echo ((empty($sort_str) or $sort_str == 'created_at')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL.'/'.((empty($sort_str) or $sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a></th>
42
  </tr>
43
  </thead>
44
  <?php
@@ -47,7 +47,7 @@ if(!defined('ABSPATH'))
47
  {
48
  ?>
49
  <tr>
50
- <td colspan="5">No Pretty Link Groups were found</td>
51
  </tr>
52
  <?php
53
  }
@@ -61,10 +61,10 @@ if(!defined('ABSPATH'))
61
  <a class="group_name" href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-groups.php&action=edit&id=<?php echo $group->id; ?>" title="Edit <?php echo htmlspecialchars(stripslashes($group->name)); ?>"><?php echo htmlspecialchars(stripslashes($group->name)); ?></a>
62
  <br/>
63
  <div class="group_actions">
64
- <a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-groups.php&action=edit&id=<?php echo $group->id; ?>" title="Edit <?php echo htmlspecialchars(stripslashes($group->name)); ?>">Edit</a>&nbsp;|
65
- <a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-groups.php&action=destroy&id=<?php echo $group->id; ?>" onclick="return confirm('Are you sure you want to delete your <?php echo htmlspecialchars(stripslashes($group->name)); ?> Pretty Link Group?');" title="Delete <?php echo htmlspecialchars(stripslashes($group->name)); ?>">Delete</a>&nbsp;|
66
- <a href="<?php echo admin_url("admin.php?page=pretty-link&group={$group->id}"); ?>" title="View links in <?php echo htmlspecialchars(stripslashes($group->name)); ?>">Links</a>&nbsp;|
67
- <a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-clicks.php&group=<?php echo $group->id; ?>" title="View hits in <?php echo htmlspecialchars(stripslashes($group->name)); ?>">Hits</a>
68
  </div>
69
  </td>
70
  <td><a href="<?php echo admin_url("admin.php?page=pretty-link&group={$group->id}"); ?>" title="View links in <?php echo htmlspecialchars(stripslashes($group->name)); ?>"><?php echo $group->link_count; ?></a></td>
@@ -76,9 +76,9 @@ if(!defined('ABSPATH'))
76
  ?>
77
  <tfoot>
78
  <tr>
79
- <th class="manage-column">Name</th>
80
- <th class="manage-column">Links</th>
81
- <th class="manage-column">Created</th>
82
  </tr>
83
  </tfoot>
84
  </table>
19
  if(!empty($search_str))
20
  {
21
  ?>
22
+ <?php _e('or', 'pretty-link'); ?> <a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-groups.php"><?php _e('Reset', 'pretty-link'); ?></a>
23
  <?php
24
  }
25
  ?>
27
  </form>
28
  </div>
29
  <div id="button_bar">
30
+ <p><a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-groups.php&action=new"><?php _e('Add a Pretty Link Group', 'pretty-link'); ?></a></p>
31
  </div>
32
 
33
  <?php
36
  <table class="widefat post fixed" cellspacing="0">
37
  <thead>
38
  <tr>
39
+ <th class="manage-column" width="50%"><a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-groups.php&sort=name<?php echo (($sort_str == 'name' and $sdir_str == 'asc')?'&sdir=desc':''); ?>"><?php _e('Name', 'pretty-link'); echo (($sort_str == 'name')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL.'/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a></th>
40
+ <th class="manage-column" width="20%"><a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-groups.php&sort=link_count<?php echo (($sort_str == 'link_count' and $sdir_str == 'asc')?'&sdir=desc':''); ?>"><?php _e('Links', 'pretty-link'); echo (($sort_str == 'link_count')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL.'/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a></th>
41
+ <th class="manage-column" width="30%"><a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-groups.php&sort=created_at<?php echo (($sort_str == 'created_at' and $sdir_str == 'asc')?'&sdir=desc':''); ?>"><?php _e('Created', 'pretty-link'); echo ((empty($sort_str) or $sort_str == 'created_at')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL.'/'.((empty($sort_str) or $sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a></th>
42
  </tr>
43
  </thead>
44
  <?php
47
  {
48
  ?>
49
  <tr>
50
+ <td colspan="5"><?php _e('No Pretty Link Groups were found', 'pretty-link'); ?></td>
51
  </tr>
52
  <?php
53
  }
61
  <a class="group_name" href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-groups.php&action=edit&id=<?php echo $group->id; ?>" title="Edit <?php echo htmlspecialchars(stripslashes($group->name)); ?>"><?php echo htmlspecialchars(stripslashes($group->name)); ?></a>
62
  <br/>
63
  <div class="group_actions">
64
+ <a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-groups.php&action=edit&id=<?php echo $group->id; ?>" title="Edit <?php echo htmlspecialchars(stripslashes($group->name)); ?>"><?php _e('Edit', 'pretty-link'); ?></a>&nbsp;|
65
+ <a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-groups.php&action=destroy&id=<?php echo $group->id; ?>" onclick="return confirm('Are you sure you want to delete your <?php echo htmlspecialchars(stripslashes($group->name)); ?> Pretty Link Group?');" title="Delete <?php echo htmlspecialchars(stripslashes($group->name)); ?>"><?php _e('Delete', 'pretty-link'); ?></a>&nbsp;|
66
+ <a href="<?php echo admin_url("admin.php?page=pretty-link&group={$group->id}"); ?>" title="View links in <?php echo htmlspecialchars(stripslashes($group->name)); ?>"><?php _e('Links', 'pretty-link'); ?></a>&nbsp;|
67
+ <a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-clicks.php&group=<?php echo $group->id; ?>" title="View hits in <?php echo htmlspecialchars(stripslashes($group->name)); ?>"><?php _e('Hits', 'pretty-link'); ?></a>
68
  </div>
69
  </td>
70
  <td><a href="<?php echo admin_url("admin.php?page=pretty-link&group={$group->id}"); ?>" title="View links in <?php echo htmlspecialchars(stripslashes($group->name)); ?>"><?php echo $group->link_count; ?></a></td>
76
  ?>
77
  <tfoot>
78
  <tr>
79
+ <th class="manage-column"><?php _e('Name', 'pretty-link'); ?></th>
80
+ <th class="manage-column"><?php _e('Links', 'pretty-link'); ?></th>
81
+ <th class="manage-column"><?php _e('Created', 'pretty-link'); ?></th>
82
  </tr>
83
  </tfoot>
84
  </table>
classes/views/prli-groups/new.php CHANGED
@@ -19,23 +19,23 @@ if(!defined('ABSPATH'))
19
 
20
  <table class="form-table">
21
  <tr class="form-field">
22
- <td width="75px" valign="top">Name*: </td>
23
  <td><input type="text" name="name" value="<?php echo $name; ?>" size="75">
24
- <br/><span class="setting-description">This is how you'll identify your Group.</span></td>
25
  </tr>
26
  <tr class="form-field">
27
- <td valign="top">Description: </td>
28
  <td><textarea style="height: 100px;" name="description"><?php echo ((isset($_POST['description']))?$_POST['description']:''); ?></textarea>
29
- <br/><span class="setting-description">A Description of this group.</span></td>
30
  </tr>
31
  <tr class="form-field" valign="top">
32
- <td valign="top">Links: </td>
33
  <td valign="top">
34
  <div style="height: 150px; width: 95%; border: 1px solid #8cbdd5; overflow: auto;">
35
  <table width="100%" cellspacing="0">
36
  <thead style="background-color: #dedede; padding: 0px; margin: 0px; line-height: 8px; font-size: 14px;">
37
- <th width="50%" style="padding-left: 5px; margin: 0px;"><strong>Name</strong></th>
38
- <th width="50%" style="padding-left: 5px; margin: 0px;"><strong>Current Group</strong></th>
39
  </thead>
40
  <?php
41
  for($i = 0; $i < count($links); $i++)
@@ -52,14 +52,14 @@ if(!defined('ABSPATH'))
52
  ?>
53
  </table>
54
  </div>
55
- <span class="setting-description">Select some links for this group. <strong>Note: each link can only be in one group at a time.</strong></span></td>
56
  </td>
57
  </tr>
58
  </table>
59
  </div>
60
 
61
  <p class="submit">
62
- <input type="submit" name="Submit" value="Create" />&nbsp;or&nbsp;<a href="?page=<?php echo PRLI_PLUGIN_NAME ?>/prli-groups.php">Cancel</a>
63
  </p>
64
 
65
  </form>
19
 
20
  <table class="form-table">
21
  <tr class="form-field">
22
+ <td width="75px" valign="top"><?php _e('Name*:', 'pretty-link'); ?> </td>
23
  <td><input type="text" name="name" value="<?php echo $name; ?>" size="75">
24
+ <br/><span class="setting-description"><?php _e("This is how you'll identify your Group.", 'pretty-link'); ?></span></td>
25
  </tr>
26
  <tr class="form-field">
27
+ <td valign="top"><?php _e('Description:', 'pretty-link'); ?> </td>
28
  <td><textarea style="height: 100px;" name="description"><?php echo ((isset($_POST['description']))?$_POST['description']:''); ?></textarea>
29
+ <br/><span class="setting-description"><?php _e('A Description of this group.', 'pretty-link'); ?></span></td>
30
  </tr>
31
  <tr class="form-field" valign="top">
32
+ <td valign="top"><?php _e('Links:', 'pretty-link'); ?> </td>
33
  <td valign="top">
34
  <div style="height: 150px; width: 95%; border: 1px solid #8cbdd5; overflow: auto;">
35
  <table width="100%" cellspacing="0">
36
  <thead style="background-color: #dedede; padding: 0px; margin: 0px; line-height: 8px; font-size: 14px;">
37
+ <th width="50%" style="padding-left: 5px; margin: 0px;"><strong><?php _e('Name', 'pretty-link'); ?></strong></th>
38
+ <th width="50%" style="padding-left: 5px; margin: 0px;"><strong><?php _e('Current Group', 'pretty-link'); ?></strong></th>
39
  </thead>
40
  <?php
41
  for($i = 0; $i < count($links); $i++)
52
  ?>
53
  </table>
54
  </div>
55
+ <span class="setting-description"><?php _e('Select some links for this group. <strong>Note: each link can only be in one group at a time.</strong>', 'pretty-link'); ?></span>
56
  </td>
57
  </tr>
58
  </table>
59
  </div>
60
 
61
  <p class="submit">
62
+ <input type="submit" name="Submit" value="Create" />&nbsp;<?php _e('or', 'pretty-link'); ?>&nbsp;<a href="?page=<?php echo PRLI_PLUGIN_NAME ?>/prli-groups.php"><?php _e('Cancel', 'pretty-link'); ?></a>
63
  </p>
64
 
65
  </form>
classes/views/prli-links/edit.php CHANGED
@@ -20,8 +20,8 @@ if(!defined('ABSPATH'))
20
  ?>
21
 
22
  <p class="submit">
23
- <input type="submit" name="Submit" value="Update" />&nbsp;or&nbsp;<a href="<?php echo admin_url('admin.php?page=pretty-link'); ?>">Cancel</a>
24
  </p>
25
 
26
  </form>
27
- </div>
20
  ?>
21
 
22
  <p class="submit">
23
+ <input type="submit" name="Submit" value="Update" />&nbsp;<?php _e('or', 'pretty-link'); ?>&nbsp;<a href="<?php echo admin_url('admin.php?page=pretty-link'); ?>"><?php _e('Cancel', 'pretty-link'); ?></a>
24
  </p>
25
 
26
  </form>
27
+ </div>
classes/views/prli-links/list.php CHANGED
@@ -15,7 +15,7 @@ if(!defined('ABSPATH'))
15
  if(!$permalink_structure or empty($permalink_structure))
16
  {
17
  ?>
18
- <div class="error" style="padding-top: 5px; padding-bottom: 5px;"><strong>WordPress Must be Configured:</strong> Pretty Link won't work until you select a Permalink Structure other than "Default" ... <a href="<?php echo $prli_siteurl; ?>/wp-admin/options-permalink.php">Permalink Settings</a></div>
19
  <?php
20
  }
21
  ?>
@@ -32,7 +32,7 @@ if(!defined('ABSPATH'))
32
  if(!empty($search_str))
33
  {
34
  ?>
35
- or <a href="<?php echo admin_url('admin.php?page=pretty-link&action=reset'); ?>">Reset</a>
36
  <?php
37
  }
38
  ?>
@@ -40,8 +40,8 @@ if(!defined('ABSPATH'))
40
  </form>
41
  </div>
42
  <div id="button_bar">
43
- <p><a href="<?php echo admin_url('admin.php?page=add-new-pretty-link'); ?>"><img src="<?php echo PRLI_IMAGES_URL . '/pretty-link-add.png'; ?>"/> Add a Pretty Link</a>
44
- &nbsp;|&nbsp;<a href="http://blairwilliams.com/plintro">Watch Pretty Link Intro Video</a>
45
  <?php do_action('prli-link-nav'); ?>
46
  </p>
47
  </div>
@@ -51,7 +51,7 @@ if(!defined('ABSPATH'))
51
  {
52
  ?>
53
  <h3><?php echo $prli_message; ?></h3>
54
- <a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-groups.php">&laquo Back to Groups</a>
55
  <br/><br/>
56
  <?php
57
  }
@@ -60,12 +60,12 @@ if(!defined('ABSPATH'))
60
  <table class="prli-edit-table widefat post fixed" cellspacing="0">
61
  <thead>
62
  <tr>
63
- <th class="manage-column" width="30%"><input type="checkbox" name="check-all" class="select-all-link-action-checkboxes" style="margin-left: 1px;"/>&nbsp;&nbsp;<a href="<?php echo admin_url('admin.php?page=pretty-link&sort=name' . (($sort_str == 'name' and $sdir_str == 'asc')?'&sdir=desc':'')); ?>">Name<?php echo (($sort_str == 'name')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL . '/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a></th>
64
  <?php do_action('prli_link_column_header'); ?>
65
- <th class="manage-column" width="10%"><a href="<?php echo admin_url('admin.php?page=pretty-link&sort=clicks' . (($sort_str == 'clicks' and $sdir_str == 'asc')?'&sdir=desc':'')); ?>">Hits / Uniq<?php echo (($sort_str == 'clicks')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL . '/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a></th>
66
- <th class="manage-column" width="5%"><a href="<?php echo admin_url('admin.php?page=pretty-link&sort=group_name' . (($sort_str == 'group_name' and $sdir_str == 'asc')?'&sdir=desc':'')) ?>">Group<?php echo (($sort_str == 'group_name')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL . '/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a></th>
67
- <th class="manage-column" width="12%"><a href="<?php echo admin_url('admin.php?page=pretty-link&sort=created_at' . (($sort_str == 'created_at' and $sdir_str == 'asc')?'&sdir=desc':'')); ?>">Created<?php echo ((empty($sort_str) or $sort_str == 'created_at')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL . '/'.((empty($sort_str) or $sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a></th>
68
- <th class="manage-column" width="20%"><a href="<?php echo admin_url('admin.php?page=pretty-link&sort=slug' . (($sort_str == 'slug' and $sdir_str == 'asc')?'&sdir=desc':'')); ?>">Links<?php echo (($sort_str == 'slug')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL . '/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a></th>
69
  </tr>
70
  </thead>
71
  <tr id="bulk-edit" class="inline-edit-row inline-edit-row-post inline-edit-post bulk-edit-row bulk-edit-row-post bulk-edit-post" style="display: none;">
@@ -113,7 +113,7 @@ if(!defined('ABSPATH'))
113
  {
114
  ?>
115
  <tr>
116
- <td colspan="5">Watch this video to see how to get started! -- <a href="http://blairwilliams.com/xba"><strong>Get More Video Tutorials like this one...</strong></a><br/><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/i6C2Bljby3k&hl=en&fs=1&rel=0&color1=0x3a3a3a&color2=0x999999"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/i6C2Bljby3k&hl=en&fs=1&rel=0&color1=0x3a3a3a&color2=0x999999" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object></td>
117
  </tr>
118
  <?php
119
  }
@@ -184,18 +184,18 @@ if(!defined('ABSPATH'))
184
  <a class="slug_name" href="<?php echo admin_url('admin.php?page=pretty-link&action=edit&id=' . $link->id); ?>" title="Edit <?php echo stripslashes($link->name); ?>"><?php echo stripslashes($link->name); ?></a>
185
  <br/>
186
  <div class="link_actions">
187
- <a href="<?php echo admin_url('admin.php?page=pretty-link&action=edit&id=' . $link->id); ?>" title="Edit <?php echo $link->slug; ?>">Edit</a>&nbsp;|
188
- <a href="<?php echo admin_url('admin.php?page=pretty-link&action=destroy&id=' . $link->id); ?>" onclick="return confirm('Are you sure you want to delete your <?php echo $link->name; ?> Pretty Link? This will delete the Pretty Link and all of the statistical data about it in your database.');" title="Delete <?php echo $link->slug; ?>">Delete</a>
189
- |&nbsp;<a href="<?php echo admin_url('admin.php?page=pretty-link&action=reset&id=' . $link->id); ?>" onclick="return confirm('Are you sure you want to reset your <?php echo $link->name; ?> Pretty Link? This will delete all of the statistical data about this Pretty Link in your database.');" title="Reset <?php echo $link->name; ?>">Reset</a>
190
  <?php if( $link->track_me and $prli_options->extended_tracking!='count' ) { ?>
191
- |&nbsp;<a href="<?php echo admin_url("admin.php?page=pretty-link/prli-clicks.php&l={$link->id}"); ?>" title="View clicks for <?php echo $link->slug; ?>">Hits</a>
192
  <?php do_action('prli-link-action',$link->id); ?>
193
  <?php } ?>
194
  <?php if( $link->redirect_type != 'pixel' )
195
  {
196
  ?>
197
- |&nbsp;<a href="http://twitter.com/home?status=<?php echo $pretty_link_url; ?>" target="_blank" title="Post <?php echo $pretty_link_url; ?> to Twitter">Tweet</a>&nbsp;|
198
- <a href="mailto:?subject=Pretty Link&body=<?php echo $pretty_link_url; ?>" target="_blank" title="Send <?php echo $pretty_link_url; ?> in an Email">Email</a>
199
  <?php
200
  }
201
  ?>
@@ -218,7 +218,7 @@ if(!defined('ABSPATH'))
218
  <?php if( $link->redirect_type != 'pixel' )
219
  {
220
  ?>
221
- <span style="font-size: 8px;" title="<?php echo $link->url; ?>"><strong>Target URL:</strong> <?php echo htmlentities((substr($link->url,0,47) . ((strlen($link->url) >= 47)?'...':'')),ENT_COMPAT,'UTF-8'); ?></span></td>
222
  <?php
223
  }
224
  ?>
@@ -229,12 +229,12 @@ if(!defined('ABSPATH'))
229
  ?>
230
  <tfoot>
231
  <tr>
232
- <th class="manage-column"><?php do_action('prli-list-header-icon'); ?>Name</th>
233
  <?php do_action('prli_link_column_footer'); ?>
234
- <th class="manage-column">Hits / Uniq</th>
235
- <th class="manage-column">Group</th>
236
- <th class="manage-column">Created</th>
237
- <th class="manage-column">Links</th>
238
  </tr>
239
  </tfoot>
240
  </table>
15
  if(!$permalink_structure or empty($permalink_structure))
16
  {
17
  ?>
18
+ <div class="error" style="padding-top: 5px; padding-bottom: 5px;"><strong><?php _e("WordPress Must be Configured:</strong> Pretty Link won't work until you select a Permalink Structure other than 'Default'", 'pretty-link'); ?> ... <a href="<?php echo $prli_siteurl; ?>/wp-admin/options-permalink.php"><?php _e('Permalink Settings', 'pretty-link'); ?></a></div>
19
  <?php
20
  }
21
  ?>
32
  if(!empty($search_str))
33
  {
34
  ?>
35
+ or <a href="<?php echo admin_url('admin.php?page=pretty-link&action=reset'); ?>"><?php _e('Reset', 'pretty-link'); ?></a>
36
  <?php
37
  }
38
  ?>
40
  </form>
41
  </div>
42
  <div id="button_bar">
43
+ <p><a href="<?php echo admin_url('admin.php?page=add-new-pretty-link'); ?>"><img src="<?php echo PRLI_IMAGES_URL . '/pretty-link-add.png'; ?>"/> <?php _e('Add a Pretty Link', 'pretty-link'); ?></a>
44
+ &nbsp;|&nbsp;<a href="http://blairwilliams.com/plintro"><?php _e('Watch Pretty Link Intro Video', 'pretty-link'); ?></a>
45
  <?php do_action('prli-link-nav'); ?>
46
  </p>
47
  </div>
51
  {
52
  ?>
53
  <h3><?php echo $prli_message; ?></h3>
54
+ <a href="?page=<?php echo PRLI_PLUGIN_NAME; ?>/prli-groups.php">&laquo <?php _e('Back to Groups', 'pretty-link'); ?></a>
55
  <br/><br/>
56
  <?php
57
  }
60
  <table class="prli-edit-table widefat post fixed" cellspacing="0">
61
  <thead>
62
  <tr>
63
+ <th class="manage-column" width="30%"><input type="checkbox" name="check-all" class="select-all-link-action-checkboxes" style="margin-left: 1px;"/>&nbsp;&nbsp;<a href="<?php echo admin_url('admin.php?page=pretty-link&sort=name' . (($sort_str == 'name' and $sdir_str == 'asc')?'&sdir=desc':'')); ?>"><?php _e('Name', 'pretty-link'); echo (($sort_str == 'name')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL . '/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a></th>
64
  <?php do_action('prli_link_column_header'); ?>
65
+ <th class="manage-column" width="10%"><a href="<?php echo admin_url('admin.php?page=pretty-link&sort=clicks' . (($sort_str == 'clicks' and $sdir_str == 'asc')?'&sdir=desc':'')); ?>"><?php _e('Hits / Uniq', 'pretty-link'); echo (($sort_str == 'clicks')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL . '/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a></th>
66
+ <th class="manage-column" width="5%"><a href="<?php echo admin_url('admin.php?page=pretty-link&sort=group_name' . (($sort_str == 'group_name' and $sdir_str == 'asc')?'&sdir=desc':'')) ?>"><?php _e('Group', 'pretty-link'); echo (($sort_str == 'group_name')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL . '/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a></th>
67
+ <th class="manage-column" width="12%"><a href="<?php echo admin_url('admin.php?page=pretty-link&sort=created_at' . (($sort_str == 'created_at' and $sdir_str == 'asc')?'&sdir=desc':'')); ?>"><?php _e('Created', 'pretty-link'); echo ((empty($sort_str) or $sort_str == 'created_at')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL . '/'.((empty($sort_str) or $sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a></th>
68
+ <th class="manage-column" width="20%"><a href="<?php echo admin_url('admin.php?page=pretty-link&sort=slug' . (($sort_str == 'slug' and $sdir_str == 'asc')?'&sdir=desc':'')); ?>"><?php _e('Links', 'pretty-link'); echo (($sort_str == 'slug')?'&nbsp;&nbsp;&nbsp;<img src="'.PRLI_IMAGES_URL . '/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a></th>
69
  </tr>
70
  </thead>
71
  <tr id="bulk-edit" class="inline-edit-row inline-edit-row-post inline-edit-post bulk-edit-row bulk-edit-row-post bulk-edit-post" style="display: none;">
113
  {
114
  ?>
115
  <tr>
116
+ <td colspan="5"><?php _e('Watch this video to see how to get started!', 'pretty-link'); ?> -- <a href="http://blairwilliams.com/xba"><strong><?php _e('Get More Video Tutorials like this one', 'pretty-link'); ?>...</strong></a><br/><object width="640" height="385"><param name="movie" value="http://www.youtube.com/v/i6C2Bljby3k&hl=en&fs=1&rel=0&color1=0x3a3a3a&color2=0x999999"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/i6C2Bljby3k&hl=en&fs=1&rel=0&color1=0x3a3a3a&color2=0x999999" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="640" height="385"></embed></object></td>
117
  </tr>
118
  <?php
119
  }
184
  <a class="slug_name" href="<?php echo admin_url('admin.php?page=pretty-link&action=edit&id=' . $link->id); ?>" title="Edit <?php echo stripslashes($link->name); ?>"><?php echo stripslashes($link->name); ?></a>
185
  <br/>
186
  <div class="link_actions">
187
+ <a href="<?php echo admin_url('admin.php?page=pretty-link&action=edit&id=' . $link->id); ?>" title="Edit <?php echo $link->slug; ?>"><?php _e('Edit', 'pretty-link'); ?></a>&nbsp;|
188
+ <a href="<?php echo admin_url('admin.php?page=pretty-link&action=destroy&id=' . $link->id); ?>" onclick="return confirm('Are you sure you want to delete your <?php echo $link->name; ?> Pretty Link? This will delete the Pretty Link and all of the statistical data about it in your database.');" title="Delete <?php echo $link->slug; ?>"><?php _e('Delete', 'pretty-link'); ?></a>
189
+ |&nbsp;<a href="<?php echo admin_url('admin.php?page=pretty-link&action=reset&id=' . $link->id); ?>" onclick="return confirm('Are you sure you want to reset your <?php echo $link->name; ?> Pretty Link? This will delete all of the statistical data about this Pretty Link in your database.');" title="Reset <?php echo $link->name; ?>"><?php _e('Reset', 'pretty-link'); ?></a>
190
  <?php if( $link->track_me and $prli_options->extended_tracking!='count' ) { ?>
191
+ |&nbsp;<a href="<?php echo admin_url("admin.php?page=pretty-link/prli-clicks.php&l={$link->id}"); ?>" title="View clicks for <?php echo $link->slug; ?>"><?php _e('Hits', 'pretty-link'); ?></a>
192
  <?php do_action('prli-link-action',$link->id); ?>
193
  <?php } ?>
194
  <?php if( $link->redirect_type != 'pixel' )
195
  {
196
  ?>
197
+ |&nbsp;<a href="http://twitter.com/home?status=<?php echo $pretty_link_url; ?>" target="_blank" title="Post <?php echo $pretty_link_url; ?> to Twitter"><?php _e('Tweet', 'pretty-link'); ?></a>&nbsp;|
198
+ <a href="mailto:?subject=Pretty Link&body=<?php echo $pretty_link_url; ?>" target="_blank" title="Send <?php echo $pretty_link_url; ?> in an Email"><?php _e('Email', 'pretty-link'); ?></a>
199
  <?php
200
  }
201
  ?>
218
  <?php if( $link->redirect_type != 'pixel' )
219
  {
220
  ?>
221
+ <span style="font-size: 8px;" title="<?php echo $link->url; ?>"><strong><?php _e('Target URL:', 'pretty-link'); ?></strong> <?php echo htmlentities((substr($link->url,0,47) . ((strlen($link->url) >= 47)?'...':'')),ENT_COMPAT,'UTF-8'); ?></span></td>
222
  <?php
223
  }
224
  ?>
229
  ?>
230
  <tfoot>
231
  <tr>
232
+ <th class="manage-column"><?php do_action('prli-list-header-icon'); ?><?php _e('Name', 'pretty-link'); ?></th>
233
  <?php do_action('prli_link_column_footer'); ?>
234
+ <th class="manage-column"><?php _e('Hits / Uniq', 'pretty-link'); ?></th>
235
+ <th class="manage-column"><?php _e('Group', 'pretty-link'); ?></th>
236
+ <th class="manage-column"><?php _e('Created', 'pretty-link'); ?></th>
237
+ <th class="manage-column"><?php _e('Links', 'pretty-link'); ?></th>
238
  </tr>
239
  </tfoot>
240
  </table>
classes/views/prli-links/new.php CHANGED
@@ -20,8 +20,8 @@ if(!defined('ABSPATH'))
20
  ?>
21
 
22
  <p class="submit">
23
- <input type="submit" name="Submit" value="Create" />&nbsp;or&nbsp;<a href="<?php admin_url('admin.php?page=pretty-link'); ?>">Cancel</a>
24
  </p>
25
 
26
  </form>
27
- </div>
20
  ?>
21
 
22
  <p class="submit">
23
+ <input type="submit" name="Submit" value="Create" />&nbsp;<?php _e('or', 'pretty-link'); ?>&nbsp;<a href="<?php admin_url('admin.php?page=pretty-link'); ?>"><?php _e('Cancel', 'pretty-link'); ?></a>
24
  </p>
25
 
26
  </form>
27
+ </div>
classes/views/prli-options/form.php CHANGED
@@ -11,12 +11,12 @@ $permalink_structure = get_option('permalink_structure');
11
  if(!$permalink_structure or empty($permalink_structure))
12
  {
13
  ?>
14
- <div class="error" style="padding-top: 5px; padding-bottom: 5px;"><strong>WordPress Must be Configured:</strong> Pretty Link won't work until you select a Permalink Structure other than "Default" ... <a href="<?php echo $prli_siteurl; ?>/wp-admin/options-permalink.php">Permalink Settings</a></div>
15
  <?php
16
  }
17
  ?>
18
  <?php do_action('prli-options-message'); ?>
19
- <a href="<?php echo admin_url("admin.php?page=pretty-link"); ?>">&laquo; Pretty Link Admin</a>
20
 
21
  <form name="form1" method="post" action="<?php echo admin_url("/admin.php?page=pretty-link/prli-options.php"); ?>">
22
  <input type="hidden" name="<?php echo $hidden_field_name; ?>" value="Y">
@@ -26,25 +26,25 @@ if(!$permalink_structure or empty($permalink_structure))
26
  <ul class="link-toggle-pane" style="list-style-type: none; padding-left: 10px;">
27
  <li>
28
  <h3><?php _e('Link Defaults:', 'pretty-link') ?></h3>
29
- <input type="checkbox" name="<?php echo $link_track_me; ?>" <?php echo (($prli_options->link_track_me != 0)?'checked="true"':''); ?>/>&nbsp; Track Link
30
- <br/><span class="description">Default all new links to be tracked.</span>
31
  </li>
32
  <li>
33
- <input type="checkbox" name="<?php echo $link_nofollow; ?>" <?php echo (($prli_options->link_nofollow != 0)?'checked="true"':''); ?>/>&nbsp; Add <code>nofollow</code> to Link
34
- <br/><span class="description">Add the <code>nofollow</code> attribute by default to new links.</span>
35
  </li>
36
  <li>
37
- <input type="checkbox" name="<?php echo $link_prefix; ?>" <?php echo (($prli_options->link_prefix != 0)?'checked="true"':''); ?>/>&nbsp; Use a prefix from your Permalink structure in your Pretty Links
38
- <br/><span class="description">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.</span>
39
  </li>
40
  <li>
41
  <span><strong><?php _e('Default Link Redirection Type:', 'pretty-link') ?> </strong></span>
42
  <select name="<?php echo $link_redirect_type; ?>">
43
- <option value="307" <?php echo (($prli_options->link_redirect_type == '307')?' selected="selected"':''); ?>>Temporary (307)</option>
44
- <option value="301" <?php echo (($prli_options->link_redirect_type == '301')?' selected="selected"':''); ?>>Permanent (301)</option>
45
  <?php do_action('prli_default_redirection_types',$prli_options->link_redirect_type); ?>
46
  </select>
47
- <br/><span class="description">Select the type of redirection you want your newly created links to have.</span>
48
  </li>
49
  <?php do_action('prli_custom_link_options'); ?>
50
  <li>
@@ -58,14 +58,14 @@ if(!$permalink_structure or empty($permalink_structure))
58
  </li>
59
  </ul>
60
  <?php do_action('prli_custom_option_pane'); ?>
61
- <h3><a class="toggle reporting-toggle-button">Reporting Options <span class="reporting-expand" style="display: none;">[+]</span><span class="reporting-collapse">[-]</span></a></h3>
62
  <table class="reporting-toggle-pane form-table">
63
  <tr class="form-field">
64
- <td valign="top">Excluded IP Addresses: </td>
65
  <td>
66
  <input type="text" name="<?php echo $prli_exclude_ips; ?>" value="<?php echo $prli_options->prli_exclude_ips; ?>">
67
- <br/><span class="description">Enter IP Addresses or IP Ranges you want to exclude from your Hit data and Stats. Each IP Address should be separated by commas. Example: <code>192.168.0.1, 192.168.2.1, 192.168.3.4 or 192.168.*.*</code></span>
68
- <br/><span class="description" style="color: red;">Your Current IP Address is <?php echo $_SERVER['REMOTE_ADDR']; ?></span>
69
  </td>
70
  </tr>
71
  <tr>
@@ -108,18 +108,18 @@ if(!$permalink_structure or empty($permalink_structure))
108
  </p>
109
 
110
 
111
- <h3>Trim Hit Database</h3>
112
 
113
  <?php if($prli_options->extended_tracking != 'count') { ?>
114
- <p><a href="<?php echo str_replace( '%7E', '~', $_SERVER['REQUEST_URI'] ); ?>&action=clear_30day_clicks" onclick="return confirm('***WARNING*** If you click OK you will delete ALL of the Hit 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!');">Delete Hits older than 30 days</a>
115
- <br/><span class="description">This will clear all hits in your database that are older than 30 days.</span></p>
116
 
117
- <p><a href="<?php echo str_replace( '%7E', '~', $_SERVER['REQUEST_URI'] ); ?>&action=clear_90day_clicks" onclick="return confirm('***WARNING*** If you click OK you will delete ALL of the Hit 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!');">Delete Hits older than 90 days</a>
118
- <br/><span class="description">This will clear all hits in your database that are older than 90 days.</span></p>
119
  <?php } ?>
120
 
121
- <p><a href="<?php echo str_replace( '%7E', '~', $_SERVER['REQUEST_URI'] ); ?>&action=clear_all_clicks" onclick="return confirm('***WARNING*** If you click OK you will delete ALL of the Hit 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!');">Delete All Hits</a>
122
- <br/><span class="description">Seriously, only click this link if you want to delete all the Hit data in your database.</span></p>
123
 
124
  </form>
125
  </div>
11
  if(!$permalink_structure or empty($permalink_structure))
12
  {
13
  ?>
14
+ <div class="error" style="padding-top: 5px; padding-bottom: 5px;"><strong><?php _e('WordPress Must be Configured:', 'pretty-link'); ?></strong> <?php _e("Pretty Link won't work until you select a Permalink Structure other than 'Default'", 'pretty-link'); ?> ... <a href="<?php echo $prli_siteurl; ?>/wp-admin/options-permalink.php"><?php _e('Permalink Settings', 'pretty-link'); ?></a></div>
15
  <?php
16
  }
17
  ?>
18
  <?php do_action('prli-options-message'); ?>
19
+ <a href="<?php echo admin_url("admin.php?page=pretty-link"); ?>">&laquo; <?php _e('Pretty Link Admin', 'pretty-link'); ?></a>
20
 
21
  <form name="form1" method="post" action="<?php echo admin_url("/admin.php?page=pretty-link/prli-options.php"); ?>">
22
  <input type="hidden" name="<?php echo $hidden_field_name; ?>" value="Y">
26
  <ul class="link-toggle-pane" style="list-style-type: none; padding-left: 10px;">
27
  <li>
28
  <h3><?php _e('Link Defaults:', 'pretty-link') ?></h3>
29
+ <input type="checkbox" name="<?php echo $link_track_me; ?>" <?php echo (($prli_options->link_track_me != 0)?'checked="true"':''); ?>/>&nbsp; <?php _e('Track Link', 'pretty-link'); ?>
30
+ <br/><span class="description"><?php _e('Default all new links to be tracked.', 'pretty-link'); ?></span>
31
  </li>
32
  <li>
33
+ <input type="checkbox" name="<?php echo $link_nofollow; ?>" <?php echo (($prli_options->link_nofollow != 0)?'checked="true"':''); ?>/>&nbsp; <?php _e('Add <code>nofollow</code> to Link', 'pretty-link'); ?>
34
+ <br/><span class="description"><?php _e('Add the <code>nofollow</code> attribute by default to new links.', 'pretty-link'); ?></span>
35
  </li>
36
  <li>
37
+ <input type="checkbox" name="<?php echo $link_prefix; ?>" <?php echo (($prli_options->link_prefix != 0)?'checked="true"':''); ?>/>&nbsp; <?php _e('Use a prefix from your Permalink structure in your Pretty Links', 'pretty-link'); ?>
38
+ <br/><span class="description"><?php _e("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.", 'pretty-link'); ?></span>
39
  </li>
40
  <li>
41
  <span><strong><?php _e('Default Link Redirection Type:', 'pretty-link') ?> </strong></span>
42
  <select name="<?php echo $link_redirect_type; ?>">
43
+ <option value="307" <?php echo (($prli_options->link_redirect_type == '307')?' selected="selected"':''); ?>><?php _e('Temporary (307)', 'pretty-link'); ?></option>
44
+ <option value="301" <?php echo (($prli_options->link_redirect_type == '301')?' selected="selected"':''); ?>><?php _e('Permanent (301)', 'pretty-link'); ?></option>
45
  <?php do_action('prli_default_redirection_types',$prli_options->link_redirect_type); ?>
46
  </select>
47
+ <br/><span class="description"><?php _e('Select the type of redirection you want your newly created links to have.', 'pretty-link'); ?></span>
48
  </li>
49
  <?php do_action('prli_custom_link_options'); ?>
50
  <li>
58
  </li>
59
  </ul>
60
  <?php do_action('prli_custom_option_pane'); ?>
61
+ <h3><a class="toggle reporting-toggle-button"><?php _e('Reporting Options', 'pretty-link'); ?> <span class="reporting-expand" style="display: none;">[+]</span><span class="reporting-collapse">[-]</span></a></h3>
62
  <table class="reporting-toggle-pane form-table">
63
  <tr class="form-field">
64
+ <td valign="top"><?php _e('Excluded IP Addresses:', 'pretty-link'); ?> </td>
65
  <td>
66
  <input type="text" name="<?php echo $prli_exclude_ips; ?>" value="<?php echo $prli_options->prli_exclude_ips; ?>">
67
+ <br/><span class="description"><?php _e('Enter IP Addresses or IP Ranges you want to exclude from your Hit data and Stats. Each IP Address should be separated by commas. Example: <code>192.168.0.1, 192.168.2.1, 192.168.3.4 or 192.168.*.*</code>', 'pretty-link'); ?></span>
68
+ <br/><span class="description" style="color: red;"><?php _e('Your Current IP Address is', 'pretty-link'); echo $_SERVER['REMOTE_ADDR']; ?></span>
69
  </td>
70
  </tr>
71
  <tr>
108
  </p>
109
 
110
 
111
+ <h3><?php _e('Trim Hit Database', 'pretty-link'); ?></h3>
112
 
113
  <?php if($prli_options->extended_tracking != 'count') { ?>
114
+ <p><a href="<?php echo str_replace( '%7E', '~', $_SERVER['REQUEST_URI'] ); ?>&action=clear_30day_clicks" onclick="return confirm('<?php _e('***WARNING*** If you click OK you will delete ALL of the Hit 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!', 'pretty-link'); ?>');"><?php _e('Delete Hits older than 30 days', 'pretty-link'); ?></a>
115
+ <br/><span class="description"><?php _e('This will clear all hits in your database that are older than 30 days.', 'pretty-link'); ?></span></p>
116
 
117
+ <p><a href="<?php echo str_replace( '%7E', '~', $_SERVER['REQUEST_URI'] ); ?>&action=clear_90day_clicks" onclick="return confirm('<?php _e('***WARNING*** If you click OK you will delete ALL of the Hit 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!', 'pretty-link'); ?>');"><?php _e('Delete Hits older than 90 days', 'pretty-link'); ?></a>
118
+ <br/><span class="description"><?php _e('This will clear all hits in your database that are older than 90 days.', 'pretty-link'); ?></span></p>
119
  <?php } ?>
120
 
121
+ <p><a href="<?php echo str_replace( '%7E', '~', $_SERVER['REQUEST_URI'] ); ?>&action=clear_all_clicks" onclick="return confirm('<?php _e('***WARNING*** If you click OK you will delete ALL of the Hit 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!', 'pretty-link'); ?>');"><?php _e('Delete All Hits', 'pretty-link'); ?></a>
122
+ <br/><span class="description"><?php _e('Seriously, only click this link if you want to delete all the Hit data in your database.', 'pretty-link'); ?></span></p>
123
 
124
  </form>
125
  </div>
classes/views/prli-options/pro-settings.php CHANGED
@@ -6,17 +6,17 @@ if(!defined('ABSPATH'))
6
  <div class="wrap">
7
  <?php echo PrliAppHelper::page_title(__('Pro Account Information', 'pretty-link')); ?>
8
  <?php $this_uri = preg_replace('#&.*?$#', '', str_replace( '%7E', '~', $_SERVER['REQUEST_URI'])); ?>
9
- <h3>Pretty Link Pro Account Information</h3>
10
  <?php if($prli_update->pro_is_installed_and_authorized()) { ?>
11
- <p><a href="http://prettylinkpro.com/user-manual">User Manual</a></p>
12
  <?php } ?>
13
  <?php echo $prli_update->pro_cred_form(); ?>
14
  <?php if($prli_update->pro_is_installed_and_authorized()) { ?>
15
- <div><p><strong>Pretty Link Pro is Installed</strong></p><p><a href="<?php echo $this_uri; ?>&action=pro-uninstall" onclick="return confirm('Are you sure you want to Un-Install Pretty Link Pro? This will delete your pro username & password from your local database, remove all the pro software but will leave all your data intact incase you want to reinstall sometime :) ...');" title="Downgrade to Pretty Link Standard" >Downgrade to Pretty Link Standard</a></p><br/><p><strong>Edit/Update Your Profile:</strong><br/><span class="description">Use your account username and password to log in to your Account and Affiliate Control Panel</span></p><p><a href="http://prettylinkpro.com/amember/member.php">Account</a>&nbsp;|&nbsp;<a href="http://prettylinkpro.com/amember/aff_member.php">Affiliate Control Panel</a></div>
16
 
17
  <?php } else { ?>
18
- <p><strong>Ready to take your marketing efforts to the next level?</strong><br/>
19
- <a href="http://prettylinkpro.com">Pretty Link Pro</a> will help you automate, share, test and get more clicks &amp; conversions from your Pretty Links!<br/><br/><a href="http://prettylinkpro.com">Learn More &raquo;</a></p>
20
  <?php } ?>
21
 
22
- </div>
6
  <div class="wrap">
7
  <?php echo PrliAppHelper::page_title(__('Pro Account Information', 'pretty-link')); ?>
8
  <?php $this_uri = preg_replace('#&.*?$#', '', str_replace( '%7E', '~', $_SERVER['REQUEST_URI'])); ?>
9
+ <h3><?php _e('Pretty Link Pro Account Information', 'pretty-link'); ?></h3>
10
  <?php if($prli_update->pro_is_installed_and_authorized()) { ?>
11
+ <p><a href="http://prettylinkpro.com/user-manual"><?php _e('User Manual', 'pretty-link'); ?></a></p>
12
  <?php } ?>
13
  <?php echo $prli_update->pro_cred_form(); ?>
14
  <?php if($prli_update->pro_is_installed_and_authorized()) { ?>
15
+ <div><p><strong><?php _e('Pretty Link Pro is Installed', 'pretty-link'); ?></strong></p><p><a href="<?php echo $this_uri; ?>&action=pro-uninstall" onclick="return confirm('<?php _e('Are you sure you want to Un-Install Pretty Link Pro? This will delete your pro username & password from your local database, remove all the pro software but will leave all your data intact incase you want to reinstall sometime :) ...', 'pretty-link'); ?>');" title="<?php _e('Downgrade to Pretty Link Standard', 'pretty-link'); ?>" ><?php _e('Downgrade to Pretty Link Standard', 'pretty-link'); ?></a></p><br/><p><strong><?php _e('Edit/Update Your Profile:', 'pretty-link'); ?></strong><br/><span class="description"><?php _e('Use your account username and password to log in to your Account and Affiliate Control Panel', 'pretty-link'); ?></span></p><p><a href="http://prettylinkpro.com/amember/member.php"><?php _e('Account', 'pretty-link'); ?></a>&nbsp;|&nbsp;<a href="http://prettylinkpro.com/amember/aff_member.php"><?php _e('Affiliate Control Panel', 'pretty-link'); ?></a></div>
16
 
17
  <?php } else { ?>
18
+ <p><strong><?php _e('Ready to take your marketing efforts to the next level?', 'pretty-link'); ?></strong><br/>
19
+ <a href="http://prettylinkpro.com"><?php _e('Pretty Link Pro', 'pretty-link'); ?></a> <?php _e('will help you automate, share, test and get more clicks and conversions from your Pretty Links!', 'pretty-link'); ?><br/><br/><a href="http://prettylinkpro.com"><?php _e('Learn More', 'pretty-link'); ?> &raquo;</a></p>
20
  <?php } ?>
21
 
22
+ </div>
classes/views/prli-tools/bookmarklet.php CHANGED
@@ -60,7 +60,7 @@ $twitter_status = esc_html( $twitter_status );
60
  <p><a href="http://prettylinkpro.com"><img src="<?php echo PRLI_IMAGES_URL; ?>/prettylink_logo.jpg" /></a></p>
61
  <h4><em><?php _e('here\'s your pretty link for:', 'pretty-link'); ?></em><br/><?php echo $target_url_title; ?><br/>(<span title="<?php echo $target_url; ?>"><?php echo substr($target_url,0,50) . ((strlen($target_url)>50)?"...":''); ?></span>)</h4>
62
  <h2><a href="<?php echo $pretty_link_raw; ?>"><?php echo $pretty_link; ?></a><br/><span class="clippy"><?php echo $pretty_link_raw; ?></span></h2>
63
- <p>send this link to:<br/>
64
  <a href="http://www.delicious.com/save" onclick="window.open('http://www.delicious.com/save?v=5&noui&jump=close&url=<?php echo urlencode($pretty_link_raw); ?>&title=<?php echo urlencode($target_url_title); ?>', 'delicious','toolbar=no,width=550,height=550'); return false;"><img src="<?php echo PRLI_IMAGES_URL; ?>/delicious_32.png" title="delicious" width="32px" height="32px" border="0" /></a>&nbsp;&nbsp;
65
  <!-- Place this tag where you want the su badge to render -->
66
  <su:badge layout="6"></su:badge>&nbsp;&nbsp;
60
  <p><a href="http://prettylinkpro.com"><img src="<?php echo PRLI_IMAGES_URL; ?>/prettylink_logo.jpg" /></a></p>
61
  <h4><em><?php _e('here\'s your pretty link for:', 'pretty-link'); ?></em><br/><?php echo $target_url_title; ?><br/>(<span title="<?php echo $target_url; ?>"><?php echo substr($target_url,0,50) . ((strlen($target_url)>50)?"...":''); ?></span>)</h4>
62
  <h2><a href="<?php echo $pretty_link_raw; ?>"><?php echo $pretty_link; ?></a><br/><span class="clippy"><?php echo $pretty_link_raw; ?></span></h2>
63
+ <p><?php _e('send this link to:', 'pretty-link'); ?><br/>
64
  <a href="http://www.delicious.com/save" onclick="window.open('http://www.delicious.com/save?v=5&noui&jump=close&url=<?php echo urlencode($pretty_link_raw); ?>&title=<?php echo urlencode($target_url_title); ?>', 'delicious','toolbar=no,width=550,height=550'); return false;"><img src="<?php echo PRLI_IMAGES_URL; ?>/delicious_32.png" title="delicious" width="32px" height="32px" border="0" /></a>&nbsp;&nbsp;
65
  <!-- Place this tag where you want the su badge to render -->
66
  <su:badge layout="6"></su:badge>&nbsp;&nbsp;
classes/views/prli-tools/form.php CHANGED
@@ -16,18 +16,18 @@ function toggle_iphone_instructions()
16
  ?>
17
  <?php echo PrliAppHelper::page_title(__('Tools', 'pretty-link')); ?>
18
  <h3><?php _e('Bookmarklet:', 'pretty-link'); ?></h3>
19
- <p><strong><a href="<?php echo PrliLink::bookmarklet_link(); ?>">Get PrettyLink</a></strong><br/>
20
  <span class="description"><?php _e('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. <a href="http://blairwilliams.com/pretty-link-bookmarklet/">(more help)</a>', 'pretty-link'); ?></span>
21
  <br/><br/><a href="javascript:toggle_iphone_instructions()"><strong><?php _e('Show iPhone Bookmarklet Instructions', 'pretty-link'); ?></strong></a>
22
  <div class="iphone_instructions" style="display: none"><?php _e('<strong>Note:</strong> iPhone users can install this bookmarklet in their Safari to create Pretty Links with the following steps:', 'pretty-link'); ?><br/>
23
  <ol>
24
- <li>Copy this text:<br/><code><?php echo PrliLink::bookmarklet_link(); ?></code></li>
25
- <li>Tap the + button at the bottom of the screen</li>
26
- <li>Choose "Add Bookmark", rename your bookmark to "Get PrettyLink" (or whatever you want) and then "Save"</li>
27
- <li>Navigate through your Bookmarks folders until you find the new bookmark and click "Edit"</li>
28
- <li>Delete all the text from the address</li>
29
- <li>Paste the text you copied in Step 1 into the address field</li>
30
- <li>To save the changes hit "Bookmarks" and <strong>you're done!</strong> 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 link.</li>
31
  </ol>
32
  </div>
33
  <?php do_action('prli-add-tools'); ?>
16
  ?>
17
  <?php echo PrliAppHelper::page_title(__('Tools', 'pretty-link')); ?>
18
  <h3><?php _e('Bookmarklet:', 'pretty-link'); ?></h3>
19
+ <p><strong><a href="<?php echo PrliLink::bookmarklet_link(); ?>"><?php _e('Get PrettyLink', 'pretty-link'); ?></a></strong><br/>
20
  <span class="description"><?php _e('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. <a href="http://blairwilliams.com/pretty-link-bookmarklet/">(more help)</a>', 'pretty-link'); ?></span>
21
  <br/><br/><a href="javascript:toggle_iphone_instructions()"><strong><?php _e('Show iPhone Bookmarklet Instructions', 'pretty-link'); ?></strong></a>
22
  <div class="iphone_instructions" style="display: none"><?php _e('<strong>Note:</strong> iPhone users can install this bookmarklet in their Safari to create Pretty Links with the following steps:', 'pretty-link'); ?><br/>
23
  <ol>
24
+ <li><?php _e('Copy this text:', 'pretty-link'); ?><br/><code><?php echo PrliLink::bookmarklet_link(); ?></code></li>
25
+ <li><?php _e('Tap the + button at the bottom of the screen', 'pretty-link'); ?></li>
26
+ <li><?php _e('Choose "Add Bookmark", rename your bookmark to "Get PrettyLink" (or whatever you want) and then "Save"', 'pretty-link'); ?></li>
27
+ <li><?php _e('Navigate through your Bookmarks folders until you find the new bookmark and click "Edit"', 'pretty-link'); ?></li>
28
+ <li><?php _e('Delete all the text from the address', 'pretty-link'); ?></li>
29
+ <li><?php _e('Paste the text you copied in Step 1 into the address field', 'pretty-link'); ?></li>
30
+ <li><?php _e('To save the changes hit "Bookmarks" and <strong>you\'re done!', 'pretty-link'); ?></strong> <?php _e('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 link.', 'pretty-link'); ?></li>
31
  </ol>
32
  </div>
33
  <?php do_action('prli-add-tools'); ?>
classes/views/shared/errors.php CHANGED
@@ -9,11 +9,11 @@
9
  foreach( $errors as $error )
10
  {
11
  ?>
12
- <li><strong>ERROR</strong>: <?php echo esc_html($error); ?></li>
13
  <?php
14
  }
15
  ?>
16
  </ul>
17
  </div>
18
  <?php
19
- }
9
  foreach( $errors as $error )
10
  {
11
  ?>
12
+ <li><strong><?php _e('ERROR', 'pretty-link'); ?></strong>: <?php echo esc_html($error); ?></li>
13
  <?php
14
  }
15
  ?>
16
  </ul>
17
  </div>
18
  <?php
19
+ }
classes/views/shared/link-table-nav.php CHANGED
@@ -7,7 +7,7 @@ if(!defined('ABSPATH'))
7
  {
8
  ?>
9
  <div class="tablenav"<?php echo (isset($navstyle)?" style=\"$navstyle\"":''); ?>>
10
- <div class='tablenav-pages'><span class="displaying-num">Displaying <?php echo "$page_first_record&#8211;$page_last_record of $record_count"; ?></span>
11
 
12
  <?php
13
  // Only show the prev page button if the current page is not the first page
@@ -107,7 +107,7 @@ if(!defined('ABSPATH'))
107
  ?>
108
  <div class="tablenav"<?php echo (isset($navstyle)?" style=\"$navstyle\"":''); ?>>
109
  <div class='tablenav-pages'>
110
- <span class="displaying-num">Displaying <?php echo "$page_first_record&#8211;$page_last_record of $record_count"; ?></span>
111
  <select class="prli-page-size" onchange="location='<?php echo admin_url("admin.php?page=" . esc_html($_REQUEST['page'].$page_params) . "&paged=1&size='+this.options[this.selectedIndex].value"); ?>">
112
  <option value="10" selected="selected">10</option>
113
  <option value="25" <?php if(isset($_REQUEST['size']) and $_REQUEST['size'] == 25) echo 'selected="selected"'; ?>>25</option>
7
  {
8
  ?>
9
  <div class="tablenav"<?php echo (isset($navstyle)?" style=\"$navstyle\"":''); ?>>
10
+ <div class='tablenav-pages'><span class="displaying-num"><?php _e('Displaying', 'pretty-link'); echo "$page_first_record&#8211;$page_last_record of $record_count"; ?></span>
11
 
12
  <?php
13
  // Only show the prev page button if the current page is not the first page
107
  ?>
108
  <div class="tablenav"<?php echo (isset($navstyle)?" style=\"$navstyle\"":''); ?>>
109
  <div class='tablenav-pages'>
110
+ <span class="displaying-num"><?php _e('Displaying', 'pretty-link'); echo "$page_first_record&#8211;$page_last_record of $record_count"; ?></span>
111
  <select class="prli-page-size" onchange="location='<?php echo admin_url("admin.php?page=" . esc_html($_REQUEST['page'].$page_params) . "&paged=1&size='+this.options[this.selectedIndex].value"); ?>">
112
  <option value="10" selected="selected">10</option>
113
  <option value="25" <?php if(isset($_REQUEST['size']) and $_REQUEST['size'] == 25) echo 'selected="selected"'; ?>>25</option>
classes/views/shared/nav.php CHANGED
@@ -9,4 +9,4 @@ if(!defined('ABSPATH'))
9
  else
10
  $support_link = "&nbsp;|&nbsp;<a href=\"http://prettylinkpro.com\">" . __('Upgrade to Pro', 'pretty-link') . '</a>';
11
  ?>
12
- <p style="font-size: 14px; font-weight: bold; float: right; text-align: right; padding-top: 0px; padding-right: 10px;"><?php _e('Connect', 'pretty-link'); ?>:&nbsp;&nbsp;<a href="http://twitter.com/blairwilli"><img src="<?php echo PRLI_IMAGES_URL; ?>/twitter_32.png" style="width: 24px; height: 24px;" /></a>&nbsp;<a href="http://www.facebook.com/pages/Pretty-Link/283252860401"><img src="<?php echo PRLI_IMAGES_URL; ?>/facebook_32.png" style="width: 24px; height: 24px;" /></a><br/><?php _e('Get Help', 'pretty-link'); ?>:&nbsp;&nbsp;<a href="http://blairwilliams.com/xba" target="_blank"><?php _e('Tutorials', 'pretty-link'); ?></a><?php echo $support_link; ?>&nbsp;|&nbsp;<a href="http://blairwilliams.com/work"><?php _e('One on One', 'pretty-link'); ?></a></p>
9
  else
10
  $support_link = "&nbsp;|&nbsp;<a href=\"http://prettylinkpro.com\">" . __('Upgrade to Pro', 'pretty-link') . '</a>';
11
  ?>
12
+ <p style="font-size: 14px; font-weight: bold; float: right; text-align: right; padding-top: 0px; padding-right: 10px;"><?php _e('Connect', 'pretty-link'); ?>:&nbsp;&nbsp;<a href="http://twitter.com/blairwilli"><img src="<?php echo PRLI_IMAGES_URL; ?>/twitter_32.png" style="width: 24px; height: 24px;" /></a>&nbsp;<a href="http://www.facebook.com/pages/Pretty-Link/283252860401"><img src="<?php echo PRLI_IMAGES_URL; ?>/facebook_32.png" style="width: 24px; height: 24px;" /></a><br/><?php _e('Get Help', 'pretty-link'); ?>:&nbsp;&nbsp;<a href="http://blairwilliams.com/xba" target="_blank"><?php _e('Tutorials', 'pretty-link'); ?></a><?php echo $support_link; ?>&nbsp;|&nbsp;<a href="http://blairwilliams.com/work"><?php _e('One on One', 'pretty-link'); ?></a></p>
classes/views/shared/table-nav.php CHANGED
@@ -5,7 +5,7 @@
5
  {
6
  ?>
7
  <div class="tablenav"<?php echo (isset($navstyle)?" style=\"" . esc_html($navstyle) . "\"":''); ?>>
8
- <div class='tablenav-pages'><span class="displaying-num">Displaying <?php echo esc_html("$page_first_record&#8211;$page_last_record of $record_count"); ?></span>
9
 
10
  <?php
11
  // Only show the prev page button if the current page is not the first page
5
  {
6
  ?>
7
  <div class="tablenav"<?php echo (isset($navstyle)?" style=\"" . esc_html($navstyle) . "\"":''); ?>>
8
+ <div class='tablenav-pages'><span class="displaying-num"><?php _e('Displaying', 'pretty-link'); echo esc_html("$page_first_record&#8211;$page_last_record of $record_count"); ?></span>
9
 
10
  <?php
11
  // Only show the prev page button if the current page is not the first page
classes/views/shared/title_text.php CHANGED
@@ -1,2 +1,2 @@
1
  <?php if(!defined('ABSPATH')) { die('You are not allowed to call this page directly.'); } ?>
2
- <h2 id="prli_title" style="margin: 10px 0px 0px 0px; padding: 0px 0px 0px 169px; height: 64px; background: url(<?php echo PRLI_IMAGES_URL; ?>/prettylink_logo_64.jpg) no-repeat">&nbsp;&nbsp;<?php echo esc_html($page_title); ?></h2>
1
  <?php if(!defined('ABSPATH')) { die('You are not allowed to call this page directly.'); } ?>
2
+ <h2 id="prli_title" style="margin: 10px 0px 0px 0px; padding: 0px 0px 0px 169px; height: 64px; background: url(<?php echo PRLI_IMAGES_URL; ?>/prettylink_logo_64.jpg) no-repeat">&nbsp;&nbsp;<?php echo esc_html($page_title); ?></h2>
i18n/pretty-link.pot CHANGED
@@ -1,59 +1,83 @@
1
- # Copyright (C) 2010 Pretty Link Lite
2
  # This file is distributed under the same license as the Pretty Link Lite package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Pretty Link Lite 1.6.2\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/pretty-link\n"
7
- "POT-Creation-Date: 2012-11-09 16:40:10+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
- #: prli-pro-settings.php:25
16
  msgid ""
17
- "You're almost done!<br/>%1$sFinish your Re-Install of Pretty Link Pro%2$s"
 
18
  msgstr ""
19
 
20
- #: prli-pro-settings.php:33
21
- msgid "Pretty Link Pro Successfully Uninstalled."
22
  msgstr ""
23
 
24
- #: prli-options.php:61 pro/prlipro-options.php:195
25
- msgid "Options saved."
26
  msgstr ""
27
 
28
- #: prli-options.php:68
29
- msgid "Hit Database was Cleared."
30
  msgstr ""
31
 
32
- #: prli-options.php:77
33
- msgid "No hits older than 30 days were found, so nothing was deleted"
34
  msgstr ""
35
 
36
- #: prli-options.php:86
37
- msgid "No hits older than 90 days were found, so nothing was deleted"
38
  msgstr ""
39
 
40
- #: prli-clicks.php:52
41
- msgid "IP Address: "
42
  msgstr ""
43
 
44
- #: prli-clicks.php:58
45
- msgid "Visitor: "
 
46
  msgstr ""
47
 
48
- #: prli-clicks.php:65
49
- msgid "Group: "
50
  msgstr ""
51
 
52
- #: prli-clicks.php:71
53
- msgid "All Links"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
  msgstr ""
55
 
56
  #: classes/helpers/PrliLinksHelper.php:14 classes/views/prli-links/form.php:44
 
 
 
 
 
57
  msgid "None"
58
  msgstr ""
59
 
@@ -70,10 +94,14 @@ msgid "Bulk Actions"
70
  msgstr ""
71
 
72
  #: classes/helpers/PrliLinksHelper.php:50
 
 
73
  msgid "Edit"
74
  msgstr ""
75
 
76
  #: classes/helpers/PrliLinksHelper.php:51
 
 
77
  msgid "Delete"
78
  msgstr ""
79
 
@@ -98,226 +126,326 @@ msgstr ""
98
  msgid "On"
99
  msgstr ""
100
 
101
- #: classes/controllers/PrliAppController.php:33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
102
  msgid ""
103
- "Database Upgrade is required for Pretty Link to work properly<br/>%1"
104
- "$sAutomatically Upgrade your Database%2$s"
105
  msgstr ""
106
 
107
- #: classes/controllers/PrliAppController.php:69
108
- msgid "Your Database Has Been Successfully Upgraded."
109
  msgstr ""
110
 
111
- #: classes/controllers/PrliLinksController.php:65
112
- msgid "Links in Group: "
 
 
 
 
113
  msgstr ""
114
 
115
- #: classes/controllers/PrliLinksController.php:110
116
- #: classes/controllers/PrliLinksController.php:133
117
- msgid "Your Pretty Link was Successfully Created"
 
118
  msgstr ""
119
 
120
- #: classes/controllers/PrliLinksController.php:168
121
- msgid "Your Pretty Link was Successfully Updated"
 
 
122
  msgstr ""
123
 
124
- #: classes/controllers/PrliLinksController.php:183
125
- msgid "Your links were updated successfully"
126
  msgstr ""
127
 
128
- #: classes/controllers/PrliLinksController.php:200
129
- #: classes/controllers/PrliLinksController.php:239
130
- msgid "You are unauthorized to view this page."
131
  msgstr ""
132
 
133
- #: classes/controllers/PrliLinksController.php:206
134
- msgid "Your Pretty Link was Successfully Reset"
135
  msgstr ""
136
 
137
- #: classes/controllers/PrliLinksController.php:213
138
- msgid "Your Pretty Link was Successfully Destroyed"
 
 
139
  msgstr ""
140
 
141
- #: classes/controllers/PrliLinksController.php:226
142
- msgid "Your links were deleted successfully"
 
143
  msgstr ""
144
 
145
- #: classes/controllers/PrliGroupsController.php:17
146
- msgid "An unknown error occurred when creating your group."
 
147
  msgstr ""
148
 
149
- #: classes/controllers/PrliGroupsController.php:26
150
- msgid "Group Created"
 
151
  msgstr ""
152
 
153
- #: classes/controllers/PrliGroupsController.php:32
154
- msgid "A name must be specified for your new group name"
155
  msgstr ""
156
 
157
- #: classes/controllers/PrliGroupsController.php:36
158
- msgid "Cannot add group because security nonce failed"
 
 
159
  msgstr ""
160
 
161
- #: classes/views/prli-options/form.php:7 classes/views/prli-links/form.php:35
162
- #: pro/classes/views/prlipro-options/form.php:7
163
- msgid "Options"
164
  msgstr ""
165
 
166
- #: classes/views/prli-options/form.php:25
167
- msgid "Link Options"
168
  msgstr ""
169
 
170
- #: classes/views/prli-options/form.php:28
171
- msgid "Link Defaults:"
172
  msgstr ""
173
 
174
- #: classes/views/prli-options/form.php:41
175
- msgid "Default Link Redirection Type:"
176
  msgstr ""
177
 
178
- #: classes/views/prli-options/form.php:51 classes/views/prli-links/form.php:36
179
- msgid "Advanced"
180
  msgstr ""
181
 
182
- #: classes/views/prli-options/form.php:52
183
- msgid "WordPress Redirection Action:"
 
 
184
  msgstr ""
185
 
186
- #: classes/views/prli-options/form.php:54
187
- msgid "WordPress 'init' Action"
188
  msgstr ""
189
 
190
- #: classes/views/prli-options/form.php:55
191
- msgid "WordPress 'template_redirect' Action"
 
 
 
 
 
 
192
  msgstr ""
193
 
194
- #: classes/views/prli-options/form.php:57
195
- msgid ""
196
- "Defaults to use WordPress' 'init' action. Init works more reliably for many "
197
- "users but the better option for performance and compatibility is to use the "
198
- "'template_redirect' action."
 
 
199
  msgstr ""
200
 
201
- #: classes/views/prli-options/form.php:73
202
- msgid "Filter Robots"
 
 
203
  msgstr ""
204
 
205
- #: classes/views/prli-options/form.php:74
206
- msgid ""
207
- "Filter known Robots and unidentifiable browser clients from your hit data, "
208
- "stats and reports. <code>IMPORTANT: Any robot hits recorded with any version "
209
- "of Pretty Link before 1.4.22 won't be filtered by this setting.</code>"
210
  msgstr ""
211
 
212
- #: classes/views/prli-options/form.php:77
213
- msgid "Whitelist IP Addresses:"
 
214
  msgstr ""
215
 
216
- #: classes/views/prli-options/form.php:80
217
- msgid ""
218
- "Enter IP Addresses or IP Ranges you want to always include in your Hit data "
219
- "and Stats even if they are flagged as robots. Each IP Address should be "
220
- "separated by commas. Example: <code>192.168.0.1, 192.168.2.1, 192.168.3.4 or "
221
- "192.168.*.*</code>"
222
  msgstr ""
223
 
224
- #: classes/views/prli-options/form.php:88
225
- msgid "Tracking Style:"
 
226
  msgstr ""
227
 
228
- #: classes/views/prli-options/form.php:88
229
- msgid ""
230
- "Note: Changing your tracking style can affect the accuracy of your existing "
231
- "statistics."
232
  msgstr ""
233
 
234
- #: classes/views/prli-options/form.php:92
235
- msgid "Normal Tracking"
 
236
  msgstr ""
237
 
238
- #: classes/views/prli-options/form.php:95
239
- msgid "Extended Tracking (more stats / slower performance)"
 
240
  msgstr ""
241
 
242
- #: classes/views/prli-options/form.php:98
243
- msgid "Simple Click Count Tracking (less stats / faster performance)"
 
244
  msgstr ""
245
 
246
- #: classes/views/prli-options/form.php:107
247
- msgid "Update Options"
248
  msgstr ""
249
 
250
- #: classes/views/prli-options/pro-settings.php:7
251
- msgid "Pro Account Information"
252
  msgstr ""
253
 
254
- #: classes/views/prli-groups/new.php:9
255
- msgid "New Group"
256
  msgstr ""
257
 
258
- #: classes/views/prli-groups/list.php:9
259
- msgid "Groups"
 
 
 
 
260
  msgstr ""
261
 
262
  #: classes/views/prli-groups/edit.php:7
263
  msgid "Edit Group"
264
  msgstr ""
265
 
266
- #: classes/views/prli-links/new.php:7
267
- msgid "Add Link"
 
268
  msgstr ""
269
 
270
- #: classes/views/prli-links/list.php:10
271
- msgid "Links"
272
  msgstr ""
273
 
274
- #: classes/views/prli-links/list.php:79
275
- msgid "Bulk Edit"
276
  msgstr ""
277
 
278
- #: classes/views/prli-links/list.php:86
279
- msgid "Basic Link Options"
280
  msgstr ""
281
 
282
- #: classes/views/prli-links/list.php:87
283
- msgid "Redirect Type"
284
  msgstr ""
285
 
286
- #: classes/views/prli-links/list.php:90 classes/views/prli-links/form.php:41
287
- #: pro/classes/views/prli-links/form.php:62
288
- msgid "Group"
 
 
 
 
 
 
289
  msgstr ""
290
 
291
- #: classes/views/prli-links/list.php:93
292
- msgid "Track"
293
  msgstr ""
294
 
295
- #: classes/views/prli-links/list.php:95
296
- msgid "Nofollow"
 
 
297
  msgstr ""
298
 
299
- #: classes/views/prli-links/list.php:97
300
- msgid "Forward Params"
301
  msgstr ""
302
 
303
- #: classes/views/prli-links/list.php:104
304
- msgid "Cancel"
305
  msgstr ""
306
 
307
- #: classes/views/prli-links/list.php:105
308
- msgid "Update"
 
 
 
 
309
  msgstr ""
310
 
311
- #: classes/views/prli-links/list.php:105
312
- msgid "Bulk Update"
 
 
 
313
  msgstr ""
314
 
315
- #: classes/views/prli-links/list.php:144
316
- msgid "Meta Refresh Redirection"
317
  msgstr ""
318
 
319
- #: classes/views/prli-links/list.php:147
320
- msgid "Javascript Redirection"
 
 
 
 
 
 
 
 
 
321
  msgstr ""
322
 
323
  #: classes/views/prli-links/form.php:5
@@ -342,7 +470,26 @@ msgstr ""
342
  msgid "Title:"
343
  msgstr ""
344
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
345
  #: classes/views/prli-links/form.php:54
 
 
346
  msgid "Add a New Group"
347
  msgstr ""
348
 
@@ -417,400 +564,1793 @@ msgid ""
417
  "links using Google Analytics until one is."
418
  msgstr ""
419
 
420
- #: classes/views/prli-links/form.php:114
421
  msgid ""
422
  "To enable Double Redirection, Keyword Replacements, URL Replacements, URL "
423
  "Rotations, Split Tests, and more, %sUpgrade to Pretty Link Pro%s today!"
424
  msgstr ""
425
 
426
- #: classes/views/prli-links/edit.php:7
427
- msgid "Edit Link"
 
 
428
  msgstr ""
429
 
430
- #: classes/views/prli-clicks/list.php:6 pro/pretty-link-pro.php:164
431
- msgid "Hits"
432
  msgstr ""
433
 
434
- #: classes/views/prli-tools/form.php:17
435
- msgid "Tools"
436
  msgstr ""
437
 
438
- #: classes/views/prli-tools/form.php:18
439
- msgid "Bookmarklet:"
440
  msgstr ""
441
 
442
- #: classes/views/prli-tools/form.php:20
443
- msgid ""
444
- "Just drag this \"Get PrettyLink\" link to your toolbar to install the "
445
- "bookmarklet. As you browse the web, you can just click this bookmarklet to "
446
- "create a pretty link from the current url you're looking at. <a href="
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
447
  "\"http://blairwilliams.com/pretty-link-bookmarklet/\">(more help)</a>"
448
  msgstr ""
449
 
450
- #: classes/views/prli-tools/form.php:21
451
- msgid "Show iPhone Bookmarklet Instructions"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
452
  msgstr ""
453
 
454
- #: classes/views/prli-tools/form.php:22
 
 
 
 
455
  msgid ""
456
- "<strong>Note:</strong> iPhone users can install this bookmarklet in their "
457
- "Safari to create Pretty Links with the following steps:"
458
  msgstr ""
459
 
460
- #: classes/views/prli-tools/bookmarklet.php:19
461
- msgid "Here's your Pretty Link"
462
  msgstr ""
463
 
464
- #: classes/views/prli-tools/bookmarklet.php:61
465
- msgid "here's your pretty link for:"
 
 
 
466
  msgstr ""
467
 
468
- #: classes/views/prli-tools/bookmarklet.php:81
469
- msgid "back"
470
  msgstr ""
471
 
472
- #: classes/views/prli-dashboard-widget/widget.php:3
473
- msgid "Add a Pretty Link from your Dashboard:"
 
 
474
  msgstr ""
475
 
476
- #: classes/views/prli-dashboard-widget/widget.php:11
477
- msgid "Target URL"
478
  msgstr ""
479
 
480
- #: classes/views/prli-dashboard-widget/widget.php:15 prli-main.php:20
481
- msgid "Pretty Link"
 
 
482
  msgstr ""
483
 
484
- #: classes/views/shared/nav.php:8
485
- msgid "Pro Manual"
486
  msgstr ""
487
 
488
- #: classes/views/shared/nav.php:10
489
- msgid "Upgrade to Pro"
 
 
 
 
 
 
 
 
490
  msgstr ""
491
 
492
- #: classes/views/shared/nav.php:12
493
- msgid "Connect"
494
  msgstr ""
495
 
496
- #: classes/views/shared/nav.php:12
497
- msgid "Get Help"
498
  msgstr ""
499
 
500
- #: classes/views/shared/nav.php:12
501
- msgid "Tutorials"
502
  msgstr ""
503
 
504
- #: classes/views/shared/nav.php:12
505
- msgid "One on One"
506
  msgstr ""
507
 
508
- #: classes/models/PrliUpdate.php:44
509
- msgid "Pretty Link Pro Username"
510
  msgstr ""
511
 
512
- #: classes/models/PrliUpdate.php:45
513
- msgid "Pretty Link Pro Password"
514
  msgstr ""
515
 
516
- #: classes/models/PrliUpdate.php:46
517
- msgid "Your Pretty Link Pro Username or Password was Invalid"
518
  msgstr ""
519
 
520
- #: classes/models/PrliUpdate.php:153
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
521
  msgid ""
522
- "Your Username & Password was accepted<br/>Now you can %1$sUpgrade "
523
- "Automatically!%2$s"
 
524
  msgstr ""
525
 
526
- #: classes/models/PrliUpdate.php:163
 
 
 
 
527
  msgid ""
528
- "Your Username & Password was accepted<br/>Now you can %1$sGet Started!%2$s"
 
 
 
529
  msgstr ""
530
 
531
- #: classes/models/PrliUpdate.php:173
532
- msgid "ERROR"
 
533
  msgstr ""
534
 
535
- #: classes/models/PrliUpdate.php:208
536
- #: pro/classes/views/prlipro-options/form.php:441
537
- msgid "Save"
538
  msgstr ""
539
 
540
- #: prli-xmlrpc.php:22 prli-xmlrpc.php:85 prli-xmlrpc.php:133
541
- #: prli-xmlrpc.php:189 prli-xmlrpc.php:219 prli-xmlrpc.php:248
542
- #: prli-xmlrpc.php:282 prli-xmlrpc.php:315
543
- msgid "Sorry, XML-RPC Not enabled for this website"
544
  msgstr ""
545
 
546
- #: prli-xmlrpc.php:25 prli-xmlrpc.php:88 prli-xmlrpc.php:136
547
- #: prli-xmlrpc.php:192 prli-xmlrpc.php:222 prli-xmlrpc.php:251
548
- #: prli-xmlrpc.php:285 prli-xmlrpc.php:318
549
- msgid "Sorry, Login failed"
550
  msgstr ""
551
 
552
- #: prli-xmlrpc.php:31 prli-xmlrpc.php:94 prli-xmlrpc.php:142
553
- #: prli-xmlrpc.php:198 prli-xmlrpc.php:228 prli-xmlrpc.php:257
554
- #: prli-xmlrpc.php:291 prli-xmlrpc.php:324
555
- msgid "Sorry, you must be an administrator to access this resource"
 
 
556
  msgstr ""
557
 
558
- #: prli-xmlrpc.php:98
559
- msgid "You must provide a target URL"
560
  msgstr ""
561
 
562
- #: prli-xmlrpc.php:124 prli-xmlrpc.php:173
563
- msgid "There was an error creating your Pretty Link"
564
  msgstr ""
565
 
566
- #: prli-xmlrpc.php:146
567
- msgid "You must provide the id of the link you want to update"
568
  msgstr ""
569
 
570
- #: prli-xmlrpc.php:203
571
- msgid "There was an error fetching the Pretty Link Groups"
572
  msgstr ""
573
 
574
- #: prli-xmlrpc.php:233
575
- msgid "There was an error fetching the Pretty Links"
 
 
576
  msgstr ""
577
 
578
- #: prli-xmlrpc.php:260
579
- msgid "Sorry, you must provide a slug to lookup"
580
  msgstr ""
581
 
582
- #: prli-xmlrpc.php:267 prli-xmlrpc.php:301
583
- msgid "There was an error fetching your Pretty Link"
 
 
 
584
  msgstr ""
585
 
586
- #: prli-xmlrpc.php:294 prli-xmlrpc.php:327
587
- msgid "Sorry, you must provide an id to lookup"
588
  msgstr ""
589
 
590
- #: prli-xmlrpc.php:334
591
- msgid "There was an error fetching your Pretty Link URL"
592
  msgstr ""
593
 
594
- #: prli-main.php:20
595
- msgid "Pretty Link | Manage Pretty Links"
 
596
  msgstr ""
597
 
598
- #: prli-main.php:21
599
- msgid "Pretty Link | Add New Link"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
600
  msgstr ""
601
 
602
- #: prli-main.php:21
603
- msgid "Add New Link"
604
  msgstr ""
605
 
606
- #: prli-main.php:357 prli-main.php:376
607
  msgid ""
608
- "Your Pretty Link Pro installation isn't quite complete yet.<br/>%1"
609
- "$sAutomatically Upgrade to Enable Pretty Link Pro%2$s"
610
  msgstr ""
611
 
612
- #: pro/prlipro-options.php:9
613
- msgid "Your Keyword Replacement Cache was successfully deleted"
614
  msgstr ""
615
 
616
- #: pro/prlipro-options.php:36
617
- msgid "Your Duplicate Tweets were Successfully Trimmed"
618
  msgstr ""
619
 
620
- #: pro/pretty-link-pro.php:128
621
- msgid "Disable Keyword Replacements on this post."
622
  msgstr ""
623
 
624
- #: pro/pretty-link-pro.php:164
625
- msgid "Uniques"
626
  msgstr ""
627
 
628
- #: pro/pretty-link-pro.php:206
 
 
 
 
629
  msgid ""
630
- "A Pretty Link hasn't been generated for this entry yet. Click \"Update Post"
631
- "\" to generate."
 
 
632
  msgstr ""
633
 
634
- #: pro/pretty-link-pro.php:265
635
- msgid "ERROR: Your Pretty Link was unable to be created"
636
  msgstr ""
637
 
638
- #: pro/pretty-link-pro.php:268
639
- msgid "Unauthorized"
640
  msgstr ""
641
 
642
- #: pro/pretty-link-pro.php:913
643
- msgid "Delay Redirect must be a number"
644
  msgstr ""
645
 
646
- #: pro/pretty-link-pro.php:976
647
- msgid "This Link Has additional Target URL rotations"
 
 
 
 
648
  msgstr ""
649
 
650
- #: pro/pretty-link-pro.php:1374
651
  msgid "Alternate Pretty Bar Attribution URL:"
652
  msgstr ""
653
 
654
- #: pro/pretty-link-pro.php:1466
 
 
 
 
 
 
 
655
  msgid "End-Point URL:"
656
  msgstr ""
657
 
658
- #: pro/pretty-link-pro.php:1467
659
  msgid "This can be used to integrate with your twitter client."
660
  msgstr ""
661
 
662
- #: pro/pretty-link-pro.php:1470
663
  msgid "Show TweetDeck Integration Instructions"
664
  msgstr ""
665
 
666
- #: pro/pretty-link-pro.php:1472 pro/pretty-link-pro.php:1478
667
  msgid "Follow the"
668
  msgstr ""
669
 
670
- #: pro/pretty-link-pro.php:1472
671
  msgid "TweetDeck Custom URL Instructions"
672
  msgstr ""
673
 
674
- #: pro/pretty-link-pro.php:1472
675
  msgid " and add the following URL to TweetDeck"
676
  msgstr ""
677
 
678
- #: pro/pretty-link-pro.php:1476
679
  msgid "Show Twitter for iPhone Integration Instructions"
680
  msgstr ""
681
 
682
- #: pro/pretty-link-pro.php:1478
683
  msgid "Twitter for iPhone Custom URL Instructions"
684
  msgstr ""
685
 
686
- #: pro/pretty-link-pro.php:1478
687
  msgid " and add the following URL to Twitter for iPhone"
688
  msgstr ""
689
 
690
- #: pro/pretty-link-pro.php:1488
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
691
  msgid "Label:"
692
  msgstr ""
693
 
694
- #: pro/pretty-link-pro.php:1493 pro/prlipro-create-public-link-widget.php:46
695
  msgid "Redirection:"
696
  msgstr ""
697
 
698
- #: pro/pretty-link-pro.php:1504 pro/prlipro-create-public-link-widget.php:57
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
699
  msgid "Tracking Enabled:"
700
  msgstr ""
701
 
702
- #: pro/pretty-link-pro.php:1513 pro/prlipro-create-public-link-widget.php:66
 
 
 
 
 
 
 
 
703
  msgid "Group:"
704
  msgstr ""
705
 
706
- #: pro/pretty-link-pro.php:1619 pro/pretty-link-pro.php:1659
 
 
 
 
707
  msgid "There was an error saving your Twitter account."
708
  msgstr ""
709
 
710
- #: pro/pretty-link-pro.php:1655
711
  msgid "Your Twitter Account was successfully saved."
712
  msgstr ""
713
 
714
- #: pro/pretty-link-pro.php:1673 pro/pretty-link-pro.php:1751
715
  msgid "Pretty Bar"
716
  msgstr ""
717
 
718
- #: pro/pretty-link-pro.php:1674
719
  msgid "Cloaked"
720
  msgstr ""
721
 
722
- #: pro/pretty-link-pro.php:1675 pro/pretty-link-pro.php:1753
723
  msgid "Pixel"
724
  msgstr ""
725
 
726
- #: pro/pretty-link-pro.php:1676 pro/pretty-link-pro.php:1754
727
  msgid "Meta Refresh"
728
  msgstr ""
729
 
730
- #: pro/pretty-link-pro.php:1677 pro/pretty-link-pro.php:1755
731
  msgid "Javascript"
732
  msgstr ""
733
 
734
- #: pro/pretty-link-pro.php:1752
735
- msgid "Cloak"
736
  msgstr ""
737
 
738
- #: pro/pretty-link-pro.php:1783
739
  msgid "Image URL:"
740
  msgstr ""
741
 
742
- #: pro/pretty-link-pro.php:1786
743
  msgid ""
744
  "If set, this will replace the logo image on the PrettyBar. The image that "
745
  "this URL references should be 48x48 Pixels to fit."
746
  msgstr ""
747
 
748
- #: pro/pretty-link-pro.php:1790
749
  msgid "Background Image URL:"
750
  msgstr ""
751
 
752
- #: pro/pretty-link-pro.php:1793
753
  msgid ""
754
  "If set, this will replace the background image on PrettyBar. The image that "
755
  "this URL references should be 65px tall - this image will be repeated "
756
  "horizontally across the bar."
757
  msgstr ""
758
 
759
- #: pro/pretty-link-pro.php:1797
760
  msgid "Background Color:"
761
  msgstr ""
762
 
763
- #: pro/pretty-link-pro.php:1800
764
  msgid ""
765
  "This will alter the background color of the PrettyBar if you haven't "
766
  "specified a PrettyBar background image."
767
  msgstr ""
768
 
769
- #: pro/pretty-link-pro.php:1804
770
  msgid "Text Color:"
771
  msgstr ""
772
 
773
- #: pro/pretty-link-pro.php:1807
774
  msgid ""
775
  "If not set, this defaults to black (RGB value <code>#000000</code>) but you "
776
  "can change it to whatever color you like."
777
  msgstr ""
778
 
779
- #: pro/pretty-link-pro.php:1811
780
  msgid "Link Color:"
781
  msgstr ""
782
 
783
- #: pro/pretty-link-pro.php:1814
784
  msgid ""
785
  "If not set, this defaults to blue (RGB value <code>#0000ee</code>) but you "
786
  "can change it to whatever color you like."
787
  msgstr ""
788
 
789
- #: pro/pretty-link-pro.php:1818
790
  msgid "Link Hover Color:"
791
  msgstr ""
792
 
793
- #: pro/pretty-link-pro.php:1821
794
  msgid ""
795
  "If not set, this defaults to RGB value <code>#ababab</code> but you can "
796
  "change it to whatever color you like."
797
  msgstr ""
798
 
799
- #: pro/pretty-link-pro.php:1825
800
  msgid "Visited Link Color:"
801
  msgstr ""
802
 
803
- #: pro/pretty-link-pro.php:1828
804
  msgid ""
805
  "If not set, this defaults to RGB value <code>#551a8b</code> but you can "
806
  "change it to whatever color you like."
807
  msgstr ""
808
 
809
- #: pro/pretty-link-pro.php:1832
810
  msgid "Title Char Limit*:"
811
  msgstr ""
812
 
813
- #: pro/pretty-link-pro.php:1835
814
  msgid ""
815
  "If your Website has a long title then you may need to adjust this value so "
816
  "that it will all fit on the PrettyBar. It is recommended that you keep this "
@@ -818,11 +2358,11 @@ msgid ""
818
  "good across different browsers and screen resolutions."
819
  msgstr ""
820
 
821
- #: pro/pretty-link-pro.php:1839
822
  msgid "Description Char Limit*:"
823
  msgstr ""
824
 
825
- #: pro/pretty-link-pro.php:1842
826
  msgid ""
827
  "If your Website has a long Description (tagline) then you may need to adjust "
828
  "this value so that it will all fit on the PrettyBar. It is recommended that "
@@ -830,118 +2370,118 @@ msgid ""
830
  "format looks good across different browsers and screen resolutions."
831
  msgstr ""
832
 
833
- #: pro/pretty-link-pro.php:1846
834
  msgid "Target URL Char Limit*:"
835
  msgstr ""
836
 
837
- #: pro/pretty-link-pro.php:1849
838
  msgid ""
839
  "If you link to a lot of large Target URLs you may want to adjust this value. "
840
  "It is recommended that you keep this value to <code>40</code> or below so "
841
  "the PrettyBar's format looks good across different browsers and URL sizes"
842
  msgstr ""
843
 
844
- #: pro/pretty-link-pro.php:1854
845
  msgid "Show Pretty Bar Title"
846
  msgstr ""
847
 
848
- #: pro/pretty-link-pro.php:1855
849
  msgid ""
850
  "Make sure this is checked if you want the title of your blog (and link) to "
851
  "show up on the PrettyBar."
852
  msgstr ""
853
 
854
- #: pro/pretty-link-pro.php:1860
855
  msgid "Show Pretty Bar Description"
856
  msgstr ""
857
 
858
- #: pro/pretty-link-pro.php:1861
859
  msgid ""
860
  "Make sure this is checked if you want your site description to show up on "
861
  "the PrettyBar."
862
  msgstr ""
863
 
864
- #: pro/pretty-link-pro.php:1866
865
  msgid "Show Pretty Bar Share Links"
866
  msgstr ""
867
 
868
- #: pro/pretty-link-pro.php:1867
869
  msgid ""
870
  "Make sure this is checked if you want \"share links\" to show up on the "
871
  "PrettyBar."
872
  msgstr ""
873
 
874
- #: pro/pretty-link-pro.php:1872
875
  msgid "Show Pretty Bar Target URL"
876
  msgstr ""
877
 
878
- #: pro/pretty-link-pro.php:1873
879
  msgid ""
880
  "Make sure this is checked if you want a link displaying the Target URL to "
881
  "show up on the PrettyBar."
882
  msgstr ""
883
 
884
- #: pro/pretty-link-pro.php:1903
885
  msgid "Logo Image URL must be a correctly formatted URL"
886
  msgstr ""
887
 
888
- #: pro/pretty-link-pro.php:1906
889
  msgid "Background Image URL must be a correctly formatted URL"
890
  msgstr ""
891
 
892
- #: pro/pretty-link-pro.php:1909
893
  msgid "PrettyBar Background Color must be an actual RGB Value"
894
  msgstr ""
895
 
896
- #: pro/pretty-link-pro.php:1912
897
  msgid "PrettyBar Text Color must be an actual RGB Value"
898
  msgstr ""
899
 
900
- #: pro/pretty-link-pro.php:1915
901
  msgid "PrettyBar Link Color must be an actual RGB Value"
902
  msgstr ""
903
 
904
- #: pro/pretty-link-pro.php:1918 pro/pretty-link-pro.php:1921
905
  msgid "PrettyBar Hover Color must be an actual RGB Value"
906
  msgstr ""
907
 
908
- #: pro/pretty-link-pro.php:1924
909
  msgid "PrettyBar Title Character Limit must not be blank"
910
  msgstr ""
911
 
912
- #: pro/pretty-link-pro.php:1927
913
  msgid "PrettyBar Description Character Limit must not be blank"
914
  msgstr ""
915
 
916
- #: pro/pretty-link-pro.php:1930
917
  msgid "PrettyBar Link Character Limit must not be blank"
918
  msgstr ""
919
 
920
- #: pro/pretty-link-pro.php:1933
921
  msgid "PrettyBar Title Character Limit must be a number"
922
  msgstr ""
923
 
924
- #: pro/pretty-link-pro.php:1936
925
  msgid "PrettyBar Description Character Limit must be a number"
926
  msgstr ""
927
 
928
- #: pro/pretty-link-pro.php:1939
929
  msgid "PrettyBar Link Character Limit must be a number"
930
  msgstr ""
931
 
932
- #: pro/pretty-link-pro.php:2062
933
  msgid "You are unauthorized to view this resource"
934
  msgstr ""
935
 
936
- #: pro/pretty-link-pro.php:2092
937
  msgid "View QR Code for this link: %s"
938
  msgstr ""
939
 
940
- #: pro/pretty-link-pro.php:2100
941
  msgid "Download QR Code for this link: %s"
942
  msgstr ""
943
 
944
- #: pro/pretty-link-pro.php:2193
945
  msgid "Double Redirection Enabled"
946
  msgstr ""
947
 
@@ -953,221 +2493,96 @@ msgstr ""
953
  msgid "Button Text:"
954
  msgstr ""
955
 
956
- #: pro/classes/views/prli-links/form.php:7
957
- msgid "Double Redirect:"
958
- msgstr ""
959
-
960
- #: pro/classes/views/prli-links/form.php:11
961
- msgid "Use a double redirect to erase all referrer information"
962
- msgstr ""
963
-
964
- #: pro/classes/views/prli-links/form.php:18
965
- msgid "Keywords:"
966
- msgstr ""
967
-
968
- #: pro/classes/views/prli-links/form.php:21
969
- msgid ""
970
- "Enter a comma separated list of keywords / keyword phrases that you'd like "
971
- "to replace with this link in your Posts &amp; Pages."
972
- msgstr ""
973
-
974
- #: pro/classes/views/prli-links/form.php:24
975
- msgid "URL Replacements:"
976
- msgstr ""
977
-
978
- #: pro/classes/views/prli-links/form.php:27
979
- msgid ""
980
- "Enter a comma separated list of the URLs that you'd like to replace with "
981
- "this Pretty Link in your Posts &amp; Pages. These must be formatted as URLs "
982
- "for example: <code>http://example.com</code> or <code>http://example.com?"
983
- "product_id=53</code>"
984
- msgstr ""
985
-
986
- #: pro/classes/views/prli-links/form.php:32
987
- msgid "Target URL Rotations:"
988
- msgstr ""
989
-
990
- #: pro/classes/views/prli-links/form.php:34
991
- msgid ""
992
- "Enter the Target URLs that you'd like to rotate through when this Pretty "
993
- "Link is Clicked. These must be formatted as URLs example: <code>http://"
994
- "example.com</code> or <code>http://example.com?product_id=53</code>"
995
- msgstr ""
996
-
997
- #: pro/classes/views/prli-links/form.php:50
998
- msgid "Split Test This Link"
999
- msgstr ""
1000
-
1001
- #: pro/classes/views/prli-links/form.php:51
1002
- msgid ""
1003
- "This works best when you have multiple link rotation URLs entered -- that's "
1004
- "the whole point of split testing ..."
1005
- msgstr ""
1006
-
1007
- #: pro/classes/views/prli-links/form.php:57
1008
- msgid "Split Test Goal Link:"
1009
- msgstr ""
1010
-
1011
- #: pro/classes/views/prli-links/form.php:61
1012
- msgid "Name"
1013
- msgstr ""
1014
-
1015
- #: pro/classes/views/prli-links/form.php:77
1016
- msgid "This is the goal link for your split test."
1017
- msgstr ""
1018
-
1019
- #: pro/classes/views/prli-links/link-options.php:2
1020
- msgid "Enable Google Analytics"
1021
- msgstr ""
1022
-
1023
- #: pro/classes/views/prli-links/link-options.php:6
1024
- msgid "Generate Downloadable %sQR Codes%s for Pretty Links"
1025
  msgstr ""
1026
 
1027
- #: pro/classes/views/prli-links/link-options.php:7
1028
- msgid ""
1029
- "This will enable a link in your pretty link admin that will allow you to "
1030
- "automatically download a %sQR Code%s for each individual Pretty Link."
1031
  msgstr ""
1032
 
1033
- #: pro/classes/views/prli-links/bulk-edit.php:6
1034
- msgid "Advanced Link Options"
1035
  msgstr ""
1036
 
1037
- #: pro/classes/views/prli-links/bulk-edit.php:7
1038
- msgid "Double Redirect"
1039
  msgstr ""
1040
 
1041
- #: pro/classes/views/prli-links/bulk-edit.php:12
1042
- #: pro/classes/models/PrliProUtils.php:276
1043
- msgid "Google Analytics"
1044
  msgstr ""
1045
 
1046
- #: pro/classes/views/prlipro-import-export/form.php:7
1047
- msgid "Import / Export Links"
1048
  msgstr ""
1049
 
1050
- #: pro/classes/views/prlipro-import-export/import.php:7
1051
- msgid "Import Results"
1052
  msgstr ""
1053
 
1054
- #: pro/classes/views/prlipro-options/form.php:33
1055
- msgid "Maximum Keywords per Page*:"
1056
  msgstr ""
1057
 
1058
- #: pro/classes/views/prlipro-options/form.php:39
1059
- msgid "Maximum Replacements per Keyword per Page*:"
1060
  msgstr ""
1061
 
1062
- #: pro/classes/views/prlipro-options/form.php:48
1063
- msgid "Open Keyword Pretty Links in a new Window"
1064
  msgstr ""
1065
 
1066
- #: pro/classes/views/prlipro-options/form.php:49
1067
- msgid ""
1068
- "Ensure that these keyword replacement links are opened in a separate window. "
1069
- "<strong>Note:</strong> This does not apply to url replacements--only keyword "
1070
- "replacements."
1071
  msgstr ""
1072
 
1073
- #: pro/classes/views/prlipro-options/form.php:52
1074
- msgid "Add the html nofollow attribute to all Keyword Pretty Links"
1075
  msgstr ""
1076
 
1077
- #: pro/classes/views/prlipro-options/form.php:53
1078
  msgid ""
1079
- "This adds the html <code>NOFOLLOW</code> attribute to all keyword "
1080
- "replacement links. <strong>Note:</strong> This does not apply to url "
1081
- "replacements--only keyword replacements."
1082
- msgstr ""
1083
-
1084
- #: pro/classes/views/prlipro-options/form.php:58
1085
- msgid "Custom CSS Styling for your Keyword Replacements:"
1086
- msgstr ""
1087
-
1088
- #: pro/classes/views/prlipro-options/form.php:65
1089
- msgid "Custom Hover CSS Styling for your Keyword Replacements:"
1090
- msgstr ""
1091
-
1092
- #: pro/classes/views/prlipro-options/form.php:186
1093
- msgid "Twitter Account"
1094
- msgstr ""
1095
-
1096
- #: pro/classes/views/prlipro-options/form.php:231
1097
- msgid "Twitter Comments Headline:"
1098
- msgstr ""
1099
-
1100
- #: pro/classes/views/prlipro-options/form.php:238
1101
- msgid "Twitter Comments Height:"
1102
- msgstr ""
1103
-
1104
- #: pro/classes/views/prlipro-options/form.php:251
1105
- msgid "Main Tweet User:"
1106
- msgstr ""
1107
-
1108
- #: pro/classes/views/prlipro-options/form.php:264
1109
- msgid "Tweet Hash Tags:"
1110
- msgstr ""
1111
-
1112
- #: pro/classes/views/prlipro-options/form.php:386
1113
- msgid "Social Buttons Display Spacing:"
1114
- msgstr ""
1115
-
1116
- #: pro/classes/views/prli-reports/new.php:7
1117
- msgid "Add Link Report"
1118
- msgstr ""
1119
-
1120
- #: pro/classes/views/prli-reports/new.php:20
1121
- msgid "Name*:"
1122
- msgstr ""
1123
-
1124
- #: pro/classes/views/prli-reports/new.php:22
1125
- #: pro/classes/views/prli-reports/edit.php:22
1126
- msgid "This is how you'll identify your Report."
1127
- msgstr ""
1128
-
1129
- #: pro/classes/views/prli-reports/new.php:86
1130
- #: pro/classes/views/prli-reports/edit.php:86
1131
- msgid "Select some links to be analyzed in this report."
1132
  msgstr ""
1133
 
1134
- #: pro/classes/views/prli-reports/new.php:111
1135
- #: pro/classes/views/prli-reports/edit.php:111
1136
  msgid ""
1137
- "If you want to enable conversion tracking in this report then select a goal "
1138
- "link."
1139
  msgstr ""
1140
 
1141
- #: pro/classes/views/prli-reports/list.php:7
1142
- msgid "Link Reports"
1143
  msgstr ""
1144
 
1145
- #: pro/classes/views/prli-reports/reports.php:7
1146
- msgid "Reports"
1147
  msgstr ""
1148
 
1149
- #: pro/classes/views/prli-reports/custom-report.php:7
1150
- msgid "Link Report"
1151
  msgstr ""
1152
 
1153
- #: pro/classes/views/prli-reports/split-test-report.php:7
1154
- msgid "Link Split-Test Report"
1155
  msgstr ""
1156
 
1157
- #: pro/classes/views/prli-reports/split-test-report.php:12
1158
- msgid "Back to Links"
1159
  msgstr ""
1160
 
1161
- #: pro/classes/views/prli-reports/edit.php:7
1162
- msgid "Edit Link Report"
1163
  msgstr ""
1164
 
1165
- #: pro/classes/models/PrliProUtils.php:272
1166
- msgid "Google Analyticator"
1167
  msgstr ""
1168
 
1169
- #: pro/classes/models/PrliProUtils.php:274
1170
- msgid "Google Analytics for WordPress"
1171
  msgstr ""
1172
 
1173
  #. Plugin Name of the plugin/theme
1
+ # Copyright (C) 2013 Pretty Link Lite
2
  # This file is distributed under the same license as the Pretty Link Lite package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Pretty Link Lite 1.6.4a4\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/pretty-link\n"
7
+ "POT-Creation-Date: 2013-04-25 18:08:06+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
11
+ "PO-Revision-Date: 2013-MO-DA HO:MI+ZONE\n"
12
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
  "Language-Team: LANGUAGE <LL@li.org>\n"
14
 
15
+ #: classes/controllers/PrliAppController.php:47
16
  msgid ""
17
+ "Database Upgrade is required for Pretty Link to work properly<br/>"
18
+ "%1$sAutomatically Upgrade your Database%2$s"
19
  msgstr ""
20
 
21
+ #: classes/controllers/PrliAppController.php:83
22
+ msgid "Your Database Has Been Successfully Upgraded."
23
  msgstr ""
24
 
25
+ #: classes/controllers/PrliGroupsController.php:17
26
+ msgid "An unknown error occurred when creating your group."
27
  msgstr ""
28
 
29
+ #: classes/controllers/PrliGroupsController.php:26
30
+ msgid "Group Created"
31
  msgstr ""
32
 
33
+ #: classes/controllers/PrliGroupsController.php:32
34
+ msgid "A name must be specified for your new group name"
35
  msgstr ""
36
 
37
+ #: classes/controllers/PrliGroupsController.php:36
38
+ msgid "Cannot add group because security nonce failed"
39
  msgstr ""
40
 
41
+ #: classes/controllers/PrliLinksController.php:65
42
+ msgid "Links in Group: "
43
  msgstr ""
44
 
45
+ #: classes/controllers/PrliLinksController.php:110
46
+ #: classes/controllers/PrliLinksController.php:133
47
+ msgid "Your Pretty Link was Successfully Created"
48
  msgstr ""
49
 
50
+ #: classes/controllers/PrliLinksController.php:168
51
+ msgid "Your Pretty Link was Successfully Updated"
52
  msgstr ""
53
 
54
+ #: classes/controllers/PrliLinksController.php:183
55
+ msgid "Your links were updated successfully"
56
+ msgstr ""
57
+
58
+ #: classes/controllers/PrliLinksController.php:200
59
+ #: classes/controllers/PrliLinksController.php:239
60
+ msgid "You are unauthorized to view this page."
61
+ msgstr ""
62
+
63
+ #: classes/controllers/PrliLinksController.php:206
64
+ msgid "Your Pretty Link was Successfully Reset"
65
+ msgstr ""
66
+
67
+ #: classes/controllers/PrliLinksController.php:213
68
+ msgid "Your Pretty Link was Successfully Destroyed"
69
+ msgstr ""
70
+
71
+ #: classes/controllers/PrliLinksController.php:226
72
+ msgid "Your links were deleted successfully"
73
  msgstr ""
74
 
75
  #: classes/helpers/PrliLinksHelper.php:14 classes/views/prli-links/form.php:44
76
+ #: pro/classes/views/prlipro-options/form.php:104
77
+ #: pro/classes/views/prlipro-options/form.php:137
78
+ #: pro/classes/views/prlipro-options/form.php:216
79
+ #: pro/classes/views/prlipro-options/form.php:362 pro/pretty-link-pro.php:1525
80
+ #: pro/prlipro-create-public-link-widget.php:68
81
  msgid "None"
82
  msgstr ""
83
 
94
  msgstr ""
95
 
96
  #: classes/helpers/PrliLinksHelper.php:50
97
+ #: classes/views/prli-groups/list.php:64 classes/views/prli-links/list.php:187
98
+ #: pro/classes/views/prli-reports/list.php:63
99
  msgid "Edit"
100
  msgstr ""
101
 
102
  #: classes/helpers/PrliLinksHelper.php:51
103
+ #: classes/views/prli-groups/list.php:65 classes/views/prli-links/list.php:188
104
+ #: pro/classes/views/prli-reports/list.php:64
105
  msgid "Delete"
106
  msgstr ""
107
 
126
  msgid "On"
127
  msgstr ""
128
 
129
+ #: classes/models/PrliClick.php:235 pro/pretty-link-pro.php:165
130
+ msgid "Pretty Link:"
131
+ msgstr ""
132
+
133
+ #: classes/models/PrliClick.php:235
134
+ msgid "on"
135
+ msgstr ""
136
+
137
+ #: classes/models/PrliClick.php:235 pro/classes/models/PrliReport.php:449
138
+ msgid "between"
139
+ msgstr ""
140
+
141
+ #: classes/models/PrliClick.php:235 pro/classes/models/PrliReport.php:282
142
+ #: pro/classes/models/PrliReport.php:449
143
+ msgid "and"
144
+ msgstr ""
145
+
146
+ #: classes/models/PrliClick.php:239
147
+ msgid "Date"
148
+ msgstr ""
149
+
150
+ #: classes/models/PrliClick.php:239 classes/views/prli-clicks/list.php:6
151
+ #: classes/views/prli-groups/list.php:67 classes/views/prli-links/list.php:191
152
+ #: pro/classes/views/prli-reports/custom-report.php:31
153
+ #: pro/classes/views/prli-reports/custom-report.php:64
154
+ #: pro/classes/views/prli-reports/split-test-report.php:31
155
+ #: pro/classes/views/prli-reports/split-test-report.php:64
156
+ #: pro/pretty-link-pro.php:164
157
+ msgid "Hits"
158
+ msgstr ""
159
+
160
+ #: classes/models/PrliLink.php:465
161
+ msgid "Target URL can't be blank"
162
+ msgstr ""
163
+
164
+ #: classes/models/PrliLink.php:468
165
+ msgid "Pretty Link can't be blank"
166
+ msgstr ""
167
+
168
+ #: classes/models/PrliLink.php:471
169
+ msgid "Target URL must be different than the Pretty Link"
170
+ msgstr ""
171
+
172
+ #: classes/models/PrliLink.php:476
173
+ msgid "Link URL must be a correctly formatted url"
174
+ msgstr ""
175
+
176
+ #: classes/models/PrliLink.php:479
177
  msgid ""
178
+ "Pretty Link slugs must not contain question marks, ampersands or number "
179
+ "signs."
180
  msgstr ""
181
 
182
+ #: classes/models/PrliLink.php:482
183
+ msgid "Pretty Link slugs must not end with a slash (\"/\")"
184
  msgstr ""
185
 
186
+ #: classes/models/PrliLink.php:486
187
+ msgid ""
188
+ "This Pretty Link Slug is already taken. Check to make sure it isn't being "
189
+ "used by another pretty link, post, page, category or tag slug. If none of "
190
+ "these are true then check to see that this slug isn't the name of a file in "
191
+ "the root folder of your wordpress install."
192
  msgstr ""
193
 
194
+ #: classes/models/PrliLink.php:489
195
+ msgid ""
196
+ "If Custom Parameter Forwarding has been selected then you must specify a "
197
+ "forwarding format."
198
  msgstr ""
199
 
200
+ #: classes/models/PrliLink.php:492
201
+ msgid ""
202
+ "Your parameter forwarding must have at least one parameter specified in the "
203
+ "format ex: <code>/%var1%/%var_two%/%varname3% ...</code>"
204
  msgstr ""
205
 
206
+ #: classes/models/PrliUpdate.php:44
207
+ msgid "Pretty Link Pro Username"
208
  msgstr ""
209
 
210
+ #: classes/models/PrliUpdate.php:45
211
+ msgid "Pretty Link Pro Password"
 
212
  msgstr ""
213
 
214
+ #: classes/models/PrliUpdate.php:46
215
+ msgid "Your Pretty Link Pro Username or Password was Invalid"
216
  msgstr ""
217
 
218
+ #: classes/models/PrliUpdate.php:153
219
+ msgid ""
220
+ "Your Username & Password was accepted<br/>Now you can %1$sUpgrade "
221
+ "Automatically!%2$s"
222
  msgstr ""
223
 
224
+ #: classes/models/PrliUpdate.php:163
225
+ msgid ""
226
+ "Your Username & Password was accepted<br/>Now you can %1$sGet Started!%2$s"
227
  msgstr ""
228
 
229
+ #: classes/models/PrliUpdate.php:173 classes/views/shared/errors.php:12
230
+ #: pro/classes/views/prlipro-public/form.php:22
231
+ msgid "ERROR"
232
  msgstr ""
233
 
234
+ #: classes/models/PrliUpdate.php:208
235
+ #: pro/classes/views/prlipro-options/form.php:423
236
+ msgid "Save"
237
  msgstr ""
238
 
239
+ #: classes/views/prli-clicks/list.php:7
240
+ msgid "For"
241
  msgstr ""
242
 
243
+ #: classes/views/prli-clicks/list.php:13
244
+ #: pro/classes/views/prli-reports/custom-report.php:12
245
+ #: pro/classes/views/prli-reports/split-test-report.php:12
246
+ msgid "Customize Report"
247
  msgstr ""
248
 
249
+ #: classes/views/prli-clicks/list.php:19
250
+ #: pro/classes/views/prli-reports/split-test-report.php:12
251
+ msgid "Back to Links"
252
  msgstr ""
253
 
254
+ #: classes/views/prli-clicks/list.php:21
255
+ msgid "Back to Hits"
256
  msgstr ""
257
 
258
+ #: classes/views/prli-clicks/list.php:31
259
+ msgid "Type:"
260
  msgstr ""
261
 
262
+ #: classes/views/prli-clicks/list.php:33
263
+ msgid "All Hits"
264
  msgstr ""
265
 
266
+ #: classes/views/prli-clicks/list.php:34
267
+ msgid "Unique Hits"
268
  msgstr ""
269
 
270
+ #: classes/views/prli-clicks/list.php:38
271
+ #: pro/classes/views/prli-reports/custom-report.php:16
272
+ #: pro/classes/views/prli-reports/split-test-report.php:16
273
+ msgid "Date Range:"
274
  msgstr ""
275
 
276
+ #: classes/views/prli-clicks/list.php:40
277
+ msgid "to"
278
  msgstr ""
279
 
280
+ #: classes/views/prli-clicks/list.php:44 classes/views/prli-clicks/list.php:68
281
+ #: classes/views/prli-groups/edit.php:59 classes/views/prli-groups/list.php:22
282
+ #: classes/views/prli-groups/new.php:62 classes/views/prli-links/edit.php:23
283
+ #: classes/views/prli-links/new.php:23
284
+ #: pro/classes/views/prli-reports/custom-report.php:22
285
+ #: pro/classes/views/prli-reports/list.php:20
286
+ #: pro/classes/views/prli-reports/new.php:118
287
+ msgid "or"
288
  msgstr ""
289
 
290
+ #: classes/views/prli-clicks/list.php:44 classes/views/prli-groups/edit.php:59
291
+ #: classes/views/prli-groups/new.php:62 classes/views/prli-links/edit.php:23
292
+ #: classes/views/prli-links/list.php:104 classes/views/prli-links/new.php:23
293
+ #: pro/classes/views/prli-reports/custom-report.php:22
294
+ #: pro/classes/views/prli-reports/edit.php:117
295
+ #: pro/classes/views/prli-reports/new.php:118
296
+ msgid "Cancel"
297
  msgstr ""
298
 
299
+ #: classes/views/prli-clicks/list.php:68 classes/views/prli-groups/list.php:22
300
+ #: classes/views/prli-links/list.php:35 classes/views/prli-links/list.php:189
301
+ #: pro/classes/views/prli-reports/list.php:20
302
+ msgid "Reset"
303
  msgstr ""
304
 
305
+ #: classes/views/prli-clicks/list.php:79
306
+ #: classes/views/prli-clicks/list.php:147
307
+ msgid "Browser"
 
 
308
  msgstr ""
309
 
310
+ #: classes/views/prli-clicks/list.php:83
311
+ #: classes/views/prli-clicks/list.php:149
312
+ msgid "IP"
313
  msgstr ""
314
 
315
+ #: classes/views/prli-clicks/list.php:87
316
+ #: classes/views/prli-clicks/list.php:151
317
+ msgid "Visitor"
 
 
 
318
  msgstr ""
319
 
320
+ #: classes/views/prli-clicks/list.php:91
321
+ #: classes/views/prli-clicks/list.php:153
322
+ msgid "Timestamp"
323
  msgstr ""
324
 
325
+ #: classes/views/prli-clicks/list.php:95
326
+ #: classes/views/prli-clicks/list.php:155
327
+ msgid "Host"
 
328
  msgstr ""
329
 
330
+ #: classes/views/prli-clicks/list.php:99
331
+ #: classes/views/prli-clicks/list.php:157
332
+ msgid "URI"
333
  msgstr ""
334
 
335
+ #: classes/views/prli-clicks/list.php:102
336
+ #: classes/views/prli-clicks/list.php:158
337
+ msgid "Referrer"
338
  msgstr ""
339
 
340
+ #: classes/views/prli-clicks/list.php:105
341
+ #: classes/views/prli-clicks/list.php:159
342
+ msgid "Link"
343
  msgstr ""
344
 
345
+ #: classes/views/prli-clicks/list.php:115
346
+ msgid "No Hits have been recorded yet"
347
  msgstr ""
348
 
349
+ #: classes/views/prli-clicks/list.php:164
350
+ msgid "Download CSV"
351
  msgstr ""
352
 
353
+ #: classes/views/prli-dashboard-widget/widget.php:3
354
+ msgid "Add a Pretty Link from your Dashboard:"
355
  msgstr ""
356
 
357
+ #: classes/views/prli-dashboard-widget/widget.php:11
358
+ msgid "Target URL"
359
+ msgstr ""
360
+
361
+ #: classes/views/prli-dashboard-widget/widget.php:15 prli-main.php:20
362
+ msgid "Pretty Link"
363
  msgstr ""
364
 
365
  #: classes/views/prli-groups/edit.php:7
366
  msgid "Edit Group"
367
  msgstr ""
368
 
369
+ #: classes/views/prli-groups/edit.php:20
370
+ #: pro/classes/views/prli-reports/edit.php:20
371
+ msgid "Name:"
372
  msgstr ""
373
 
374
+ #: classes/views/prli-groups/edit.php:22 classes/views/prli-groups/new.php:24
375
+ msgid "This is how you'll identify your Group."
376
  msgstr ""
377
 
378
+ #: classes/views/prli-groups/edit.php:25 classes/views/prli-groups/new.php:27
379
+ msgid "Description:"
380
  msgstr ""
381
 
382
+ #: classes/views/prli-groups/edit.php:27 classes/views/prli-groups/new.php:29
383
+ msgid "A Description of this group."
384
  msgstr ""
385
 
386
+ #: classes/views/prli-groups/edit.php:30 classes/views/prli-groups/new.php:32
387
+ msgid "Links:"
388
  msgstr ""
389
 
390
+ #: classes/views/prli-groups/edit.php:35 classes/views/prli-groups/list.php:39
391
+ #: classes/views/prli-groups/list.php:79 classes/views/prli-groups/new.php:37
392
+ #: classes/views/prli-links/list.php:63 classes/views/prli-links/list.php:232
393
+ #: pro/classes/views/prli-links/form.php:61
394
+ #: pro/classes/views/prli-reports/edit.php:93
395
+ #: pro/classes/views/prli-reports/list.php:37
396
+ #: pro/classes/views/prli-reports/list.php:78
397
+ #: pro/classes/views/prli-reports/new.php:93
398
+ msgid "Name"
399
  msgstr ""
400
 
401
+ #: classes/views/prli-groups/edit.php:36 classes/views/prli-groups/new.php:38
402
+ msgid "Current Group"
403
  msgstr ""
404
 
405
+ #: classes/views/prli-groups/edit.php:53 classes/views/prli-groups/new.php:55
406
+ msgid ""
407
+ "Select some links for this group. <strong>Note: each link can only be in one "
408
+ "group at a time.</strong>"
409
  msgstr ""
410
 
411
+ #: classes/views/prli-groups/list.php:9
412
+ msgid "Groups"
413
  msgstr ""
414
 
415
+ #: classes/views/prli-groups/list.php:30
416
+ msgid "Add a Pretty Link Group"
417
  msgstr ""
418
 
419
+ #: classes/views/prli-groups/list.php:40 classes/views/prli-groups/list.php:66
420
+ #: classes/views/prli-groups/list.php:80 classes/views/prli-links/list.php:10
421
+ #: classes/views/prli-links/list.php:68 classes/views/prli-links/list.php:237
422
+ #: pro/classes/views/prli-reports/list.php:39
423
+ #: pro/classes/views/prli-reports/list.php:80
424
+ msgid "Links"
425
  msgstr ""
426
 
427
+ #: classes/views/prli-groups/list.php:41 classes/views/prli-groups/list.php:81
428
+ #: classes/views/prli-links/list.php:67 classes/views/prli-links/list.php:236
429
+ #: pro/classes/views/prli-reports/list.php:40
430
+ #: pro/classes/views/prli-reports/list.php:81
431
+ msgid "Created"
432
  msgstr ""
433
 
434
+ #: classes/views/prli-groups/list.php:50
435
+ msgid "No Pretty Link Groups were found"
436
  msgstr ""
437
 
438
+ #: classes/views/prli-groups/new.php:9
439
+ msgid "New Group"
440
+ msgstr ""
441
+
442
+ #: classes/views/prli-groups/new.php:22
443
+ #: pro/classes/views/prli-reports/new.php:20
444
+ msgid "Name*:"
445
+ msgstr ""
446
+
447
+ #: classes/views/prli-links/edit.php:7
448
+ msgid "Edit Link"
449
  msgstr ""
450
 
451
  #: classes/views/prli-links/form.php:5
470
  msgid "Title:"
471
  msgstr ""
472
 
473
+ #: classes/views/prli-links/form.php:35 classes/views/prli-options/form.php:7
474
+ #: pro/classes/views/prlipro-options/form.php:7
475
+ msgid "Options"
476
+ msgstr ""
477
+
478
+ #: classes/views/prli-links/form.php:36 classes/views/prli-options/form.php:51
479
+ msgid "Advanced"
480
+ msgstr ""
481
+
482
+ #: classes/views/prli-links/form.php:41 classes/views/prli-links/list.php:66
483
+ #: classes/views/prli-links/list.php:90 classes/views/prli-links/list.php:235
484
+ #: pro/classes/views/prli-links/form.php:62
485
+ #: pro/classes/views/prli-reports/edit.php:94
486
+ #: pro/classes/views/prli-reports/new.php:94
487
+ msgid "Group"
488
+ msgstr ""
489
+
490
  #: classes/views/prli-links/form.php:54
491
+ #: pro/classes/views/prlipro-options/form.php:113
492
+ #: pro/classes/views/prlipro-options/form.php:146
493
  msgid "Add a New Group"
494
  msgstr ""
495
 
564
  "links using Google Analytics until one is."
565
  msgstr ""
566
 
567
+ #: classes/views/prli-links/form.php:115
568
  msgid ""
569
  "To enable Double Redirection, Keyword Replacements, URL Replacements, URL "
570
  "Rotations, Split Tests, and more, %sUpgrade to Pretty Link Pro%s today!"
571
  msgstr ""
572
 
573
+ #: classes/views/prli-links/list.php:18
574
+ msgid ""
575
+ "WordPress Must be Configured:</strong> Pretty Link won't work until you "
576
+ "select a Permalink Structure other than 'Default'"
577
  msgstr ""
578
 
579
+ #: classes/views/prli-links/list.php:18 classes/views/prli-options/form.php:14
580
+ msgid "Permalink Settings"
581
  msgstr ""
582
 
583
+ #: classes/views/prli-links/list.php:43
584
+ msgid "Add a Pretty Link"
585
  msgstr ""
586
 
587
+ #: classes/views/prli-links/list.php:44
588
+ msgid "Watch Pretty Link Intro Video"
589
  msgstr ""
590
 
591
+ #: classes/views/prli-links/list.php:54
592
+ msgid "Back to Groups"
593
+ msgstr ""
594
+
595
+ #: classes/views/prli-links/list.php:65 classes/views/prli-links/list.php:234
596
+ msgid "Hits / Uniq"
597
+ msgstr ""
598
+
599
+ #: classes/views/prli-links/list.php:79
600
+ msgid "Bulk Edit"
601
+ msgstr ""
602
+
603
+ #: classes/views/prli-links/list.php:86
604
+ msgid "Basic Link Options"
605
+ msgstr ""
606
+
607
+ #: classes/views/prli-links/list.php:87
608
+ msgid "Redirect Type"
609
+ msgstr ""
610
+
611
+ #: classes/views/prli-links/list.php:93
612
+ msgid "Track"
613
+ msgstr ""
614
+
615
+ #: classes/views/prli-links/list.php:95
616
+ msgid "Nofollow"
617
+ msgstr ""
618
+
619
+ #: classes/views/prli-links/list.php:97
620
+ msgid "Forward Params"
621
+ msgstr ""
622
+
623
+ #: classes/views/prli-links/list.php:105
624
+ msgid "Update"
625
+ msgstr ""
626
+
627
+ #: classes/views/prli-links/list.php:105
628
+ msgid "Bulk Update"
629
+ msgstr ""
630
+
631
+ #: classes/views/prli-links/list.php:116
632
+ msgid "Watch this video to see how to get started!"
633
+ msgstr ""
634
+
635
+ #: classes/views/prli-links/list.php:116
636
+ msgid "Get More Video Tutorials like this one"
637
+ msgstr ""
638
+
639
+ #: classes/views/prli-links/list.php:144
640
+ msgid "Meta Refresh Redirection"
641
+ msgstr ""
642
+
643
+ #: classes/views/prli-links/list.php:147
644
+ msgid "Javascript Redirection"
645
+ msgstr ""
646
+
647
+ #: classes/views/prli-links/list.php:197
648
+ msgid "Tweet"
649
+ msgstr ""
650
+
651
+ #: classes/views/prli-links/list.php:198
652
+ msgid "Email"
653
+ msgstr ""
654
+
655
+ #: classes/views/prli-links/list.php:221
656
+ msgid "Target URL:"
657
+ msgstr ""
658
+
659
+ #: classes/views/prli-links/new.php:7
660
+ msgid "Add Link"
661
+ msgstr ""
662
+
663
+ #: classes/views/prli-options/form.php:14
664
+ msgid "WordPress Must be Configured:"
665
+ msgstr ""
666
+
667
+ #: classes/views/prli-options/form.php:14
668
+ msgid ""
669
+ "Pretty Link won't work until you select a Permalink Structure other than "
670
+ "'Default'"
671
+ msgstr ""
672
+
673
+ #: classes/views/prli-options/form.php:19
674
+ #: pro/classes/views/prlipro-options/form.php:9
675
+ msgid "Pretty Link Admin"
676
+ msgstr ""
677
+
678
+ #: classes/views/prli-options/form.php:25
679
+ msgid "Link Options"
680
+ msgstr ""
681
+
682
+ #: classes/views/prli-options/form.php:28
683
+ msgid "Link Defaults:"
684
+ msgstr ""
685
+
686
+ #: classes/views/prli-options/form.php:29
687
+ msgid "Track Link"
688
+ msgstr ""
689
+
690
+ #: classes/views/prli-options/form.php:30
691
+ msgid "Default all new links to be tracked."
692
+ msgstr ""
693
+
694
+ #: classes/views/prli-options/form.php:33
695
+ msgid "Add <code>nofollow</code> to Link"
696
+ msgstr ""
697
+
698
+ #: classes/views/prli-options/form.php:34
699
+ msgid "Add the <code>nofollow</code> attribute by default to new links."
700
+ msgstr ""
701
+
702
+ #: classes/views/prli-options/form.php:37
703
+ msgid "Use a prefix from your Permalink structure in your Pretty Links"
704
+ msgstr ""
705
+
706
+ #: classes/views/prli-options/form.php:38
707
+ msgid ""
708
+ "This option should only be checked if you have elements in your permalink "
709
+ "structure that must be present in any link on your site. For example, some "
710
+ "WordPress installs don't have the benefit of full rewrite capabilities and "
711
+ "in this case you'd need an index.php included in each link (http://example."
712
+ "com/index.php/mycoolslug instead of http://example.com/mycoolslug). If this "
713
+ "is the case for you then check this option but the vast majority of users "
714
+ "will want to keep this unchecked."
715
+ msgstr ""
716
+
717
+ #: classes/views/prli-options/form.php:41
718
+ msgid "Default Link Redirection Type:"
719
+ msgstr ""
720
+
721
+ #: classes/views/prli-options/form.php:43
722
+ msgid "Temporary (307)"
723
+ msgstr ""
724
+
725
+ #: classes/views/prli-options/form.php:44
726
+ msgid "Permanent (301)"
727
+ msgstr ""
728
+
729
+ #: classes/views/prli-options/form.php:47
730
+ msgid ""
731
+ "Select the type of redirection you want your newly created links to have."
732
+ msgstr ""
733
+
734
+ #: classes/views/prli-options/form.php:52
735
+ msgid "WordPress Redirection Action:"
736
+ msgstr ""
737
+
738
+ #: classes/views/prli-options/form.php:54
739
+ msgid "WordPress 'init' Action"
740
+ msgstr ""
741
+
742
+ #: classes/views/prli-options/form.php:55
743
+ msgid "WordPress 'template_redirect' Action"
744
+ msgstr ""
745
+
746
+ #: classes/views/prli-options/form.php:57
747
+ msgid ""
748
+ "Defaults to use WordPress' 'init' action. Init works more reliably for many "
749
+ "users but the better option for performance and compatibility is to use the "
750
+ "'template_redirect' action."
751
+ msgstr ""
752
+
753
+ #: classes/views/prli-options/form.php:61
754
+ msgid "Reporting Options"
755
+ msgstr ""
756
+
757
+ #: classes/views/prli-options/form.php:64
758
+ msgid "Excluded IP Addresses:"
759
+ msgstr ""
760
+
761
+ #: classes/views/prli-options/form.php:67
762
+ msgid ""
763
+ "Enter IP Addresses or IP Ranges you want to exclude from your Hit data and "
764
+ "Stats. Each IP Address should be separated by commas. Example: "
765
+ "<code>192.168.0.1, 192.168.2.1, 192.168.3.4 or 192.168.*.*</code>"
766
+ msgstr ""
767
+
768
+ #: classes/views/prli-options/form.php:68
769
+ msgid "Your Current IP Address is"
770
+ msgstr ""
771
+
772
+ #: classes/views/prli-options/form.php:73
773
+ msgid "Filter Robots"
774
+ msgstr ""
775
+
776
+ #: classes/views/prli-options/form.php:74
777
+ msgid ""
778
+ "Filter known Robots and unidentifiable browser clients from your hit data, "
779
+ "stats and reports. <code>IMPORTANT: Any robot hits recorded with any version "
780
+ "of Pretty Link before 1.4.22 won't be filtered by this setting.</code>"
781
+ msgstr ""
782
+
783
+ #: classes/views/prli-options/form.php:77
784
+ msgid "Whitelist IP Addresses:"
785
+ msgstr ""
786
+
787
+ #: classes/views/prli-options/form.php:80
788
+ msgid ""
789
+ "Enter IP Addresses or IP Ranges you want to always include in your Hit data "
790
+ "and Stats even if they are flagged as robots. Each IP Address should be "
791
+ "separated by commas. Example: <code>192.168.0.1, 192.168.2.1, 192.168.3.4 or "
792
+ "192.168.*.*</code>"
793
+ msgstr ""
794
+
795
+ #: classes/views/prli-options/form.php:88
796
+ msgid "Tracking Style:"
797
+ msgstr ""
798
+
799
+ #: classes/views/prli-options/form.php:88
800
+ msgid ""
801
+ "Note: Changing your tracking style can affect the accuracy of your existing "
802
+ "statistics."
803
+ msgstr ""
804
+
805
+ #: classes/views/prli-options/form.php:92
806
+ msgid "Normal Tracking"
807
+ msgstr ""
808
+
809
+ #: classes/views/prli-options/form.php:95
810
+ msgid "Extended Tracking (more stats / slower performance)"
811
+ msgstr ""
812
+
813
+ #: classes/views/prli-options/form.php:98
814
+ msgid "Simple Click Count Tracking (less stats / faster performance)"
815
+ msgstr ""
816
+
817
+ #: classes/views/prli-options/form.php:107
818
+ msgid "Update Options"
819
+ msgstr ""
820
+
821
+ #: classes/views/prli-options/form.php:111
822
+ msgid "Trim Hit Database"
823
+ msgstr ""
824
+
825
+ #: classes/views/prli-options/form.php:114
826
+ msgid ""
827
+ "***WARNING*** If you click OK you will delete ALL of the Hit data that is "
828
+ "older than 30 days. Your data will be gone forever -- no way to retreive it. "
829
+ "Do not click OK unless you are absolutely sure you want to delete this data "
830
+ "because there is no going back!"
831
+ msgstr ""
832
+
833
+ #: classes/views/prli-options/form.php:114
834
+ msgid "Delete Hits older than 30 days"
835
+ msgstr ""
836
+
837
+ #: classes/views/prli-options/form.php:115
838
+ msgid "This will clear all hits in your database that are older than 30 days."
839
+ msgstr ""
840
+
841
+ #: classes/views/prli-options/form.php:117
842
+ msgid ""
843
+ "***WARNING*** If you click OK you will delete ALL of the Hit data that is "
844
+ "older than 90 days. Your data will be gone forever -- no way to retreive it. "
845
+ "Do not click OK unless you are absolutely sure you want to delete this data "
846
+ "because there is no going back!"
847
+ msgstr ""
848
+
849
+ #: classes/views/prli-options/form.php:117
850
+ msgid "Delete Hits older than 90 days"
851
+ msgstr ""
852
+
853
+ #: classes/views/prli-options/form.php:118
854
+ msgid "This will clear all hits in your database that are older than 90 days."
855
+ msgstr ""
856
+
857
+ #: classes/views/prli-options/form.php:121
858
+ msgid ""
859
+ "***WARNING*** If you click OK you will delete ALL of the Hit data in your "
860
+ "Database. Your data will be gone forever -- no way to retreive it. Do not "
861
+ "click OK unless you are absolutely sure you want to delete all your data "
862
+ "because there is no going back!"
863
+ msgstr ""
864
+
865
+ #: classes/views/prli-options/form.php:121
866
+ msgid "Delete All Hits"
867
+ msgstr ""
868
+
869
+ #: classes/views/prli-options/form.php:122
870
+ msgid ""
871
+ "Seriously, only click this link if you want to delete all the Hit data in "
872
+ "your database."
873
+ msgstr ""
874
+
875
+ #: classes/views/prli-options/pro-settings.php:7
876
+ msgid "Pro Account Information"
877
+ msgstr ""
878
+
879
+ #: classes/views/prli-options/pro-settings.php:9
880
+ msgid "Pretty Link Pro Account Information"
881
+ msgstr ""
882
+
883
+ #: classes/views/prli-options/pro-settings.php:11
884
+ #: pro/classes/views/prli-reports/list.php:28
885
+ #: pro/classes/views/prlipro-import-export/form.php:8
886
+ #: pro/classes/views/prlipro-options/form.php:9
887
+ msgid "User Manual"
888
+ msgstr ""
889
+
890
+ #: classes/views/prli-options/pro-settings.php:15
891
+ msgid "Pretty Link Pro is Installed"
892
+ msgstr ""
893
+
894
+ #: classes/views/prli-options/pro-settings.php:15
895
+ msgid ""
896
+ "Are you sure you want to Un-Install Pretty Link Pro? This will delete your "
897
+ "pro username & password from your local database, remove all the pro "
898
+ "software but will leave all your data intact incase you want to reinstall "
899
+ "sometime :) ..."
900
+ msgstr ""
901
+
902
+ #: classes/views/prli-options/pro-settings.php:15
903
+ msgid "Downgrade to Pretty Link Standard"
904
+ msgstr ""
905
+
906
+ #: classes/views/prli-options/pro-settings.php:15
907
+ msgid "Edit/Update Your Profile:"
908
+ msgstr ""
909
+
910
+ #: classes/views/prli-options/pro-settings.php:15
911
+ msgid ""
912
+ "Use your account username and password to log in to your Account and "
913
+ "Affiliate Control Panel"
914
+ msgstr ""
915
+
916
+ #: classes/views/prli-options/pro-settings.php:15
917
+ msgid "Account"
918
+ msgstr ""
919
+
920
+ #: classes/views/prli-options/pro-settings.php:15
921
+ msgid "Affiliate Control Panel"
922
+ msgstr ""
923
+
924
+ #: classes/views/prli-options/pro-settings.php:18
925
+ msgid "Ready to take your marketing efforts to the next level?"
926
+ msgstr ""
927
+
928
+ #: classes/views/prli-options/pro-settings.php:19 pro/prlipro-hooks.php:25
929
+ #: pro/prlipro-hooks.php:35
930
+ msgid "Pretty Link Pro"
931
+ msgstr ""
932
+
933
+ #: classes/views/prli-options/pro-settings.php:19
934
+ msgid ""
935
+ "will help you automate, share, test and get more clicks and conversions from "
936
+ "your Pretty Links!"
937
+ msgstr ""
938
+
939
+ #: classes/views/prli-options/pro-settings.php:19
940
+ msgid "Learn More"
941
+ msgstr ""
942
+
943
+ #: classes/views/prli-tools/bookmarklet.php:19
944
+ msgid "Here's your Pretty Link"
945
+ msgstr ""
946
+
947
+ #: classes/views/prli-tools/bookmarklet.php:61
948
+ msgid "here's your pretty link for:"
949
+ msgstr ""
950
+
951
+ #: classes/views/prli-tools/bookmarklet.php:63
952
+ #: pro/classes/views/prlipro-public/display.php:44
953
+ msgid "send this link to:"
954
+ msgstr ""
955
+
956
+ #: classes/views/prli-tools/bookmarklet.php:81
957
+ msgid "back"
958
+ msgstr ""
959
+
960
+ #: classes/views/prli-tools/form.php:17
961
+ msgid "Tools"
962
+ msgstr ""
963
+
964
+ #: classes/views/prli-tools/form.php:18
965
+ msgid "Bookmarklet:"
966
+ msgstr ""
967
+
968
+ #: classes/views/prli-tools/form.php:19 pro/pretty-link-pro.php:1493
969
+ msgid "Get PrettyLink"
970
+ msgstr ""
971
+
972
+ #: classes/views/prli-tools/form.php:20
973
+ msgid ""
974
+ "Just drag this \"Get PrettyLink\" link to your toolbar to install the "
975
+ "bookmarklet. As you browse the web, you can just click this bookmarklet to "
976
+ "create a pretty link from the current url you're looking at. <a href="
977
  "\"http://blairwilliams.com/pretty-link-bookmarklet/\">(more help)</a>"
978
  msgstr ""
979
 
980
+ #: classes/views/prli-tools/form.php:21
981
+ msgid "Show iPhone Bookmarklet Instructions"
982
+ msgstr ""
983
+
984
+ #: classes/views/prli-tools/form.php:22
985
+ msgid ""
986
+ "<strong>Note:</strong> iPhone users can install this bookmarklet in their "
987
+ "Safari to create Pretty Links with the following steps:"
988
+ msgstr ""
989
+
990
+ #: classes/views/prli-tools/form.php:24
991
+ msgid "Copy this text:"
992
+ msgstr ""
993
+
994
+ #: classes/views/prli-tools/form.php:25
995
+ msgid "Tap the + button at the bottom of the screen"
996
+ msgstr ""
997
+
998
+ #: classes/views/prli-tools/form.php:26
999
+ msgid ""
1000
+ "Choose \"Add Bookmark\", rename your bookmark to \"Get PrettyLink\" (or "
1001
+ "whatever you want) and then \"Save\""
1002
+ msgstr ""
1003
+
1004
+ #: classes/views/prli-tools/form.php:27
1005
+ msgid ""
1006
+ "Navigate through your Bookmarks folders until you find the new bookmark and "
1007
+ "click \"Edit\""
1008
+ msgstr ""
1009
+
1010
+ #: classes/views/prli-tools/form.php:28
1011
+ msgid "Delete all the text from the address"
1012
+ msgstr ""
1013
+
1014
+ #: classes/views/prli-tools/form.php:29
1015
+ msgid "Paste the text you copied in Step 1 into the address field"
1016
+ msgstr ""
1017
+
1018
+ #: classes/views/prli-tools/form.php:30
1019
+ msgid "To save the changes hit \"Bookmarks\" and <strong>you're done!"
1020
+ msgstr ""
1021
+
1022
+ #: classes/views/prli-tools/form.php:30
1023
+ msgid ""
1024
+ "Now when you find a page you want to save off as a Pretty Link, just click "
1025
+ "the \"Bookmarks\" icon at the bottom of the screen and select your link."
1026
+ msgstr ""
1027
+
1028
+ #: classes/views/shared/link-table-nav.php:10
1029
+ #: classes/views/shared/link-table-nav.php:110
1030
+ #: classes/views/shared/table-nav.php:8
1031
+ msgid "Displaying"
1032
+ msgstr ""
1033
+
1034
+ #: classes/views/shared/nav.php:8
1035
+ msgid "Pro Manual"
1036
+ msgstr ""
1037
+
1038
+ #: classes/views/shared/nav.php:10
1039
+ msgid "Upgrade to Pro"
1040
+ msgstr ""
1041
+
1042
+ #: classes/views/shared/nav.php:12
1043
+ msgid "Connect"
1044
+ msgstr ""
1045
+
1046
+ #: classes/views/shared/nav.php:12
1047
+ msgid "Get Help"
1048
+ msgstr ""
1049
+
1050
+ #: classes/views/shared/nav.php:12
1051
+ msgid "Tutorials"
1052
+ msgstr ""
1053
+
1054
+ #: classes/views/shared/nav.php:12
1055
+ msgid "One on One"
1056
+ msgstr ""
1057
+
1058
+ #: prli-api.php:99 prli-api.php:159
1059
+ msgid "An error prevented your Pretty Link from being created"
1060
+ msgstr ""
1061
+
1062
+ #: prli-api.php:124
1063
+ msgid "Pretty Link ID must be set for successful update."
1064
+ msgstr ""
1065
+
1066
+ #: prli-clicks.php:52
1067
+ msgid "IP Address: "
1068
+ msgstr ""
1069
+
1070
+ #: prli-clicks.php:58
1071
+ msgid "Visitor: "
1072
+ msgstr ""
1073
+
1074
+ #: prli-clicks.php:65
1075
+ msgid "Group: "
1076
+ msgstr ""
1077
+
1078
+ #: prli-clicks.php:71
1079
+ msgid "All Links"
1080
+ msgstr ""
1081
+
1082
+ #: prli-groups.php:12
1083
+ msgid "Create a group and use it to organize your Pretty Links."
1084
+ msgstr ""
1085
+
1086
+ #: prli-groups.php:32
1087
+ msgid "Your Pretty Link Group was Successfully Created"
1088
+ msgstr ""
1089
+
1090
+ #: prli-groups.php:56
1091
+ msgid "Your Pretty Link Group was Successfully Updated"
1092
+ msgstr ""
1093
+
1094
+ #: prli-groups.php:63
1095
+ msgid "Your Pretty Link Group was Successfully Deleted"
1096
+ msgstr ""
1097
+
1098
+ #: prli-main.php:20
1099
+ msgid "Pretty Link | Manage Pretty Links"
1100
+ msgstr ""
1101
+
1102
+ #: prli-main.php:21
1103
+ msgid "Pretty Link | Add New Link"
1104
+ msgstr ""
1105
+
1106
+ #: prli-main.php:21
1107
+ msgid "Add New Link"
1108
+ msgstr ""
1109
+
1110
+ #: prli-main.php:161
1111
+ msgid "Pretty Link Quick Add"
1112
+ msgstr ""
1113
+
1114
+ #: prli-main.php:357 prli-main.php:376
1115
+ msgid ""
1116
+ "Your Pretty Link Pro installation isn't quite complete yet.<br/>"
1117
+ "%1$sAutomatically Upgrade to Enable Pretty Link Pro%2$s"
1118
+ msgstr ""
1119
+
1120
+ #: prli-options.php:61 pro/prlipro-options.php:195
1121
+ msgid "Options saved."
1122
+ msgstr ""
1123
+
1124
+ #: prli-options.php:68
1125
+ msgid "Hit Database was Cleared."
1126
+ msgstr ""
1127
+
1128
+ #: prli-options.php:77
1129
+ msgid "No hits older than 30 days were found, so nothing was deleted"
1130
+ msgstr ""
1131
+
1132
+ #: prli-options.php:86
1133
+ msgid "No hits older than 90 days were found, so nothing was deleted"
1134
+ msgstr ""
1135
+
1136
+ #: prli-pro-settings.php:25
1137
+ msgid ""
1138
+ "You're almost done!<br/>%1$sFinish your Re-Install of Pretty Link Pro%2$s"
1139
+ msgstr ""
1140
+
1141
+ #: prli-pro-settings.php:33
1142
+ msgid "Pretty Link Pro Successfully Uninstalled."
1143
+ msgstr ""
1144
+
1145
+ #: prli-xmlrpc.php:22 prli-xmlrpc.php:85 prli-xmlrpc.php:133
1146
+ #: prli-xmlrpc.php:189 prli-xmlrpc.php:219 prli-xmlrpc.php:248
1147
+ #: prli-xmlrpc.php:282 prli-xmlrpc.php:315
1148
+ msgid "Sorry, XML-RPC Not enabled for this website"
1149
+ msgstr ""
1150
+
1151
+ #: prli-xmlrpc.php:25 prli-xmlrpc.php:88 prli-xmlrpc.php:136
1152
+ #: prli-xmlrpc.php:192 prli-xmlrpc.php:222 prli-xmlrpc.php:251
1153
+ #: prli-xmlrpc.php:285 prli-xmlrpc.php:318
1154
+ msgid "Sorry, Login failed"
1155
+ msgstr ""
1156
+
1157
+ #: prli-xmlrpc.php:31 prli-xmlrpc.php:94 prli-xmlrpc.php:142
1158
+ #: prli-xmlrpc.php:198 prli-xmlrpc.php:228 prli-xmlrpc.php:257
1159
+ #: prli-xmlrpc.php:291 prli-xmlrpc.php:324
1160
+ msgid "Sorry, you must be an administrator to access this resource"
1161
+ msgstr ""
1162
+
1163
+ #: prli-xmlrpc.php:98
1164
+ msgid "You must provide a target URL"
1165
+ msgstr ""
1166
+
1167
+ #: prli-xmlrpc.php:124 prli-xmlrpc.php:173
1168
+ msgid "There was an error creating your Pretty Link"
1169
+ msgstr ""
1170
+
1171
+ #: prli-xmlrpc.php:146
1172
+ msgid "You must provide the id of the link you want to update"
1173
+ msgstr ""
1174
+
1175
+ #: prli-xmlrpc.php:203
1176
+ msgid "There was an error fetching the Pretty Link Groups"
1177
+ msgstr ""
1178
+
1179
+ #: prli-xmlrpc.php:233
1180
+ msgid "There was an error fetching the Pretty Links"
1181
+ msgstr ""
1182
+
1183
+ #: prli-xmlrpc.php:260
1184
+ msgid "Sorry, you must provide a slug to lookup"
1185
+ msgstr ""
1186
+
1187
+ #: prli-xmlrpc.php:267 prli-xmlrpc.php:301
1188
+ msgid "There was an error fetching your Pretty Link"
1189
+ msgstr ""
1190
+
1191
+ #: prli-xmlrpc.php:294 prli-xmlrpc.php:327
1192
+ msgid "Sorry, you must provide an id to lookup"
1193
+ msgstr ""
1194
+
1195
+ #: prli-xmlrpc.php:334
1196
+ msgid "There was an error fetching your Pretty Link URL"
1197
+ msgstr ""
1198
+
1199
+ #: pro/classes/models/PrliProPostOptions.php:55
1200
+ msgid "This pretty link slug is already taken, please choose a different one"
1201
+ msgstr ""
1202
+
1203
+ #: pro/classes/models/PrliProUtils.php:272
1204
+ msgid "Google Analyticator"
1205
+ msgstr ""
1206
+
1207
+ #: pro/classes/models/PrliProUtils.php:274
1208
+ msgid "Google Analytics for WordPress"
1209
+ msgstr ""
1210
+
1211
+ #: pro/classes/models/PrliProUtils.php:276
1212
+ #: pro/classes/views/prli-links/bulk-edit.php:12
1213
+ msgid "Google Analytics"
1214
+ msgstr ""
1215
+
1216
+ #: pro/classes/models/PrliReport.php:166
1217
+ msgid "Report must have a name."
1218
+ msgstr ""
1219
+
1220
+ #: pro/classes/models/PrliReport.php:169
1221
+ msgid "At least one link must be selected for analysis."
1222
+ msgstr ""
1223
+
1224
+ #: pro/classes/models/PrliReport.php:282
1225
+ msgid "Pretty Link Pro: Hits for"
1226
+ msgstr ""
1227
+
1228
+ #: pro/classes/models/PrliReport.php:282
1229
+ msgid "report between"
1230
+ msgstr ""
1231
+
1232
+ #: pro/classes/models/PrliReport.php:449
1233
+ msgid "Pretty Link Pro: Split Report for"
1234
+ msgstr ""
1235
+
1236
+ #: pro/classes/views/prli-links/bulk-edit.php:6
1237
+ msgid "Advanced Link Options"
1238
+ msgstr ""
1239
+
1240
+ #: pro/classes/views/prli-links/bulk-edit.php:7
1241
+ msgid "Double Redirect"
1242
+ msgstr ""
1243
+
1244
+ #: pro/classes/views/prli-links/cloaked-redirect.php:20
1245
+ msgid "Your browser does not support frames."
1246
+ msgstr ""
1247
+
1248
+ #: pro/classes/views/prli-links/form.php:7
1249
+ msgid "Double Redirect:"
1250
+ msgstr ""
1251
+
1252
+ #: pro/classes/views/prli-links/form.php:11
1253
+ msgid "Use a double redirect to erase all referrer information"
1254
+ msgstr ""
1255
+
1256
+ #: pro/classes/views/prli-links/form.php:18
1257
+ msgid "Keywords:"
1258
+ msgstr ""
1259
+
1260
+ #: pro/classes/views/prli-links/form.php:21
1261
+ msgid ""
1262
+ "Enter a comma separated list of keywords / keyword phrases that you'd like "
1263
+ "to replace with this link in your Posts &amp; Pages."
1264
+ msgstr ""
1265
+
1266
+ #: pro/classes/views/prli-links/form.php:24
1267
+ msgid "URL Replacements:"
1268
+ msgstr ""
1269
+
1270
+ #: pro/classes/views/prli-links/form.php:27
1271
+ msgid ""
1272
+ "Enter a comma separated list of the URLs that you'd like to replace with "
1273
+ "this Pretty Link in your Posts &amp; Pages. These must be formatted as URLs "
1274
+ "for example: <code>http://example.com</code> or <code>http://example.com?"
1275
+ "product_id=53</code>"
1276
+ msgstr ""
1277
+
1278
+ #: pro/classes/views/prli-links/form.php:32
1279
+ msgid "Target URL Rotations:"
1280
+ msgstr ""
1281
+
1282
+ #: pro/classes/views/prli-links/form.php:34
1283
+ msgid ""
1284
+ "Enter the Target URLs that you'd like to rotate through when this Pretty "
1285
+ "Link is Clicked. These must be formatted as URLs example: <code>http://"
1286
+ "example.com</code> or <code>http://example.com?product_id=53</code>"
1287
+ msgstr ""
1288
+
1289
+ #: pro/classes/views/prli-links/form.php:37
1290
+ #: pro/classes/views/prli-links/form.php:42
1291
+ msgid "weight:"
1292
+ msgstr ""
1293
+
1294
+ #: pro/classes/views/prli-links/form.php:50
1295
+ msgid "Split Test This Link"
1296
+ msgstr ""
1297
+
1298
+ #: pro/classes/views/prli-links/form.php:51
1299
+ msgid ""
1300
+ "This works best when you have multiple link rotation URLs entered -- that's "
1301
+ "the whole point of split testing ..."
1302
+ msgstr ""
1303
+
1304
+ #: pro/classes/views/prli-links/form.php:57
1305
+ msgid "Split Test Goal Link:"
1306
+ msgstr ""
1307
+
1308
+ #: pro/classes/views/prli-links/form.php:77
1309
+ msgid "This is the goal link for your split test."
1310
+ msgstr ""
1311
+
1312
+ #: pro/classes/views/prli-links/link-options.php:2
1313
+ msgid "Enable Google Analytics"
1314
+ msgstr ""
1315
+
1316
+ #: pro/classes/views/prli-links/link-options.php:6
1317
+ msgid "Generate Downloadable %sQR Codes%s for Pretty Links"
1318
+ msgstr ""
1319
+
1320
+ #: pro/classes/views/prli-links/link-options.php:7
1321
+ msgid ""
1322
+ "This will enable a link in your pretty link admin that will allow you to "
1323
+ "automatically download a %sQR Code%s for each individual Pretty Link."
1324
+ msgstr ""
1325
+
1326
+ #: pro/classes/views/prli-reports/custom-report.php:7
1327
+ msgid "Link Report"
1328
+ msgstr ""
1329
+
1330
+ #: pro/classes/views/prli-reports/custom-report.php:8
1331
+ msgid "Report:"
1332
+ msgstr ""
1333
+
1334
+ #: pro/classes/views/prli-reports/custom-report.php:10
1335
+ msgid "For Goal Link:"
1336
+ msgstr ""
1337
+
1338
+ #: pro/classes/views/prli-reports/custom-report.php:12
1339
+ msgid "Back to Link Reports"
1340
+ msgstr ""
1341
+
1342
+ #: pro/classes/views/prli-reports/custom-report.php:30
1343
+ #: pro/classes/views/prli-reports/custom-report.php:63
1344
+ msgid "Link Name"
1345
+ msgstr ""
1346
+
1347
+ #: pro/classes/views/prli-reports/custom-report.php:32
1348
+ #: pro/classes/views/prli-reports/custom-report.php:65
1349
+ #: pro/classes/views/prli-reports/split-test-report.php:32
1350
+ #: pro/classes/views/prli-reports/split-test-report.php:65
1351
+ #: pro/pretty-link-pro.php:164
1352
+ msgid "Uniques"
1353
+ msgstr ""
1354
+
1355
+ #: pro/classes/views/prli-reports/custom-report.php:34
1356
+ #: pro/classes/views/prli-reports/custom-report.php:67
1357
+ #: pro/classes/views/prli-reports/split-test-report.php:34
1358
+ #: pro/classes/views/prli-reports/split-test-report.php:67
1359
+ msgid "Conversions"
1360
+ msgstr ""
1361
+
1362
+ #: pro/classes/views/prli-reports/custom-report.php:35
1363
+ #: pro/classes/views/prli-reports/custom-report.php:68
1364
+ #: pro/classes/views/prli-reports/split-test-report.php:35
1365
+ #: pro/classes/views/prli-reports/split-test-report.php:68
1366
+ msgid "Conv Rate"
1367
+ msgstr ""
1368
+
1369
+ #: pro/classes/views/prli-reports/edit.php:7
1370
+ msgid "Edit Link Report"
1371
+ msgstr ""
1372
+
1373
+ #: pro/classes/views/prli-reports/edit.php:22
1374
+ #: pro/classes/views/prli-reports/new.php:22
1375
+ msgid "This is how you'll identify your Report."
1376
+ msgstr ""
1377
+
1378
+ #: pro/classes/views/prli-reports/edit.php:28
1379
+ #: pro/classes/views/prli-reports/new.php:28
1380
+ msgid "Select Links to Analyze in this Report:"
1381
+ msgstr ""
1382
+
1383
+ #: pro/classes/views/prli-reports/edit.php:86
1384
+ #: pro/classes/views/prli-reports/new.php:86
1385
+ msgid "Select some links to be analyzed in this report."
1386
+ msgstr ""
1387
+
1388
+ #: pro/classes/views/prli-reports/edit.php:89
1389
+ #: pro/classes/views/prli-reports/new.php:89
1390
+ msgid "Select Your Goal Link (optional):"
1391
+ msgstr ""
1392
+
1393
+ #: pro/classes/views/prli-reports/edit.php:111
1394
+ #: pro/classes/views/prli-reports/new.php:111
1395
+ msgid ""
1396
+ "If you want to enable conversion tracking in this report then select a goal "
1397
+ "link."
1398
+ msgstr ""
1399
+
1400
+ #: pro/classes/views/prli-reports/list.php:7
1401
+ #: pro/classes/views/prli-reports/reports.php:10
1402
+ msgid "Link Reports"
1403
+ msgstr ""
1404
+
1405
+ #: pro/classes/views/prli-reports/list.php:28
1406
+ msgid "Add a Pretty Link Report"
1407
+ msgstr ""
1408
+
1409
+ #: pro/classes/views/prli-reports/list.php:38
1410
+ #: pro/classes/views/prli-reports/list.php:79
1411
+ msgid "Goal Link"
1412
+ msgstr ""
1413
+
1414
+ #: pro/classes/views/prli-reports/list.php:49
1415
+ msgid "No Pretty Link Reports were found"
1416
+ msgstr ""
1417
+
1418
+ #: pro/classes/views/prli-reports/list.php:65
1419
+ msgid "View"
1420
+ msgstr ""
1421
+
1422
+ #: pro/classes/views/prli-reports/new.php:7
1423
+ msgid "Add Link Report"
1424
+ msgstr ""
1425
+
1426
+ #: pro/classes/views/prli-reports/reports.php:7
1427
+ msgid "Reports"
1428
+ msgstr ""
1429
+
1430
+ #: pro/classes/views/prli-reports/split-test-report.php:7
1431
+ msgid "Link Split-Test Report"
1432
+ msgstr ""
1433
+
1434
+ #: pro/classes/views/prli-reports/split-test-report.php:8
1435
+ msgid "For Link:"
1436
+ msgstr ""
1437
+
1438
+ #: pro/classes/views/prli-reports/split-test-report.php:10
1439
+ msgid "Goal Link:"
1440
+ msgstr ""
1441
+
1442
+ #: pro/classes/views/prli-reports/split-test-report.php:30
1443
+ msgid "Link Rotation URL"
1444
+ msgstr ""
1445
+
1446
+ #: pro/classes/views/prli-reports/split-test-report.php:63
1447
+ msgid "Rotation URL"
1448
+ msgstr ""
1449
+
1450
+ #: pro/classes/views/prlipro-import-export/form.php:7
1451
+ msgid "Import / Export Links"
1452
+ msgstr ""
1453
+
1454
+ #: pro/classes/views/prlipro-import-export/form.php:9
1455
+ msgid "Export Pretty Links"
1456
+ msgstr ""
1457
+
1458
+ #: pro/classes/views/prlipro-import-export/form.php:10
1459
+ msgid "Export"
1460
+ msgstr ""
1461
+
1462
+ #: pro/classes/views/prlipro-import-export/form.php:11
1463
+ msgid "Export Links into a CSV File"
1464
+ msgstr ""
1465
+
1466
+ #: pro/classes/views/prlipro-import-export/form.php:13
1467
+ msgid "Import Pretty Links"
1468
+ msgstr ""
1469
+
1470
+ #: pro/classes/views/prlipro-import-export/form.php:18
1471
+ msgid "Choose a file to import:"
1472
+ msgstr ""
1473
+
1474
+ #: pro/classes/views/prlipro-import-export/form.php:19
1475
+ msgid "Select a file that has been formatted as a Pretty Link CSV import file."
1476
+ msgstr ""
1477
+
1478
+ #: pro/classes/views/prlipro-import-export/form.php:20
1479
+ msgid "Import File"
1480
+ msgstr ""
1481
+
1482
+ #: pro/classes/views/prlipro-import-export/form.php:23
1483
+ msgid ""
1484
+ "Note: There are two ways to import a file. 1) Importing to update existing "
1485
+ "links and 2) Importing to generate new links. When Importing to generate new "
1486
+ "links, you must delte the \"id\" column from the CSV before importing. If "
1487
+ "the \"id\" column is present, Pretty Link Pro will attempt to update "
1488
+ "existing links."
1489
+ msgstr ""
1490
+
1491
+ #: pro/classes/views/prlipro-import-export/import.php:7
1492
+ msgid "Import Results"
1493
+ msgstr ""
1494
+
1495
+ #: pro/classes/views/prlipro-import-export/import.php:8
1496
+ msgid "Total Rows:"
1497
+ msgstr ""
1498
+
1499
+ #: pro/classes/views/prlipro-import-export/import.php:10
1500
+ msgid "Pretty Links were Successfully Created"
1501
+ msgstr ""
1502
+
1503
+ #: pro/classes/views/prlipro-import-export/import.php:11
1504
+ msgid "Pretty Links were Successfully Updated"
1505
+ msgstr ""
1506
+
1507
+ #: pro/classes/views/prlipro-import-export/import.php:17
1508
+ msgid "Pretty Links were unable to be Created:"
1509
+ msgstr ""
1510
+
1511
+ #: pro/classes/views/prlipro-import-export/import.php:22
1512
+ msgid "Error(s) for Pretty Link with Slug:"
1513
+ msgstr ""
1514
+
1515
+ #: pro/classes/views/prlipro-import-export/import.php:39
1516
+ msgid "Pretty Links were unable to be Updated:"
1517
+ msgstr ""
1518
+
1519
+ #: pro/classes/views/prlipro-import-export/import.php:44
1520
+ msgid "Error(s) for Pretty Link with id:"
1521
+ msgstr ""
1522
+
1523
+ #: pro/classes/views/prlipro-import-export/import.php:59
1524
+ msgid "Back"
1525
+ msgstr ""
1526
+
1527
+ #: pro/classes/views/prlipro-options/form.php:15
1528
+ msgid "Keyword & URL Replacement Options"
1529
+ msgstr ""
1530
+
1531
+ #: pro/classes/views/prlipro-options/form.php:20
1532
+ msgid "Enable Keywords and URL Pretty Link Automatic Replacement"
1533
+ msgstr ""
1534
+
1535
+ #: pro/classes/views/prlipro-options/form.php:21
1536
+ msgid ""
1537
+ "If checked, this will enable you to automatically replace keywords and/or "
1538
+ "URLs on your blog with pretty links. You will specify the specific keywords "
1539
+ "and urls from your Pretty Link edit page."
1540
+ msgstr ""
1541
+
1542
+ #: pro/classes/views/prlipro-options/form.php:26
1543
+ msgid "Set Keyword Replacement Thresholds"
1544
+ msgstr ""
1545
+
1546
+ #: pro/classes/views/prlipro-options/form.php:27
1547
+ msgid ""
1548
+ "Do not want to have too many keyword replacements per page? Select to set "
1549
+ "some reasonable keyword replacement thresholds."
1550
+ msgstr ""
1551
+
1552
+ #: pro/classes/views/prlipro-options/form.php:33
1553
+ msgid "Maximum Keywords per Page*:"
1554
+ msgstr ""
1555
+
1556
+ #: pro/classes/views/prlipro-options/form.php:35
1557
+ msgid ""
1558
+ "Maximum number of unique keyword / keyphrases you can replace with Pretty "
1559
+ "Links per page."
1560
+ msgstr ""
1561
+
1562
+ #: pro/classes/views/prlipro-options/form.php:39
1563
+ msgid "Maximum Replacements per Keyword per Page*:"
1564
+ msgstr ""
1565
+
1566
+ #: pro/classes/views/prlipro-options/form.php:41
1567
+ msgid ""
1568
+ "Maximum number of Pretty Link replacements per Keyword / Keyphrase per page."
1569
+ msgstr ""
1570
+
1571
+ #: pro/classes/views/prlipro-options/form.php:48
1572
+ msgid "Open Keyword Pretty Links in a new Window"
1573
+ msgstr ""
1574
+
1575
+ #: pro/classes/views/prlipro-options/form.php:49
1576
+ msgid ""
1577
+ "Ensure that these keyword replacement links are opened in a separate window. "
1578
+ "<strong>Note:</strong> This does not apply to url replacements--only keyword "
1579
+ "replacements."
1580
+ msgstr ""
1581
+
1582
+ #: pro/classes/views/prlipro-options/form.php:52
1583
+ msgid "Add the html nofollow attribute to all Keyword Pretty Links"
1584
+ msgstr ""
1585
+
1586
+ #: pro/classes/views/prlipro-options/form.php:53
1587
+ msgid ""
1588
+ "This adds the html <code>NOFOLLOW</code> attribute to all keyword "
1589
+ "replacement links. <strong>Note:</strong> This does not apply to url "
1590
+ "replacements--only keyword replacements."
1591
  msgstr ""
1592
 
1593
+ #: pro/classes/views/prlipro-options/form.php:58
1594
+ msgid "Custom CSS Styling for your Keyword Replacements:"
1595
+ msgstr ""
1596
+
1597
+ #: pro/classes/views/prlipro-options/form.php:61
1598
  msgid ""
1599
+ "Add some custom formatting to your keyword pretty links. <strong>Note:</"
1600
+ "strong> This does not apply to url replacements--only keyword replacements."
1601
  msgstr ""
1602
 
1603
+ #: pro/classes/views/prlipro-options/form.php:65
1604
+ msgid "Custom Hover CSS Styling for your Keyword Replacements:"
1605
  msgstr ""
1606
 
1607
+ #: pro/classes/views/prlipro-options/form.php:68
1608
+ msgid ""
1609
+ "Add some custom formatting to the hover attribute of your keyword pretty "
1610
+ "links. <strong>Note:</strong> This does not apply to url replacements--only "
1611
+ "keyword replacements."
1612
  msgstr ""
1613
 
1614
+ #: pro/classes/views/prlipro-options/form.php:74
1615
+ msgid "Replace All non-Pretty Link URLs With Pretty Link URLs"
1616
  msgstr ""
1617
 
1618
+ #: pro/classes/views/prlipro-options/form.php:75
1619
+ msgid ""
1620
+ "This feature will take each url it finds and create or use an existing "
1621
+ "pretty link pointing to the url and replace it with the pretty link."
1622
  msgstr ""
1623
 
1624
+ #: pro/classes/views/prlipro-options/form.php:78
1625
+ msgid "Replace Keywords and URLs in Comments"
1626
  msgstr ""
1627
 
1628
+ #: pro/classes/views/prlipro-options/form.php:79
1629
+ msgid ""
1630
+ "This option will enable the keyword / URL replacement routine to run in "
1631
+ "Comments."
1632
  msgstr ""
1633
 
1634
+ #: pro/classes/views/prlipro-options/form.php:82
1635
+ msgid "Replace Keywords and URLs in Feeds"
1636
  msgstr ""
1637
 
1638
+ #: pro/classes/views/prlipro-options/form.php:83
1639
+ msgid ""
1640
+ "This option will enable the keyword / URL replacement routine to run in RSS "
1641
+ "Feeds.<br/><strong>Note:</strong> This option can slow the load speed of "
1642
+ "your RSS feed -- unless used in conjunction with a caching plugin like W3 "
1643
+ "Total Cache or WP Super Cache.<br/><strong>Note #2</strong> This option will "
1644
+ "only work if you have \"Full Text\" selected in your General WordPress "
1645
+ "Reading settings.<br/><strong>Note #3:</strong> If this option is used along "
1646
+ "with \"Replace Keywords and URLs in Comments\" then your post comment feeds "
1647
+ "will have keywords replaced in them as well."
1648
  msgstr ""
1649
 
1650
+ #: pro/classes/views/prlipro-options/form.php:93
1651
+ msgid "Page and Post Options"
1652
  msgstr ""
1653
 
1654
+ #: pro/classes/views/prlipro-options/form.php:95
1655
+ msgid "Auto Create Pretty Links and Post to Twitter:"
1656
  msgstr ""
1657
 
1658
+ #: pro/classes/views/prlipro-options/form.php:99
1659
+ msgid "Create Pretty Links for Posts"
1660
  msgstr ""
1661
 
1662
+ #: pro/classes/views/prlipro-options/form.php:100
1663
+ msgid "Automatically Create a Pretty Link for each of your published Posts"
1664
  msgstr ""
1665
 
1666
+ #: pro/classes/views/prlipro-options/form.php:114
1667
+ msgid "Group that Post Pretty Links will be automatically added to."
1668
  msgstr ""
1669
 
1670
+ #: pro/classes/views/prlipro-options/form.php:117
1671
+ msgid "Show Tweet Badge on Posts"
1672
  msgstr ""
1673
 
1674
+ #: pro/classes/views/prlipro-options/form.php:120
1675
+ msgid "Show Twitter Comments for Posts"
1676
  msgstr ""
1677
 
1678
+ #: pro/classes/views/prlipro-options/form.php:123
1679
+ msgid "Show Social Network Button Bar on Posts"
1680
+ msgstr ""
1681
+
1682
+ #: pro/classes/views/prlipro-options/form.php:126
1683
+ msgid "Automatically post to Twitter when a Post is published"
1684
+ msgstr ""
1685
+
1686
+ #: pro/classes/views/prlipro-options/form.php:132
1687
+ msgid "Create Pretty Links for Pages"
1688
+ msgstr ""
1689
+
1690
+ #: pro/classes/views/prlipro-options/form.php:133
1691
+ msgid "Automatically Create a Pretty Link for each of your published Pages"
1692
+ msgstr ""
1693
+
1694
+ #: pro/classes/views/prlipro-options/form.php:147
1695
+ msgid "Group that Page Pretty Links will be automatically added to."
1696
+ msgstr ""
1697
+
1698
+ #: pro/classes/views/prlipro-options/form.php:150
1699
+ msgid "Show Tweet Badge on Pages"
1700
+ msgstr ""
1701
+
1702
+ #: pro/classes/views/prlipro-options/form.php:153
1703
+ msgid "Show Twitter Comments for Pages"
1704
+ msgstr ""
1705
+
1706
+ #: pro/classes/views/prlipro-options/form.php:156
1707
+ msgid "Show Social Network Button Bar on Pages"
1708
+ msgstr ""
1709
+
1710
+ #: pro/classes/views/prlipro-options/form.php:159
1711
+ msgid "Automatically post to Twitter when a Page is published"
1712
+ msgstr ""
1713
+
1714
+ #: pro/classes/views/prlipro-options/form.php:167
1715
+ msgid "Twitter Options"
1716
+ msgstr ""
1717
+
1718
+ #: pro/classes/views/prlipro-options/form.php:170
1719
+ msgid "Authenticated Twitter Accounts:"
1720
+ msgstr ""
1721
+
1722
+ #: pro/classes/views/prlipro-options/form.php:186
1723
+ msgid "Twitter Account"
1724
+ msgstr ""
1725
+
1726
+ #: pro/classes/views/prlipro-options/form.php:197
1727
  msgid ""
1728
+ "To add multiple twitter accounts you must make sure you are logged out of "
1729
+ "the previous twitter account before adding another (<a href=\"http://twitter."
1730
+ "com\" target=\"_blank\">Logout of Twitter Here</a>)."
1731
  msgstr ""
1732
 
1733
+ #: pro/classes/views/prlipro-options/form.php:200
1734
+ msgid "Tweet Badge Placement:"
1735
+ msgstr ""
1736
+
1737
+ #: pro/classes/views/prlipro-options/form.php:200
1738
  msgid ""
1739
+ "This determines where your Tweet Badges should appear in relation to content "
1740
+ "on Pages and/or Posts. <code>Note:</code> If you want your badges to appear "
1741
+ "then you must enable them by selecting Create Pretty Links for Posts/Pages "
1742
+ "and then selecting Show Tweet Badge on Posts/Pages in the options above."
1743
  msgstr ""
1744
 
1745
+ #: pro/classes/views/prlipro-options/form.php:204
1746
+ #: pro/classes/views/prlipro-options/form.php:353
1747
+ msgid "Top"
1748
  msgstr ""
1749
 
1750
+ #: pro/classes/views/prlipro-options/form.php:207
1751
+ msgid "Top Left with Text Wrap"
 
1752
  msgstr ""
1753
 
1754
+ #: pro/classes/views/prlipro-options/form.php:210
1755
+ msgid "Top Right with Text Wrap"
 
 
1756
  msgstr ""
1757
 
1758
+ #: pro/classes/views/prlipro-options/form.php:213
1759
+ #: pro/classes/views/prlipro-options/form.php:356
1760
+ msgid "Bottom"
 
1761
  msgstr ""
1762
 
1763
+ #: pro/classes/views/prlipro-options/form.php:217
1764
+ msgid ""
1765
+ "If you select none, you can still show your Twitter badges by manually "
1766
+ "adding the <code>[tweetbadge]</code> shortcode to your blog posts or "
1767
+ "<code>&lt;?php the_tweetbadge(); ?&gt;</code> template tag to your WordPress "
1768
+ "Theme."
1769
  msgstr ""
1770
 
1771
+ #: pro/classes/views/prlipro-options/form.php:222
1772
+ msgid "Display Twitter Badge in Feed:"
1773
  msgstr ""
1774
 
1775
+ #: pro/classes/views/prlipro-options/form.php:224
1776
+ msgid "Show Twitter Badge in your RSS Feed"
1777
  msgstr ""
1778
 
1779
+ #: pro/classes/views/prlipro-options/form.php:227
1780
+ msgid "Twitter Comments Display Options:"
1781
  msgstr ""
1782
 
1783
+ #: pro/classes/views/prlipro-options/form.php:231
1784
+ msgid "Twitter Comments Headline:"
1785
  msgstr ""
1786
 
1787
+ #: pro/classes/views/prlipro-options/form.php:234
1788
+ msgid ""
1789
+ "This is what will display above the Twitter Comments Box if it is enabled in "
1790
+ "Page and Post Options."
1791
  msgstr ""
1792
 
1793
+ #: pro/classes/views/prlipro-options/form.php:238
1794
+ msgid "Twitter Comments Height:"
1795
  msgstr ""
1796
 
1797
+ #: pro/classes/views/prlipro-options/form.php:241
1798
+ msgid ""
1799
+ "This is the height (in pixels) of the Twitter Comments Box if it is enabled "
1800
+ "in Page and Post Options. If it is left blank, there will be no limit to the "
1801
+ "height."
1802
  msgstr ""
1803
 
1804
+ #: pro/classes/views/prlipro-options/form.php:247
1805
+ msgid "Main Tweet User"
1806
  msgstr ""
1807
 
1808
+ #: pro/classes/views/prlipro-options/form.php:251
1809
+ msgid "Main Tweet User:"
1810
  msgstr ""
1811
 
1812
+ #: pro/classes/views/prlipro-options/form.php:254
1813
+ msgid ""
1814
+ "Modify this to determine what twitter user to send Tweet Button tweets from."
1815
  msgstr ""
1816
 
1817
+ #: pro/classes/views/prlipro-options/form.php:260
1818
+ #: pro/classes/views/prlipro-options/form.php:264
1819
+ msgid "Tweet Hash Tags:"
1820
+ msgstr ""
1821
+
1822
+ #: pro/classes/views/prlipro-options/form.php:267
1823
+ msgid ""
1824
+ "Modify this to customize your hash tag for your auto-tweets and re-tweets."
1825
+ msgstr ""
1826
+
1827
+ #: pro/classes/views/prlipro-options/form.php:274
1828
+ msgid "Social Network Options"
1829
+ msgstr ""
1830
+
1831
+ #: pro/classes/views/prlipro-options/form.php:276
1832
+ msgid ""
1833
+ "Select which buttons you want to be visible on the Social Network Button "
1834
+ "Bar. <code>Note:</code> In order for the Social Network Button Bar to be "
1835
+ "visible on Pages and or Posts, you must first enable it in the \"Page &amp; "
1836
+ "Post Options\" section above."
1837
+ msgstr ""
1838
+
1839
+ #: pro/classes/views/prlipro-options/form.php:349
1840
+ msgid "Social Network Button Bar Placement:"
1841
+ msgstr ""
1842
+
1843
+ #: pro/classes/views/prlipro-options/form.php:349
1844
+ msgid ""
1845
+ "This determines where your Social Network Button Bar should appear in "
1846
+ "relation to content on Pages and/or Posts. <code>Note:</code> If you want "
1847
+ "this bar to appear then you must enable it in the \"Page and Post Options\" "
1848
+ "above."
1849
+ msgstr ""
1850
+
1851
+ #: pro/classes/views/prlipro-options/form.php:359
1852
+ msgid "Top and Bottom"
1853
+ msgstr ""
1854
+
1855
+ #: pro/classes/views/prlipro-options/form.php:364
1856
+ msgid ""
1857
+ "If you select none, you can still show your Social Network Buttons by "
1858
+ "manually adding the <code>[social_buttons_bar]</code> shortcode to your blog "
1859
+ "posts or <code>&lt;?php the_social_buttons_bar(); ?&gt;</code> template tag "
1860
+ "to your WordPress Theme."
1861
+ msgstr ""
1862
+
1863
+ #: pro/classes/views/prlipro-options/form.php:368
1864
+ msgid "Social Buttons Display Spacing:"
1865
+ msgstr ""
1866
+
1867
+ #: pro/classes/views/prlipro-options/form.php:370
1868
+ msgid ""
1869
+ "Determines the spacing (in pixels) between the buttons on the social buttons "
1870
+ "bar."
1871
+ msgstr ""
1872
+
1873
+ #: pro/classes/views/prlipro-options/form.php:376
1874
+ msgid "Display Social Buttons in Feed:"
1875
+ msgstr ""
1876
+
1877
+ #: pro/classes/views/prlipro-options/form.php:378
1878
+ msgid "Show Social Buttons in your RSS Feed"
1879
+ msgstr ""
1880
+
1881
+ #: pro/classes/views/prlipro-options/form.php:382
1882
+ msgid "Public Link Creation Options"
1883
+ msgstr ""
1884
+
1885
+ #: pro/classes/views/prlipro-options/form.php:384
1886
+ msgid "Customize Public Link Creation"
1887
+ msgstr ""
1888
+
1889
+ #: pro/classes/views/prlipro-options/form.php:384
1890
+ #: pro/classes/views/prlipro-options/form.php:402 pro/pretty-link-pro.php:189
1891
+ msgid "(help)"
1892
+ msgstr ""
1893
+
1894
+ #: pro/classes/views/prlipro-options/form.php:386
1895
+ msgid ""
1896
+ "Allow Public Link Creation on this website\n"
1897
+ " <br/><span class=\"description\">This option will give you the ability "
1898
+ "to turn your website into a link shortening service for your users. Once "
1899
+ "selected, you can enable the Pretty Link Pro Sidebar Widget or just display "
1900
+ "the link creation form with the <code>[prli_create_form]</code> shortcode in "
1901
+ "any post or page on your website."
1902
+ msgstr ""
1903
+
1904
+ #: pro/classes/views/prlipro-options/form.php:389
1905
+ msgid ""
1906
+ "Use Public Link Display Page\n"
1907
+ " <br/><span class=\"description\">When a link is created using the "
1908
+ "public form, the user is typically redirected to a simple page displaying "
1909
+ "their new pretty link. But, you can specify a page that you want them to be "
1910
+ "redirected to on your website, using your branding instead by selecting this "
1911
+ "box and entering the url of the page you want them to go to."
1912
+ msgstr ""
1913
+
1914
+ #: pro/classes/views/prlipro-options/form.php:392
1915
+ msgid "Public Pretty Link Creation Display URL:"
1916
+ msgstr ""
1917
+
1918
+ #: pro/classes/views/prlipro-options/form.php:393
1919
+ msgid ""
1920
+ "To set this up, create a new page on your WordPress site and make sure the "
1921
+ "<code>[prli_create_display]</code> appears somewhere on this page -- "
1922
+ "otherwise the link will never get created. Once this page is created, just "
1923
+ "enter the full URL to it here. Make sure this URL does npt end with a slash "
1924
+ "(/)."
1925
+ msgstr ""
1926
+
1927
+ #: pro/classes/views/prlipro-options/form.php:400
1928
+ msgid "Global Options"
1929
+ msgstr ""
1930
+
1931
+ #: pro/classes/views/prlipro-options/form.php:402
1932
+ msgid "Customize your Pretty Links Base URL"
1933
+ msgstr ""
1934
+
1935
+ #: pro/classes/views/prlipro-options/form.php:404
1936
+ msgid ""
1937
+ "Use an alternate Base Url for your Pretty Links\n"
1938
+ " <br/><span class=\"description\">You must have another valid domain name "
1939
+ "pointing to this WordPress install before you enable this option. If you are "
1940
+ "using this option to just get rid of the www in the beginning of your url "
1941
+ "that is fine -- just make sure your domain works without the www before "
1942
+ "enabling this option."
1943
+ msgstr ""
1944
+
1945
+ #: pro/classes/views/prlipro-options/form.php:407
1946
+ msgid "Pretty Link Base URL:"
1947
+ msgstr ""
1948
+
1949
+ #: pro/classes/views/prlipro-options/form.php:408
1950
+ msgid ""
1951
+ "Enter a valid base url that points at this WordPress install. Make sure this "
1952
+ "URL does not end with a slash (/)."
1953
+ msgstr ""
1954
+
1955
+ #: pro/classes/views/prlipro-options/form.php:411
1956
+ msgid "Set Minimum Role Required To Access Pretty Link"
1957
+ msgstr ""
1958
+
1959
+ #: pro/classes/views/prlipro-options/form.php:414
1960
+ msgid "Administrator"
1961
+ msgstr ""
1962
+
1963
+ #: pro/classes/views/prlipro-options/form.php:415
1964
+ msgid "Editor"
1965
+ msgstr ""
1966
+
1967
+ #: pro/classes/views/prlipro-options/form.php:416
1968
+ msgid "Author"
1969
+ msgstr ""
1970
+
1971
+ #: pro/classes/views/prlipro-options/form.php:417
1972
+ msgid "Contributor"
1973
+ msgstr ""
1974
+
1975
+ #: pro/classes/views/prlipro-options/form.php:418
1976
+ msgid "Subscriber"
1977
+ msgstr ""
1978
+
1979
+ #: pro/classes/views/prlipro-options/head.php:237
1980
+ msgid "Twitter Username"
1981
+ msgstr ""
1982
+
1983
+ #: pro/classes/views/prlipro-options/head.php:237
1984
+ msgid "Password:"
1985
+ msgstr ""
1986
+
1987
+ #: pro/classes/views/prlipro-public/display.php:11
1988
+ msgid "Here is your Pretty Link"
1989
+ msgstr ""
1990
+
1991
+ #: pro/classes/views/prlipro-public/display.php:42
1992
+ msgid "here is your pretty link for:"
1993
+ msgstr ""
1994
+
1995
+ #: pro/classes/views/prlipro-public/display.php:46
1996
+ msgid "home"
1997
+ msgstr ""
1998
+
1999
+ #: pro/pretty-link-pro.php:102
2000
+ msgid "Hide the Twitter Badge on this post."
2001
+ msgstr ""
2002
+
2003
+ #: pro/pretty-link-pro.php:111
2004
+ msgid "Hide Social Buttons on this post."
2005
+ msgstr ""
2006
+
2007
+ #: pro/pretty-link-pro.php:120
2008
+ msgid "Hide Twitter Comments on this post."
2009
+ msgstr ""
2010
+
2011
+ #: pro/pretty-link-pro.php:128
2012
+ msgid "Disable Keyword Replacements on this post."
2013
+ msgstr ""
2014
+
2015
+ #: pro/pretty-link-pro.php:148
2016
+ msgid "A Pretty Link will be created on Publish"
2017
+ msgstr ""
2018
+
2019
+ #: pro/pretty-link-pro.php:166
2020
+ msgid "edit"
2021
+ msgstr ""
2022
+
2023
+ #: pro/pretty-link-pro.php:166
2024
+ msgid "Visit Pretty Link:"
2025
+ msgstr ""
2026
+
2027
+ #: pro/pretty-link-pro.php:166
2028
+ msgid "in a New Window"
2029
+ msgstr ""
2030
+
2031
+ #: pro/pretty-link-pro.php:166
2032
+ msgid "visit"
2033
+ msgstr ""
2034
+
2035
+ #: pro/pretty-link-pro.php:180
2036
+ msgid "Has already been tweeted"
2037
+ msgstr ""
2038
+
2039
+ #: pro/pretty-link-pro.php:182
2040
+ msgid "Hasn't been Tweeted yet"
2041
+ msgstr ""
2042
+
2043
+ #: pro/pretty-link-pro.php:187
2044
+ msgid "Tweet It"
2045
+ msgstr ""
2046
+
2047
+ #: pro/pretty-link-pro.php:189
2048
+ msgid "Twitter Message Format:"
2049
+ msgstr ""
2050
+
2051
+ #: pro/pretty-link-pro.php:191
2052
+ msgid "Post to Twitter"
2053
+ msgstr ""
2054
+
2055
+ #: pro/pretty-link-pro.php:206
2056
+ msgid ""
2057
+ "A Pretty Link hasn't been generated for this entry yet. Click \"Update Post"
2058
+ "\" to generate."
2059
+ msgstr ""
2060
+
2061
+ #: pro/pretty-link-pro.php:223
2062
+ msgid "Auto Tweet on Publish"
2063
+ msgstr ""
2064
+
2065
+ #: pro/pretty-link-pro.php:223
2066
+ msgid "Customize Tweet"
2067
+ msgstr ""
2068
+
2069
+ #: pro/pretty-link-pro.php:265
2070
+ msgid "ERROR: Your Pretty Link was unable to be created"
2071
  msgstr ""
2072
 
2073
+ #: pro/pretty-link-pro.php:268
2074
+ msgid "Unauthorized"
2075
  msgstr ""
2076
 
2077
+ #: pro/pretty-link-pro.php:896
2078
  msgid ""
2079
+ "Your URL Replacements must be formatted as a comma separated list of "
2080
+ "properly formatted URLs (http[s]://example.com/whatever)"
2081
  msgstr ""
2082
 
2083
+ #: pro/pretty-link-pro.php:916
2084
+ msgid "Your Link Rotation Weights must add up to 100%"
2085
  msgstr ""
2086
 
2087
+ #: pro/pretty-link-pro.php:921
2088
+ msgid "Delay Redirect must be a number"
2089
  msgstr ""
2090
 
2091
+ #: pro/pretty-link-pro.php:984
2092
+ msgid "This Link Has additional Target URL rotations"
2093
  msgstr ""
2094
 
2095
+ #: pro/pretty-link-pro.php:1224
2096
+ msgid "Keywords <code>(PRO)</code>"
2097
  msgstr ""
2098
 
2099
+ #: pro/pretty-link-pro.php:1249
2100
+ msgid "Split-Test Report"
2101
+ msgstr ""
2102
+
2103
+ #: pro/pretty-link-pro.php:1275
2104
  msgid ""
2105
+ "Twitter has changed the way it authenticates users:</strong> Auto-Posting to "
2106
+ "Twitter with Pretty Link Pro will not work until you update your <a href="
2107
+ "\"admin.php?page=pretty-link/pro/prlipro-options.php\">Twitter Credentials "
2108
+ "Here</a>"
2109
  msgstr ""
2110
 
2111
+ #: pro/pretty-link-pro.php:1359
2112
+ msgid "Pretty Bar Attribution URL must be a correctly formatted URL"
2113
  msgstr ""
2114
 
2115
+ #: pro/pretty-link-pro.php:1380
2116
+ msgid "Hide Pretty Bar Attribution Link"
2117
  msgstr ""
2118
 
2119
+ #: pro/pretty-link-pro.php:1381
2120
+ msgid "Check this to hide the pretty link attribution link on the pretty bar."
2121
  msgstr ""
2122
 
2123
+ #: pro/pretty-link-pro.php:1381
2124
+ msgid ""
2125
+ "Wait, before you do this, you might want to leave this un-checked and set "
2126
+ "the alternate URL of this link to your <em>Pretty Link Pro</em> <a href="
2127
+ "\"http://prettylinkpro.com/amember/aff_member.php\">Affiliate URL</a> to "
2128
+ "earn a few bucks while you are at it."
2129
  msgstr ""
2130
 
2131
+ #: pro/pretty-link-pro.php:1384
2132
  msgid "Alternate Pretty Bar Attribution URL:"
2133
  msgstr ""
2134
 
2135
+ #: pro/pretty-link-pro.php:1387
2136
+ msgid ""
2137
+ "If set, this will replace the PrettyBars attribution URL. This is a very "
2138
+ "good place to put your <em>Pretty Link Pro</em> <a href=\"http://"
2139
+ "prettylinkpro.com/amember/aff_member.php\">Affiliate Link</a>."
2140
+ msgstr ""
2141
+
2142
+ #: pro/pretty-link-pro.php:1476
2143
  msgid "End-Point URL:"
2144
  msgstr ""
2145
 
2146
+ #: pro/pretty-link-pro.php:1477
2147
  msgid "This can be used to integrate with your twitter client."
2148
  msgstr ""
2149
 
2150
+ #: pro/pretty-link-pro.php:1480
2151
  msgid "Show TweetDeck Integration Instructions"
2152
  msgstr ""
2153
 
2154
+ #: pro/pretty-link-pro.php:1482 pro/pretty-link-pro.php:1488
2155
  msgid "Follow the"
2156
  msgstr ""
2157
 
2158
+ #: pro/pretty-link-pro.php:1482
2159
  msgid "TweetDeck Custom URL Instructions"
2160
  msgstr ""
2161
 
2162
+ #: pro/pretty-link-pro.php:1482
2163
  msgid " and add the following URL to TweetDeck"
2164
  msgstr ""
2165
 
2166
+ #: pro/pretty-link-pro.php:1486
2167
  msgid "Show Twitter for iPhone Integration Instructions"
2168
  msgstr ""
2169
 
2170
+ #: pro/pretty-link-pro.php:1488
2171
  msgid "Twitter for iPhone Custom URL Instructions"
2172
  msgstr ""
2173
 
2174
+ #: pro/pretty-link-pro.php:1488
2175
  msgid " and add the following URL to Twitter for iPhone"
2176
  msgstr ""
2177
 
2178
+ #: pro/pretty-link-pro.php:1492
2179
+ msgid "Custom Bookmarklet (Pro):"
2180
+ msgstr ""
2181
+
2182
+ #: pro/pretty-link-pro.php:1494
2183
+ msgid ""
2184
+ "Alter the options below to customize this Bookmarklet. As you modify the "
2185
+ "label, redirect type, tracking and group, you will see this bookmarklet "
2186
+ "update -- when the settings are how you want them, drag the bookmarklet into "
2187
+ "your toolbar. You can create as many bookmarklets as you want each with "
2188
+ "different settings."
2189
+ msgstr ""
2190
+
2191
+ #: pro/pretty-link-pro.php:1495 pro/prlipro-create-public-link-widget.php:44
2192
+ msgid "Pretty Link Options"
2193
+ msgstr ""
2194
+
2195
+ #: pro/pretty-link-pro.php:1498
2196
  msgid "Label:"
2197
  msgstr ""
2198
 
2199
+ #: pro/pretty-link-pro.php:1503 pro/prlipro-create-public-link-widget.php:46
2200
  msgid "Redirection:"
2201
  msgstr ""
2202
 
2203
+ #: pro/pretty-link-pro.php:1505 pro/pretty-link-pro.php:1516
2204
+ #: pro/prlipro-create-public-link-widget.php:48
2205
+ #: pro/prlipro-create-public-link-widget.php:59
2206
+ msgid "Default"
2207
+ msgstr ""
2208
+
2209
+ #: pro/pretty-link-pro.php:1506 pro/prlipro-create-public-link-widget.php:49
2210
+ msgid "Permanent/301"
2211
+ msgstr ""
2212
+
2213
+ #: pro/pretty-link-pro.php:1507 pro/prlipro-create-public-link-widget.php:50
2214
+ msgid "Temporary/307"
2215
+ msgstr ""
2216
+
2217
+ #: pro/pretty-link-pro.php:1508 pro/prlipro-create-public-link-widget.php:51
2218
+ msgid "PrettyBar"
2219
+ msgstr ""
2220
+
2221
+ #: pro/pretty-link-pro.php:1509 pro/pretty-link-pro.php:1762
2222
+ #: pro/prlipro-create-public-link-widget.php:52
2223
+ msgid "Cloak"
2224
+ msgstr ""
2225
+
2226
+ #: pro/pretty-link-pro.php:1514 pro/prlipro-create-public-link-widget.php:57
2227
  msgid "Tracking Enabled:"
2228
  msgstr ""
2229
 
2230
+ #: pro/pretty-link-pro.php:1517 pro/prlipro-create-public-link-widget.php:60
2231
+ msgid "Yes"
2232
+ msgstr ""
2233
+
2234
+ #: pro/pretty-link-pro.php:1518 pro/prlipro-create-public-link-widget.php:61
2235
+ msgid "No"
2236
+ msgstr ""
2237
+
2238
+ #: pro/pretty-link-pro.php:1523 pro/prlipro-create-public-link-widget.php:66
2239
  msgid "Group:"
2240
  msgstr ""
2241
 
2242
+ #: pro/pretty-link-pro.php:1611
2243
+ msgid "Could not connect to Twitter. Refresh the page or try again later."
2244
+ msgstr ""
2245
+
2246
+ #: pro/pretty-link-pro.php:1629 pro/pretty-link-pro.php:1669
2247
  msgid "There was an error saving your Twitter account."
2248
  msgstr ""
2249
 
2250
+ #: pro/pretty-link-pro.php:1665
2251
  msgid "Your Twitter Account was successfully saved."
2252
  msgstr ""
2253
 
2254
+ #: pro/pretty-link-pro.php:1683 pro/pretty-link-pro.php:1761
2255
  msgid "Pretty Bar"
2256
  msgstr ""
2257
 
2258
+ #: pro/pretty-link-pro.php:1684
2259
  msgid "Cloaked"
2260
  msgstr ""
2261
 
2262
+ #: pro/pretty-link-pro.php:1685 pro/pretty-link-pro.php:1763
2263
  msgid "Pixel"
2264
  msgstr ""
2265
 
2266
+ #: pro/pretty-link-pro.php:1686 pro/pretty-link-pro.php:1764
2267
  msgid "Meta Refresh"
2268
  msgstr ""
2269
 
2270
+ #: pro/pretty-link-pro.php:1687 pro/pretty-link-pro.php:1765
2271
  msgid "Javascript"
2272
  msgstr ""
2273
 
2274
+ #: pro/pretty-link-pro.php:1790
2275
+ msgid "PrettyBar Options"
2276
  msgstr ""
2277
 
2278
+ #: pro/pretty-link-pro.php:1793
2279
  msgid "Image URL:"
2280
  msgstr ""
2281
 
2282
+ #: pro/pretty-link-pro.php:1796
2283
  msgid ""
2284
  "If set, this will replace the logo image on the PrettyBar. The image that "
2285
  "this URL references should be 48x48 Pixels to fit."
2286
  msgstr ""
2287
 
2288
+ #: pro/pretty-link-pro.php:1800
2289
  msgid "Background Image URL:"
2290
  msgstr ""
2291
 
2292
+ #: pro/pretty-link-pro.php:1803
2293
  msgid ""
2294
  "If set, this will replace the background image on PrettyBar. The image that "
2295
  "this URL references should be 65px tall - this image will be repeated "
2296
  "horizontally across the bar."
2297
  msgstr ""
2298
 
2299
+ #: pro/pretty-link-pro.php:1807
2300
  msgid "Background Color:"
2301
  msgstr ""
2302
 
2303
+ #: pro/pretty-link-pro.php:1810
2304
  msgid ""
2305
  "This will alter the background color of the PrettyBar if you haven't "
2306
  "specified a PrettyBar background image."
2307
  msgstr ""
2308
 
2309
+ #: pro/pretty-link-pro.php:1814
2310
  msgid "Text Color:"
2311
  msgstr ""
2312
 
2313
+ #: pro/pretty-link-pro.php:1817
2314
  msgid ""
2315
  "If not set, this defaults to black (RGB value <code>#000000</code>) but you "
2316
  "can change it to whatever color you like."
2317
  msgstr ""
2318
 
2319
+ #: pro/pretty-link-pro.php:1821
2320
  msgid "Link Color:"
2321
  msgstr ""
2322
 
2323
+ #: pro/pretty-link-pro.php:1824
2324
  msgid ""
2325
  "If not set, this defaults to blue (RGB value <code>#0000ee</code>) but you "
2326
  "can change it to whatever color you like."
2327
  msgstr ""
2328
 
2329
+ #: pro/pretty-link-pro.php:1828
2330
  msgid "Link Hover Color:"
2331
  msgstr ""
2332
 
2333
+ #: pro/pretty-link-pro.php:1831
2334
  msgid ""
2335
  "If not set, this defaults to RGB value <code>#ababab</code> but you can "
2336
  "change it to whatever color you like."
2337
  msgstr ""
2338
 
2339
+ #: pro/pretty-link-pro.php:1835
2340
  msgid "Visited Link Color:"
2341
  msgstr ""
2342
 
2343
+ #: pro/pretty-link-pro.php:1838
2344
  msgid ""
2345
  "If not set, this defaults to RGB value <code>#551a8b</code> but you can "
2346
  "change it to whatever color you like."
2347
  msgstr ""
2348
 
2349
+ #: pro/pretty-link-pro.php:1842
2350
  msgid "Title Char Limit*:"
2351
  msgstr ""
2352
 
2353
+ #: pro/pretty-link-pro.php:1845
2354
  msgid ""
2355
  "If your Website has a long title then you may need to adjust this value so "
2356
  "that it will all fit on the PrettyBar. It is recommended that you keep this "
2358
  "good across different browsers and screen resolutions."
2359
  msgstr ""
2360
 
2361
+ #: pro/pretty-link-pro.php:1849
2362
  msgid "Description Char Limit*:"
2363
  msgstr ""
2364
 
2365
+ #: pro/pretty-link-pro.php:1852
2366
  msgid ""
2367
  "If your Website has a long Description (tagline) then you may need to adjust "
2368
  "this value so that it will all fit on the PrettyBar. It is recommended that "
2370
  "format looks good across different browsers and screen resolutions."
2371
  msgstr ""
2372
 
2373
+ #: pro/pretty-link-pro.php:1856
2374
  msgid "Target URL Char Limit*:"
2375
  msgstr ""
2376
 
2377
+ #: pro/pretty-link-pro.php:1859
2378
  msgid ""
2379
  "If you link to a lot of large Target URLs you may want to adjust this value. "
2380
  "It is recommended that you keep this value to <code>40</code> or below so "
2381
  "the PrettyBar's format looks good across different browsers and URL sizes"
2382
  msgstr ""
2383
 
2384
+ #: pro/pretty-link-pro.php:1864
2385
  msgid "Show Pretty Bar Title"
2386
  msgstr ""
2387
 
2388
+ #: pro/pretty-link-pro.php:1865
2389
  msgid ""
2390
  "Make sure this is checked if you want the title of your blog (and link) to "
2391
  "show up on the PrettyBar."
2392
  msgstr ""
2393
 
2394
+ #: pro/pretty-link-pro.php:1870
2395
  msgid "Show Pretty Bar Description"
2396
  msgstr ""
2397
 
2398
+ #: pro/pretty-link-pro.php:1871
2399
  msgid ""
2400
  "Make sure this is checked if you want your site description to show up on "
2401
  "the PrettyBar."
2402
  msgstr ""
2403
 
2404
+ #: pro/pretty-link-pro.php:1876
2405
  msgid "Show Pretty Bar Share Links"
2406
  msgstr ""
2407
 
2408
+ #: pro/pretty-link-pro.php:1877
2409
  msgid ""
2410
  "Make sure this is checked if you want \"share links\" to show up on the "
2411
  "PrettyBar."
2412
  msgstr ""
2413
 
2414
+ #: pro/pretty-link-pro.php:1882
2415
  msgid "Show Pretty Bar Target URL"
2416
  msgstr ""
2417
 
2418
+ #: pro/pretty-link-pro.php:1883
2419
  msgid ""
2420
  "Make sure this is checked if you want a link displaying the Target URL to "
2421
  "show up on the PrettyBar."
2422
  msgstr ""
2423
 
2424
+ #: pro/pretty-link-pro.php:1913
2425
  msgid "Logo Image URL must be a correctly formatted URL"
2426
  msgstr ""
2427
 
2428
+ #: pro/pretty-link-pro.php:1916
2429
  msgid "Background Image URL must be a correctly formatted URL"
2430
  msgstr ""
2431
 
2432
+ #: pro/pretty-link-pro.php:1919
2433
  msgid "PrettyBar Background Color must be an actual RGB Value"
2434
  msgstr ""
2435
 
2436
+ #: pro/pretty-link-pro.php:1922
2437
  msgid "PrettyBar Text Color must be an actual RGB Value"
2438
  msgstr ""
2439
 
2440
+ #: pro/pretty-link-pro.php:1925
2441
  msgid "PrettyBar Link Color must be an actual RGB Value"
2442
  msgstr ""
2443
 
2444
+ #: pro/pretty-link-pro.php:1928 pro/pretty-link-pro.php:1931
2445
  msgid "PrettyBar Hover Color must be an actual RGB Value"
2446
  msgstr ""
2447
 
2448
+ #: pro/pretty-link-pro.php:1934
2449
  msgid "PrettyBar Title Character Limit must not be blank"
2450
  msgstr ""
2451
 
2452
+ #: pro/pretty-link-pro.php:1937
2453
  msgid "PrettyBar Description Character Limit must not be blank"
2454
  msgstr ""
2455
 
2456
+ #: pro/pretty-link-pro.php:1940
2457
  msgid "PrettyBar Link Character Limit must not be blank"
2458
  msgstr ""
2459
 
2460
+ #: pro/pretty-link-pro.php:1943
2461
  msgid "PrettyBar Title Character Limit must be a number"
2462
  msgstr ""
2463
 
2464
+ #: pro/pretty-link-pro.php:1946
2465
  msgid "PrettyBar Description Character Limit must be a number"
2466
  msgstr ""
2467
 
2468
+ #: pro/pretty-link-pro.php:1949
2469
  msgid "PrettyBar Link Character Limit must be a number"
2470
  msgstr ""
2471
 
2472
+ #: pro/pretty-link-pro.php:2072
2473
  msgid "You are unauthorized to view this resource"
2474
  msgstr ""
2475
 
2476
+ #: pro/pretty-link-pro.php:2102
2477
  msgid "View QR Code for this link: %s"
2478
  msgstr ""
2479
 
2480
+ #: pro/pretty-link-pro.php:2110
2481
  msgid "Download QR Code for this link: %s"
2482
  msgstr ""
2483
 
2484
+ #: pro/pretty-link-pro.php:2203
2485
  msgid "Double Redirection Enabled"
2486
  msgstr ""
2487
 
2493
  msgid "Button Text:"
2494
  msgstr ""
2495
 
2496
+ #: pro/prlipro-create-public-link-widget.php:43
2497
+ msgid "if left blank, no button will display"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2498
  msgstr ""
2499
 
2500
+ #: pro/prlipro-hooks.php:19
2501
+ msgid "Pretty Link Pro | Reports"
 
 
2502
  msgstr ""
2503
 
2504
+ #: pro/prlipro-hooks.php:19
2505
+ msgid "<code>Pro</code> Reports"
2506
  msgstr ""
2507
 
2508
+ #: pro/prlipro-hooks.php:20
2509
+ msgid "Pretty Link Pro | Import/Export"
2510
  msgstr ""
2511
 
2512
+ #: pro/prlipro-hooks.php:20
2513
+ msgid "<code>Pro</code> Import/Export"
 
2514
  msgstr ""
2515
 
2516
+ #: pro/prlipro-hooks.php:21
2517
+ msgid "Pretty Link Pro | Pro Options"
2518
  msgstr ""
2519
 
2520
+ #: pro/prlipro-hooks.php:21
2521
+ msgid "<code>Pro</code> Options"
2522
  msgstr ""
2523
 
2524
+ #: pro/prlipro-hooks.php:31 pro/prlipro-hooks.php:41
2525
+ msgid "Pretty Link Pro Options"
2526
  msgstr ""
2527
 
2528
+ #: pro/prlipro-options.php:9
2529
+ msgid "Your Keyword Replacement Cache was successfully deleted"
2530
  msgstr ""
2531
 
2532
+ #: pro/prlipro-options.php:36
2533
+ msgid "Your Duplicate Tweets were Successfully Trimmed"
2534
  msgstr ""
2535
 
2536
+ #: pro/prlipro-options.php:104
2537
+ msgid "Keywords Per Page is required"
 
 
 
2538
  msgstr ""
2539
 
2540
+ #: pro/prlipro-options.php:107
2541
+ msgid "Keyword Links Per Page is required"
2542
  msgstr ""
2543
 
2544
+ #: pro/prlipro-options.php:110
2545
  msgid ""
2546
+ "You need to enter a valid Pretty Link Base URL now that you have selected "
2547
+ "\"Use an alternate base url for your Pretty Links\""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2548
  msgstr ""
2549
 
2550
+ #: pro/prlipro-options.php:113
 
2551
  msgid ""
2552
+ "You need to enter a valid Public Link Display URL now that you have selected "
2553
+ "\"Use a custom public link display page\""
2554
  msgstr ""
2555
 
2556
+ #: pro/prlipro-options.php:116
2557
+ msgid "Twitter Comment Height must either be blank or a number."
2558
  msgstr ""
2559
 
2560
+ #: pro/prlipro-reports.php:14
2561
+ msgid "Create a custom link report and analyze your data."
2562
  msgstr ""
2563
 
2564
+ #: pro/prlipro-reports.php:36
2565
+ msgid "Your Pretty Link Report was Successfully Created"
2566
  msgstr ""
2567
 
2568
+ #: pro/prlipro-reports.php:62
2569
+ msgid "Your Pretty Link Report was Successfully Updated"
2570
  msgstr ""
2571
 
2572
+ #: pro/prlipro-reports.php:69
2573
+ msgid "Your Pretty Link Report was Successfully Deleted"
2574
  msgstr ""
2575
 
2576
+ #: script/i18n/pomo/sample/app.php:56
2577
+ msgid "Welcome %s!"
2578
  msgstr ""
2579
 
2580
+ #: script/i18n/pomo/sample/app.php:60
2581
+ msgid "A string with low priority!"
2582
  msgstr ""
2583
 
2584
+ #: script/i18n/pomo/sample/app.php:62
2585
+ msgid "Bye\n"
2586
  msgstr ""
2587
 
2588
  #. Plugin Name of the plugin/theme
pretty-link.php CHANGED
@@ -3,10 +3,11 @@
3
  Plugin Name: Pretty Link Lite
4
  Plugin URI: http://blairwilliams.com/pretty-link
5
  Description: Shrink, track and share any URL on the Internet from your WordPress website!
6
- Version: 1.6.3
7
  Author: Caseproof
8
  Author URI: http://caseproof.com
9
- Copyright: 2004-2013, Caseproof, LLC
 
10
 
11
  GNU General Public License, Free Software Foundation <http://creativecommons.org/licenses/GPL/2.0/>
12
  This program is free software; you can redistribute it and/or modify
@@ -36,3 +37,11 @@ require_once(PRLI_PATH.'/prli-main.php');
36
  // Provide Back End Hooks to the Pro version of Pretty Link
37
  if($prli_update->pro_is_installed_and_authorized())
38
  require_once(PRLI_PATH.'/pro/pretty-link-pro.php');
 
 
 
 
 
 
 
 
3
  Plugin Name: Pretty Link Lite
4
  Plugin URI: http://blairwilliams.com/pretty-link
5
  Description: Shrink, track and share any URL on the Internet from your WordPress website!
6
+ Version: 1.6.4
7
  Author: Caseproof
8
  Author URI: http://caseproof.com
9
+ Text Domain: pretty-link
10
+ Copyright: 2004-2012, Caseproof, LLC
11
 
12
  GNU General Public License, Free Software Foundation <http://creativecommons.org/licenses/GPL/2.0/>
13
  This program is free software; you can redistribute it and/or modify
37
  // Provide Back End Hooks to the Pro version of Pretty Link
38
  if($prli_update->pro_is_installed_and_authorized())
39
  require_once(PRLI_PATH.'/pro/pretty-link-pro.php');
40
+
41
+ // i18n
42
+ add_action('init', 'prli_load_textdomain');
43
+ function prli_load_textdomain()
44
+ {
45
+ $plugin_dir = basename(dirname(__FILE__));
46
+ load_plugin_textdomain('pretty-link', false, $plugin_dir.'/i18n/');
47
+ }
prli-add-link.php CHANGED
@@ -8,4 +8,4 @@ require_once(PRLI_MODELS_PATH . '/models.inc.php');
8
  $groups = $prli_group->getAll('',' ORDER BY name');
9
  $values = setup_new_vars($groups);
10
 
11
- require_once 'classes/views/prli-links/new.php';
8
  $groups = $prli_group->getAll('',' ORDER BY name');
9
  $values = setup_new_vars($groups);
10
 
11
+ require_once 'classes/views/prli-links/new.php';
prli-api.php CHANGED
@@ -96,7 +96,7 @@ function prli_create_pretty_link( $target_url,
96
  return $id;
97
  else
98
  {
99
- $prli_error_messages[] = "An error prevented your Pretty Link from being created";
100
  return false;
101
  }
102
  }
@@ -121,7 +121,7 @@ function prli_update_pretty_link( $id,
121
 
122
  if(empty($id))
123
  {
124
- $prli_error_messages[] = "Pretty Link ID must be set for successful update.";
125
  return false;
126
  }
127
 
@@ -156,7 +156,7 @@ function prli_update_pretty_link( $id,
156
  return true;
157
  else
158
  {
159
- $prli_error_messages[] = "An error prevented your Pretty Link from being created";
160
  return false;
161
  }
162
  }
@@ -231,4 +231,4 @@ function prli_get_pretty_link_url($id)
231
  return "{$prli_blogurl}".PrliUtils::get_permalink_pre_slug_uri()."{$pretty_link->slug}";
232
 
233
  return false;
234
- }
96
  return $id;
97
  else
98
  {
99
+ $prli_error_messages[] = __("An error prevented your Pretty Link from being created", 'pretty-link');
100
  return false;
101
  }
102
  }
121
 
122
  if(empty($id))
123
  {
124
+ $prli_error_messages[] = __("Pretty Link ID must be set for successful update.", 'pretty-link');
125
  return false;
126
  }
127
 
156
  return true;
157
  else
158
  {
159
+ $prli_error_messages[] = __("An error prevented your Pretty Link from being created", 'pretty-link');
160
  return false;
161
  }
162
  }
231
  return "{$prli_blogurl}".PrliUtils::get_permalink_pre_slug_uri()."{$pretty_link->slug}";
232
 
233
  return false;
234
+ }
prli-clicks.php CHANGED
@@ -50,7 +50,7 @@ if(!isset($_REQUEST['action']))
50
  else if(!empty($params['ip']))
51
  {
52
  $link_name = __("IP Address: ", 'pretty-link') . esc_html($params['ip']);
53
- $where_clause .= $wpdb->prepare(" AND cl.ip=%d", $params['ip']);
54
  $page_params .= "&ip={$params['ip']}";
55
  }
56
  else if(!empty($params['vuid']))
50
  else if(!empty($params['ip']))
51
  {
52
  $link_name = __("IP Address: ", 'pretty-link') . esc_html($params['ip']);
53
+ $where_clause .= $wpdb->prepare(" AND cl.ip=%s", $params['ip']);
54
  $page_params .= "&ip={$params['ip']}";
55
  }
56
  else if(!empty($params['vuid']))
prli-groups.php CHANGED
@@ -9,7 +9,7 @@ $params = $prli_group->get_params_array();
9
 
10
  if($params['action'] == 'list')
11
  {
12
- $prli_message = "Create a group and use it to organize your Pretty Links.";
13
  prli_display_groups_list($params, $prli_message);
14
  }
15
  else if($params['action'] == 'new')
@@ -29,7 +29,7 @@ else if($params['action'] == 'create')
29
  {
30
  $insert_id = $prli_group->create( $_POST );
31
  prli_update_groups($insert_id, $_POST['link']);
32
- $prli_message = "Your Pretty Link Group was Successfully Created";
33
  prli_display_groups_list($params, $prli_message, '', 1);
34
  }
35
  }
@@ -53,14 +53,14 @@ else if($params['action'] == 'update')
53
  {
54
  $record = $prli_group->update( $_POST['id'], $_POST );
55
  prli_update_groups($_POST['id'],$_POST['link']);
56
- $prli_message = "Your Pretty Link Group was Successfully Updated";
57
  prli_display_groups_list($params, $prli_message, '', 1);
58
  }
59
  }
60
  else if($params['action'] == 'destroy')
61
  {
62
  $prli_group->destroy( $params['id'] );
63
- $prli_message = "Your Pretty Link Group was Successfully Deleted";
64
  prli_display_groups_list($params, $prli_message, '', 1);
65
  }
66
 
@@ -173,4 +173,4 @@ function prli_get_group_sort_vars($params,$where_clause = '')
173
  'search_str' => $search_str,
174
  'where_clause' => $where_clause,
175
  'page_params' => $page_params);
176
- }
9
 
10
  if($params['action'] == 'list')
11
  {
12
+ $prli_message = __("Create a group and use it to organize your Pretty Links.", 'pretty-link');
13
  prli_display_groups_list($params, $prli_message);
14
  }
15
  else if($params['action'] == 'new')
29
  {
30
  $insert_id = $prli_group->create( $_POST );
31
  prli_update_groups($insert_id, $_POST['link']);
32
+ $prli_message = __("Your Pretty Link Group was Successfully Created", 'pretty-link');
33
  prli_display_groups_list($params, $prli_message, '', 1);
34
  }
35
  }
53
  {
54
  $record = $prli_group->update( $_POST['id'], $_POST );
55
  prli_update_groups($_POST['id'],$_POST['link']);
56
+ $prli_message = __("Your Pretty Link Group was Successfully Updated", 'pretty-link');
57
  prli_display_groups_list($params, $prli_message, '', 1);
58
  }
59
  }
60
  else if($params['action'] == 'destroy')
61
  {
62
  $prli_group->destroy( $params['id'] );
63
+ $prli_message = __("Your Pretty Link Group was Successfully Deleted", 'pretty-link');
64
  prli_display_groups_list($params, $prli_message, '', 1);
65
  }
66
 
173
  'search_str' => $search_str,
174
  'where_clause' => $where_clause,
175
  'page_params' => $page_params);
176
+ }
prli-main.php CHANGED
@@ -158,7 +158,7 @@ function prli_add_dashboard_widgets() {
158
  get_currentuserinfo();
159
  if($current_user->user_level >= 8)
160
  {
161
- wp_add_dashboard_widget('prli_dashboard_widget', 'Pretty Link Quick Add', 'prli_dashboard_widget_function');
162
 
163
  // Globalize the metaboxes array, this holds all the widgets for wp-admin
164
  global $wp_meta_boxes;
158
  get_currentuserinfo();
159
  if($current_user->user_level >= 8)
160
  {
161
+ wp_add_dashboard_widget('prli_dashboard_widget', __('Pretty Link Quick Add', 'pretty-link'), 'prli_dashboard_widget_function');
162
 
163
  // Globalize the metaboxes array, this holds all the widgets for wp-admin
164
  global $wp_meta_boxes;
readme.txt CHANGED
@@ -2,9 +2,9 @@
2
  Contributors: supercleanse
3
  Donate link: http://prettylinkpro.com
4
  Tags: links, link, url, urls, affiliate, affiliates, pretty, marketing, redirect, forward, plugin, twitter, tweet, rewrite, shorturl, hoplink, hop, shortlink, short, shorten, click, clicks, track, tracking, tiny, tinyurl, budurl, shrinking, domain, shrink, mask, masking, cloak, cloaking, slug, slugs, admin, administration, stats, statistics, stat, statistic, email, ajax, javascript, ui, csv, download, page, post, pages, posts, shortcode, seo, automation, widget, widgets, dashboard
5
- Requires at least: 3.3
6
- Tested up to: 3.5
7
- Stable tag: 1.6.3
8
 
9
  Shrink, beautify, track, manage and share any URL on or off of your WordPress website. Create links that look how you want using your own domain name!
10
 
@@ -66,10 +66,21 @@ http://blairwilliams.com/w7a
66
 
67
  == Changelog ==
68
 
 
 
 
 
 
 
 
 
 
 
 
69
  = 1.6.3 =
70
- * Replaced Open Flash Charts with Google Visualization on hit reports
71
  * Security Fixes
72
- * Bug Fixes
 
73
 
74
  = 1.6.2 =
75
  * Additional Fixes
@@ -86,292 +97,11 @@ http://blairwilliams.com/w7a
86
  = 1.6.0 =
87
  * *Fix* Fixed some potential security vulnerabilities
88
 
89
- = 1.5.9 =
90
- * *Feature* Added Bulk Actions for Pretty Link Management page
91
- * *Feature* Added the ability to change the number of rows displayed in the Pretty Link Management page (no longer limited to 10)
92
- * *Feature* Added 1-click copy for pretty links in the Pretty Link management page and bookmarklet
93
- * *Feature* Added the ability to click on the referrer links in the pretty link hits table
94
- * *Fix* Fixed the permission issue when clicking on some links in the pretty link admin interface
95
- * *Fix* Fixed the timestamp issue in hits that some people were experiencing
96
-
97
- = 1.5.7 =
98
- * *Feature* Re-factored the add/edit link screen to be more intuitive and accurate
99
- * *Feature* Added the ability to add a new group from the Add / Edit Link screen
100
- * *Fix* Using uniqid() to generate visitor id for normal & extended tracking now in order to increase performance and avoid issues with mt_rand and pow
101
- * *Fix* Replaced all code dependent on curl to now use the more versatile WP_Http
102
- * *Fix* Altered the hits list for normal & extended tracking to use GMT time
103
- * *Fix* Fixed some issues with Parameter Forwarding
104
- * *Fix* Fixed the conflict with W3 Total Cache Object Caching that was causing pretty link options to not be saved when it was enabled
105
- * *Pro Feature* Added Double Redirection for any pretty link
106
- * *Pro Feature* Added Google Analytics support for any pretty link by integrating with the Google Analyticator, Google Analytics for WordPress and Google Analytics Plugin
107
- * *Pro Feature* Added Delayed Redirection for any pretty links using Javascript and Meta-Refresh Redirection
108
- * *Pro Feature* Added the ability to automatically create and download QR Codes pretty links
109
- * *Pro Feature* Added the ability to change the minimum user admin role that can access Pretty Link
110
- * *Pro Fix* Made some major performance enhancements to Keyword and URL Replacements
111
- * *Pro Fix* Fixed an issue adding Twitter accounts for some users running wordpress within a subdomain
112
- * *Pro Fix* Fixed an issue with select all links
113
-
114
- = 1.5.6 =
115
- * Fixed a cross-site scripting vulnerability that could have affected a very small number of users
116
-
117
- = 1.5.5 =
118
- * Added the option to redirect on the template_redirect hook
119
- * Fixed an issue with the database upgrade process
120
- * Added Javascript redirection for pro users
121
- * Added Meta-Refresh redirection for pro users
122
- * Fixed issue where keywords were only being replaced on the first post of the post overview page for pro users
123
- * Fixed issue preventing the graph from appearing on the conversion reports page for pro users
124
- * Fixed issue with automatic tweeting when a post title contains a dollar sign for pro users
125
-
126
- = 1.5.4 =
127
- * Fixed XSS Vulnerability
128
- * Fixed an activation issue
129
- * Fixed an issue with Pretty Link Export link for Pro users
130
-
131
- = 1.5.2 =
132
- * Critical performance fix
133
- * WP_Error on dashboard fix
134
-
135
- = 1.5.1 =
136
- * Fixed issue with mt_rand overflowing
137
- * Fixed another XSS Vulnerability
138
- * Fixed some issues with the automatic update process for pro users
139
- * Made some big security enhancements
140
- * Fixed some issues with the public link creation widget
141
- * Fixed an issue with the update database mechanism
142
- * Removed Keyword Caching from Pro
143
- * Optimized Keyword Replacement routine in Pro
144
- * Fixed a small issues with automatic post link creation routines
145
- * Changed the way slugs are generated and now default to 4 character slugs
146
-
147
- = 1.5.0 =
148
- * Fixed XSS Vulnerabilities
149
- * Added more indexes to Pretty Link tables
150
- * Other minor fixes
151
-
152
- = 1.4.56 =
153
- * Updated to be fully compatible with WordPress 3.1 and WordPress MultiSite for all users
154
- * Fixed link rotation issue (weights not sticking) for Pro Users
155
- * Fixed auto link creation issue with the group not being set properly for Pro Users
156
- * Fixed the slug available routine for all users
157
- * Fixed the delete hits issue with simple click counting for all users
158
- * Fixed some keyword replacement deletion issues for pro users
159
-
160
- = 1.4.55 =
161
- * Fixed the CSV export issues
162
- * Moved all Pretty Link images to Amazon CloudFront
163
- * Added TweetDeck & Twitter for iPhone support for Pro Users
164
-
165
- = 1.4.53 =
166
- * Added the ability to change the pretty link tracking mode to simple, normal and extended
167
- * Fixed numerous debug issues
168
- * Fixed memory_limit issue in pretty link
169
- * Fixed pretty bar issue affecting pro users
170
-
171
- = 1.4.52 =
172
- * Fixed bugs related to the cloaking and pretty bar redirection changes
173
-
174
- = 1.4.51 =
175
- * Removed cloaking & pretty bar redirection to comply with wordpress.org policy requirements
176
-
177
- = 1.4.50 =
178
- * Updated to use the Twitter oAuth authentication protocol
179
- * Updated the tweetbadge to use the new Twitter Tweet Button
180
-
181
- = 1.4.49 =
182
- * Fixed Keyword Caching Issue for Pro Users
183
- * Fixed recording duplicate tweet issue for Pro Users
184
-
185
- = 1.4.48 =
186
- * Fixed a performance issue in Pretty Link affecting some users when viewing their dashboard
187
- * Fixed the custom menu auto-tweet issue affecting some Pretty Link Pro users
188
-
189
- = 1.4.47 =
190
- * Updated code for WP 3.0
191
- * Fixed tweetbadge indexing issue
192
- * Added an underscore to postmeta values
193
-
194
- = 1.4.46 =
195
- * Fixed a subdirectory redirection issue
196
-
197
- = 1.4.45 =
198
- * Refactored and Options code
199
- * Pro: Refactored Update code to work with the upcoming WordPress 3.0
200
- * Pro: Tweet Badge now loads asynchronously in an iFrame to prevent performance issues when updating multiple tweet badges simultaneously.
201
- * Pro: Enabled limit on number of keyword replacements to occur per page load
202
- * Pro: Cleaned up options code
203
- * Pro: Added keyword replacement to comments and feeds and an option to make all links into pretty links automatically.
204
-
205
- = 1.4.44 =
206
- * Fixed the phantom postmeta issue
207
-
208
- = 1.4.43 =
209
- * Added an enhanced CSV Hit Reports...
210
- * Added CSV IP History reports... (the history of each visitor by IP address)
211
- * Added CSV IP Origin reports... (the first time we see each visitor click a Pretty Link)
212
- * Separating CSV Reports into blocks of 5000 rows each ... this will help with performance in a major way and prevent locking ...
213
- * Added an option to use a prefixed element from your permalink structure (this is necessary for users who need an index.php as part of their permalink structure)
214
- * Fixed the pretty link nesting issue so larger slugs are matched first enabling users to create folder structures more efficiently
215
- * The Link Description is now showing up as the meta description for Pretty Bar'd and Cloaked Pretty Links
216
- * Altered Tweet badge so it shows up as an image which will help it stay consistent across sites and won't ever mess up the excerpts ever again
217
- * Cleaned up the front facing CSS for the tweet badge, social buttons and twitter comments
218
- * Checked the [tweetbadge] shortcode and the_tweetbadge() template tag and verified that they are working properly...
219
- * Fixed saving posts / pages issue... Now pages are saved & auto tweeted (if the option is set)...
220
-
221
- = 1.4.42 =
222
- * Fixed more pretty link path issues to easily handle pre-slug elements in custom permalink structures
223
- * Optimized php code executed in pretty link tracking
224
- * Replaced fsockopen with curl for validating urls and grabbing the target url title
225
-
226
- = 1.4.41 =
227
- * Fixed pretty link path issue
228
-
229
- = 1.4.40 =
230
- * Added support for Pre-Slug URL elements -- this will be helpful for those users who don't have rewrite working fully
231
- * Additional, unnecessary postmeta fields not being created anymore for pro users
232
- * Fixed auto pretty link creation and auto twitter posting on scheduled and xml-rpc post for pro users
233
- * Fixed twitter badge count issue -- it was reporting incorrect tweet results for some pro users on some posts
234
- * Added Option to show tweet badge and/or social buttons in the RSS Feed
235
-
236
- = 1.4.39 =
237
- * Fixed browsecap integration for users on PHP 5.3 or higher
238
- * Added new browsecap file to include android based phones in hit results
239
- * Fixed form submission issues affecting a small number of users
240
- * Fixed a pro update bug affecting some users
241
- * Fixed a bug affecting pro users more tag and keyword replacement
242
-
243
- = 1.4.38 =
244
- * Fixed some update and validation bugs affecting a small number of users
245
-
246
- = 1.4.36 =
247
- * Fixed pro export issue
248
- * Fixed html within shortcodes in keyword replacement issues for pro users
249
- * Fixed XHTML validation for pro users using keyword replacement
250
- * Added an email button to the social bar for pro users
251
- * Fixed update code for pro users to not display false update message
252
- * Fixed url utilities port configuration for all users
253
- * Fixed url validation issue for all users
254
-
255
- = 1.4.35 =
256
- * Made significant changes to the Pretty Link Pro update routines
257
- * Fixed several bugs with remote url reading
258
-
259
- = 1.4.34 =
260
- * Fixed a redirection issue for all users
261
-
262
- = 1.4.33 =
263
- * Added more support options for all users
264
- * Updated install
265
- * Added exclude tweet badge/comments & social media buttons for specific pages & posts to the page/post edit screen for pro users
266
-
267
- = 1.4.32 =
268
- * Optimized CSV download of hits
269
- * Optimized more SQL calls
270
- * Fixed keyword replacement bug on password protected posts for Pro Users
271
- * Fixed group issue on options page for Pro Users
272
-
273
- = 1.4.31 =
274
- * Fixed a bug in pretty link, pixel & cloaking redirection.
275
-
276
- = 1.4.30 =
277
- * Altered the where Pretty Links are redirected to put less burden on normal page loads
278
- * Optimized Group & Report SQL calls to be significantly faster
279
- * Added a shortcode & template tag for pro users to display their pretty links on pages & posts (the shortcode is [post-pretty-link] and the template tag is the_prettylink())
280
-
281
- = 1.4.29 =
282
- * Added some more support options
283
- * fixed some minor bugs in keyword replacement and pro options.
284
-
285
- = 1.4.28 =
286
- * Fixed a bug with link creation from the bookmarklet, post publishing and public link creation that was introduced in the last release
287
-
288
- = 1.4.27 =
289
- * Simplified SQL Calls and reduced the number of them that it takes to load a page
290
- * Modified tweets to be counted for each link -- even ones not associated with a post -- got rid of the url_alias feature
291
- * Streamlined database calls & fixed a bug in the api
292
- * Added the ability to tweet to multiple accounts...
293
- * Added tweetmeme count checking and added additional twitter account validation
294
-
295
- = 1.4.26 =
296
- * Fixed the html entity display issue for target urls
297
- * Reduced package size of Pretty Link for more reliable installation
298
- * Added Customizable Bookmarklet for Pro Users
299
-
300
- = 1.4.25 =
301
- * Fixed some bugs in the install
302
- * Added nofollows to links in the social bar & re-tweet badge
303
-
304
- = 1.4.23/24 =
305
- * Fixed an installation issue for PHP4 users
306
-
307
- = 1.4.22 =
308
- * Added known robot and unidentified browser filtering to Pretty Link stats
309
- * Added IP Address range definition to the Excluded IP address field
310
- * Fixed html formatting issue on the bookmarklet success page
311
- * Added the ability for Pro users to remove or alter the attribution link on the Pretty Bar
312
- * Added new shortcodes for Pro users to display the title, target url and social networking buttons for a newly created public pretty link
313
- * Enhanced the default success page for public link creation for pro users
314
- * Fixed the redirect-type not being set bug for pro users allowing public link creation
315
- * Fixed another php short-code bug affecting Pro users (thanks to Clay Loveless of KillerSoft for helping me with that one)
316
-
317
- = 1.4.21 =
318
- * Fixed UTF-8 issues
319
- * Enabled UTF-8 Pretty Link slugs
320
- * Enabled UTF-8 tweets for Pro users
321
- * Fixed several issues for users hosted on Windows
322
- * Added padding configuration to space the buttons on the social bar for Pro users
323
- * Fixed the html validation issues with the tweet badge and social buttons bar for Pro users
324
-
325
- = 1.4.20 =
326
- * Added IPv6 support for IP Address Exclusions
327
- * Added Twitter Comments post widget for Pro users
328
- * Added RSS feed support for the tweet badge for Pro users
329
-
330
- = 1.4.19 =
331
- * Fixed https image loading / path issue
332
- * Fixed bookmarklet javascript encoding issue
333
- * Fixed import / export issue for pro users
334
- * Added Hyves.nl and Sphinn to the social buttons bar
335
- * Added more placement options for the social buttons bar
336
- * Added a social buttons bar shortcode & template tag
337
-
338
- = 1.4.18 =
339
- * Added the Social Network Button Bar for Pro Users
340
-
341
- = 1.4.17 =
342
- * Fixed the php strict tags issue affecting some users
343
- * Fixed the click record issue affecting some IIS users
344
- * Added DOCTYPE line to Pretty Bar HTML
345
- * Elimitated Pro upgrade messages for Pro users
346
-
347
- = 1.4.16 =
348
- * Fixed PrliUrlUtils not found error affecting some users
349
- * Added instructions for installing the Pretty Link bookmarklet on the iPhone
350
- * Added a URL Alias feature to Pro to allow tweet counts to be aggregated and hence, more accurate
351
-
352
- = 1.4.15 =
353
- * Fixed the nested slug cookie issue.
354
-
355
- = 1.4.14 =
356
- * Fixed bookmarklet/fopen issue affecting some users
357
- * Fixed XML-RPC auto-tweeting of Posts
358
- * Fixed Scheduled auto-tweeting & link creation of Posts issue
359
- * Fixed bulk auto link creation issue
360
- * Added slug choice for your post
361
- * Added a twitter message formatting textarea on the post edit screen
362
-
363
- = 1.4.13 =
364
- * Fixed the option reset issue
365
-
366
- = 1.4.12 =
367
- * Added title detection
368
- * Added enhancements to the Pretty Link Bookmarklet
369
- * Added better support for IIS by redefining the fnmatch function if it isn't present
370
- * Changed the keyword replacement algorithm in Pro to replace links throughout the post when thresholds are set (instead of only linking to the top x keywords)
371
- * Fixed some issues surrounding keyword content caching in Pro
372
-
373
  == Upgrade Notice ==
374
 
 
 
 
375
  = 1.6.3 =
376
  * This adds some security fixes. Everyone should upgrade.
377
 
@@ -384,65 +114,3 @@ http://blairwilliams.com/w7a
384
  = 1.6.0 =
385
  * This adds some security fixes. Everyone should upgrade.
386
 
387
- = 1.5.9 =
388
- * This adds some very useful features for link managment in Lite & Pro ... everyone should upgrade.
389
-
390
- = 1.5.7 =
391
- * This is a major new release that fixes numerous bugs and adds several new features for Lite and Pro users. Everyone should upgrade.
392
-
393
- = 1.5.6 =
394
- * Fixed a cross-site scripting vulnerability that could have affected a very small number of users
395
-
396
- = 1.5.5 =
397
- * Adds some new functionality that could be important for many users. Also fixed some minor issues affecting some users.
398
-
399
- = 1.5.4 =
400
- * Everyone should upgrade to this new release as it fixes an XSS vulnerability
401
-
402
- = 1.5.2 =
403
- * CRITICAL UPGRADE ... this release contains several critical performance fixes
404
-
405
- = 1.5.1 =
406
- * This release contains several optimizations and fixes that will benefit most users.
407
-
408
- = 1.5.0 =
409
- * All users should upgrade to this release since it fixes several security vulnerabilities.
410
-
411
- = 1.4.56 =
412
- * This release fixes several issues including full WordPress 3.1 and MultiSite compatibility. So everyone should upgrade to this release.
413
-
414
- = 1.4.55 =
415
- * Everyone should upgrade -- this fixes the CSV export issue with hits.
416
-
417
- = 1.4.53 =
418
- * Everyone should upgrade to this version. It fixes numerous bugs for all users -- including a memory_limit issue and some click tracking algorithm issues. In addition to the upgrade, users who have had performance issues with click tracking should also switch to simple click count tracking in "Pretty Link" -> "Options" -> "Reporting Options" ...
419
-
420
- = 1.4.52 =
421
- * Fixed bugs related to the cloaking and pretty bar redirection changes. This affected all Pretty Link users -- everyone should upgrade to this release.
422
-
423
- = 1.4.51 =
424
- * Removed cloaking & pretty bar redirection to comply with wordpress.org policy requirements
425
-
426
- = 1.4.50 =
427
- * If you are a pro user and use the twitter related features of Pretty Link Pro you need to update immediately -- non-pro users will be pretty much unchanged by this release
428
-
429
- = 1.4.49 =
430
- * Fixed some important bugs for pro users -- non-pro users will be pretty much unchanged by this release
431
-
432
- = 1.4.48 =
433
- Fixed some dashboard performance issues for Pretty Link users and a custom menu tweeting fix that was affecting some pro users.
434
-
435
- = 1.4.47 =
436
- Upgrade to make Pretty Link compatible with WordPress 3.0
437
-
438
- = 1.4.46 =
439
- If your wordpress website is in a subdirectory and you've had issues with your pretty links since the last release then this upgrade will fix it.
440
-
441
- = 1.4.45 =
442
- Bug fixes have been made in Pretty Link and several enhancements have been made it Pretty Link Pro.
443
-
444
- = 1.4.44 =
445
- All users -- especially pro users should upgrade to this new version -- it fixes the phantom postmeta issue
446
-
447
- = 1.4.43 =
448
- All users should upgrade to this new version -- several functional and performance related issues have been fixed for Pretty Link and Pretty Link Pro users.
2
  Contributors: supercleanse
3
  Donate link: http://prettylinkpro.com
4
  Tags: links, link, url, urls, affiliate, affiliates, pretty, marketing, redirect, forward, plugin, twitter, tweet, rewrite, shorturl, hoplink, hop, shortlink, short, shorten, click, clicks, track, tracking, tiny, tinyurl, budurl, shrinking, domain, shrink, mask, masking, cloak, cloaking, slug, slugs, admin, administration, stats, statistics, stat, statistic, email, ajax, javascript, ui, csv, download, page, post, pages, posts, shortcode, seo, automation, widget, widgets, dashboard
5
+ Requires at least: 3.4
6
+ Tested up to: 3.5.1
7
+ Stable tag: 1.6.4
8
 
9
  Shrink, beautify, track, manage and share any URL on or off of your WordPress website. Create links that look how you want using your own domain name!
10
 
66
 
67
  == Changelog ==
68
 
69
+ = 1.6.4 =
70
+ * i18n enhancements
71
+ * Small fix to auto tweeting in pro
72
+ * Fixed small IP address issue in hits
73
+ * Added help text
74
+ * Fixed small Google Analytics issue in pro
75
+ * Fixed issue with meta refresh / javascript redirect in pro
76
+ * Added titles to keywords in pro
77
+ * Added redirect header hooks in pro
78
+ * Security Fixes
79
+
80
  = 1.6.3 =
 
81
  * Security Fixes
82
+ * Removed Open Flash Charts in favor of Google Charts
83
+ * Fixed some javascript conflicts
84
 
85
  = 1.6.2 =
86
  * Additional Fixes
97
  = 1.6.0 =
98
  * *Fix* Fixed some potential security vulnerabilities
99
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
  == Upgrade Notice ==
101
 
102
+ = 1.6.4 =
103
+ * This adds some security fixes. Everyone should upgrade.
104
+
105
  = 1.6.3 =
106
  * This adds some security fixes. Everyone should upgrade.
107
 
114
  = 1.6.0 =
115
  * This adds some security fixes. Everyone should upgrade.
116