Changeset 208620
- Timestamp:
- 02/21/2010 03:03:42 PM (16 years ago)
- Location:
- capa
- Files:
-
- 14 edited
- 1 copied
-
tags/0.5.6.2 (copied) (copied from capa/trunk)
-
tags/0.5.6.2/capa-options.php (modified) (23 diffs)
-
tags/0.5.6.2/capa-user-edit.php (modified) (5 diffs)
-
tags/0.5.6.2/capa.php (modified) (4 diffs)
-
tags/0.5.6.2/css/capa-style.css (modified) (2 diffs)
-
tags/0.5.6.2/lang/capa-de_DE.mo (modified) (previous)
-
tags/0.5.6.2/lang/capa-de_DE.po (modified) (4 diffs)
-
tags/0.5.6.2/readme.txt (modified) (2 diffs)
-
trunk/capa-options.php (modified) (23 diffs)
-
trunk/capa-user-edit.php (modified) (5 diffs)
-
trunk/capa.php (modified) (4 diffs)
-
trunk/css/capa-style.css (modified) (2 diffs)
-
trunk/lang/capa-de_DE.mo (modified) (previous)
-
trunk/lang/capa-de_DE.po (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
capa/tags/0.5.6.2/capa-options.php
r163778 r208620 18 18 19 19 // Add a new top-level menu (ill-advised): 20 $page['global'] = add_menu_page( __('CaPa › G lobal Settings','capa'), 'CaPa', 8, __FILE__, 'capa_global_page','div');20 $page['global'] = add_menu_page( __('CaPa › General Settings','capa'), 'CaPa', 8, __FILE__, 'capa_global_page','div'); 21 21 22 22 // Add a submenu to the custom top-level menu: 23 $page['roles'] = add_submenu_page(__FILE__, __('CaPa › Roles','capa'), __('Roles','capa'),8, 'sub-page', 'capa_sublevel_roles');23 $page['roles'] = add_submenu_page(__FILE__, __('CaPa › User Roles','capa'), __('User Roles','capa'), 8, 'sub-page', 'capa_sublevel_roles'); 24 24 25 25 // Add a second submenu to the custom top-level menu: 26 $page['users'] = add_submenu_page(__FILE__, __('CaPa › Anonymous Users','capa'), __('Anonymous User','capa'), 8, 'sub-page2', 'capa_sublevel_users');26 $page['users'] = add_submenu_page(__FILE__, __('CaPa › Visitors','capa'), __('Visitors','capa'), 8, 'sub-page2', 'capa_sublevel_users'); 27 27 28 28 // Add a third submenu to the custom top-level menu: 29 $page['help'] = add_submenu_page(__FILE__, __('CaPa › Help','capa'), __('Help','capa'), 8, 'sub-page3', 'capa_sublevel_help');29 $page['help'] = add_submenu_page(__FILE__, __('CaPa › Support','capa'), __('CaPa Support','capa'), 8, 'sub-page3', 'capa_sublevel_support'); 30 30 31 31 // Add Help … … 54 54 echo (function_exists('screen_icon')) ? screen_icon('options-general') : NULL; 55 55 56 echo '<h2 style="margin-bottom:15px;">' . __('CaPa » G lobal Settings','capa') . '</h2>';56 echo '<h2 style="margin-bottom:15px;">' . __('CaPa » General settings','capa') . '<br><span class="description" style="line-height:0.5em;">'. __('These settings define the display of the CaPa protected content on your blog.','capa'). '</span></h2>'; 57 57 58 58 echo '<form name="capa_protect" method="post" action="'.$page_uri.'">'; … … 62 62 echo ' 63 63 <table class="form-table capa-form-table"> 64 <tr valign="top">65 <th scope="row">'.__('Protected Posts in the Blog','capa').'</th>66 <td>67 <label>68 <input type="radio" name="capa_protect_post_policy" onClick="capa_enable_disable_form_elements()" value="hide" ' .69 (get_option('capa_protect_post_policy') == 'hide' ||70 get_option('capa_protect_post_policy') == false &&71 get_option('capa_protect_show_private_message') == false ? ' checked' : '') .72 '> '. __('Hide entire post.', 'capa') .'73 </label>74 <br>75 <label>76 <input type="radio" name="capa_protect_post_policy" onClick="capa_enable_disable_form_elements()" value="show title"' .77 (get_option('capa_protect_post_policy') == 'show title' ? ' checked' : '') .78 '> '. __('Show title, but a private message for the content.', 'capa') .'79 </label>80 <br>81 <label>82 <input type="radio" name="capa_protect_post_policy" onClick="capa_enable_disable_form_elements()" value="show message"' .83 (get_option('capa_protect_post_policy') == 'show message' ||84 get_option('capa_protect_show_private_message') == true ? ' checked' : '') .85 '> '. __('Show title and content.', 'capa') .'86 </label>87 88 <label for="capa_protect_private_message" id="capa_protect_private_message">89 <h4>'. __('The private post message','capa') .':</h4>' .90 '<input name="capa_protect_private_message" type="text" size="50"' .91 ' value="'.$private_message.'" />92 </label>93 </td>94 </tr>';95 96 echo '97 64 <tr> 98 <th scope="row">'.__(' The Pages','capa').'</th>65 <th scope="row">'.__('Page display','capa').'</th> 99 66 <td> 100 67 <label> 101 68 <input name="capa_protect_show_private_pages" type="checkbox" onClick="capa_enable_disable_form_elements()"' . 102 69 (get_option('capa_protect_show_private_pages') ? " checked" : "") . 103 '> ' . __('Show private pages','capa') .' 104 </label> 70 '> ' . __('Show protected pages','capa') .' 71 </label> 72 <br> 73 <span class="description" style="margin-left:10px;">'. __('Checking this option will show links to all the pages.','capa'). '</span> 74 <br> 75 <div style="margin-left:10px;"> 76 </div> 105 77 </td> 106 78 </tr> … … 114 86 '> ' . __('Show private categories','capa') .' 115 87 </label> 116 <br> 88 <br> 89 <span class="description" style="margin-left:10px;">'. __('Checking this option will show links to all the Categories.','capa'). '</span> 90 91 <br> 117 92 <label id="capa_protect_show_padlock_on_private_categories"> 118 93 <input name="capa_protect_show_padlock_on_private_categories" type="checkbox" '. … … 121 96 </label> 122 97 </td> 123 </tr>'; 124 125 echo ' 98 </tr> 99 100 <tr valign="top"> 101 <th scope="row">'.__('Posts and pages display.','capa').' 102 <br> 103 <span class="description">'. __('How do you want to display a protected post or page?','capa'). '</span> 104 </th> 105 <td> 106 <label> 107 <input type="radio" name="capa_protect_post_policy" onClick="capa_enable_disable_form_elements()" value="hide" ' . 108 (get_option('capa_protect_post_policy') == 'hide' || 109 get_option('capa_protect_post_policy') == false && 110 get_option('capa_protect_show_private_message') == false ? ' checked' : '') . 111 '> '. __('Hide everything','capa') .' 112 </label> 113 <br> 114 <label> 115 <input type="radio" name="capa_protect_post_policy" onClick="capa_enable_disable_form_elements()" value="show message"' . 116 (get_option('capa_protect_post_policy') == 'show message' || 117 get_option('capa_protect_show_private_message') == true ? ' checked' : '') . 118 '> '. __('Show everything','capa') .' 119 </label> 120 <br> 121 <label> 122 <input type="radio" name="capa_protect_post_policy" onClick="capa_enable_disable_form_elements()" value="show title"' . 123 (get_option('capa_protect_post_policy') == 'show title' ? ' checked' : '') . 124 '> '. __('Show title and the private message as content','capa') .' 125 126 </label> 127 </td> 128 </tr> 129 <tr> 130 <th scope="row">'. __('The private message','capa') .'</th> 131 <td> 132 <label for="capa_protect_private_message" id="capa_protect_private_message"> 133 <input name="capa_protect_private_message" type="text" size="50"' . 134 ' value="'.$private_message.'" /> 135 </label> 136 </td> 137 </tr> 138 126 139 <tr> 127 140 <th scope="row">'.__('The Comments','capa').'</th> … … 163 176 164 177 </td> 165 </tr>'; 166 167 echo ' 178 </tr> 179 168 180 <tr> 169 181 <th scope="row">' .__('Miscellaneous','capa'). '</th> … … 172 184 <input type="checkbox" name="capa_protect_keep_options" value="on"' . 173 185 (get_option('capa_protect_keep_options') == '1' ? ' checked' : '') . 174 '> '. __('Keep CaPa Settings', 'capa') .'186 '> '. __('Keep CaPa Settings','capa') .' 175 187 </label><br> 176 <span class="description" style="margin-left:10px;">'. __('In the Case that CaPa is disabled but you wants to keep the Settings.', 'capa'). '</span>188 <span class="description" style="margin-left:10px;">'. __('In the Case that CaPa is disabled but you wants to keep the Settings.','capa'). '</span> 177 189 </td> 178 190 </tr> 179 191 </table> 180 181 192 '; 182 193 183 194 echo ' 184 195 <p class="submit" style="float:left; margin-right:10px;"> 185 <button type="submit" name="submit" class="button-primary" value="Update Global Options" >'. __('Update Global Options','capa') .'</button>196 <button type="submit" name="submit" class="button-primary" value="Update general settings" >'. __('Update general settings','capa') .'</button> 186 197 </p> 187 198 <p class="submit"> 188 <button type="submit" name="submit" class="button-secondary" value="Reset Global Options" >'. __('Reset Global Options','capa').'</button>199 <button type="submit" name="submit" class="button-secondary" value="Reset defaults" >'. __('Reset defaults','capa').'</button> 189 200 </p> 190 201 … … 204 215 // For WP < 27 205 216 echo (function_exists('screen_icon')) ? screen_icon('users') : NULL; 206 echo '<h2 style="margin-bottom:15px;">' . __('CaPa » Roles','capa') . '</h2>';217 echo '<h2 style="margin-bottom:15px;">' . __('CaPa » Users Roles','capa') . '</h2>'; 207 218 208 219 // -------------------------------------------------------------- … … 228 239 // -------------------------------------------------------------- 229 240 230 echo '<h2 style="margin-bottom:15px;">' . _ _('Categories','capa') . '</h2>';231 241 echo '<h2 style="margin-bottom:15px;">' . _n('Category visibility','Categories visibility',count($categorys),'capa') . '<br><span class="description" style="line-height:0.5em;">'. __('Select which categories are available for each user role.','capa'). '</span></h2>'; 242 232 243 echo ' 233 244 <table class="widefat fixed"> 234 245 <thead style="background:#E6E6E6;"> 235 246 <tr> 236 <th> <b>'.__('Categories','capa').'</b></th>247 <th> </th> 237 248 <th style="text-align:center;">'.__('Administrator','capa').'</th> 238 249 <th style="text-align:center;">'.__('Editor','capa').'</th> … … 273 284 ob_end_clean(); 274 285 275 preg_match_all("#category-(? <id>(\d+))'( |>)#isU",$cat_output, $sort_order, PREG_PATTERN_ORDER);286 preg_match_all("#category-(?P<id>(\d+))'( |>)#isU",$cat_output, $sort_order, PREG_PATTERN_ORDER); 276 287 $sort_order = $sort_order['id']; 277 288 $i = 0; … … 302 313 // -------------------------------------------------------------- 303 314 if($pages){ 304 305 echo '<h2 style="margin-bottom:15px;">' . _ _('Pages','capa') . '</h2>';315 316 echo '<h2 style="margin-bottom:15px;">' . _n('Page visibility', 'Pages visibility', count($pages),'capa') . '<br><span class="description" style="line-height:0.5em;">'. __('Select which pages are available for each user role.','capa'). '</span></h2>'; 306 317 307 318 echo ' … … 309 320 <thead style="background:#E6E6E6;"> 310 321 <tr> 311 <th> <b>'.__('Pages','capa').'</b></th>322 <th> </th> 312 323 <th style="text-align:center;">'.__('Administrator','capa').'</th> 313 324 <th style="text-align:center;">'.__('Editor','capa').'</th> … … 365 376 echo ' 366 377 <p class="submit" style="float:left; margin-right:10px;"> 367 <button type="submit" name="submit" class="button-primary" value="Update Role Options" >'. __('Update Role Options','capa') .'</button>378 <button type="submit" name="submit" class="button-primary" value="Update Role Options" >'. __('Update user roles settings','capa') .'</button> 368 379 </p> 369 380 <p class="submit"> 370 <button type="submit" name="submit" class="button" value="Reset Role Options" >'. __('Reset Role Options','capa').'</button>381 <button type="submit" name="submit" class="button" value="Reset Role Options" >'. __('Reset user roles','capa').'</button> 371 382 </p> 372 383 </form>'; … … 381 392 // For WP < 27 382 393 echo (function_exists('screen_icon')) ? screen_icon('users') : NULL; 383 echo '<h2 style="margin-bottom:15px;">' . __('CaPa » Anonymous Users','capa') . '</h2>';394 echo '<h2 style="margin-bottom:15px;">' . __('CaPa » Visitors','capa') . '<br><span class="description" style="line-height:0.5em;">'. __('Here you can set which categories and pages will be visible to the users that are not logged in.','capa'). '</span></h2>'; 384 395 385 396 // -------------------------------------------------------------- … … 408 419 ob_end_clean(); 409 420 410 preg_match_all("#category-(? <id>(\d+))'( |>)#isU",$cat_output, $sort_order, PREG_PATTERN_ORDER);421 preg_match_all("#category-(?P<id>(\d+))'( |>)#isU",$cat_output, $sort_order, PREG_PATTERN_ORDER); 411 422 $sort_order = $sort_order['id']; 412 423 // -- @END -- … … 425 436 426 437 echo '<td>'; 427 // Category table428 echo '<h3>'. __('Category & Pages Access for Anonymous Users','capa') .'</h3>';429 echo '<p>' . __('Set the visibility of categories / pages for users that are not logged in below.','capa').'</p>';430 438 431 439 echo '</td><tr>'; … … 520 528 // CATEGORIES 521 529 echo ' 522 <table class="widefat fixedcapa-table" cellspacing="0">530 <table class="widefat capa-table" cellspacing="0"> 523 531 <thead> 524 532 <tr> 525 <th scope="col" id="name" class="manage-column column-name">'. _ _('Categories','capa') .'</th>526 <th scope="col" id="name" class="manage-column column-name">'. _ _('Pages','capa') .'</th>533 <th scope="col" id="name" class="manage-column column-name">'. _n('Category visibility', 'Categories visibility', count($categorys),'capa') .'</th> 534 <th scope="col" id="name" class="manage-column column-name">'. _n('Page visibility', 'Pages visibility', count($pages),'capa') .'</th> 527 535 </tr> 528 536 </thead> … … 600 608 echo ' 601 609 <p class="submit" style="float:left; margin-right:10px;"> 602 <button type="submit" name="submit" class="button-primary" value="Update User Options">'. __('Update User Options','capa') .'</button>610 <button type="submit" name="submit" class="button-primary" value="Update User Options">'. __('Update visitors settings','capa') .'</button> 603 611 </p> 604 612 <p class="submit"> 605 <button type="submit" name="submit" class="button" value="Reset User Options">'. __('Reset User Options','capa').'</button>613 <button type="submit" name="submit" class="button" value="Reset User Options">'. __('Reset visitors','capa').'</button> 606 614 </p> 607 615 </form>'; … … 611 619 612 620 // capa_subleve_debug() displays information for an better help 613 function capa_sublevel_ help() {621 function capa_sublevel_support() { 614 622 // Check if POST isnt empty 615 623 ($_POST) ? capa_handle_action() : NULL ; … … 618 626 // For WP < 27 619 627 echo (function_exists('screen_icon')) ? screen_icon('edit-comments') : NULL; 620 echo '<h2 style="margin-bottom:15px;">' . __('CaPa » Help','capa') . '</h2>';628 echo '<h2 style="margin-bottom:15px;">' . __('CaPa » CaPa Support','capa') . '</h2>'; 621 629 622 630 echo '<h3>'.__('Information to provide a faster way to help you.','capa').'</h3>'; … … 708 716 <tr> 709 717 <th style="font-size:11px;">'; 710 echo '<b>'.__('Tit el','capa').'</b>';718 echo '<b>'.__('Title','capa').'</b>'; 711 719 712 720 echo' </th> 713 721 <td valign="top">'; 714 722 echo '<input type="text" name="titel" value="Help Info from '.get_option('blogname').'" class="regular-text">'; 715 echo '<span class="description"> '. __('You can change the Tit elas you wish.','capa') .'</span>';723 echo '<span class="description"> '. __('You can change the Title as you wish.','capa') .'</span>'; 716 724 echo' </td> 717 725 </tr> … … 752 760 global $_POST; 753 761 754 if ($_POST['submit'] == ' Reset Global Options') {762 if ($_POST['submit'] == 'reset defaults') { 755 763 delete_option('capa_protect_private_message'); 756 764 delete_option('capa_protect_post_policy'); … … 804 812 805 813 806 if($_POST['submit'] == 'Update Global Options'){814 if($_POST['submit'] == 'Update general settings'){ 807 815 808 816 // Comment Update -
capa/tags/0.5.6.2/capa-user-edit.php
r163698 r208620 48 48 echo (function_exists('screen_icon')) ? screen_icon('plugins') : NULL; 49 49 50 echo '<h2>'. __('CaPa » User Settings','capa').'</h2>'; 51 echo '<p class="desc">'. __('The following checked categories & pages are visible for this user.','capa').'</p>'; 50 echo '<h2 style="margin-bottom:30px;">'. __('CaPa » User Settings','capa').'<br><span class="description" style="line-height:0.5em;">'. __('Here you can set categories and pages only for this users.','capa'). '</span></h2>'; 52 51 53 52 $user_id = empty($_POST['user_id']) ? $_GET['user_id'] : $_POST['user_id']; … … 57 56 58 57 echo '<h3>'. __('Access','capa') .' & </h3>'; 59 echo '<p class="desc">'. __('As a manager, this user can viewall categories & pages.','capa').'</p>';58 echo '<p class="desc">'. __('As a manager, this user see all categories & pages.','capa').'</p>'; 60 59 61 60 }else{ … … 83 82 ob_end_clean(); 84 83 85 preg_match_all("#category-(? <id>(\d+))'( |>)#isU",$cat_output, $sort_order, PREG_PATTERN_ORDER);84 preg_match_all("#category-(?P<id>(\d+))'( |>)#isU",$cat_output, $sort_order, PREG_PATTERN_ORDER); 86 85 $sort_order = $sort_order['id']; 87 86 // -- @END -- … … 103 102 <thead> 104 103 <tr> 105 <th scope="col" id="name" class="manage-column column-name">'. _ _('Categories','capa') .'</th>106 <th scope="col" id="name" class="manage-column column-name">'. _ _('Pages','capa') .'</th>104 <th scope="col" id="name" class="manage-column column-name">'. _n('Category visibility','Categories visibility',count($categorys),'capa') .'</th> 105 <th scope="col" id="name" class="manage-column column-name">'. _n('Page visibility','Pages visibility',count($pages),'capa') .'</th> 107 106 </tr> 108 107 </thead> … … 176 175 177 176 echo '<input type="checkbox" name="capa_protect_user_reset"> '. __('Reset current CaPa user settings','capa'); 178 echo '<br><br><hr> <br>';177 echo '<br><br><hr>'; 179 178 180 179 echo '</div>'; -
capa/tags/0.5.6.2/capa.php
r163778 r208620 3 3 Plugin Name: CaPa Protect 4 4 Plugin URI: http://www.smatern.de/category/coding/capa/ 5 Description: Protects Categories, Pages and Posts from specific users.6 Version: 0.5.6. 15 Description: CaPa provides Category & Pages protection on a roles & user basis. 6 Version: 0.5.6.2 7 7 Author: S. Matern 8 8 Author URI: http://www.smatern.de … … 19 19 $capa_protect_private_message = get_option("capa_protect_private_message"); 20 20 $capa_protect_post_policy = get_option('capa_protect_post_policy'); 21 $capa_protect_default_private_message = __('Sorry, you do not have sufficient privileges to view this post.', 'capa'); ;21 $capa_protect_default_private_message = __('Sorry, you do not have sufficient privileges to view this post.', 'capa'); 22 22 $capa_protect_show_private_message = get_option('capa_protect_show_private_message'); 23 23 $capa_protect_show_private_categories = get_option('capa_protect_show_private_categories'); … … 507 507 508 508 return $sql; 509 510 509 } 511 510 … … 1014 1013 1015 1014 function cleanup_capa_help($params){ 1016 $search_string = '_<h5>' . __('Other Help' ).'(.*)</div>{1}_';1015 $search_string = '_<h5>' . __('Other Help','capa').'(.*)</div>{1}_'; 1017 1016 // Remove Other Help from Capa Wordpress Adminpages 1018 1017 return preg_replace($search_string, '', $params); -
capa/tags/0.5.6.2/css/capa-style.css
r163698 r208620 24 24 display: block; 25 25 } 26 27 26 .capa-form-table h4{ 28 27 margin-bottom: 0px; … … 32 31 .capa-table thead th{ 33 32 text-align: center; 33 } 34 35 .capa-form-table tbody tr{ 36 border-top: 5px solid transparent; 34 37 } 35 38 .capa-tbody th label{ -
capa/tags/0.5.6.2/lang/capa-de_DE.po
r163778 r208620 3 3 "Project-Id-Version: CaPa Protect\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 20 09-10-15 22:20+0100\n"6 "PO-Revision-Date: 20 09-10-15 22:21+0100\n"5 "POT-Creation-Date: 2010-02-18 19:31+0100\n" 6 "PO-Revision-Date: 2010-02-18 19:31+0100\n" 7 7 "Last-Translator: \n" 8 8 "Language-Team: \n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "X-Poedit-KeywordsList: __;_e \n"12 "X-Poedit-KeywordsList: __;_e;_n:1,2\n" 13 13 "X-Poedit-Basepath: .\n" 14 "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 15 "X-Poedit-Language: German\n" 15 16 "X-Poedit-Country: GERMANY\n" 17 "X-Poedit-SourceCharset: utf-8\n" 16 18 "X-Poedit-SearchPath-0: /Users/sascha/Sites/wp/plugins/capa/trunk\n" 17 19 18 20 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:20 19 msgid "CaPa › G lobal Settings"21 msgid "CaPa › General Settings" 20 22 msgstr "CaPa › Allgemeine Einstellungen" 21 23 22 24 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:23 23 msgid "CaPa › Roles"25 msgid "CaPa › User Roles" 24 26 msgstr "CaPa › Rollen" 25 27 26 28 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:23 27 msgid " Roles"29 msgid "User Roles" 28 30 msgstr "Rollen" 29 31 30 32 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:26 31 msgid "CaPa › Anonymous Users"32 msgstr "CaPa › Anonymer Benutzer"33 msgid "CaPa › Visitors" 34 msgstr "CaPa › Besucher" 33 35 34 36 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:26 35 msgid " Anonymous User"36 msgstr " Anonymer Benutzer"37 msgid "Visitors" 38 msgstr "Besucher" 37 39 38 40 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:29 39 msgid "CaPa › Help"40 msgstr "CaPa » Hilfe"41 msgid "CaPa › Support" 42 msgstr "CaPa » Support" 41 43 42 44 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:29 43 msgid " Help"44 msgstr " Hilfe"45 msgid "CaPa Support" 46 msgstr "CaPa Support" 45 47 46 48 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:56 47 msgid "CaPa » G lobal Settings"49 msgid "CaPa » General settings" 48 50 msgstr "CaPa » Allgemeine Einstellungen" 49 51 52 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:56 53 msgid "These settings define the display of the CaPa protected content on your blog." 54 msgstr "Diese Einstellung definieren die Darstellung von CaPa geschüschten Inhalt in Ihrem Blog." 55 50 56 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:65 51 msgid "Protected Posts in the Blog" 52 msgstr "Schutz für die Beiträge" 53 54 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:72 55 msgid "Hide entire post." 56 msgstr "Verstecke Beitrag" 57 58 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:78 59 msgid "Show title, but a private message for the content." 60 msgstr "Zeige Title und eine private Nachricht für den Inhalt" 61 62 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:85 63 msgid "Show title and content." 64 msgstr "Zeige Titel & Inhalt" 65 57 msgid "Page display" 58 msgstr "Seiten Darstellung" 59 60 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:70 61 msgid "Show protected pages" 62 msgstr "Zeige geschützte Seiten" 63 64 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:73 66 65 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:89 67 msgid "The private post message" 68 msgstr "Private Nachricht" 69 70 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:98 71 msgid "The Pages" 72 msgstr "Seiten" 73 74 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:103 75 msgid "Show private pages" 76 msgstr "Zeige geschützte Seiten" 77 78 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:109 66 msgid "Checking this option will show links to all the pages." 67 msgstr "Bei Aktivierung dieser Option werden die Links zu allen Seiten gezeigt." 68 69 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:81 79 70 msgid "The Category List" 80 71 msgstr "Kategorien" 81 72 82 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php: 11473 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:86 83 74 msgid "Show private categories" 84 75 msgstr "Zeige geschützte Kategorien" 85 76 86 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php: 12077 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:95 87 78 msgid "Show a padlock icon next to private categories" 88 79 msgstr "Zeige ein Schloss Symbol neben geschützten Kategorie Namen" 89 80 90 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:127 81 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:101 82 msgid "Posts and pages display." 83 msgstr "Beiträge und Seiten Darstellung" 84 85 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:103 86 msgid "How do you want to display a protected post or page?" 87 msgstr "Wie möchten Sie die geschüsten Beiträge und Seiten zeigen?" 88 89 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:111 90 msgid "Hide everything" 91 msgstr "Verstecke alles" 92 93 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:118 94 msgid "Show everything" 95 msgstr "Zeige alles" 96 97 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:124 98 msgid "Show title and the private message as content" 99 msgstr "Zeige Title und eine private Nachricht für den Inhalt" 100 101 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:130 102 msgid "The private message" 103 msgstr "Private Nachricht" 104 105 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:140 91 106 msgid "The Comments" 92 107 msgstr "Kommentare" 93 108 94 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:1 29109 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:142 95 110 msgid "Public & Allowed Comments" 96 111 msgstr "Ungeschützte & Erlaubte Kommentare" 97 112 98 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:1 35113 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:148 99 114 msgid "Hide all comments." 100 115 msgstr "Verstecke alle Kommentar" 101 116 102 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:1 41117 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:154 103 118 msgid "Show Author, but the private message for the content." 104 119 msgstr "Zeige Autor, aber eine private Nachricht für den Inhalt." 105 120 106 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:1 47121 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:160 107 122 msgid "Show content, but no author." 108 123 msgstr "Zeige Inhalt, aber keinen Autor Namen." 109 124 110 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:1 53125 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:166 111 126 msgid "Show everything." 112 127 msgstr "Zeige alles" 113 128 114 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:1 56129 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:169 115 130 msgid "Private Comments" 116 131 msgstr "Geschützte Kommentare" 117 132 118 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:1 61133 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:174 119 134 msgid "Use the Settings for comments from protected Posts." 120 135 msgstr "Benutze die selben Einstellungen für Kommentare von geschützten Beiträge." 121 136 122 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:1 69137 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:181 123 138 msgid "Miscellaneous" 124 139 msgstr "Verschiedenes" 125 140 126 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:1 74141 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:186 127 142 msgid "Keep CaPa Settings" 128 143 msgstr "Behalte CaPa Einstellung" 129 144 130 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:1 76145 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:188 131 146 msgid "In the Case that CaPa is disabled but you wants to keep the Settings." 132 147 msgstr "Behält die Einstellung, wenn CaPa deaktiviert ist." 133 148 134 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:1 85135 msgid "Update Global Options"149 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:196 150 msgid "Update general settings" 136 151 msgstr "Änderungen übernehmen" 137 152 138 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:1 88139 msgid "Reset Global Options"140 msgstr " Allgemeine Einstellungenzurücksetzen"141 142 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:2 06143 msgid "CaPa » Roles"153 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:199 154 msgid "Reset defaults" 155 msgstr "Einstellung zurücksetzen" 156 157 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:217 158 msgid "CaPa » Users Roles" 144 159 msgstr "CaPa » Rollen" 145 160 146 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:230 147 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:236 148 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:525 149 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:105 150 msgid "Categories" 151 msgstr "Kategorien" 152 153 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:237 154 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:312 161 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:241 162 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:533 163 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:104 164 msgid "Category visibility" 165 msgid_plural "Categories visibility" 166 msgstr[0] "Kategorie" 167 msgstr[1] "Kategorien" 168 169 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:241 170 msgid "Select which categories are available for each user role." 171 msgstr "Markiere für jede Rolle die sichtbaren Kategorien." 172 173 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:248 174 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:323 155 175 msgid "Administrator" 156 176 msgstr "Administrator" 157 177 158 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:2 38159 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:3 13178 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:249 179 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:324 160 180 msgid "Editor" 161 181 msgstr "Redakteur" 162 182 163 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:2 39164 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:3 14183 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:250 184 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:325 165 185 msgid "Author" 166 186 msgstr "Autor" 167 187 168 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:2 40169 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:3 15188 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:251 189 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:326 170 190 msgid "Contributor" 171 191 msgstr "Mitarbeiter" 172 192 173 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:2 41174 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:3 16193 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:252 194 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:327 175 195 msgid "Subscriber" 176 196 msgstr "Abonnent" 177 197 178 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:2 47179 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:3 22198 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:258 199 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:333 180 200 msgid "check/uncheck" 181 201 msgstr "" 182 202 183 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:305 184 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:311 185 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:526 186 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:106 187 msgid "Pages" 188 msgstr "Seiten" 189 190 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:367 191 msgid "Update Role Options" 203 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:316 204 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:534 205 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:105 206 msgid "Page visibility" 207 msgid_plural "Pages visibility" 208 msgstr[0] "Sichtbarkeit der Seite" 209 msgstr[1] "Sichtbarkeit der Seiten" 210 211 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:316 212 msgid "Select which pages are available for each user role." 213 msgstr "Wähle aus, welche Seiten sichtbar ist für jede Rolle " 214 215 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:378 216 msgid "Update user roles settings" 192 217 msgstr "Änderungen übernehmen" 193 218 194 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:370 195 msgid "Reset Role Options" 196 msgstr "Rollen Einstellungen zurücksetzen" 197 198 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:383 199 msgid "CaPa » Anonymous Users" 200 msgstr "CaPa » Anonymer Benutzer" 201 202 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:428 203 msgid "Category & Pages Access for Anonymous Users" 204 msgstr "Kategorie Zugriff für Anonyme Besucher" 205 206 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:429 207 msgid "Set the visibility of categories / pages for users that are not logged in below." 208 msgstr "Geben Sie hier die Standart-Seiten für <b>nicht angemeldete</b> Benutzer an. Normalerweise handelt es sich dabei um unangemeldete Benutzer oder Besucher." 209 210 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:534 211 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:114 219 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:381 220 msgid "Reset user roles" 221 msgstr "Benutzer Einstellungen zurücksetzen" 222 223 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:394 224 msgid "CaPa » Visitors" 225 msgstr "CaPa » Besucher" 226 227 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:394 228 msgid "Here you can set which categories and pages will be visible to the users that are not logged in." 229 msgstr "Hier geben Sie an welchen Kategorien & Seiten sichtbar sind für nicht angemeldete Besucher." 230 231 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:542 232 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:113 212 233 msgid "check/uncheck all Categories" 213 234 msgstr "" 214 235 215 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:5 39216 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:11 9236 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:547 237 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:118 217 238 msgid "check/uncheck all Pages" 218 239 msgstr "" 219 240 220 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 02221 msgid "Update User Options"241 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:610 242 msgid "Update visitors settings" 222 243 msgstr "Änderungen übernehmen" 223 244 224 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 05225 msgid "Reset User Options"226 msgstr " BenutzerEinstellungen zurücksetzen"227 228 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:62 0229 msgid "CaPa » Help"230 msgstr "CaPa » Hilfe"231 232 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 22245 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:613 246 msgid "Reset visitors" 247 msgstr "Einstellungen zurücksetzen" 248 249 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:628 250 msgid "CaPa » CaPa Support" 251 msgstr "CaPa » CaPa Support" 252 253 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:630 233 254 msgid "Information to provide a faster way to help you." 234 255 msgstr "Information um eine schnelle Hilfe zu ermöglichen" 235 256 236 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 23257 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:631 237 258 msgid "Information will be send per e-mail. A Copy goes to the Sender E-Mail." 238 259 msgstr "Die Information wird per E-Mail versendet. Eine Kopie wird an die E-Mail Adresse des Versenders geschickt." 239 260 240 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 59241 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 77261 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:667 262 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:685 242 263 msgid "@Active Plugins" 243 264 msgstr "@Aktive Plugins" 244 265 245 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 59266 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:667 246 267 msgid "To avoid Problems between CaPa and others Plugins. All active plugins will be displayed." 247 268 msgstr "Um Probleme zwischen CaPa und anderen Plugins zu verhindern werden alle aktiven Plugins angezeigt." 248 269 249 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:66 1250 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 86270 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:669 271 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:694 251 272 msgid "@Serialize Categories ID's" 252 273 msgstr "@Serialisierte Kategorie ID's" 253 274 254 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:66 1275 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:669 255 276 msgid "Serialize Categories contains only the Categories ID's in menu order" 256 277 msgstr "Serialisierte Kategorien enthalten nur die Kategorien ID's in Menu Reihenfolge " 257 278 258 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 63259 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 89279 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:671 280 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:697 260 281 msgid "@Serialize Pages ID's" 261 282 msgstr "@Serialisierte Seiten ID's" 262 283 263 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 63284 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:671 264 285 msgid "Serialize Pages contains only the Pages ID's in menu order" 265 286 msgstr "Serialisierte Seiten enthalten nur die Seiten ID's in Menu Reihenfolge " 266 287 267 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 65268 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php: 693288 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:673 289 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:701 269 290 msgid "@CaPa Settings" 270 291 msgstr "@CaPa Einstellung" 271 292 272 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 65293 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:673 273 294 msgid "All CaPa Settings" 274 295 msgstr "Alle CaPa Einstellungen" 275 296 276 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 67297 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:675 277 298 msgid "In the case you don't want send all Information, just remove the part's." 278 299 msgstr "Im Falle Sie möchten nicht alle Informationen senden, löschen Sie die nicht gewollten Informationen." 279 300 280 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 72301 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:680 281 302 msgid "@Wordpress" 282 303 msgstr "" 283 304 284 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 74305 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:682 285 306 msgid "Version:" 286 307 msgstr "" 287 308 288 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 75309 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:683 289 310 msgid "PHP Version:" 290 311 msgstr "" 291 312 292 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:71 0313 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:718 293 314 msgid "Titel" 294 315 msgstr "Titel" 295 316 296 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:7 15297 msgid "You can change the Tit elas you wish."317 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:723 318 msgid "You can change the Title as you wish." 298 319 msgstr "Sie können den Titel nach Ihrer Vorstellung ändern." 299 320 300 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:72 1321 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:729 301 322 msgid "Sender" 302 323 msgstr "Versender E-Mail" 303 324 304 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:7 26325 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:734 305 326 msgid "You can change the Sender E-Mail." 306 327 msgstr "Sie können die E-Mail zum Versenden ändern." 307 328 308 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:73 1329 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:739 309 330 msgid "Comment (Optional)" 310 331 msgstr "Kommentar (Optional)" 311 332 312 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:7 42333 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:750 313 334 msgid "Send Help" 314 335 msgstr "Hilfe Abschicken" 315 336 316 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:7 74337 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:782 317 338 msgid "Global Settings are reset." 318 339 msgstr "Globale Einstellung sind zurückgesetzt" 319 340 320 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:7 86341 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:794 321 342 msgid "User Settings are reset." 322 343 msgstr "Benutzer Einstellung wurden zurückgesetzt." 323 344 324 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:80 1345 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:809 325 346 msgid "Role Settings are reset." 326 347 msgstr "Rollen Einstellung wurden zurückgesetzt." 327 348 328 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:8 78349 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:886 329 350 msgid "Global Settings saved." 330 351 msgstr "Globale Einstellung gespeichert." 331 352 332 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:92 1353 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:929 333 354 msgid "Role Settings saved." 334 355 msgstr "Rollen Einstellung gesichert." 335 356 336 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:9 55357 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:963 337 358 msgid "User Settings saved." 338 359 msgstr "Benutzer Einstellung gesichert" 339 360 340 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:9 76361 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:984 341 362 msgid "Message sent." 342 363 msgstr "Nachricht versendet." 343 364 344 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:9 79365 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:987 345 366 msgid "Message wasn't sent. Please try again or send by yourself." 346 367 msgstr "Nachrich wurde nicht geschickt. Bitte probieren Sie es später nochmals oder schicken Sie die E-Mail selber." … … 350 371 msgstr "CaPa » Benutzer Einstellung" 351 372 352 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:5 1353 msgid " The following checked categories & pages are visible for this user."354 msgstr " Markierte Kategorien / Seiten sind für diesen Benutzer sichtbar."355 356 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:5 8373 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:50 374 msgid "Here you can set categories and pages only for this users." 375 msgstr "Hier geben Sie an welche Kategorien & Seiten nur für diesen Benutzer sichtbar sind." 376 377 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:57 357 378 msgid "Access" 358 379 msgstr "Zugriff" 359 380 360 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:5 9361 msgid "As a manager, this user can viewall categories & pages."381 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:58 382 msgid "As a manager, this user see all categories & pages." 362 383 msgstr "Als ein Manager, dieser Benutzer sieht alle Kategorien & Seiten." 363 384 364 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:17 7385 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:176 365 386 msgid "Reset current CaPa user settings" 366 387 msgstr "Capa Benutzer Einstellung zurücksetzen." … … 374 395 msgstr "Unbekannter Author" 375 396 376 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa.php:54 3397 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa.php:542 377 398 msgid "No Title" 378 399 msgstr "Kein Titel" 379 400 380 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa.php:101 6401 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa.php:1015 381 402 msgid "Other Help" 382 403 msgstr "Andere Hilfe" 383 404 384 #~ msgid "Check all categories" 385 #~ msgstr "Alle Kategorien selektieren" 386 #~ msgid "Page Access for Anonymous Users" 387 #~ msgstr "Kategorie Zugriff für Anonyme Besucher" 388 #~ msgid "" 389 #~ "Set the visibility of pages for users that are not logged in below. " 390 #~ "Usually this is the same as or more restrictive than the access granted " 391 #~ "to new users." 392 #~ msgstr "" 393 #~ "Geben Sie hier die Standart-Seiten für <b>nicht angemeldete</b> " 394 #~ "Benutzer an. Normalerweise handelt es sich dabei um unangemeldete " 395 #~ "Benutzer oder Besucher." 396 #~ msgid "Check all pages" 397 #~ msgstr "Alle Seiten selektieren" 398 #~ msgid "Category Access" 399 #~ msgstr "Kategorien" 400 #~ msgid "Page Access" 405 #~ msgid "CaPa › Anonymous Users" 406 #~ msgstr "CaPa › Anonymer Benutzer" 407 #~ msgid "Anonymous User" 408 #~ msgstr "Anonymer Benutzer" 409 #~ msgid "Help" 410 #~ msgstr "Hilfe" 411 #~ msgid "Protected Posts in the Blog" 412 #~ msgstr "Schutz für die Beiträge" 413 #~ msgid "Hide entire post." 414 #~ msgstr "Verstecke Beitrag" 415 #~ msgid "Show title and content." 416 #~ msgstr "Zeige Titel & Inhalt" 417 #~ msgid "The Pages" 401 418 #~ msgstr "Seiten" 402 #~ msgid "Protected Comments in the Blog" 403 #~ msgstr "Kommentarschutz" 404 #~ msgid "The following checked pages are visible to this user." 405 #~ msgstr "Markierte Seiten sind für diesen Benutzer sichtbar" 406 #~ msgid "CaPa Roles" 407 #~ msgstr "CaPa Schutz" 408 #~ msgid "CaPa Anonymous Users" 409 #~ msgstr "Kategorie Zugriff für Anonyme Besucher" 410 #~ msgid "Category Access for New Users" 411 #~ msgstr "Kategorie Zugriff für neu angemeldete Benutzer" 412 #~ msgid "" 413 #~ "Set the default visibility of categories for new users below. These " 414 #~ "values can be set on a user-by-user basis in the management page." 415 #~ msgstr "" 416 #~ "Geben Sie hier die Standart-Kategorien für <b>neu angemeldete</b> " 417 #~ "Benutzer an. Diese Einstellung können Sie bei jedem einzelnen Benutzer " 418 #~ "bei den Benutzereinstellungen ändern." 419 #~ msgid "Pages Access for New Users" 420 #~ msgstr "Seiten Zugriff für neue Benutzer" 421 #~ msgid "" 422 #~ "Set the default visibility of pages for new users below. These values can " 423 #~ "be set on a user-by-user basis in the management page." 424 #~ msgstr "" 425 #~ "Geben Sie hier die Standart-Kategorien für <b>neu angemeldete</b> " 426 #~ "Benutzer an. Diese Einstellung können Sie bei jedem einzelnen Benutzer " 427 #~ "bei den Benutzereinstellungen ändern." 428 #~ msgid "Show a padlock icon on the private post message." 429 #~ msgstr "Zeige ein Schloss in der Privaten Nachricht" 430 #~ msgid "Show Comments from the private post." 431 #~ msgstr "Zeige Kommentar vom geschützen Beitrag" 432 #~ msgid "Advance Protect" 433 #~ msgstr "Erweiterter Schutz" 434 419 #~ msgid "Update Global Options" 420 #~ msgstr "Änderungen übernehmen" 421 #~ msgid "Reset Global Options" 422 #~ msgstr "Allgemeine Einstellungen zurücksetzen" 423 -
capa/tags/0.5.6.2/readme.txt
r163778 r208620 3 3 Donate link: http://www.smatern.de/ 4 4 Tags: restrict, restriction, category, categories, page, pages, protect, comments, security, Post, admin, plugin, posts, invisible, hide comments, comments private, hide comments from non-members 5 Requires at least: 2.6.5 6 Tested up to: 2.8.4 7 Stable tag: 0.5.6.1 8 5 Requires at least: 2.7.1 6 Tested up to: 2.9.2 7 Stable tag: 0.5.6.2 9 8 10 9 Protects Categories, Pages and Posts for specific users & anonymous visitor … … 54 53 55 54 == Changelog == 55 56 = v0.5.6.2 = 57 * CleanUp - Interface ( Huge thanks to Aleksandar for advice & help ) 58 * Bugfix *preg_match_all Error* - missing letter cause an error (php lower then 5.2 is affected) 56 59 57 60 = v0.5.6.1 = -
capa/trunk/capa-options.php
r163778 r208620 18 18 19 19 // Add a new top-level menu (ill-advised): 20 $page['global'] = add_menu_page( __('CaPa › G lobal Settings','capa'), 'CaPa', 8, __FILE__, 'capa_global_page','div');20 $page['global'] = add_menu_page( __('CaPa › General Settings','capa'), 'CaPa', 8, __FILE__, 'capa_global_page','div'); 21 21 22 22 // Add a submenu to the custom top-level menu: 23 $page['roles'] = add_submenu_page(__FILE__, __('CaPa › Roles','capa'), __('Roles','capa'),8, 'sub-page', 'capa_sublevel_roles');23 $page['roles'] = add_submenu_page(__FILE__, __('CaPa › User Roles','capa'), __('User Roles','capa'), 8, 'sub-page', 'capa_sublevel_roles'); 24 24 25 25 // Add a second submenu to the custom top-level menu: 26 $page['users'] = add_submenu_page(__FILE__, __('CaPa › Anonymous Users','capa'), __('Anonymous User','capa'), 8, 'sub-page2', 'capa_sublevel_users');26 $page['users'] = add_submenu_page(__FILE__, __('CaPa › Visitors','capa'), __('Visitors','capa'), 8, 'sub-page2', 'capa_sublevel_users'); 27 27 28 28 // Add a third submenu to the custom top-level menu: 29 $page['help'] = add_submenu_page(__FILE__, __('CaPa › Help','capa'), __('Help','capa'), 8, 'sub-page3', 'capa_sublevel_help');29 $page['help'] = add_submenu_page(__FILE__, __('CaPa › Support','capa'), __('CaPa Support','capa'), 8, 'sub-page3', 'capa_sublevel_support'); 30 30 31 31 // Add Help … … 54 54 echo (function_exists('screen_icon')) ? screen_icon('options-general') : NULL; 55 55 56 echo '<h2 style="margin-bottom:15px;">' . __('CaPa » G lobal Settings','capa') . '</h2>';56 echo '<h2 style="margin-bottom:15px;">' . __('CaPa » General settings','capa') . '<br><span class="description" style="line-height:0.5em;">'. __('These settings define the display of the CaPa protected content on your blog.','capa'). '</span></h2>'; 57 57 58 58 echo '<form name="capa_protect" method="post" action="'.$page_uri.'">'; … … 62 62 echo ' 63 63 <table class="form-table capa-form-table"> 64 <tr valign="top">65 <th scope="row">'.__('Protected Posts in the Blog','capa').'</th>66 <td>67 <label>68 <input type="radio" name="capa_protect_post_policy" onClick="capa_enable_disable_form_elements()" value="hide" ' .69 (get_option('capa_protect_post_policy') == 'hide' ||70 get_option('capa_protect_post_policy') == false &&71 get_option('capa_protect_show_private_message') == false ? ' checked' : '') .72 '> '. __('Hide entire post.', 'capa') .'73 </label>74 <br>75 <label>76 <input type="radio" name="capa_protect_post_policy" onClick="capa_enable_disable_form_elements()" value="show title"' .77 (get_option('capa_protect_post_policy') == 'show title' ? ' checked' : '') .78 '> '. __('Show title, but a private message for the content.', 'capa') .'79 </label>80 <br>81 <label>82 <input type="radio" name="capa_protect_post_policy" onClick="capa_enable_disable_form_elements()" value="show message"' .83 (get_option('capa_protect_post_policy') == 'show message' ||84 get_option('capa_protect_show_private_message') == true ? ' checked' : '') .85 '> '. __('Show title and content.', 'capa') .'86 </label>87 88 <label for="capa_protect_private_message" id="capa_protect_private_message">89 <h4>'. __('The private post message','capa') .':</h4>' .90 '<input name="capa_protect_private_message" type="text" size="50"' .91 ' value="'.$private_message.'" />92 </label>93 </td>94 </tr>';95 96 echo '97 64 <tr> 98 <th scope="row">'.__(' The Pages','capa').'</th>65 <th scope="row">'.__('Page display','capa').'</th> 99 66 <td> 100 67 <label> 101 68 <input name="capa_protect_show_private_pages" type="checkbox" onClick="capa_enable_disable_form_elements()"' . 102 69 (get_option('capa_protect_show_private_pages') ? " checked" : "") . 103 '> ' . __('Show private pages','capa') .' 104 </label> 70 '> ' . __('Show protected pages','capa') .' 71 </label> 72 <br> 73 <span class="description" style="margin-left:10px;">'. __('Checking this option will show links to all the pages.','capa'). '</span> 74 <br> 75 <div style="margin-left:10px;"> 76 </div> 105 77 </td> 106 78 </tr> … … 114 86 '> ' . __('Show private categories','capa') .' 115 87 </label> 116 <br> 88 <br> 89 <span class="description" style="margin-left:10px;">'. __('Checking this option will show links to all the Categories.','capa'). '</span> 90 91 <br> 117 92 <label id="capa_protect_show_padlock_on_private_categories"> 118 93 <input name="capa_protect_show_padlock_on_private_categories" type="checkbox" '. … … 121 96 </label> 122 97 </td> 123 </tr>'; 124 125 echo ' 98 </tr> 99 100 <tr valign="top"> 101 <th scope="row">'.__('Posts and pages display.','capa').' 102 <br> 103 <span class="description">'. __('How do you want to display a protected post or page?','capa'). '</span> 104 </th> 105 <td> 106 <label> 107 <input type="radio" name="capa_protect_post_policy" onClick="capa_enable_disable_form_elements()" value="hide" ' . 108 (get_option('capa_protect_post_policy') == 'hide' || 109 get_option('capa_protect_post_policy') == false && 110 get_option('capa_protect_show_private_message') == false ? ' checked' : '') . 111 '> '. __('Hide everything','capa') .' 112 </label> 113 <br> 114 <label> 115 <input type="radio" name="capa_protect_post_policy" onClick="capa_enable_disable_form_elements()" value="show message"' . 116 (get_option('capa_protect_post_policy') == 'show message' || 117 get_option('capa_protect_show_private_message') == true ? ' checked' : '') . 118 '> '. __('Show everything','capa') .' 119 </label> 120 <br> 121 <label> 122 <input type="radio" name="capa_protect_post_policy" onClick="capa_enable_disable_form_elements()" value="show title"' . 123 (get_option('capa_protect_post_policy') == 'show title' ? ' checked' : '') . 124 '> '. __('Show title and the private message as content','capa') .' 125 126 </label> 127 </td> 128 </tr> 129 <tr> 130 <th scope="row">'. __('The private message','capa') .'</th> 131 <td> 132 <label for="capa_protect_private_message" id="capa_protect_private_message"> 133 <input name="capa_protect_private_message" type="text" size="50"' . 134 ' value="'.$private_message.'" /> 135 </label> 136 </td> 137 </tr> 138 126 139 <tr> 127 140 <th scope="row">'.__('The Comments','capa').'</th> … … 163 176 164 177 </td> 165 </tr>'; 166 167 echo ' 178 </tr> 179 168 180 <tr> 169 181 <th scope="row">' .__('Miscellaneous','capa'). '</th> … … 172 184 <input type="checkbox" name="capa_protect_keep_options" value="on"' . 173 185 (get_option('capa_protect_keep_options') == '1' ? ' checked' : '') . 174 '> '. __('Keep CaPa Settings', 'capa') .'186 '> '. __('Keep CaPa Settings','capa') .' 175 187 </label><br> 176 <span class="description" style="margin-left:10px;">'. __('In the Case that CaPa is disabled but you wants to keep the Settings.', 'capa'). '</span>188 <span class="description" style="margin-left:10px;">'. __('In the Case that CaPa is disabled but you wants to keep the Settings.','capa'). '</span> 177 189 </td> 178 190 </tr> 179 191 </table> 180 181 192 '; 182 193 183 194 echo ' 184 195 <p class="submit" style="float:left; margin-right:10px;"> 185 <button type="submit" name="submit" class="button-primary" value="Update Global Options" >'. __('Update Global Options','capa') .'</button>196 <button type="submit" name="submit" class="button-primary" value="Update general settings" >'. __('Update general settings','capa') .'</button> 186 197 </p> 187 198 <p class="submit"> 188 <button type="submit" name="submit" class="button-secondary" value="Reset Global Options" >'. __('Reset Global Options','capa').'</button>199 <button type="submit" name="submit" class="button-secondary" value="Reset defaults" >'. __('Reset defaults','capa').'</button> 189 200 </p> 190 201 … … 204 215 // For WP < 27 205 216 echo (function_exists('screen_icon')) ? screen_icon('users') : NULL; 206 echo '<h2 style="margin-bottom:15px;">' . __('CaPa » Roles','capa') . '</h2>';217 echo '<h2 style="margin-bottom:15px;">' . __('CaPa » Users Roles','capa') . '</h2>'; 207 218 208 219 // -------------------------------------------------------------- … … 228 239 // -------------------------------------------------------------- 229 240 230 echo '<h2 style="margin-bottom:15px;">' . _ _('Categories','capa') . '</h2>';231 241 echo '<h2 style="margin-bottom:15px;">' . _n('Category visibility','Categories visibility',count($categorys),'capa') . '<br><span class="description" style="line-height:0.5em;">'. __('Select which categories are available for each user role.','capa'). '</span></h2>'; 242 232 243 echo ' 233 244 <table class="widefat fixed"> 234 245 <thead style="background:#E6E6E6;"> 235 246 <tr> 236 <th> <b>'.__('Categories','capa').'</b></th>247 <th> </th> 237 248 <th style="text-align:center;">'.__('Administrator','capa').'</th> 238 249 <th style="text-align:center;">'.__('Editor','capa').'</th> … … 273 284 ob_end_clean(); 274 285 275 preg_match_all("#category-(? <id>(\d+))'( |>)#isU",$cat_output, $sort_order, PREG_PATTERN_ORDER);286 preg_match_all("#category-(?P<id>(\d+))'( |>)#isU",$cat_output, $sort_order, PREG_PATTERN_ORDER); 276 287 $sort_order = $sort_order['id']; 277 288 $i = 0; … … 302 313 // -------------------------------------------------------------- 303 314 if($pages){ 304 305 echo '<h2 style="margin-bottom:15px;">' . _ _('Pages','capa') . '</h2>';315 316 echo '<h2 style="margin-bottom:15px;">' . _n('Page visibility', 'Pages visibility', count($pages),'capa') . '<br><span class="description" style="line-height:0.5em;">'. __('Select which pages are available for each user role.','capa'). '</span></h2>'; 306 317 307 318 echo ' … … 309 320 <thead style="background:#E6E6E6;"> 310 321 <tr> 311 <th> <b>'.__('Pages','capa').'</b></th>322 <th> </th> 312 323 <th style="text-align:center;">'.__('Administrator','capa').'</th> 313 324 <th style="text-align:center;">'.__('Editor','capa').'</th> … … 365 376 echo ' 366 377 <p class="submit" style="float:left; margin-right:10px;"> 367 <button type="submit" name="submit" class="button-primary" value="Update Role Options" >'. __('Update Role Options','capa') .'</button>378 <button type="submit" name="submit" class="button-primary" value="Update Role Options" >'. __('Update user roles settings','capa') .'</button> 368 379 </p> 369 380 <p class="submit"> 370 <button type="submit" name="submit" class="button" value="Reset Role Options" >'. __('Reset Role Options','capa').'</button>381 <button type="submit" name="submit" class="button" value="Reset Role Options" >'. __('Reset user roles','capa').'</button> 371 382 </p> 372 383 </form>'; … … 381 392 // For WP < 27 382 393 echo (function_exists('screen_icon')) ? screen_icon('users') : NULL; 383 echo '<h2 style="margin-bottom:15px;">' . __('CaPa » Anonymous Users','capa') . '</h2>';394 echo '<h2 style="margin-bottom:15px;">' . __('CaPa » Visitors','capa') . '<br><span class="description" style="line-height:0.5em;">'. __('Here you can set which categories and pages will be visible to the users that are not logged in.','capa'). '</span></h2>'; 384 395 385 396 // -------------------------------------------------------------- … … 408 419 ob_end_clean(); 409 420 410 preg_match_all("#category-(? <id>(\d+))'( |>)#isU",$cat_output, $sort_order, PREG_PATTERN_ORDER);421 preg_match_all("#category-(?P<id>(\d+))'( |>)#isU",$cat_output, $sort_order, PREG_PATTERN_ORDER); 411 422 $sort_order = $sort_order['id']; 412 423 // -- @END -- … … 425 436 426 437 echo '<td>'; 427 // Category table428 echo '<h3>'. __('Category & Pages Access for Anonymous Users','capa') .'</h3>';429 echo '<p>' . __('Set the visibility of categories / pages for users that are not logged in below.','capa').'</p>';430 438 431 439 echo '</td><tr>'; … … 520 528 // CATEGORIES 521 529 echo ' 522 <table class="widefat fixedcapa-table" cellspacing="0">530 <table class="widefat capa-table" cellspacing="0"> 523 531 <thead> 524 532 <tr> 525 <th scope="col" id="name" class="manage-column column-name">'. _ _('Categories','capa') .'</th>526 <th scope="col" id="name" class="manage-column column-name">'. _ _('Pages','capa') .'</th>533 <th scope="col" id="name" class="manage-column column-name">'. _n('Category visibility', 'Categories visibility', count($categorys),'capa') .'</th> 534 <th scope="col" id="name" class="manage-column column-name">'. _n('Page visibility', 'Pages visibility', count($pages),'capa') .'</th> 527 535 </tr> 528 536 </thead> … … 600 608 echo ' 601 609 <p class="submit" style="float:left; margin-right:10px;"> 602 <button type="submit" name="submit" class="button-primary" value="Update User Options">'. __('Update User Options','capa') .'</button>610 <button type="submit" name="submit" class="button-primary" value="Update User Options">'. __('Update visitors settings','capa') .'</button> 603 611 </p> 604 612 <p class="submit"> 605 <button type="submit" name="submit" class="button" value="Reset User Options">'. __('Reset User Options','capa').'</button>613 <button type="submit" name="submit" class="button" value="Reset User Options">'. __('Reset visitors','capa').'</button> 606 614 </p> 607 615 </form>'; … … 611 619 612 620 // capa_subleve_debug() displays information for an better help 613 function capa_sublevel_ help() {621 function capa_sublevel_support() { 614 622 // Check if POST isnt empty 615 623 ($_POST) ? capa_handle_action() : NULL ; … … 618 626 // For WP < 27 619 627 echo (function_exists('screen_icon')) ? screen_icon('edit-comments') : NULL; 620 echo '<h2 style="margin-bottom:15px;">' . __('CaPa » Help','capa') . '</h2>';628 echo '<h2 style="margin-bottom:15px;">' . __('CaPa » CaPa Support','capa') . '</h2>'; 621 629 622 630 echo '<h3>'.__('Information to provide a faster way to help you.','capa').'</h3>'; … … 708 716 <tr> 709 717 <th style="font-size:11px;">'; 710 echo '<b>'.__('Tit el','capa').'</b>';718 echo '<b>'.__('Title','capa').'</b>'; 711 719 712 720 echo' </th> 713 721 <td valign="top">'; 714 722 echo '<input type="text" name="titel" value="Help Info from '.get_option('blogname').'" class="regular-text">'; 715 echo '<span class="description"> '. __('You can change the Tit elas you wish.','capa') .'</span>';723 echo '<span class="description"> '. __('You can change the Title as you wish.','capa') .'</span>'; 716 724 echo' </td> 717 725 </tr> … … 752 760 global $_POST; 753 761 754 if ($_POST['submit'] == ' Reset Global Options') {762 if ($_POST['submit'] == 'reset defaults') { 755 763 delete_option('capa_protect_private_message'); 756 764 delete_option('capa_protect_post_policy'); … … 804 812 805 813 806 if($_POST['submit'] == 'Update Global Options'){814 if($_POST['submit'] == 'Update general settings'){ 807 815 808 816 // Comment Update -
capa/trunk/capa-user-edit.php
r163698 r208620 48 48 echo (function_exists('screen_icon')) ? screen_icon('plugins') : NULL; 49 49 50 echo '<h2>'. __('CaPa » User Settings','capa').'</h2>'; 51 echo '<p class="desc">'. __('The following checked categories & pages are visible for this user.','capa').'</p>'; 50 echo '<h2 style="margin-bottom:30px;">'. __('CaPa » User Settings','capa').'<br><span class="description" style="line-height:0.5em;">'. __('Here you can set categories and pages only for this users.','capa'). '</span></h2>'; 52 51 53 52 $user_id = empty($_POST['user_id']) ? $_GET['user_id'] : $_POST['user_id']; … … 57 56 58 57 echo '<h3>'. __('Access','capa') .' & </h3>'; 59 echo '<p class="desc">'. __('As a manager, this user can viewall categories & pages.','capa').'</p>';58 echo '<p class="desc">'. __('As a manager, this user see all categories & pages.','capa').'</p>'; 60 59 61 60 }else{ … … 83 82 ob_end_clean(); 84 83 85 preg_match_all("#category-(? <id>(\d+))'( |>)#isU",$cat_output, $sort_order, PREG_PATTERN_ORDER);84 preg_match_all("#category-(?P<id>(\d+))'( |>)#isU",$cat_output, $sort_order, PREG_PATTERN_ORDER); 86 85 $sort_order = $sort_order['id']; 87 86 // -- @END -- … … 103 102 <thead> 104 103 <tr> 105 <th scope="col" id="name" class="manage-column column-name">'. _ _('Categories','capa') .'</th>106 <th scope="col" id="name" class="manage-column column-name">'. _ _('Pages','capa') .'</th>104 <th scope="col" id="name" class="manage-column column-name">'. _n('Category visibility','Categories visibility',count($categorys),'capa') .'</th> 105 <th scope="col" id="name" class="manage-column column-name">'. _n('Page visibility','Pages visibility',count($pages),'capa') .'</th> 107 106 </tr> 108 107 </thead> … … 176 175 177 176 echo '<input type="checkbox" name="capa_protect_user_reset"> '. __('Reset current CaPa user settings','capa'); 178 echo '<br><br><hr> <br>';177 echo '<br><br><hr>'; 179 178 180 179 echo '</div>'; -
capa/trunk/capa.php
r163778 r208620 3 3 Plugin Name: CaPa Protect 4 4 Plugin URI: http://www.smatern.de/category/coding/capa/ 5 Description: Protects Categories, Pages and Posts from specific users.6 Version: 0.5.6. 15 Description: CaPa provides Category & Pages protection on a roles & user basis. 6 Version: 0.5.6.2 7 7 Author: S. Matern 8 8 Author URI: http://www.smatern.de … … 19 19 $capa_protect_private_message = get_option("capa_protect_private_message"); 20 20 $capa_protect_post_policy = get_option('capa_protect_post_policy'); 21 $capa_protect_default_private_message = __('Sorry, you do not have sufficient privileges to view this post.', 'capa'); ;21 $capa_protect_default_private_message = __('Sorry, you do not have sufficient privileges to view this post.', 'capa'); 22 22 $capa_protect_show_private_message = get_option('capa_protect_show_private_message'); 23 23 $capa_protect_show_private_categories = get_option('capa_protect_show_private_categories'); … … 507 507 508 508 return $sql; 509 510 509 } 511 510 … … 1014 1013 1015 1014 function cleanup_capa_help($params){ 1016 $search_string = '_<h5>' . __('Other Help' ).'(.*)</div>{1}_';1015 $search_string = '_<h5>' . __('Other Help','capa').'(.*)</div>{1}_'; 1017 1016 // Remove Other Help from Capa Wordpress Adminpages 1018 1017 return preg_replace($search_string, '', $params); -
capa/trunk/css/capa-style.css
r163698 r208620 24 24 display: block; 25 25 } 26 27 26 .capa-form-table h4{ 28 27 margin-bottom: 0px; … … 32 31 .capa-table thead th{ 33 32 text-align: center; 33 } 34 35 .capa-form-table tbody tr{ 36 border-top: 5px solid transparent; 34 37 } 35 38 .capa-tbody th label{ -
capa/trunk/lang/capa-de_DE.po
r163778 r208620 3 3 "Project-Id-Version: CaPa Protect\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 20 09-10-15 22:20+0100\n"6 "PO-Revision-Date: 20 09-10-15 22:21+0100\n"5 "POT-Creation-Date: 2010-02-21 15:56+0100\n" 6 "PO-Revision-Date: 2010-02-21 15:58+0100\n" 7 7 "Last-Translator: \n" 8 8 "Language-Team: \n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "X-Poedit-KeywordsList: __;_e \n"12 "X-Poedit-KeywordsList: __;_e;_n:1,2\n" 13 13 "X-Poedit-Basepath: .\n" 14 "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 15 "X-Poedit-Language: German\n" 15 16 "X-Poedit-Country: GERMANY\n" 17 "X-Poedit-SourceCharset: utf-8\n" 16 18 "X-Poedit-SearchPath-0: /Users/sascha/Sites/wp/plugins/capa/trunk\n" 17 19 18 20 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:20 19 msgid "CaPa › G lobal Settings"21 msgid "CaPa › General Settings" 20 22 msgstr "CaPa › Allgemeine Einstellungen" 21 23 22 24 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:23 23 msgid "CaPa › Roles"25 msgid "CaPa › User Roles" 24 26 msgstr "CaPa › Rollen" 25 27 26 28 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:23 27 msgid " Roles"29 msgid "User Roles" 28 30 msgstr "Rollen" 29 31 30 32 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:26 31 msgid "CaPa › Anonymous Users"32 msgstr "CaPa › Anonymer Benutzer"33 msgid "CaPa › Visitors" 34 msgstr "CaPa › Besucher" 33 35 34 36 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:26 35 msgid " Anonymous User"36 msgstr " Anonymer Benutzer"37 msgid "Visitors" 38 msgstr "Besucher" 37 39 38 40 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:29 39 msgid "CaPa › Help"40 msgstr "CaPa » Hilfe"41 msgid "CaPa › Support" 42 msgstr "CaPa » Support" 41 43 42 44 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:29 43 msgid " Help"44 msgstr " Hilfe"45 msgid "CaPa Support" 46 msgstr "CaPa Support" 45 47 46 48 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:56 47 msgid "CaPa » G lobal Settings"49 msgid "CaPa » General settings" 48 50 msgstr "CaPa » Allgemeine Einstellungen" 49 51 52 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:56 53 msgid "These settings define the display of the CaPa protected content on your blog." 54 msgstr "Diese Einstellung definieren die Darstellung von CaPa geschützten Inhalt in Ihrem Blog." 55 50 56 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:65 51 msgid "Protected Posts in the Blog" 52 msgstr "Schutz für die Beiträge" 53 54 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:72 55 msgid "Hide entire post." 56 msgstr "Verstecke Beitrag" 57 58 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:78 59 msgid "Show title, but a private message for the content." 60 msgstr "Zeige Title und eine private Nachricht für den Inhalt" 61 62 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:85 63 msgid "Show title and content." 64 msgstr "Zeige Titel & Inhalt" 65 66 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:89 67 msgid "The private post message" 68 msgstr "Private Nachricht" 69 70 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:98 71 msgid "The Pages" 72 msgstr "Seiten" 73 74 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:103 75 msgid "Show private pages" 57 msgid "Page display" 58 msgstr "Seiten Darstellung" 59 60 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:70 61 msgid "Show protected pages" 76 62 msgstr "Zeige geschützte Seiten" 77 63 78 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:109 64 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:73 65 msgid "Checking this option will show links to all the pages." 66 msgstr "Bei Aktivierung dieser Option werden die Links zu allen Seiten gezeigt." 67 68 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:81 79 69 msgid "The Category List" 80 70 msgstr "Kategorien" 81 71 82 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php: 11472 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:86 83 73 msgid "Show private categories" 84 74 msgstr "Zeige geschützte Kategorien" 85 75 86 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:120 76 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:89 77 msgid "Checking this option will show links to all the Categories." 78 msgstr "Bei Aktivierung dieser Option werden die Links zu allen Kategorien gezeigt." 79 80 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:95 87 81 msgid "Show a padlock icon next to private categories" 88 82 msgstr "Zeige ein Schloss Symbol neben geschützten Kategorie Namen" 89 83 90 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:127 84 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:101 85 msgid "Posts and pages display." 86 msgstr "Beiträge und Seiten Darstellung" 87 88 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:103 89 msgid "How do you want to display a protected post or page?" 90 msgstr "Wie möchten Sie die geschützten Beiträge und Seiten zeigen?" 91 92 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:111 93 msgid "Hide everything" 94 msgstr "Verstecke alles" 95 96 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:118 97 msgid "Show everything" 98 msgstr "Zeige alles" 99 100 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:124 101 msgid "Show title and the private message as content" 102 msgstr "Zeige Title und eine private Nachricht für den Inhalt" 103 104 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:130 105 msgid "The private message" 106 msgstr "Private Nachricht" 107 108 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:140 91 109 msgid "The Comments" 92 110 msgstr "Kommentare" 93 111 94 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:1 29112 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:142 95 113 msgid "Public & Allowed Comments" 96 114 msgstr "Ungeschützte & Erlaubte Kommentare" 97 115 98 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:1 35116 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:148 99 117 msgid "Hide all comments." 100 118 msgstr "Verstecke alle Kommentar" 101 119 102 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:1 41120 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:154 103 121 msgid "Show Author, but the private message for the content." 104 122 msgstr "Zeige Autor, aber eine private Nachricht für den Inhalt." 105 123 106 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:1 47124 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:160 107 125 msgid "Show content, but no author." 108 126 msgstr "Zeige Inhalt, aber keinen Autor Namen." 109 127 110 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:1 53128 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:166 111 129 msgid "Show everything." 112 130 msgstr "Zeige alles" 113 131 114 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:1 56132 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:169 115 133 msgid "Private Comments" 116 134 msgstr "Geschützte Kommentare" 117 135 118 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:1 61136 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:174 119 137 msgid "Use the Settings for comments from protected Posts." 120 138 msgstr "Benutze die selben Einstellungen für Kommentare von geschützten Beiträge." 121 139 122 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:1 69140 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:181 123 141 msgid "Miscellaneous" 124 142 msgstr "Verschiedenes" 125 143 126 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:1 74144 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:186 127 145 msgid "Keep CaPa Settings" 128 146 msgstr "Behalte CaPa Einstellung" 129 147 130 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:1 76148 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:188 131 149 msgid "In the Case that CaPa is disabled but you wants to keep the Settings." 132 150 msgstr "Behält die Einstellung, wenn CaPa deaktiviert ist." 133 151 134 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:1 85135 msgid "Update Global Options"152 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:196 153 msgid "Update general settings" 136 154 msgstr "Änderungen übernehmen" 137 155 138 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:1 88139 msgid "Reset Global Options"140 msgstr " Allgemeine Einstellungenzurücksetzen"141 142 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:2 06143 msgid "CaPa » Roles"156 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:199 157 msgid "Reset defaults" 158 msgstr "Einstellung zurücksetzen" 159 160 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:217 161 msgid "CaPa » Users Roles" 144 162 msgstr "CaPa » Rollen" 145 163 146 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:230 147 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:236 148 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:525 149 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:105 150 msgid "Categories" 151 msgstr "Kategorien" 152 153 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:237 154 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:312 164 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:241 165 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:533 166 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:104 167 msgid "Category visibility" 168 msgid_plural "Categories visibility" 169 msgstr[0] "Kategorie" 170 msgstr[1] "Kategorien" 171 172 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:241 173 msgid "Select which categories are available for each user role." 174 msgstr "Markiere für jede Rolle die sichtbaren Kategorien." 175 176 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:248 177 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:323 155 178 msgid "Administrator" 156 179 msgstr "Administrator" 157 180 158 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:2 38159 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:3 13181 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:249 182 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:324 160 183 msgid "Editor" 161 184 msgstr "Redakteur" 162 185 163 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:2 39164 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:3 14186 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:250 187 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:325 165 188 msgid "Author" 166 189 msgstr "Autor" 167 190 168 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:2 40169 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:3 15191 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:251 192 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:326 170 193 msgid "Contributor" 171 194 msgstr "Mitarbeiter" 172 195 173 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:2 41174 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:3 16196 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:252 197 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:327 175 198 msgid "Subscriber" 176 199 msgstr "Abonnent" 177 200 178 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:2 47179 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:3 22201 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:258 202 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:333 180 203 msgid "check/uncheck" 181 204 msgstr "" 182 205 183 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:305 184 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:311 185 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:526 186 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:106 187 msgid "Pages" 188 msgstr "Seiten" 189 190 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:367 191 msgid "Update Role Options" 206 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:316 207 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:534 208 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:105 209 msgid "Page visibility" 210 msgid_plural "Pages visibility" 211 msgstr[0] "Seite" 212 msgstr[1] "Seiten" 213 214 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:316 215 msgid "Select which pages are available for each user role." 216 msgstr "Wähle aus, welche Seiten sichtbar ist für jede Rolle " 217 218 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:378 219 msgid "Update user roles settings" 192 220 msgstr "Änderungen übernehmen" 193 221 194 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:370 195 msgid "Reset Role Options" 196 msgstr "Rollen Einstellungen zurücksetzen" 197 198 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:383 199 msgid "CaPa » Anonymous Users" 200 msgstr "CaPa » Anonymer Benutzer" 201 202 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:428 203 msgid "Category & Pages Access for Anonymous Users" 204 msgstr "Kategorie Zugriff für Anonyme Besucher" 205 206 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:429 207 msgid "Set the visibility of categories / pages for users that are not logged in below." 208 msgstr "Geben Sie hier die Standart-Seiten für <b>nicht angemeldete</b> Benutzer an. Normalerweise handelt es sich dabei um unangemeldete Benutzer oder Besucher." 209 210 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:534 211 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:114 222 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:381 223 msgid "Reset user roles" 224 msgstr "Benutzer Einstellungen zurücksetzen" 225 226 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:394 227 msgid "CaPa » Visitors" 228 msgstr "CaPa » Besucher" 229 230 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:394 231 msgid "Here you can set which categories and pages will be visible to the users that are not logged in." 232 msgstr "Hier geben Sie an welchen Kategorien & Seiten sichtbar sind für nicht angemeldete Besucher." 233 234 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:542 235 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:113 212 236 msgid "check/uncheck all Categories" 213 237 msgstr "" 214 238 215 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:5 39216 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:11 9239 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:547 240 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:118 217 241 msgid "check/uncheck all Pages" 218 242 msgstr "" 219 243 220 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 02221 msgid "Update User Options"244 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:610 245 msgid "Update visitors settings" 222 246 msgstr "Änderungen übernehmen" 223 247 224 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 05225 msgid "Reset User Options"226 msgstr " BenutzerEinstellungen zurücksetzen"227 228 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:62 0229 msgid "CaPa » Help"230 msgstr "CaPa » Hilfe"231 232 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 22248 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:613 249 msgid "Reset visitors" 250 msgstr "Einstellungen zurücksetzen" 251 252 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:628 253 msgid "CaPa » CaPa Support" 254 msgstr "CaPa » CaPa Support" 255 256 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:630 233 257 msgid "Information to provide a faster way to help you." 234 258 msgstr "Information um eine schnelle Hilfe zu ermöglichen" 235 259 236 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 23260 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:631 237 261 msgid "Information will be send per e-mail. A Copy goes to the Sender E-Mail." 238 262 msgstr "Die Information wird per E-Mail versendet. Eine Kopie wird an die E-Mail Adresse des Versenders geschickt." 239 263 240 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 59241 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 77264 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:667 265 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:685 242 266 msgid "@Active Plugins" 243 267 msgstr "@Aktive Plugins" 244 268 245 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 59269 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:667 246 270 msgid "To avoid Problems between CaPa and others Plugins. All active plugins will be displayed." 247 271 msgstr "Um Probleme zwischen CaPa und anderen Plugins zu verhindern werden alle aktiven Plugins angezeigt." 248 272 249 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:66 1250 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 86273 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:669 274 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:694 251 275 msgid "@Serialize Categories ID's" 252 276 msgstr "@Serialisierte Kategorie ID's" 253 277 254 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:66 1278 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:669 255 279 msgid "Serialize Categories contains only the Categories ID's in menu order" 256 280 msgstr "Serialisierte Kategorien enthalten nur die Kategorien ID's in Menu Reihenfolge " 257 281 258 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 63259 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 89282 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:671 283 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:697 260 284 msgid "@Serialize Pages ID's" 261 285 msgstr "@Serialisierte Seiten ID's" 262 286 263 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 63287 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:671 264 288 msgid "Serialize Pages contains only the Pages ID's in menu order" 265 289 msgstr "Serialisierte Seiten enthalten nur die Seiten ID's in Menu Reihenfolge " 266 290 267 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 65268 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php: 693291 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:673 292 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:701 269 293 msgid "@CaPa Settings" 270 294 msgstr "@CaPa Einstellung" 271 295 272 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 65296 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:673 273 297 msgid "All CaPa Settings" 274 298 msgstr "Alle CaPa Einstellungen" 275 299 276 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 67300 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:675 277 301 msgid "In the case you don't want send all Information, just remove the part's." 278 302 msgstr "Im Falle Sie möchten nicht alle Informationen senden, löschen Sie die nicht gewollten Informationen." 279 303 280 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 72304 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:680 281 305 msgid "@Wordpress" 282 306 msgstr "" 283 307 284 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 74308 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:682 285 309 msgid "Version:" 286 310 msgstr "" 287 311 288 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:6 75312 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:683 289 313 msgid "PHP Version:" 290 314 msgstr "" 291 315 292 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:71 0293 msgid "Tit el"316 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:718 317 msgid "Title" 294 318 msgstr "Titel" 295 319 296 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:7 15297 msgid "You can change the Tit elas you wish."320 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:723 321 msgid "You can change the Title as you wish." 298 322 msgstr "Sie können den Titel nach Ihrer Vorstellung ändern." 299 323 300 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:72 1324 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:729 301 325 msgid "Sender" 302 326 msgstr "Versender E-Mail" 303 327 304 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:7 26328 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:734 305 329 msgid "You can change the Sender E-Mail." 306 330 msgstr "Sie können die E-Mail zum Versenden ändern." 307 331 308 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:73 1332 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:739 309 333 msgid "Comment (Optional)" 310 334 msgstr "Kommentar (Optional)" 311 335 312 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:7 42336 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:750 313 337 msgid "Send Help" 314 338 msgstr "Hilfe Abschicken" 315 339 316 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:7 74340 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:782 317 341 msgid "Global Settings are reset." 318 342 msgstr "Globale Einstellung sind zurückgesetzt" 319 343 320 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:7 86344 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:794 321 345 msgid "User Settings are reset." 322 346 msgstr "Benutzer Einstellung wurden zurückgesetzt." 323 347 324 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:80 1348 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:809 325 349 msgid "Role Settings are reset." 326 350 msgstr "Rollen Einstellung wurden zurückgesetzt." 327 351 328 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:8 78352 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:886 329 353 msgid "Global Settings saved." 330 354 msgstr "Globale Einstellung gespeichert." 331 355 332 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:92 1356 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:929 333 357 msgid "Role Settings saved." 334 358 msgstr "Rollen Einstellung gesichert." 335 359 336 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:9 55360 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:963 337 361 msgid "User Settings saved." 338 362 msgstr "Benutzer Einstellung gesichert" 339 363 340 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:9 76364 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:984 341 365 msgid "Message sent." 342 366 msgstr "Nachricht versendet." 343 367 344 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:9 79368 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-options.php:987 345 369 msgid "Message wasn't sent. Please try again or send by yourself." 346 370 msgstr "Nachrich wurde nicht geschickt. Bitte probieren Sie es später nochmals oder schicken Sie die E-Mail selber." … … 350 374 msgstr "CaPa » Benutzer Einstellung" 351 375 352 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:5 1353 msgid " The following checked categories & pages are visible for this user."354 msgstr " Markierte Kategorien / Seiten sind für diesen Benutzer sichtbar."355 356 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:5 8376 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:50 377 msgid "Here you can set categories and pages only for this users." 378 msgstr "Hier geben Sie an welche Kategorien & Seiten nur für diesen Benutzer sichtbar sind." 379 380 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:57 357 381 msgid "Access" 358 382 msgstr "Zugriff" 359 383 360 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:5 9361 msgid "As a manager, this user can viewall categories & pages."384 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:58 385 msgid "As a manager, this user see all categories & pages." 362 386 msgstr "Als ein Manager, dieser Benutzer sieht alle Kategorien & Seiten." 363 387 364 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:17 7388 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa-user-edit.php:176 365 389 msgid "Reset current CaPa user settings" 366 390 msgstr "Capa Benutzer Einstellung zurücksetzen." … … 374 398 msgstr "Unbekannter Author" 375 399 376 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa.php:54 3400 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa.php:542 377 401 msgid "No Title" 378 402 msgstr "Kein Titel" 379 403 380 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa.php:101 6404 #: /Users/sascha/Sites/wp/plugins/capa/trunk/capa.php:1015 381 405 msgid "Other Help" 382 406 msgstr "Andere Hilfe" 383 407 384 #~ msgid "Check all categories" 385 #~ msgstr "Alle Kategorien selektieren" 386 #~ msgid "Page Access for Anonymous Users" 387 #~ msgstr "Kategorie Zugriff für Anonyme Besucher" 388 #~ msgid "" 389 #~ "Set the visibility of pages for users that are not logged in below. " 390 #~ "Usually this is the same as or more restrictive than the access granted " 391 #~ "to new users." 392 #~ msgstr "" 393 #~ "Geben Sie hier die Standart-Seiten für <b>nicht angemeldete</b> " 394 #~ "Benutzer an. Normalerweise handelt es sich dabei um unangemeldete " 395 #~ "Benutzer oder Besucher." 396 #~ msgid "Check all pages" 397 #~ msgstr "Alle Seiten selektieren" 398 #~ msgid "Category Access" 399 #~ msgstr "Kategorien" 400 #~ msgid "Page Access" 408 #~ msgid "CaPa › Anonymous Users" 409 #~ msgstr "CaPa › Anonymer Benutzer" 410 #~ msgid "Anonymous User" 411 #~ msgstr "Anonymer Benutzer" 412 #~ msgid "Help" 413 #~ msgstr "Hilfe" 414 #~ msgid "Protected Posts in the Blog" 415 #~ msgstr "Schutz für die Beiträge" 416 #~ msgid "Hide entire post." 417 #~ msgstr "Verstecke Beitrag" 418 #~ msgid "Show title and content." 419 #~ msgstr "Zeige Titel & Inhalt" 420 #~ msgid "The Pages" 401 421 #~ msgstr "Seiten" 402 #~ msgid "Protected Comments in the Blog" 403 #~ msgstr "Kommentarschutz" 404 #~ msgid "The following checked pages are visible to this user." 405 #~ msgstr "Markierte Seiten sind für diesen Benutzer sichtbar" 406 #~ msgid "CaPa Roles" 407 #~ msgstr "CaPa Schutz" 408 #~ msgid "CaPa Anonymous Users" 409 #~ msgstr "Kategorie Zugriff für Anonyme Besucher" 410 #~ msgid "Category Access for New Users" 411 #~ msgstr "Kategorie Zugriff für neu angemeldete Benutzer" 412 #~ msgid "" 413 #~ "Set the default visibility of categories for new users below. These " 414 #~ "values can be set on a user-by-user basis in the management page." 415 #~ msgstr "" 416 #~ "Geben Sie hier die Standart-Kategorien für <b>neu angemeldete</b> " 417 #~ "Benutzer an. Diese Einstellung können Sie bei jedem einzelnen Benutzer " 418 #~ "bei den Benutzereinstellungen ändern." 419 #~ msgid "Pages Access for New Users" 420 #~ msgstr "Seiten Zugriff für neue Benutzer" 421 #~ msgid "" 422 #~ "Set the default visibility of pages for new users below. These values can " 423 #~ "be set on a user-by-user basis in the management page." 424 #~ msgstr "" 425 #~ "Geben Sie hier die Standart-Kategorien für <b>neu angemeldete</b> " 426 #~ "Benutzer an. Diese Einstellung können Sie bei jedem einzelnen Benutzer " 427 #~ "bei den Benutzereinstellungen ändern." 428 #~ msgid "Show a padlock icon on the private post message." 429 #~ msgstr "Zeige ein Schloss in der Privaten Nachricht" 430 #~ msgid "Show Comments from the private post." 431 #~ msgstr "Zeige Kommentar vom geschützen Beitrag" 432 #~ msgid "Advance Protect" 433 #~ msgstr "Erweiterter Schutz" 434 422 #~ msgid "Update Global Options" 423 #~ msgstr "Änderungen übernehmen" 424 #~ msgid "Reset Global Options" 425 #~ msgstr "Allgemeine Einstellungen zurücksetzen" 426 -
capa/trunk/readme.txt
r163778 r208620 3 3 Donate link: http://www.smatern.de/ 4 4 Tags: restrict, restriction, category, categories, page, pages, protect, comments, security, Post, admin, plugin, posts, invisible, hide comments, comments private, hide comments from non-members 5 Requires at least: 2.6.5 6 Tested up to: 2.8.4 7 Stable tag: 0.5.6.1 8 5 Requires at least: 2.7.1 6 Tested up to: 2.9.2 7 Stable tag: 0.5.6.2 9 8 10 9 Protects Categories, Pages and Posts for specific users & anonymous visitor … … 54 53 55 54 == Changelog == 55 56 = v0.5.6.2 = 57 * CleanUp - Interface ( Huge thanks to Aleksandar for advice & help ) 58 * Bugfix *preg_match_all Error* - missing letter cause an error (php lower then 5.2 is affected) 56 59 57 60 = v0.5.6.1 =
Note: See TracChangeset
for help on using the changeset viewer.