Plugin Directory

Changeset 600963


Ignore:
Timestamp:
09/19/2012 10:55:52 AM (13 years ago)
Author:
codepress
Message:

1.4.6.3

Location:
codepress-admin-columns
Files:
75 added
6 edited

Legend:

Unmodified
Added
Removed
  • codepress-admin-columns/trunk/classes/sortable.php

    r588235 r600963  
    173173        /** Posts */
    174174        elseif ( !empty($vars['post_type']) ) {
    175             $vars = $this->get_orderby_posts_vars($vars);
     175            $vars = $this->get_orderby_posts_vars($vars);   
    176176        }
    177177               
     
    743743        if ( $type == 'column-attachment-count' )
    744744            $type = 'column-attachment';
    745        
     745               
    746746        // var
    747747        $cposts = array();     
     
    10581058    private function get_any_posts_by_posttype( $post_type )
    10591059    {
    1060         $allposts = get_posts(array(
     1060        $any_posts = (array) get_posts(array(
    10611061            'numberposts'   => -1,
    10621062            'post_status'   => 'any',
    10631063            'post_type'     => $post_type
    10641064        ));
    1065         return (array) $allposts;       
     1065       
     1066        // trash posts are not included in the posts_status 'any' by default
     1067        $trash_posts = (array) get_posts(array(
     1068            'numberposts'   => -1,
     1069            'post_status'   => 'trash',
     1070            'post_type'     => $post_type
     1071        ));     
     1072       
     1073        $all_posts = array_merge($any_posts, $trash_posts);
     1074       
     1075        return (array) $all_posts;     
    10661076    }
    10671077   
  • codepress-admin-columns/trunk/classes/values.php

    r587696 r600963  
    271271                break;
    272272           
    273             // Title
     273            // Post Title
    274274            case "title_by_id" :
    275275                $titles = $this->get_custom_field_value_title($meta);
     
    277277                    $meta = $titles;
    278278                break;
     279           
     280            // User Name
     281            case "user_by_id" :
     282                $names = $this->get_custom_field_value_user($meta);
     283                if ( $names )
     284                    $meta = $names;     
     285                break;
    279286               
    280287            // Checkmark
     
    290297           
    291298        endswitch;     
    292        
     299
    293300        // filter for customization
    294         $meta = apply_filters('cpac_get_column_value_custom_field', $meta, $fieldtype, $field );
     301        $meta = apply_filters('cpac_get_column_value_custom_field', $meta, $fieldtype, $field, $type, $object_id );
    295302       
    296303        // add before and after string
     
    333340   
    334341    /**
     342     *  Get custom field value 'User by ID'
     343     *
     344     *  @since     1.4.6.3
     345     */
     346    protected function get_custom_field_value_user($meta)
     347    {
     348        //remove white spaces and strip tags
     349        $meta = $this->strip_trim( str_replace(' ','', $meta) );
     350       
     351        // var
     352        $ids = $names = array();
     353       
     354        // check for multiple id's
     355        if ( strpos($meta, ',') !== false )
     356            $ids = explode(',',$meta);
     357        elseif ( is_numeric($meta) )
     358            $ids[] = $meta;         
     359       
     360        // display username
     361        if ( $ids && is_array($ids) ) {
     362            foreach ( $ids as $id ) {
     363                if ( !is_numeric($id) )
     364                    continue;
     365               
     366                $userdata = get_userdata($id);
     367                if ( is_object($userdata) && !empty( $userdata->display_name ) ) {
     368                    $names[] = $userdata->display_name;
     369                }               
     370            }
     371        }
     372       
     373        return implode('<span class="cpac-divider"></span>', $names);
     374    }
     375   
     376    /**
    335377     *  Get column value of Custom Field
    336378     *
  • codepress-admin-columns/trunk/codepress-admin-columns.php

    r588235 r600963  
    22/*
    33Plugin Name:        Codepress Admin Columns
    4 Version:            1.4.6.2
     4Version:            1.4.6.3
    55Description:        Customise columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface.
    66Author:             Codepress
     
    2727*/
    2828
    29 define( 'CPAC_VERSION',     '1.4.6.2' );
     29define( 'CPAC_VERSION',     '1.4.6.3' );
    3030define( 'CPAC_TEXTDOMAIN',  'codepress-admin-columns' );
    3131define( 'CPAC_SLUG',        'codepress-admin-columns' );
     
    599599            'date'          => __('Date', CPAC_TEXTDOMAIN),
    600600            'title_by_id'   => __('Post Title (Post ID\'s)', CPAC_TEXTDOMAIN),
     601            'user_by_id'    => __('Username (User ID\'s)', CPAC_TEXTDOMAIN),
    601602            'checkmark'     => __('Checkmark (true/false)', CPAC_TEXTDOMAIN),
    602603        );
     
    965966     */
    966967    private function get_wp_default_posts_columns($post_type = 'post')
    967     {       
     968    {
     969        global $current_screen;
     970       
    968971        // some plugins depend on settings the $_GET['post_type'] variable such as ALL in One SEO
    969972        $_GET['post_type'] = $post_type;
     
    977980       
    978981        // get default columns
    979         if ( empty($columns) ) {       
     982        if ( empty($columns) && isset($current_screen) ) {     
    980983           
    981984            // deprecated as of wp3.3
     
    996999            global $current_screen;
    9971000            $org_current_screen = $current_screen;
    998            
     1001               
    9991002            // overwrite current_screen global with our post type of choose...
    10001003            $current_screen->post_type = $post_type;
     
    10851088    private function get_wp_default_media_columns()
    10861089    {
    1087         // could use _get_list_table('WP_Media_List_Table') ?
     1090        global $current_screen;
     1091       
     1092        // @todo could use _get_list_table('WP_Media_List_Table') ?
    10881093        if ( file_exists(ABSPATH . 'wp-admin/includes/class-wp-list-table.php') )
    10891094            require_once(ABSPATH . 'wp-admin/includes/class-wp-list-table.php');
     
    10911096            require_once(ABSPATH . 'wp-admin/includes/class-wp-media-list-table.php');
    10921097       
    1093         global $current_screen;
     1098        if ( !isset($current_screen) )
     1099            return false;
     1100       
     1101        // save original
    10941102        $org_current_screen = $current_screen;
    10951103       
     
    11561164    private function get_wp_default_comments_columns()
    11571165    {
     1166        global $current_screen;
     1167       
    11581168        // dependencies
    11591169        if ( file_exists(ABSPATH . 'wp-admin/includes/class-wp-list-table.php') )
     
    11621172            require_once(ABSPATH . 'wp-admin/includes/class-wp-comments-list-table.php');
    11631173       
    1164         global $current_screen;
     1174        if ( !isset($current_screen) )
     1175            return false;
     1176           
    11651177        $org_current_screen = $current_screen;
    11661178       
     
    17661778
    17671779        // get saved columns
    1768         if ( isset($options['columns'][$type]) )
     1780        if ( !empty($options['columns'][$type]) )
    17691781            return $options['columns'][$type];
    17701782       
     
    18091821       
    18101822        // options button
    1811         $options_btn = "<a href='#cpac-box-plugin_settings' class='cpac-settings-link{$class_current_settings}'>".__('Addons')."</a>";
     1823        $options_btn = "<a href='#cpac-box-plugin_settings' class='cpac-settings-link{$class_current_settings}'>".__('Addons', CPAC_TEXTDOMAIN)."</a>";
    18121824        //$options_btn = '';
    18131825       
     
    18611873        // Links
    18621874        if ( $type == 'wp-links' )
    1863             $label = 'Links';
     1875            $label = __('Links');
    18641876           
    18651877        // Comments
    18661878        elseif ( $type == 'wp-comments' )
    1867             $label = 'Comments';
     1879            $label = __('Comments');
    18681880           
    18691881        // Users
    18701882        elseif ( $type == 'wp-users' )
    1871             $label = 'Users';
     1883            $label = __('Users');
    18721884       
    18731885        // Media
    18741886        elseif ( $type == 'wp-media' )
    1875             $label = 'Media Library';
     1887            $label = __('Media Library');
    18761888       
    18771889        // Posts
  • codepress-admin-columns/trunk/languages/codepress-admin-columns-pl_PL.po

    r538566 r600963  
    33"Project-Id-Version: Codepress Admin Columns\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2012-04-11 11:48+0100\n"
    6 "PO-Revision-Date: 2012-04-20 21:14+0100\n"
    7 "Last-Translator: Codepress <[email protected]l>\n"
     5"POT-Creation-Date: 2012-08-24 10:21+0100\n"
     6"PO-Revision-Date: 2012-08-24 10:21+0100\n"
     7"Last-Translator: Bartosz Arendt <[email protected]l>\n"
    88"Language-Team: Digital Factory <[email protected]>\n"
    99"MIME-Version: 1.0\n"
     
    1919"X-Poedit-SearchPath-1: ..\n"
    2020
    21 #: ../codepress-admin-columns.php:171
     21#: ../codepress-admin-columns.php:169
    2222msgid "Settings"
    2323msgstr "Ustawienia"
    2424
    25 #: ../codepress-admin-columns.php:363
     25#: ../codepress-admin-columns.php:352
    2626msgid "Add Custom Field Column"
    2727msgstr "Dodaj kolumnę Własne pole"
    2828
    29 #: ../codepress-admin-columns.php:371
     29#: ../codepress-admin-columns.php:360
    3030msgid "drag and drop to reorder"
    3131msgstr "przeciągnij i opuść aby zmienić kolejność"
    3232
    33 #: ../codepress-admin-columns.php:511
    34 #: ../codepress-admin-columns.php:536
     33#: ../codepress-admin-columns.php:502
     34#: ../codepress-admin-columns.php:527
    3535msgid "default"
    3636msgstr "domyśłny"
    3737
    38 #: ../codepress-admin-columns.php:534
    39 #: ../codepress-admin-columns.php:2238
     38#: ../codepress-admin-columns.php:525
     39#: ../codepress-admin-columns.php:1471
    4040msgid "Width"
    4141msgstr "Szerokość"
     
    4646
    4747#: ../codepress-admin-columns.php:594
    48 #: ../codepress-admin-columns.php:2278
     48#: ../codepress-admin-columns.php:1602
    4949msgid "Image"
    5050msgstr "Obrazek"
     
    5555
    5656#: ../codepress-admin-columns.php:596
    57 #: ../codepress-admin-columns.php:2031
    58 #: ../codepress-admin-columns.php:2350
     57#: ../codepress-admin-columns.php:1255
     58#: ../codepress-admin-columns.php:1678
    5959msgid "Excerpt"
    6060msgstr "Wypis"
     
    6969
    7070#: ../codepress-admin-columns.php:599
    71 #: ../codepress-admin-columns.php:2341
     71#: ../codepress-admin-columns.php:1669
    7272msgid "Date"
    7373msgstr "Data"
     
    7777msgstr "Tytył wpisu (ID wpisu)"
    7878
    79 #: ../codepress-admin-columns.php:625
     79#: ../codepress-admin-columns.php:601
     80msgid "Checkmark (true/false)"
     81msgstr "Znak (prawda/fałsz)"
     82
     83#: ../codepress-admin-columns.php:626
    8084msgid "This field can not be removed"
    8185msgstr "To własne pole nie może być usunięte"
    8286
    83 #: ../codepress-admin-columns.php:629
    84 #: ../codepress-admin-columns.php:1512
     87#: ../codepress-admin-columns.php:630
     88#: ../classes/values/users.php:153
    8589msgid "Remove"
    8690msgstr "Usuń"
    8791
    88 #: ../codepress-admin-columns.php:974
    89 msgid "Standard"
    90 msgstr "Standardowe"
    91 
    92 #: ../codepress-admin-columns.php:1215
    93 msgid "original"
    94 msgstr "oryginalny"
    95 
    96 #: ../codepress-admin-columns.php:1381
     92#: ../codepress-admin-columns.php:636
     93#: ../codepress-admin-columns.php:1362
     94#: ../codepress-admin-columns.php:1430
     95#: ../codepress-admin-columns.php:1569
     96#: ../codepress-admin-columns.php:1697
     97msgid "Custom Field"
     98msgstr "Własne pole"
     99
     100#: ../codepress-admin-columns.php:639
     101msgid "Field Type"
     102msgstr "Rodzaj pola"
     103
     104#: ../codepress-admin-columns.php:642
     105msgid "Before"
     106msgstr "Przed"
     107
     108#: ../codepress-admin-columns.php:645
     109msgid "After"
     110msgstr "Po"
     111
     112#: ../codepress-admin-columns.php:663
     113msgid "Display Name"
     114msgstr "Pseudonim"
     115
     116#: ../codepress-admin-columns.php:664
     117msgid "First Name"
     118msgstr "Imię"
     119
     120#: ../codepress-admin-columns.php:665
     121msgid "Last Name"
     122msgstr "Nazwisko"
     123
     124#: ../codepress-admin-columns.php:666
     125msgid "First &amp; Last Name"
     126msgstr "Imię i nazwisko"
     127
     128#: ../codepress-admin-columns.php:667
    97129#: ../codepress-admin-columns.php:1392
     130msgid "Nickname"
     131msgstr "Pseudonim"
     132
     133#: ../codepress-admin-columns.php:668
     134msgid "Username"
     135msgstr "Nazwa użytkownika"
     136
     137#: ../codepress-admin-columns.php:669
     138msgid "Email"
     139msgstr "Email"
     140
     141#: ../codepress-admin-columns.php:670
     142#: ../codepress-admin-columns.php:1389
     143msgid "User ID"
     144msgstr "ID użytkownika"
     145
     146#: ../codepress-admin-columns.php:679
     147msgid "Display name as"
     148msgstr "Wyświetl jakoi"
     149
     150#: ../codepress-admin-columns.php:1221
     151msgid "Comments"
     152msgstr "Komentarze"
     153
     154#: ../codepress-admin-columns.php:1227
     155msgid "Icon"
     156msgstr "Ikona"
     157
     158#: ../codepress-admin-columns.php:1252
     159msgid "Featured Image"
     160msgstr "Ikona wpisu"
     161
     162#: ../codepress-admin-columns.php:1258
     163#: ../codepress-admin-columns.php:1322
     164msgid "Page Order"
     165msgstr "Kolejność stron"
     166
     167#: ../codepress-admin-columns.php:1261
     168#: ../codepress-admin-columns.php:1339
     169msgid "Post Format"
     170msgstr "Format wpisu"
     171
     172#: ../codepress-admin-columns.php:1264
     173#: ../codepress-admin-columns.php:1456
     174#: ../codepress-admin-columns.php:1596
     175#: ../codepress-admin-columns.php:1642
     176msgid "ID"
     177msgstr "ID"
     178
     179#: ../codepress-admin-columns.php:1267
     180msgid "Slug"
     181msgstr "Bezpośredni odnośnik"
     182
     183#: ../codepress-admin-columns.php:1270
     184msgid "Attachment"
     185msgstr "Załącznik"
     186
     187#: ../codepress-admin-columns.php:1273
     188msgid "No. of Attachments"
     189msgstr "Liczba załączników"
     190
     191#: ../codepress-admin-columns.php:1276
     192msgid "Roles"
     193msgstr "Role"
     194
     195#: ../codepress-admin-columns.php:1279
     196#: ../codepress-admin-columns.php:2323
     197msgid "Status"
     198msgstr "Status"
     199
     200#: ../codepress-admin-columns.php:1282
     201msgid "Comment status"
     202msgstr "Status komentarza"
     203
     204#: ../codepress-admin-columns.php:1285
     205msgid "Ping status"
     206msgstr "Status ping"
     207
     208#: ../codepress-admin-columns.php:1288
     209#: ../codepress-admin-columns.php:1410
     210#: ../codepress-admin-columns.php:1489
     211#: ../codepress-admin-columns.php:1620
     212#: ../codepress-admin-columns.php:1681
     213msgid "Actions"
     214msgstr "Działania"
     215
     216#: ../codepress-admin-columns.php:1294
     217msgid "Last modified"
     218msgstr "Ostatnia modyfikacja"
     219
     220#: ../codepress-admin-columns.php:1297
     221msgid "Comment count"
     222msgstr "Liczba komentarzy"
     223
     224#: ../codepress-admin-columns.php:1300
     225msgid "Display Author As"
     226msgstr "Wyświetla autora jako"
     227
     228#: ../codepress-admin-columns.php:1308
     229#: ../codepress-admin-columns.php:1687
     230msgid "Word count"
     231msgstr "Liczba słów"
     232
     233#: ../codepress-admin-columns.php:1315
     234msgid "Sticky"
     235msgstr "Przyklejone"
     236
     237#: ../codepress-admin-columns.php:1324
     238msgid "Order"
     239msgstr "Kolejność"
     240
     241#: ../codepress-admin-columns.php:1332
     242msgid "Page Template"
     243msgstr "Szablon strony"
     244
     245#: ../codepress-admin-columns.php:1352
     246msgid "Taxonomy"
     247msgstr "Taksonomia"
     248
     249#: ../codepress-admin-columns.php:1368
     250#: ../codepress-admin-columns.php:1436
     251#: ../codepress-admin-columns.php:1575
     252#: ../codepress-admin-columns.php:1703
     253msgid "Field"
     254msgstr "Pole"
     255
     256#: ../codepress-admin-columns.php:1395
     257msgid "First name"
     258msgstr "Imię"
     259
     260#: ../codepress-admin-columns.php:1398
     261msgid "Last name"
     262msgstr "Nazwisko"
     263
     264#: ../codepress-admin-columns.php:1401
     265msgid "Url"
     266msgstr "Adres URL"
     267
     268#: ../codepress-admin-columns.php:1404
     269msgid "Registered"
     270msgstr "Zarejestrowany"
     271
     272#: ../codepress-admin-columns.php:1407
     273#: ../codepress-admin-columns.php:1477
     274#: ../codepress-admin-columns.php:1599
     275msgid "Description"
     276msgstr "Opis"
     277
     278#: ../codepress-admin-columns.php:1423
     279msgid "Postcount"
     280msgstr "Liczba wpisów"
     281
     282#: ../codepress-admin-columns.php:1459
     283msgid "Mime type"
     284msgstr "Typ pliku"
     285
     286#: ../codepress-admin-columns.php:1462
     287msgid "File name"
     288msgstr "Nazwa pliku"
     289
     290#: ../codepress-admin-columns.php:1465
     291msgid "Dimensions"
     292msgstr "Wymiary"
     293
     294#: ../codepress-admin-columns.php:1468
     295msgid "Height"
     296msgstr "Wysokość"
     297
     298#: ../codepress-admin-columns.php:1474
     299#: ../codepress-admin-columns.php:1522
     300msgid "Caption"
     301msgstr "Tytuł"
     302
     303#: ../codepress-admin-columns.php:1480
     304msgid "Alt"
     305msgstr "Tekst alternatywny"
     306
     307#: ../codepress-admin-columns.php:1483
     308msgid "Upload paths"
     309msgstr "Ścieżki plików"
     310
     311#: ../codepress-admin-columns.php:1495
     312msgid "File size"
     313msgstr "Wielkość pliku"
     314
     315#: ../codepress-admin-columns.php:1504
     316msgid "Aperture"
     317msgstr "Przysłona"
     318
     319#: ../codepress-admin-columns.php:1506
     320msgid "Aperture EXIF"
     321msgstr "Przysłona EXIF"
     322
     323#: ../codepress-admin-columns.php:1510
     324msgid "Credit"
     325msgstr "Autor"
     326
     327#: ../codepress-admin-columns.php:1512
     328msgid "Credit EXIF"
     329msgstr "Autor EXIF"
     330
     331#: ../codepress-admin-columns.php:1516
     332msgid "Camera"
     333msgstr "Aparat"
     334
     335#: ../codepress-admin-columns.php:1518
     336msgid "Camera EXIF"
     337msgstr "Aparat EXIF"
     338
     339#: ../codepress-admin-columns.php:1524
     340msgid "Caption EXIF"
     341msgstr "Podpis EXIF"
     342
     343#: ../codepress-admin-columns.php:1528
     344msgid "Timestamp"
     345msgstr "Data"
     346
     347#: ../codepress-admin-columns.php:1530
     348msgid "Timestamp EXIF"
     349msgstr "Data EXIF"
     350
     351#: ../codepress-admin-columns.php:1534
     352msgid "Copyright"
     353msgstr "Prawa autorskie"
     354
     355#: ../codepress-admin-columns.php:1536
     356msgid "Copyright EXIF"
     357msgstr "Prawa autorskie EXIF"
     358
     359#: ../codepress-admin-columns.php:1540
     360msgid "Focal Length"
     361msgstr "Ogniskowa"
     362
     363#: ../codepress-admin-columns.php:1542
     364msgid "Focal Length EXIF"
     365msgstr "Ogniskowa EXIF"
     366
     367#: ../codepress-admin-columns.php:1546
     368msgid "ISO"
     369msgstr "ISO"
     370
     371#: ../codepress-admin-columns.php:1548
     372msgid "ISO EXIF"
     373msgstr "ISO EXIF"
     374
     375#: ../codepress-admin-columns.php:1552
     376msgid "Shutter Speed"
     377msgstr "Szybkość migawki"
     378
     379#: ../codepress-admin-columns.php:1554
     380msgid "Shutter Speed EXIF"
     381msgstr "Szybkość migawki EXIF"
     382
     383#: ../codepress-admin-columns.php:1558
     384msgid "Title"
     385msgstr "Tytuł"
     386
     387#: ../codepress-admin-columns.php:1560
     388msgid "Title EXIF"
     389msgstr "Tytuł EXIF"
     390
     391#: ../codepress-admin-columns.php:1605
     392msgid "Target"
     393msgstr "Cel"
     394
     395#: ../codepress-admin-columns.php:1608
     396msgid "Owner"
     397msgstr "Właściciel"
     398
     399#: ../codepress-admin-columns.php:1611
     400msgid "Notes"
     401msgstr "Notatki"
     402
     403#: ../codepress-admin-columns.php:1614
     404msgid "Rss"
     405msgstr "Rss"
     406
     407#: ../codepress-admin-columns.php:1617
     408msgid "Length"
     409msgstr "Długość"
     410
     411#: ../codepress-admin-columns.php:1645
     412msgid "Author Name"
     413msgstr "Imię Autora"
     414
     415#: ../codepress-admin-columns.php:1648
     416msgid "Avatar"
     417msgstr "Avatar"
     418
     419#: ../codepress-admin-columns.php:1651
     420msgid "Author url"
     421msgstr "URL Autora"
     422
     423#: ../codepress-admin-columns.php:1654
     424msgid "Author IP"
     425msgstr "IP Autora"
     426
     427#: ../codepress-admin-columns.php:1657
     428msgid "Author email"
     429msgstr "Email Autora"
     430
     431#: ../codepress-admin-columns.php:1660
     432msgid "In Reply To"
     433msgstr "W odpowiedzi na"
     434
     435#: ../codepress-admin-columns.php:1666
     436msgid "Approved"
     437msgstr "Zatwierdzony"
     438
     439#: ../codepress-admin-columns.php:1672
     440msgid "Date GMT"
     441msgstr "Data GMT"
     442
     443#: ../codepress-admin-columns.php:1675
     444msgid "Agent"
     445msgstr "Przeglądarka"
     446
     447#: ../codepress-admin-columns.php:1734
     448msgid "Custom"
     449msgstr "Włąsne"
     450
     451#: ../codepress-admin-columns.php:1811
     452msgid "Addons"
     453msgstr "Dodatki"
     454
     455#: ../codepress-admin-columns.php:2263
     456#: ../codepress-admin-columns.php:2449
     457msgid "find out more"
     458msgstr "dowiedz się więcej"
     459
     460#: ../codepress-admin-columns.php:2267
     461msgid "This will make all of the new columns support sorting"
     462msgstr "Dzięki temu wszystkie nowe kolumny będą sortowalne"
     463
     464#: ../codepress-admin-columns.php:2268
     465msgid "By default WordPress let's you sort by title, date, comments and author. This will make you be able to <strong>sort by any column of any type!</strong>"
     466msgstr "Domyślnie, WordPress pozwala na sortowanie po tytule, dacie, komentarzu i autorze. Dzięi temu będziesz mógł <strong>sortować każdą kolumnę, każdego rodzaju!</strong>"
     467
     468#: ../codepress-admin-columns.php:2269
     469msgid "Perfect for sorting your articles, media files, comments, links and users"
     470msgstr "Idealne rozwiązanie do sortowania wpisów, mediów, komentarzy, linków i użytkowników"
     471
     472#: ../codepress-admin-columns.php:2270
     473#: ../codepress-admin-columns.php:2469
     474msgid "(columns that are added by other plugins are not supported)"
     475msgstr "(kolumny dodane przez inne wtyczki nie są wspierane)"
     476
     477#: ../codepress-admin-columns.php:2279
     478#: ../codepress-admin-columns.php:2281
     479msgid "Sortorder"
     480msgstr "Kierunek sortowania"
     481
     482#: ../codepress-admin-columns.php:2289
     483msgid "Inactive"
     484msgstr "Nieaktywny"
     485
     486#: ../codepress-admin-columns.php:2292
     487msgid "Active"
     488msgstr "Aktywny"
     489
     490#: ../codepress-admin-columns.php:2297
     491msgid "Fill in your activation code"
     492msgstr "Wpisz kod aktywacyjny"
     493
     494#: ../codepress-admin-columns.php:2298
     495msgid "Activate"
     496msgstr "Aktywuj"
     497
     498#: ../codepress-admin-columns.php:2302
     499msgid "Deactivate"
     500msgstr "Deaktywuj"
     501
     502#: ../codepress-admin-columns.php:2317
     503msgid "Activate Add-ons"
     504msgstr "Aktywuj dodatki"
     505
     506#: ../codepress-admin-columns.php:2318
     507msgid "Add-ons can be unlocked by purchasing a license key. Each key can be used on multiple sites"
     508msgstr "Dodatki mągą być aktywowane po zakupie licencji. Każdy klucz licencji może być sotsowany na wielu stronach"
     509
     510#: ../codepress-admin-columns.php:2322
     511msgid "Addon"
     512msgstr "Dodatek"
     513
     514#: ../codepress-admin-columns.php:2324
     515msgid "Activation Code"
     516msgstr "Kod aktywacyjny"
     517
     518#: ../codepress-admin-columns.php:2333
     519msgid "Enter your activation code"
     520msgstr "Wpisz kod aktywacyjny"
     521
     522#: ../codepress-admin-columns.php:2334
     523msgid "Activation code unrecognised"
     524msgstr "Kod aktywacyjny nie został rozpoznany"
     525
     526#: ../codepress-admin-columns.php:2446
     527msgid "You will find a short overview at the <strong>Help</strong> section in the top-right screen."
     528msgstr "Krótkie podsumowanie znajdziesz w dziale <strong>Pomocy</strong>, w prawym, górnym rogu ekranu."
     529
     530#: ../codepress-admin-columns.php:2454
     531msgid "Codepress Admin Columns"
     532msgstr "Edytor kolumn"
     533
     534#: ../codepress-admin-columns.php:2464
     535msgid "Get the Addon"
     536msgstr "Kup dodatek"
     537
     538#: ../codepress-admin-columns.php:2467
     539msgid "By default WordPress let's you only sort by title, date, comments and author."
     540msgstr "Domyślnie WordPress pozwala na sortowanie po tytule, dacie, komentarzu i autorze."
     541
     542#: ../codepress-admin-columns.php:2468
     543msgid "Make <strong>all columns</strong> of <strong>all types</strong> within the plugin support sorting &#8212; with the sorting addon."
     544msgstr "Pozwól na sortowanie <strong>wszystkich kolumn, wszystkich typów</strong> uaktywniając dodatek umożłiwiający sortowanie."
     545
     546#: ../codepress-admin-columns.php:2477
     547msgid "Like this plugin?"
     548msgstr "Lubisz tę wtyczkę?"
     549
     550#: ../codepress-admin-columns.php:2480
     551msgid "Why not do any or all of the following"
     552msgstr "Dlaczego by nie zrobić jednej lub wszystkich z poniższych rzeczy"
     553
     554#: ../codepress-admin-columns.php:2482
     555msgid "Give it a 5 star rating on WordPress.org."
     556msgstr "Przyznaj jej 5 gwaizdek na stronie WordPress.org."
     557
     558#: ../codepress-admin-columns.php:2483
     559msgid "Link to it so other folks can find out about it."
     560msgstr "Dodaj link aby inni mogli się o niej dowiedzieć."
     561
     562#: ../codepress-admin-columns.php:2484
     563msgid "Donate a token of your appreciation."
     564msgstr "Wspomóż drobną dotacją."
     565
     566#: ../codepress-admin-columns.php:2492
     567msgid "Follow us"
     568msgstr "Śledź nas"
     569
     570#: ../codepress-admin-columns.php:2496
     571msgid "Follow Codepress on Twitter."
     572msgstr "Śledź nas na Tweeterze."
     573
     574#: ../codepress-admin-columns.php:2497
     575msgid "Like Codepress on Facebook."
     576msgstr "Polub Codepress na Facebooku."
     577
     578#: ../codepress-admin-columns.php:2506
     579msgid "Need support?"
     580msgstr "Potrzebujesz pomocy?"
     581
     582#: ../codepress-admin-columns.php:2510
     583#, php-format
     584msgid "If you are having problems with this plugin, please talk about them in the <a href=\"%s\">Support forums</a> or send me an email %s."
     585msgstr "Jeśli masz jakieś problemy z tą wtyczką, proszę napisz o tym na stronie <a href=\"%s\">Forum pomocy</a> lub wyślij do mnie maila na adres %s."
     586
     587#: ../codepress-admin-columns.php:2511
     588#, php-format
     589msgid "If you're sure you've found a bug, or have a feature request, please <a href='%s'>submit your feedback</a>."
     590msgstr "Jeśli jeste przekonany, że znalazłeś bug'a lub masz prośbę o dodanie nowej funkcji, proszę <a href='%s'>wyślij do mnie maila.</a>."
     591
     592#: ../codepress-admin-columns.php:2526
     593msgid "Admin Columns"
     594msgstr "Edytor kolumn"
     595
     596#: ../codepress-admin-columns.php:2544
     597msgid "Save Changes"
     598msgstr "Zapisz zmiany"
     599
     600#: ../codepress-admin-columns.php:2556
     601msgid "Restore defaults"
     602msgstr "Przywróć domyślne"
     603
     604#: ../codepress-admin-columns.php:2560
     605msgid "Restore default settings"
     606msgstr "Przywróć ustawienia domyślne"
     607
     608#: ../codepress-admin-columns.php:2560
     609msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
     610msgstr "Uwaga! WSZYSTKIE zapisane ustawienia kolumn zostaną usunięte. Tej operacji nie można przywrócić. Kliknij \\'OK\\' aby usunąć lub \\'Anuluj\\' aby przerwać."
     611
     612#: ../codepress-admin-columns.php:2562
     613msgid "This will delete all column settings and restore the default settings."
     614msgstr "Ta operacja usunie wszystkie ustawienia kolumn u przywróci je do ustawień domyślnych."
     615
     616#: ../classes/sortable.php:1158
     617msgid "Show all "
     618msgstr "Pokaż wszystkie"
     619
     620#: ../classes/values/comments.php:95
     621#: ../classes/values/comments.php:106
    98622#, php-format
    99623msgid "Submitted on <a href=\"%1$s\">%2$s at %3$s</a>"
    100624msgstr "Opublikowany dnia <a href=\"%1$s\">%2$s o godz. %3$s</a>"
    101625
    102 #: ../codepress-admin-columns.php:1464
     626#: ../classes/values/comments.php:195
     627#: ../classes/values/comments.php:200
     628msgid "Unapprove"
     629msgstr "Odrzuć"
     630
     631#: ../classes/values/comments.php:197
     632#: ../classes/values/comments.php:199
     633msgid "Approve"
     634msgstr "Zatwierdź"
     635
     636#: ../classes/values/comments.php:208
     637#: ../classes/values/posts.php:281
     638msgid "Restore"
     639msgstr "Przywróć"
     640
     641#: ../classes/values/comments.php:212
     642#: ../classes/values/posts.php:285
     643msgid "Delete Permanently"
     644msgstr "Usuń na zawsze"
     645
     646#: ../classes/values/comments.php:218
     647#: ../classes/values/link.php:117
     648#: ../classes/values/posts.php:276
     649#: ../classes/values/users.php:145
     650msgid "Edit"
     651msgstr "Edytuj"
     652
     653#: ../classes/values/comments.php:219
     654#: ../classes/values/posts.php:277
     655msgid "Quick&nbsp;Edit"
     656msgstr "Szybka&nbsp;edycja"
     657
     658#: ../classes/values/comments.php:220
     659msgid "Reply"
     660msgstr "Odpowiedź"
     661
     662#: ../classes/values/link.php:118
     663#, php-format
     664msgid ""
     665"You are about to delete this link '%s'\n"
     666"  'Cancel' to stop, 'OK' to delete."
     667msgstr ""
     668"Zamierzasz usunąć ten link link '%s'\n"
     669"  'Cancel' to stop, 'OK' to delete."
     670
     671#: ../classes/values/link.php:118
     672#: ../classes/values/users.php:151
     673msgid "Delete"
     674msgstr "Usuń"
     675
     676#: ../classes/values/media.php:100
     677msgid "original"
     678msgstr "oryginalny"
     679
     680#: ../classes/values/posts.php:107
     681msgid "Standard"
     682msgstr "Standardowe"
     683
     684#: ../classes/values/posts.php:212
     685msgid "Published"
     686msgstr "Opublikowany"
     687
     688#: ../classes/values/posts.php:213
     689msgid "Draft"
     690msgstr "Szkic"
     691
     692#: ../classes/values/posts.php:214
     693msgid "Scheduled"
     694msgstr "Zaplanowany"
     695
     696#: ../classes/values/posts.php:215
     697msgid "Private"
     698msgstr "Prywatny"
     699
     700#: ../classes/values/posts.php:216
     701msgid "Pending Review"
     702msgstr "Oczekujący na przegląd"
     703
     704#: ../classes/values/posts.php:217
     705#: ../classes/values/posts.php:283
     706msgid "Trash"
     707msgstr "Kosz"
     708
     709#: ../classes/values/posts.php:238
     710msgid "approved"
     711msgstr "zatwierdzony"
     712
     713#: ../classes/values/posts.php:242
     714msgid "pending"
     715msgstr "oczekujący"
     716
     717#: ../classes/values/posts.php:246
     718msgid "spam"
     719msgstr "spam"
     720
     721#: ../classes/values/posts.php:250
     722msgid "trash"
     723msgstr "kosz"
     724
     725#: ../classes/values/posts.php:276
    103726msgid "Edit this item"
    104727msgstr "Edytuj element"
    105728
    106 #: ../codepress-admin-columns.php:1464
    107 #: ../codepress-admin-columns.php:1504
    108 msgid "Edit"
    109 msgstr "Edytuj"
    110 
    111 #: ../codepress-admin-columns.php:1465
     729#: ../classes/values/posts.php:277
    112730msgid "Edit this item inline"
    113731msgstr "Edytuj element"
    114732
    115 #: ../codepress-admin-columns.php:1465
    116 msgid "Quick&nbsp;Edit"
    117 msgstr "Szybka&nbsp;edycja"
    118 
    119 #: ../codepress-admin-columns.php:1469
     733#: ../classes/values/posts.php:281
    120734msgid "Restore this item from the Trash"
    121735msgstr "Przywróć ten element z kosza"
    122736
    123 #: ../codepress-admin-columns.php:1469
    124 msgid "Restore"
    125 msgstr "Przywróć"
    126 
    127 #: ../codepress-admin-columns.php:1471
     737#: ../classes/values/posts.php:283
    128738msgid "Move this item to the Trash"
    129739msgstr "Przenieś ten element do kosza"
    130740
    131 #: ../codepress-admin-columns.php:1471
    132 msgid "Trash"
    133 msgstr "Kosz"
    134 
    135 #: ../codepress-admin-columns.php:1473
     741#: ../classes/values/posts.php:285
    136742msgid "Delete this item permanently"
    137743msgstr "Usuń ten element na zawsze"
    138744
    139 #: ../codepress-admin-columns.php:1473
    140 msgid "Delete Permanently"
    141 msgstr "Usuń na zawsze"
    142 
    143 #: ../codepress-admin-columns.php:1478
     745#: ../classes/values/posts.php:290
    144746#, php-format
    145747msgid "Preview &#8220;%s&#8221;"
    146748msgstr "Podejrzyj &#8220;%s&#8221;"
    147749
    148 #: ../codepress-admin-columns.php:1478
     750#: ../classes/values/posts.php:290
    149751msgid "Preview"
    150752msgstr "Podejrzyj"
    151753
    152 #: ../codepress-admin-columns.php:1480
     754#: ../classes/values/posts.php:292
    153755#, php-format
    154756msgid "View &#8220;%s&#8221;"
    155757msgstr "Zobacz &#8220;%s&#8221;"
    156758
    157 #: ../codepress-admin-columns.php:1480
     759#: ../classes/values/posts.php:292
    158760msgid "View"
    159761msgstr "Zobacz"
    160762
    161 #: ../codepress-admin-columns.php:1510
    162 msgid "Delete"
    163 msgstr "Usuń"
    164 
    165 #: ../codepress-admin-columns.php:1997
    166 msgid "Comments"
    167 msgstr "Komentarze"
    168 
    169 #: ../codepress-admin-columns.php:2003
    170 msgid "Icon"
    171 msgstr "Ikona"
    172 
    173 #: ../codepress-admin-columns.php:2028
    174 msgid "Featured Image"
    175 msgstr "Ikona wpisu"
    176 
    177 #: ../codepress-admin-columns.php:2034
    178 #: ../codepress-admin-columns.php:2088
    179 msgid "Page Order"
    180 msgstr "Kolejność stron"
    181 
    182 #: ../codepress-admin-columns.php:2037
    183 #: ../codepress-admin-columns.php:2105
    184 msgid "Post Format"
    185 msgstr "Format wpisu"
    186 
    187 #: ../codepress-admin-columns.php:2040
    188 #: ../codepress-admin-columns.php:2223
    189 #: ../codepress-admin-columns.php:2272
    190 #: ../codepress-admin-columns.php:2312
    191 msgid "ID"
    192 msgstr "ID"
    193 
    194 #: ../codepress-admin-columns.php:2043
    195 msgid "Slug"
    196 msgstr "Bezpośredni odnośnik"
    197 
    198 #: ../codepress-admin-columns.php:2046
    199 msgid "Attachment"
    200 msgstr "Załącznik"
    201 
    202 #: ../codepress-admin-columns.php:2049
    203 msgid "No. of Attachments"
    204 msgstr "Liczba załączników"
    205 
    206 #: ../codepress-admin-columns.php:2052
    207 msgid "Roles"
    208 msgstr "Role"
    209 
    210 #: ../codepress-admin-columns.php:2055
    211 #: ../codepress-admin-columns.php:3095
    212 msgid "Status"
    213 msgstr "Status"
    214 
    215 #: ../codepress-admin-columns.php:2058
    216 msgid "Comment status"
    217 msgstr "Status komentarza"
    218 
    219 #: ../codepress-admin-columns.php:2061
    220 msgid "Ping status"
    221 msgstr "Status ping"
    222 
    223 #: ../codepress-admin-columns.php:2064
    224 #: ../codepress-admin-columns.php:2175
    225 msgid "Actions"
    226 msgstr "Działania"
    227 
    228 #: ../codepress-admin-columns.php:2074
    229 msgid "Word count"
    230 msgstr "Liczba słów"
    231 
    232 #: ../codepress-admin-columns.php:2081
    233 msgid "Sticky"
    234 msgstr "Przyklejone"
    235 
    236 #: ../codepress-admin-columns.php:2090
    237 msgid "Order"
    238 msgstr "Kolejność"
    239 
    240 #: ../codepress-admin-columns.php:2098
    241 msgid "Page Template"
    242 msgstr "Szablon strony"
    243 
    244 #: ../codepress-admin-columns.php:2117
    245 msgid "Taxonomy"
    246 msgstr "Taksonomia"
    247 
    248 #: ../codepress-admin-columns.php:2127
    249 #: ../codepress-admin-columns.php:2197
    250 #: ../codepress-admin-columns.php:2357
    251 msgid "Custom Field"
    252 msgstr "Własne pole"
    253 
    254 #: ../codepress-admin-columns.php:2133
    255 #: ../codepress-admin-columns.php:2203
    256 #: ../codepress-admin-columns.php:2363
    257 msgid "Field"
    258 msgstr "Pole"
    259 
    260 #: ../codepress-admin-columns.php:2154
    261 msgid "User ID"
    262 msgstr "ID użytkownika"
    263 
    264 #: ../codepress-admin-columns.php:2157
    265 msgid "Nickname"
    266 msgstr "Pseudonim"
    267 
    268 #: ../codepress-admin-columns.php:2160
    269 msgid "First name"
    270 msgstr "Imię"
    271 
    272 #: ../codepress-admin-columns.php:2163
    273 msgid "Last name"
    274 msgstr "Nazwisko"
    275 
    276 #: ../codepress-admin-columns.php:2166
    277 msgid "Url"
    278 msgstr "Adres URL"
    279 
    280 #: ../codepress-admin-columns.php:2169
    281 msgid "Registered"
    282 msgstr "Zarejestrowany"
    283 
    284 #: ../codepress-admin-columns.php:2172
    285 #: ../codepress-admin-columns.php:2244
    286 #: ../codepress-admin-columns.php:2275
    287 msgid "Description"
    288 msgstr "Opis"
    289 
    290 #: ../codepress-admin-columns.php:2189
    291 msgid "Postcount"
    292 msgstr "Liczba wpisów"
    293 
    294 #: ../codepress-admin-columns.php:2226
    295 msgid "Mime type"
    296 msgstr "Typ pliku"
    297 
    298 #: ../codepress-admin-columns.php:2229
    299 msgid "File name"
    300 msgstr "Nazwa pliku"
    301 
    302 #: ../codepress-admin-columns.php:2232
    303 msgid "Dimensions"
    304 msgstr "Wymiary"
    305 
    306 #: ../codepress-admin-columns.php:2235
    307 msgid "Height"
    308 msgstr "Wysokość"
    309 
    310 #: ../codepress-admin-columns.php:2241
    311 msgid "Caption"
    312 msgstr "Tytuł"
    313 
    314 #: ../codepress-admin-columns.php:2247
    315 msgid "Alt"
    316 msgstr "Tekst alternatywny"
    317 
    318 #: ../codepress-admin-columns.php:2250
    319 msgid "Upload paths"
    320 msgstr "Ścieżki plików"
    321 
    322 #: ../codepress-admin-columns.php:2281
    323 msgid "Target"
    324 msgstr "Cel"
    325 
    326 #: ../codepress-admin-columns.php:2284
    327 msgid "Owner"
    328 msgstr "Właściciel"
    329 
    330 #: ../codepress-admin-columns.php:2287
    331 msgid "Notes"
    332 msgstr "Notatki"
    333 
    334 #: ../codepress-admin-columns.php:2290
    335 msgid "Rss"
    336 msgstr "Rss"
    337 
    338 #: ../codepress-admin-columns.php:2293
    339 msgid "Length"
    340 msgstr "Długość"
    341 
    342 #: ../codepress-admin-columns.php:2315
    343 msgid "Author Name"
    344 msgstr "Imię Autora"
    345 
    346 #: ../codepress-admin-columns.php:2318
    347 msgid "Avatar"
    348 msgstr "Avatar"
    349 
    350 #: ../codepress-admin-columns.php:2321
    351 msgid "Author url"
    352 msgstr "URL Autora"
    353 
    354 #: ../codepress-admin-columns.php:2324
    355 msgid "Author IP"
    356 msgstr "IP Autora"
    357 
    358 #: ../codepress-admin-columns.php:2327
    359 msgid "Author email"
    360 msgstr "Email Autora"
    361 
    362 #: ../codepress-admin-columns.php:2330
    363 msgid "In Reply To"
    364 msgstr "W odpowiedzi na"
    365 
    366 #: ../codepress-admin-columns.php:2338
    367 msgid "Approved"
    368 msgstr "Zatwierdzony"
    369 
    370 #: ../codepress-admin-columns.php:2344
    371 msgid "Date GMT"
    372 msgstr "Data GMT"
    373 
    374 #: ../codepress-admin-columns.php:2347
    375 msgid "Agent"
    376 msgstr "Przeglądarka"
    377 
    378 #: ../codepress-admin-columns.php:2393
    379 msgid "Custom"
    380 msgstr "Włąsne"
    381 
    382 #: ../codepress-admin-columns.php:2470
    383 #: ../codepress-admin-columns.php:3218
    384 msgid "Addons"
    385 msgstr "Dodatki"
    386 
    387 #: ../codepress-admin-columns.php:3036
    388 #: ../codepress-admin-columns.php:3203
    389 msgid "find out more"
    390 msgstr "dowiedz się więcej"
    391 
    392 #: ../codepress-admin-columns.php:3040
    393 msgid "This will make all of the new columns support sorting"
    394 msgstr "Dzięki temu wszystkie nowe kolumny będą sortowalne"
    395 
    396 #: ../codepress-admin-columns.php:3041
    397 msgid "By default WordPress let's you sort by title, date, comments and author. This will make you be able to <strong>sort by any column of any type!</strong>"
    398 msgstr "Domyślnie, WordPress pozwala na sortowanie po tytule, dacie, komentarzu i autorze. Dzięi temu będziesz mógł <strong>sortować każdą kolumnę, każdego rodzaju!</strong>"
    399 
    400 #: ../codepress-admin-columns.php:3042
    401 msgid "Perfect for sorting your articles, media files, comments, links and users"
    402 msgstr "Idealne rozwiązanie do sortowania wpisów, mediów, komentarzy, linków i użytkowników"
    403 
    404 #: ../codepress-admin-columns.php:3051
    405 #: ../codepress-admin-columns.php:3053
    406 msgid "Sortorder"
    407 msgstr "Kierunek sortowania"
    408 
    409 #: ../codepress-admin-columns.php:3061
    410 msgid "Inactive"
    411 msgstr "Nieaktywny"
    412 
    413 #: ../codepress-admin-columns.php:3064
    414 msgid "Active"
    415 msgstr "Aktywny"
    416 
    417 #: ../codepress-admin-columns.php:3069
    418 msgid "Fill in your activation code"
    419 msgstr "Wpisz kod aktywacyjny"
    420 
    421 #: ../codepress-admin-columns.php:3070
    422 msgid "Activate"
    423 msgstr "Aktywuj"
    424 
    425 #: ../codepress-admin-columns.php:3074
    426 msgid "Deactivate"
    427 msgstr "Deaktywuj"
    428 
    429 #: ../codepress-admin-columns.php:3089
    430 msgid "Activate Add-ons"
    431 msgstr "Aktywuj dodatki"
    432 
    433 #: ../codepress-admin-columns.php:3090
    434 msgid "Add-ons can be unlocked by purchasing a license key. Each key can be used on multiple sites"
    435 msgstr "Dodatki mągą być aktywowane po zakupie licencji. Każdy klucz licencji może być sotsowany na wielu stronach"
    436 
    437 #: ../codepress-admin-columns.php:3094
    438 msgid "Addon"
    439 msgstr "Dodatek"
    440 
    441 #: ../codepress-admin-columns.php:3096
    442 msgid "Activation Code"
    443 msgstr "Kod aktywacyjny"
    444 
    445 #: ../codepress-admin-columns.php:3105
    446 msgid "Enter your activation code"
    447 msgstr "Wpisz kod aktywacyjny"
    448 
    449 #: ../codepress-admin-columns.php:3106
    450 msgid "Activation code unrecognised"
    451 msgstr "Kod aktywacyjny nie został rozpoznany"
    452 
    453 #: ../codepress-admin-columns.php:3200
    454 msgid "You will find a short overview at the <strong>Help</strong> section in the top-right screen."
    455 msgstr "Krótkie podsumowanie znajdziesz w dziale <strong>Pomocy</strong>, w prawym, górnym rogu ekranu."
    456 
    457 #: ../codepress-admin-columns.php:3208
    458 msgid "Codepress Admin Columns"
    459 msgstr "Edytor kolumn"
    460 
    461 #: ../codepress-admin-columns.php:3221
    462 msgid "By default WordPress let's you only sort by title, date, comments and author."
    463 msgstr "Domyślnie WordPress pozwala na sortowanie po tytule, dacie, komentarzu i autorze."
    464 
    465 #: ../codepress-admin-columns.php:3222
    466 msgid "Make <strong>all columns</strong> of <strong>all types</strong> support sorting &#8212; with the sorting addon."
    467 msgstr "Włącz sortowanie <strong>wszystkich kolumn, wszystkich typów</strong> &#8212; uaktywniając dodatek."
    468 
    469 #: ../codepress-admin-columns.php:3230
    470 msgid "Like this plugin?"
    471 msgstr "Lubisz tę wtyczkę?"
    472 
    473 #: ../codepress-admin-columns.php:3233
    474 msgid "Why not do any or all of the following"
    475 msgstr "Dlaczego by nie zrobić jednej lub wszystkich z poniższych rzeczy"
    476 
    477 #: ../codepress-admin-columns.php:3235
    478 msgid "Link to it so other folks can find out about it."
    479 msgstr "Dodaj link aby inni mogli się o niej dowiedzieć."
    480 
    481 #: ../codepress-admin-columns.php:3236
    482 msgid "Give it a 5 star rating on WordPress.org."
    483 msgstr "Przyznaj jej 5 gwaizdek na stronie WordPress.org."
    484 
    485 #: ../codepress-admin-columns.php:3237
    486 msgid "Donate a token of your appreciation."
    487 msgstr "Wspomóż drobną dotacją."
    488 
    489 #: ../codepress-admin-columns.php:3245
    490 msgid "Need support?"
    491 msgstr "Potrzebujesz pomocy?"
    492 
    493 #: ../codepress-admin-columns.php:3249
    494 #, php-format
    495 msgid "If you are having problems with this plugin, please talk about them in the <a href=\"%s\">Support forums</a> or send me an email %s."
    496 msgstr "Jeśli masz jakieś problemy z tą wtyczką, proszę napisz o tym na stronie <a href=\"%s\">Forum pomocy</a> lub wyślij do mnie maila na adres %s."
    497 
    498 #: ../codepress-admin-columns.php:3250
    499 #, php-format
    500 msgid "If you're sure you've found a bug, or have a feature request, please <a href='%s'>submit your feedback</a>."
    501 msgstr "Jeśli jeste przekonany, że znalazłeś bug'a lub masz prośbę o dodanie nowej funkcji, proszę <a href='%s'>wyślij do mnie maila.</a>."
    502 
    503 #: ../codepress-admin-columns.php:3265
    504 msgid "Admin Columns"
    505 msgstr "Edytor kolumn"
    506 
    507 #: ../codepress-admin-columns.php:3283
    508 msgid "Save Changes"
    509 msgstr "Zapisz zmiany"
    510 
    511 #: ../codepress-admin-columns.php:3295
    512 msgid "Restore defaults"
    513 msgstr "Przywróć domyślne"
    514 
    515 #: ../codepress-admin-columns.php:3299
    516 msgid "Restore default settings"
    517 msgstr "Przywróć ustawienia domyślne"
    518 
    519 #: ../codepress-admin-columns.php:3299
    520 msgid "Warning! ALL saved admin columns data will be deleted. This cannot be undone. \\'OK\\' to delete, \\'Cancel\\' to stop"
    521 msgstr "Uwaga! WSZYSTKIE zapisane ustawienia kolumn zostaną usunięte. Tej operacji nie można przywrócić. Kliknij \\'OK\\' aby usunąć lub \\'Anuluj\\' aby przerwać."
    522 
    523 #: ../codepress-admin-columns.php:3301
    524 msgid "This will delete all column settings and restore the default settings."
    525 msgstr "Ta operacja usunie wszystkie ustawienia kolumn u przywróci je do ustawień domyślnych."
    526 
    527 #: ../classes/sortable.php:961
    528 msgid "Show all "
    529 msgstr "Pokaż wszystkie"
    530 
  • codepress-admin-columns/trunk/readme.txt

    r588235 r600963  
    55Requires at least: 3.1
    66Tested up to: 3.4
    7 Stable tag: 1.4.6.2
     7Stable tag: 1.4.6.3
    88
    99Customise columns on the administration screens for post(types), pages, media, comments, links and users with an easy to use drag-and-drop interface.
     
    100100* Numeric value ( this also works for sorting by meta_value_num )
    101101* Post Titles
     102* Usernames
    102103* Checkmark Image ( for true or false values )
    103104
     
    168169`
    169170
     171**my already uploaded images have a wrong size**
     172If you want your already uploaded images to display the newly added size you will need to regenerate the thumbnail for them. Use this plugin to generate the newly added sized thumbnails: http://wordpress.org/extend/plugins/regenerate-thumbnails/.
     173
    170174= How can I enable the use of Hidden Custom Fields? =
    171175
     
    189193<?php
    190194add_filter( 'cpac-remove-filtering-columns', '__return_false' ); // add dropdown taxonomy filtering to the overview pages
     195?>
     196`
     197
     198= How can I display a custom value in the Custom Fields Column? =
     199
     200With this filter 'cpac_get_column_value_custom_field' you can control what the value will be for any Custom Field Column.
     201
     202Filter explained:
     203**$value** is the orgignal value which would otherwise be displayed
     204**$internal_field_key** is only used internally to store the column
     205**$custom_field** is the name of your custom field
     206**$type** will return either the posttype or if it is any other type it will return wp-comments, wp-links, wp-users, wp-media.
     207**$object_id** will return the ID of the object.
     208
     209For example if you have a custom posttype 'Demo' with a custom_field that is called 'city' and the result would be an integer '33'. You can change that integer '33' to Amsterdam.
     210
     211`
     212<?php
     213function my_custom_field_value( $value, $internal_field_key, $custom_field, $type, $object_id )
     214{
     215    $my_post_type  = 'demo';
     216    $my_field_name = 'city';
     217   
     218    // make sure we have the correct posttype and fieldname
     219    if ( $my_post_type == $type && $my_field_name == $custom_field ) {
     220       
     221        if ( '33' == $value )
     222            $value = 'Amsterdam';
     223       
     224        elseif ( '34' == $value )
     225            $value = 'New York';   
     226    }
     227    return $value; 
     228}
     229add_filter( 'cpac_get_column_value_custom_field', 'my_custom_field_value', 10, 5 );
    191230?>
    192231`
     
    205244== Changelog ==
    206245
     246= 1.4.6.3 =
     247
     248* Added new custom field type: User by User ID
     249* Added values to filter 'cpac_get_column_value_custom_field' for better control of the output
     250* Added an example for above filter to FAQ section
     251* Added fix where trash posts did not show with the sorting addon activated
     252
    207253= 1.4.6.2 =
    208254
    209255* bug fix with a static function which could cause an error in some cases
    210 * added filter to enable taxonomy filtering. add this to your functions.php to enable taxonomy filtering: `add_filter( 'cpac-remove-filtering-columns', '__return_false' )`
     256* added filter to enable taxonomy filtering. add this to your functions.php to enable taxonomy filtering: `add_filter( 'cpac-remove-filtering-columns', '__return_false' );`
    211257
    212258= 1.4.6.1 =
Note: See TracChangeset for help on using the changeset viewer.