Changeset 1468:3132a0aca046 for inc/admin/lib.pager.php
- Timestamp:
- 08/19/13 09:55:29 (12 years ago)
- Branch:
- default
- Parents:
- 1466:e67efe636ce1 (diff), 1467:917fc08f3a59 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
inc/admin/lib.pager.php
r1415 r1468 87 87 html::escapeHTML($this->rs->cat_title)); 88 88 } else { 89 $cat_title = __(' None');89 $cat_title = __('(No cat)'); 90 90 } 91 91 -
inc/admin/lib.pager.php
r1364 r1468 58 58 } 59 59 60 echo '<p >'.__('Page(s)').' : '.$pager->getLinks().'</p>';60 echo '<p class="pagination">'.__('Page(s)').' : '.$pager->getLinks().'</p>'; 61 61 62 62 $blocks = explode('%s',$html_block); … … 71 71 echo $blocks[1]; 72 72 73 echo '<p >'.__('Page(s)').' : '.$pager->getLinks().'</p>';73 echo '<p class="pagination">'.__('Page(s)').' : '.$pager->getLinks().'</p>'; 74 74 } 75 75 } … … 93 93 switch ($this->rs->post_status) { 94 94 case 1: 95 $img_status = sprintf($img,__(' published'),'check-on.png');95 $img_status = sprintf($img,__('Published'),'check-on.png'); 96 96 break; 97 97 case 0: 98 $img_status = sprintf($img,__(' unpublished'),'check-off.png');98 $img_status = sprintf($img,__('Unpublished'),'check-off.png'); 99 99 break; 100 100 case -1: 101 $img_status = sprintf($img,__(' scheduled'),'scheduled.png');101 $img_status = sprintf($img,__('Scheduled'),'scheduled.png'); 102 102 break; 103 103 case -2: 104 $img_status = sprintf($img,__(' pending'),'check-wrn.png');104 $img_status = sprintf($img,__('Pending'),'check-wrn.png'); 105 105 break; 106 106 } … … 108 108 $protected = ''; 109 109 if ($this->rs->post_password) { 110 $protected = sprintf($img,__(' protected'),'locker.png');110 $protected = sprintf($img,__('Protected'),'locker.png'); 111 111 } 112 112 113 113 $selected = ''; 114 114 if ($this->rs->post_selected) { 115 $selected = sprintf($img,__(' selected'),'selected.png');115 $selected = sprintf($img,__('Selected'),'selected.png'); 116 116 } 117 117 … … 170 170 } 171 171 172 echo '<p >'.__('Page(s)').' : '.$pager->getLinks().'</p>';172 echo '<p class="pagination">'.__('Page(s)').' : '.$pager->getLinks().'</p>'; 173 173 174 174 $blocks = explode('%s',$html_block); … … 183 183 echo $blocks[1]; 184 184 185 echo '<p >'.__('Page(s)').' : '.$pager->getLinks().'</p>';185 echo '<p class="pagination">'.__('Page(s)').' : '.$pager->getLinks().'</p>'; 186 186 } 187 187 } … … 192 192 switch ($this->rs->post_status) { 193 193 case 1: 194 $img_status = sprintf($img,__(' published'),'check-on.png');194 $img_status = sprintf($img,__('Published'),'check-on.png'); 195 195 break; 196 196 case 0: 197 $img_status = sprintf($img,__(' unpublished'),'check-off.png');197 $img_status = sprintf($img,__('Unpublished'),'check-off.png'); 198 198 break; 199 199 case -1: 200 $img_status = sprintf($img,__(' scheduled'),'scheduled.png');200 $img_status = sprintf($img,__('Scheduled'),'scheduled.png'); 201 201 break; 202 202 case -2: 203 $img_status = sprintf($img,__(' pending'),'check-wrn.png');203 $img_status = sprintf($img,__('Pending'),'check-wrn.png'); 204 204 break; 205 205 } … … 207 207 $protected = ''; 208 208 if ($this->rs->post_password) { 209 $protected = sprintf($img,__(' protected'),'locker.png');209 $protected = sprintf($img,__('Protected'),'locker.png'); 210 210 } 211 211 212 212 $selected = ''; 213 213 if ($this->rs->post_selected) { 214 $selected = sprintf($img,__(' selected'),'selected.png');214 $selected = sprintf($img,__('Selected'),'selected.png'); 215 215 } 216 216 … … 267 267 } 268 268 269 echo '<p >'.__('Page(s)').' : '.$pager->getLinks().'</p>';269 echo '<p class="pagination">'.__('Page(s)').' : '.$pager->getLinks().'</p>'; 270 270 271 271 $blocks = explode('%s',$html_block); … … 280 280 echo $blocks[1]; 281 281 282 echo '<p >'.__('Page(s)').' : '.$pager->getLinks().'</p>';282 echo '<p class="pagination">'.__('Page(s)').' : '.$pager->getLinks().'</p>'; 283 283 } 284 284 } … … 306 306 switch ($this->rs->comment_status) { 307 307 case 1: 308 $img_status = sprintf($img,__(' published'),'check-on.png');308 $img_status = sprintf($img,__('Published'),'check-on.png'); 309 309 break; 310 310 case 0: 311 $img_status = sprintf($img,__(' unpublished'),'check-off.png');311 $img_status = sprintf($img,__('Unpublished'),'check-off.png'); 312 312 break; 313 313 case -1: 314 $img_status = sprintf($img,__(' pending'),'check-wrn.png');314 $img_status = sprintf($img,__('Pending'),'check-wrn.png'); 315 315 break; 316 316 case -2: 317 $img_status = sprintf($img,__(' junk'),'junk.png');317 $img_status = sprintf($img,__('Junk'),'junk.png'); 318 318 break; 319 319 } … … 374 374 } 375 375 376 echo '<p >'.__('Page(s)').' : '.$pager->getLinks().'</p>';376 echo '<p class="pagination">'.__('Page(s)').' : '.$pager->getLinks().'</p>'; 377 377 378 378 $blocks = explode('%s',$html_block); … … 387 387 echo $blocks[1]; 388 388 389 echo '<p >'.__('Page(s)').' : '.$pager->getLinks().'</p>';389 echo '<p class="pagination">'.__('Page(s)').' : '.$pager->getLinks().'</p>'; 390 390 } 391 391 }
Note: See TracChangeset
for help on using the changeset viewer.