Version Description
- Fix URI params not sticking
- PRO Fix apostrophe in keywords
Download this release
Release Info
Developer | cartpauj |
Plugin | Shortlinks by Pretty Links – Best WordPress Link Tracking Plugin |
Version | 2.0.4 |
Comparing to | |
See all releases |
Code changes from version 2.0.3 to 2.0.4
- app/views/links/list.php +12 -7
- app/views/shared/link-table-nav.php +8 -4
- i18n/pretty-link.pot +31 -31
- pretty-link.php +1 -1
- readme.txt +6 -2
app/views/links/list.php
CHANGED
@@ -1,6 +1,11 @@
|
|
1 |
<?php
|
2 |
-
if(!defined('ABSPATH'))
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
4 |
?>
|
5 |
|
6 |
<div class="wrap">
|
@@ -43,12 +48,12 @@ if(!defined('ABSPATH'))
|
|
43 |
<table class="prli-edit-table widefat post fixed" cellspacing="0">
|
44 |
<thead>
|
45 |
<tr>
|
46 |
-
<th class="manage-column" width="30%"><input type="checkbox" name="check-all" class="select-all-link-action-checkboxes" style="margin-left: 1px;"/> <a href="<?php echo admin_url('admin.php?page=pretty-link&sort=name' . (($sort_str == 'name' and $sdir_str == 'asc')?'&sdir=desc':'') . $
|
47 |
<?php do_action('prli_link_column_header'); ?>
|
48 |
-
<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':'') . $
|
49 |
-
<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':'') . $
|
50 |
-
<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':'') . $
|
51 |
-
<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':'') . $
|
52 |
</tr>
|
53 |
</thead>
|
54 |
<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;">
|
1 |
<?php
|
2 |
+
if(!defined('ABSPATH')) { die('You are not allowed to call this page directly.'); }
|
3 |
+
|
4 |
+
$group = (isset($_REQUEST['group']))?(int)$_REQUEST['group']:'';
|
5 |
+
$size = (isset($_REQUEST['size']))?(int)$_REQUEST['size']:'10';
|
6 |
+
$search = (isset($_REQUEST['search']))?sanitize_text_field($_REQUEST['search']):'';
|
7 |
+
|
8 |
+
$url_params = "&group={$group}&size={$size}&search={$search}"
|
9 |
?>
|
10 |
|
11 |
<div class="wrap">
|
48 |
<table class="prli-edit-table widefat post fixed" cellspacing="0">
|
49 |
<thead>
|
50 |
<tr>
|
51 |
+
<th class="manage-column" width="30%"><input type="checkbox" name="check-all" class="select-all-link-action-checkboxes" style="margin-left: 1px;"/> <a href="<?php echo admin_url('admin.php?page=pretty-link&sort=name' . (($sort_str == 'name' and $sdir_str == 'asc')?'&sdir=desc':'') . $url_params); ?>"><?php _e('Name', 'pretty-link'); echo (($sort_str == 'name')?' <img src="'.PRLI_IMAGES_URL . '/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a></th>
|
52 |
<?php do_action('prli_link_column_header'); ?>
|
53 |
+
<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':'') . $url_params); ?>"><?php _e('Clicks / Uniq', 'pretty-link'); echo (($sort_str == 'clicks')?' <img src="'.PRLI_IMAGES_URL . '/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a></th>
|
54 |
+
<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':'') . $url_params) ?>"><?php _e('Group', 'pretty-link'); echo (($sort_str == 'group_name')?' <img src="'.PRLI_IMAGES_URL . '/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a></th>
|
55 |
+
<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':'') . $url_params); ?>"><?php _e('Created', 'pretty-link'); echo ((empty($sort_str) or $sort_str == 'created_at')?' <img src="'.PRLI_IMAGES_URL . '/'.((empty($sort_str) or $sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a></th>
|
56 |
+
<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':'') . $url_params); ?>"><?php _e('Links', 'pretty-link'); echo (($sort_str == 'slug')?' <img src="'.PRLI_IMAGES_URL . '/'.(($sdir_str == 'desc')?'arrow_down.png':'arrow_up.png').'"/>':'') ?></a></th>
|
57 |
</tr>
|
58 |
</thead>
|
59 |
<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;">
|
app/views/shared/link-table-nav.php
CHANGED
@@ -1,7 +1,11 @@
|
|
1 |
<?php if(!defined('ABSPATH')) { die('You are not allowed to call this page directly.'); }
|
2 |
|
3 |
-
$curr_size
|
4 |
-
$curr_url
|
|
|
|
|
|
|
|
|
5 |
|
6 |
// Only show the pager bar if there is more than 1 page
|
7 |
if($page_count > 1) {
|
@@ -84,7 +88,7 @@ if($page_count > 1) {
|
|
84 |
<?php
|
85 |
}
|
86 |
?>
|
87 |
-
<select class="prli-page-size" data-url="<?php echo admin_url("admin.php?page=pretty-link&paged=1&size="); ?>">
|
88 |
<option value="10" selected="selected">10</option>
|
89 |
<option value="25" <?php if($curr_size == 25) echo 'selected="selected"'; ?>>25</option>
|
90 |
<option value="50" <?php if($curr_size == 50) echo 'selected="selected"'; ?>>50</option>
|
@@ -102,7 +106,7 @@ else {
|
|
102 |
<div class="tablenav"<?php echo (isset($navstyle)?" style=\"$navstyle\"":''); ?>>
|
103 |
<div class='tablenav-pages'>
|
104 |
<span class="displaying-num"><?php _e('Displaying', 'pretty-link'); ?> <?php echo "$page_first_record–$page_last_record of $record_count"; ?></span>
|
105 |
-
<select class="prli-page-size" data-url="<?php echo admin_url("admin.php?page=pretty-link&paged=1&size="); ?>">
|
106 |
<option value="10" selected="selected">10</option>
|
107 |
<option value="25" <?php if($curr_size == 25) echo 'selected="selected"'; ?>>25</option>
|
108 |
<option value="50" <?php if($curr_size == 50) echo 'selected="selected"'; ?>>50</option>
|
1 |
<?php if(!defined('ABSPATH')) { die('You are not allowed to call this page directly.'); }
|
2 |
|
3 |
+
$curr_size = (isset($_REQUEST['size']))?(int)$_REQUEST['size']:10;
|
4 |
+
$curr_url = esc_html($_REQUEST['page'].$page_params);
|
5 |
+
$group = (isset($_REQUEST['group']))?(int)$_REQUEST['group']:'';
|
6 |
+
$sort = (isset($_REQUEST['sort']))?sanitize_text_field($_REQUEST['sort']):'';
|
7 |
+
$sdir = (isset($_REQUEST['sdir']))?sanitize_text_field($_REQUEST['sdir']):'';
|
8 |
+
$search = (isset($_REQUEST['search']))?sanitize_text_field($_REQUEST['search']):'';
|
9 |
|
10 |
// Only show the pager bar if there is more than 1 page
|
11 |
if($page_count > 1) {
|
88 |
<?php
|
89 |
}
|
90 |
?>
|
91 |
+
<select class="prli-page-size" data-url="<?php echo admin_url("admin.php?page=pretty-link&paged=1&sort={$sort}&sdir={$sdir}&group={$group}&search={$search}&size="); ?>">
|
92 |
<option value="10" selected="selected">10</option>
|
93 |
<option value="25" <?php if($curr_size == 25) echo 'selected="selected"'; ?>>25</option>
|
94 |
<option value="50" <?php if($curr_size == 50) echo 'selected="selected"'; ?>>50</option>
|
106 |
<div class="tablenav"<?php echo (isset($navstyle)?" style=\"$navstyle\"":''); ?>>
|
107 |
<div class='tablenav-pages'>
|
108 |
<span class="displaying-num"><?php _e('Displaying', 'pretty-link'); ?> <?php echo "$page_first_record–$page_last_record of $record_count"; ?></span>
|
109 |
+
<select class="prli-page-size" data-url="<?php echo admin_url("admin.php?page=pretty-link&paged=1&sort={$sort}&sdir={$sdir}&group={$group}&search={$search}&size="); ?>">
|
110 |
<option value="10" selected="selected">10</option>
|
111 |
<option value="25" <?php if($curr_size == 25) echo 'selected="selected"'; ?>>25</option>
|
112 |
<option value="50" <?php if($curr_size == 50) echo 'selected="selected"'; ?>>50</option>
|
i18n/pretty-link.pot
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
# This file is distributed under the same license as the Pretty Link package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Pretty Link 2.0.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pretty-link\n"
|
7 |
-
"POT-Creation-Date: 2017-
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -17,7 +17,7 @@ msgstr ""
|
|
17 |
msgid "Pretty Link | Manage Pretty Links"
|
18 |
msgstr ""
|
19 |
|
20 |
-
#. #-#-#-#-# pretty-link.pot (Pretty Link 2.0.
|
21 |
#. Plugin Name of the plugin/theme
|
22 |
#: app/controllers/PrliAppController.php:37
|
23 |
#: app/controllers/PrliAppController.php:46 app/views/links/form.php:47
|
@@ -378,8 +378,8 @@ msgstr ""
|
|
378 |
msgid "Apply"
|
379 |
msgstr ""
|
380 |
|
381 |
-
#: app/helpers/PrliLinksHelper.php:63 app/views/links/list.php:
|
382 |
-
#: app/views/links/list.php:
|
383 |
msgid "- No Change -"
|
384 |
msgstr ""
|
385 |
|
@@ -865,14 +865,14 @@ msgstr ""
|
|
865 |
|
866 |
#: app/views/clicks/list.php:43 app/views/groups/edit.php:54
|
867 |
#: app/views/groups/new.php:58 app/views/links/edit.php:16
|
868 |
-
#: app/views/links/list.php:
|
869 |
#: pro/app/views/reports/custom-report.php:22
|
870 |
#: pro/app/views/reports/edit.php:109 pro/app/views/reports/new.php:109
|
871 |
msgid "Cancel"
|
872 |
msgstr ""
|
873 |
|
874 |
#: app/views/clicks/list.php:64 app/views/groups/list.php:24
|
875 |
-
#: app/views/links/list.php:
|
876 |
msgid "Reset"
|
877 |
msgstr ""
|
878 |
|
@@ -955,7 +955,7 @@ msgstr ""
|
|
955 |
|
956 |
#: app/views/groups/edit.php:30 app/views/groups/list.php:39
|
957 |
#: app/views/groups/list.php:81 app/views/groups/new.php:36
|
958 |
-
#: app/views/links/list.php:
|
959 |
#: pro/app/views/reports/edit.php:85 pro/app/views/reports/list.php:30
|
960 |
#: pro/app/views/reports/list.php:70 pro/app/views/reports/new.php:85
|
961 |
msgid "Name"
|
@@ -972,7 +972,7 @@ msgid ""
|
|
972 |
msgstr ""
|
973 |
|
974 |
#: app/views/groups/edit.php:54 app/views/links/edit.php:16
|
975 |
-
#: app/views/links/list.php:
|
976 |
#: pro/app/views/reports/edit.php:109
|
977 |
msgid "Update"
|
978 |
msgstr ""
|
@@ -982,15 +982,15 @@ msgid "Add Group"
|
|
982 |
msgstr ""
|
983 |
|
984 |
#: app/views/groups/list.php:40 app/views/groups/list.php:68
|
985 |
-
#: app/views/groups/list.php:82 app/views/links/list.php:
|
986 |
-
#: app/views/links/list.php:
|
987 |
#: app/views/options/form.php:39 pro/app/views/reports/list.php:32
|
988 |
#: pro/app/views/reports/list.php:72
|
989 |
msgid "Links"
|
990 |
msgstr ""
|
991 |
|
992 |
#: app/views/groups/list.php:41 app/views/groups/list.php:83
|
993 |
-
#: app/views/links/list.php:
|
994 |
#: pro/app/views/reports/list.php:33 pro/app/views/reports/list.php:73
|
995 |
msgid "Created"
|
996 |
msgstr ""
|
@@ -1090,8 +1090,8 @@ msgstr ""
|
|
1090 |
msgid "Advanced Options"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
-
#: app/views/links/form.php:91 app/views/links/list.php:
|
1094 |
-
#: app/views/links/list.php:
|
1095 |
#: pro/app/views/options/autocreate.php:30 pro/app/views/reports/edit.php:86
|
1096 |
#: pro/app/views/reports/new.php:86
|
1097 |
msgid "Group"
|
@@ -1182,61 +1182,61 @@ msgstr ""
|
|
1182 |
msgid "Oops!"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
-
#: app/views/links/list.php:
|
1186 |
msgid "Add Pretty Link"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
-
#: app/views/links/list.php:
|
1190 |
msgid ""
|
1191 |
"WordPress Must be Configured:</strong> Pretty Link won't work until you "
|
1192 |
"select a Permalink Structure other than 'Default'"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: app/views/links/list.php:
|
1196 |
msgid "Permalink Settings"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: app/views/links/list.php:
|
1200 |
msgid "Back to Groups"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: app/views/links/list.php:
|
1204 |
msgid "Clicks / Uniq"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: app/views/links/list.php:
|
1208 |
msgid "Bulk Edit"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: app/views/links/list.php:
|
1212 |
msgid "Basic Link Options"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: app/views/links/list.php:
|
1216 |
msgid "Redirect Type"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: app/views/links/list.php:
|
1220 |
msgid "Track"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: app/views/links/list.php:
|
1224 |
msgid "Nofollow"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
-
#: app/views/links/list.php:
|
1228 |
msgid "Forward Params"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: app/views/links/list.php:
|
1232 |
msgid "Bulk Update"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
-
#: app/views/links/list.php:
|
1236 |
msgid "No Pretty Links were found, %sCreate One%s"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: app/views/links/list.php:
|
1240 |
msgid "Target URL:"
|
1241 |
msgstr ""
|
1242 |
|
@@ -1402,8 +1402,8 @@ msgid ""
|
|
1402 |
"192.168.*.*"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: app/views/shared/link-table-nav.php:
|
1406 |
-
#: app/views/shared/link-table-nav.php:
|
1407 |
msgid "Displaying"
|
1408 |
msgstr ""
|
1409 |
|
@@ -1700,7 +1700,7 @@ msgstr ""
|
|
1700 |
msgid "Pretty Link Post Build Index"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#: pro/app/controllers/PlpKeywordsController.php:
|
1704 |
#: pro/app/views/links/form.php:128
|
1705 |
msgid "Keywords"
|
1706 |
msgstr ""
|
2 |
# This file is distributed under the same license as the Pretty Link package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Pretty Link 2.0.4\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/pretty-link\n"
|
7 |
+
"POT-Creation-Date: 2017-02-09 22:28:15+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
17 |
msgid "Pretty Link | Manage Pretty Links"
|
18 |
msgstr ""
|
19 |
|
20 |
+
#. #-#-#-#-# pretty-link.pot (Pretty Link 2.0.4) #-#-#-#-#
|
21 |
#. Plugin Name of the plugin/theme
|
22 |
#: app/controllers/PrliAppController.php:37
|
23 |
#: app/controllers/PrliAppController.php:46 app/views/links/form.php:47
|
378 |
msgid "Apply"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: app/helpers/PrliLinksHelper.php:63 app/views/links/list.php:76
|
382 |
+
#: app/views/links/list.php:79
|
383 |
msgid "- No Change -"
|
384 |
msgstr ""
|
385 |
|
865 |
|
866 |
#: app/views/clicks/list.php:43 app/views/groups/edit.php:54
|
867 |
#: app/views/groups/new.php:58 app/views/links/edit.php:16
|
868 |
+
#: app/views/links/list.php:92 app/views/links/new.php:15
|
869 |
#: pro/app/views/reports/custom-report.php:22
|
870 |
#: pro/app/views/reports/edit.php:109 pro/app/views/reports/new.php:109
|
871 |
msgid "Cancel"
|
872 |
msgstr ""
|
873 |
|
874 |
#: app/views/clicks/list.php:64 app/views/groups/list.php:24
|
875 |
+
#: app/views/links/list.php:35 pro/app/views/reports/list.php:20
|
876 |
msgid "Reset"
|
877 |
msgstr ""
|
878 |
|
955 |
|
956 |
#: app/views/groups/edit.php:30 app/views/groups/list.php:39
|
957 |
#: app/views/groups/list.php:81 app/views/groups/new.php:36
|
958 |
+
#: app/views/links/list.php:51 app/views/links/list.php:155
|
959 |
#: pro/app/views/reports/edit.php:85 pro/app/views/reports/list.php:30
|
960 |
#: pro/app/views/reports/list.php:70 pro/app/views/reports/new.php:85
|
961 |
msgid "Name"
|
972 |
msgstr ""
|
973 |
|
974 |
#: app/views/groups/edit.php:54 app/views/links/edit.php:16
|
975 |
+
#: app/views/links/list.php:93 app/views/options/form.php:194
|
976 |
#: pro/app/views/reports/edit.php:109
|
977 |
msgid "Update"
|
978 |
msgstr ""
|
982 |
msgstr ""
|
983 |
|
984 |
#: app/views/groups/list.php:40 app/views/groups/list.php:68
|
985 |
+
#: app/views/groups/list.php:82 app/views/links/list.php:12
|
986 |
+
#: app/views/links/list.php:56 app/views/links/list.php:160
|
987 |
#: app/views/options/form.php:39 pro/app/views/reports/list.php:32
|
988 |
#: pro/app/views/reports/list.php:72
|
989 |
msgid "Links"
|
990 |
msgstr ""
|
991 |
|
992 |
#: app/views/groups/list.php:41 app/views/groups/list.php:83
|
993 |
+
#: app/views/links/list.php:55 app/views/links/list.php:159
|
994 |
#: pro/app/views/reports/list.php:33 pro/app/views/reports/list.php:73
|
995 |
msgid "Created"
|
996 |
msgstr ""
|
1090 |
msgid "Advanced Options"
|
1091 |
msgstr ""
|
1092 |
|
1093 |
+
#: app/views/links/form.php:91 app/views/links/list.php:54
|
1094 |
+
#: app/views/links/list.php:78 app/views/links/list.php:158
|
1095 |
#: pro/app/views/options/autocreate.php:30 pro/app/views/reports/edit.php:86
|
1096 |
#: pro/app/views/reports/new.php:86
|
1097 |
msgid "Group"
|
1182 |
msgid "Oops!"
|
1183 |
msgstr ""
|
1184 |
|
1185 |
+
#: app/views/links/list.php:13
|
1186 |
msgid "Add Pretty Link"
|
1187 |
msgstr ""
|
1188 |
|
1189 |
+
#: app/views/links/list.php:19
|
1190 |
msgid ""
|
1191 |
"WordPress Must be Configured:</strong> Pretty Link won't work until you "
|
1192 |
"select a Permalink Structure other than 'Default'"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: app/views/links/list.php:19 app/views/options/form.php:12
|
1196 |
msgid "Permalink Settings"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: app/views/links/list.php:44
|
1200 |
msgid "Back to Groups"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: app/views/links/list.php:53 app/views/links/list.php:157
|
1204 |
msgid "Clicks / Uniq"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: app/views/links/list.php:67
|
1208 |
msgid "Bulk Edit"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: app/views/links/list.php:74
|
1212 |
msgid "Basic Link Options"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: app/views/links/list.php:75 app/views/shared/tinymce_form_popup.php:60
|
1216 |
msgid "Redirect Type"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: app/views/links/list.php:81
|
1220 |
msgid "Track"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: app/views/links/list.php:83 app/views/shared/tinymce_form_popup.php:77
|
1224 |
msgid "Nofollow"
|
1225 |
msgstr ""
|
1226 |
|
1227 |
+
#: app/views/links/list.php:85
|
1228 |
msgid "Forward Params"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
+
#: app/views/links/list.php:93
|
1232 |
msgid "Bulk Update"
|
1233 |
msgstr ""
|
1234 |
|
1235 |
+
#: app/views/links/list.php:103
|
1236 |
msgid "No Pretty Links were found, %sCreate One%s"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: app/views/links/list.php:144
|
1240 |
msgid "Target URL:"
|
1241 |
msgstr ""
|
1242 |
|
1402 |
"192.168.*.*"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: app/views/shared/link-table-nav.php:17
|
1406 |
+
#: app/views/shared/link-table-nav.php:108 app/views/shared/table-nav.php:12
|
1407 |
msgid "Displaying"
|
1408 |
msgstr ""
|
1409 |
|
1700 |
msgid "Pretty Link Post Build Index"
|
1701 |
msgstr ""
|
1702 |
|
1703 |
+
#: pro/app/controllers/PlpKeywordsController.php:463
|
1704 |
#: pro/app/views/links/form.php:128
|
1705 |
msgid "Keywords"
|
1706 |
msgstr ""
|
pretty-link.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Pretty Link
|
4 |
Plugin URI: http://prettylinkpro.com
|
5 |
Description: Shrink, track and share any URL on the Internet from your WordPress website!
|
6 |
-
Version: 2.0.
|
7 |
Author: Blair Williams
|
8 |
Author URI: http://blairwilliams.com
|
9 |
Text Domain: pretty-link
|
3 |
Plugin Name: Pretty Link
|
4 |
Plugin URI: http://prettylinkpro.com
|
5 |
Description: Shrink, track and share any URL on the Internet from your WordPress website!
|
6 |
+
Version: 2.0.4
|
7 |
Author: Blair Williams
|
8 |
Author URI: http://blairwilliams.com
|
9 |
Text Domain: pretty-link
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ 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: 4.7
|
6 |
-
Tested up to: 4.7.
|
7 |
-
Stable tag: 2.0.
|
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,6 +66,10 @@ http://blairwilliams.com/w7a
|
|
66 |
|
67 |
== Changelog ==
|
68 |
|
|
|
|
|
|
|
|
|
69 |
= 2.0.3 =
|
70 |
* *Important* performance fix
|
71 |
* PRO Fixed an issue with Google Analytics integration
|
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: 4.7
|
6 |
+
Tested up to: 4.7.2
|
7 |
+
Stable tag: 2.0.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 |
+
= 2.0.4 =
|
70 |
+
* Fix URI params not sticking
|
71 |
+
* PRO Fix apostrophe in keywords
|
72 |
+
|
73 |
= 2.0.3 =
|
74 |
* *Important* performance fix
|
75 |
* PRO Fixed an issue with Google Analytics integration
|