Plugin Directory

Changeset 1420409


Ignore:
Timestamp:
05/19/2016 03:31:28 PM (10 years ago)
Author:
wassereimer
Message:

new version for trunk

Location:
easy-code-placement/trunk
Files:
2 added
14 edited

Legend:

Unmodified
Added
Removed
  • easy-code-placement/trunk/easy-code-placement.php

    r1335072 r1420409  
    44 * Text Domain: easy-code-placement
    55 * Domain Path: /lang
    6  * Version: 3.1.1
     6 * Version: 3.2
    77 * Plugin URI: http://www.randnotizen.org/easy-code-placement/
    88 * Author: Jens Herdy
     
    1515ob_start();
    1616define('ECP_FILE',__FILE__);
    17 define('ECP_VERSION','3.1.1');
     17define('ECP_VERSION','3.2');
    1818
    1919// load functions, classes
    2020include( dirname( __FILE__ ) . '/inc/functions.php' );
    21 include( dirname( __FILE__ ) . '/inc/classes/class-ecp-tables.php' );
    22 include( dirname( __FILE__ ) . '/inc/classes/class-ecp-table.php' );
    2321
    2422// set filters to replace shortcodes
  • easy-code-placement/trunk/inc/actions/add.php

    r1335072 r1420409  
    4646    }
    4747
    48     $wpdb->insert($wpdb->prefix.'ecp_data', array('name' =>$t_ecp_name,'code'=>$t_ecp_code,'alignment'=>$t_ecp_alignment,'shortcode'=>$t_ecp_name,'status'=>$t_ecp_status,'version'=>ECP_VERSION));
     48    $wpdb->insert($wpdb->prefix.'ecp_data', array('name' =>$t_ecp_name,'code'=>$t_ecp_code,'alignment'=>$t_ecp_alignment,'shortcode'=>$t_ecp_name,'status'=>$t_ecp_status,'added'=>date('Y-m-d H:i:s'),'version'=>ECP_VERSION));
    4949
    5050    // when added to database goto options page
  • easy-code-placement/trunk/inc/actions/alignment.php

    r1335072 r1420409  
    77$ecp_id = $_GET['ecpid'];
    88$ecp_alignment = $_GET['alignment'];
     9
     10if (isset($_GET['pagenum'])) {
     11    $t_ecp_sendpage=$_GET['pagenum'];
     12    $ecp_sendpage='&pagenum='.$t_ecp_sendpage.'';
     13}
    914
    1015if ($ecp_id=="" || !is_numeric($ecp_id)) {
     
    2631
    2732// when status changes goto options page
    28 header('Location: options-general.php?page=ecp');
     33header('Location: options-general.php?page=ecp'.$ecp_sendpage.'');
    2934
    3035?>
  • easy-code-placement/trunk/inc/actions/edit.php

    r1335072 r1420409  
    22
    33global $wpdb;
     4
     5if (isset($_GET['pagenum'])) {
     6    $t_ecp_sendpage=$_GET['pagenum'];
     7    $ecp_sendpage='&pagenum='.$t_ecp_sendpage.'';
     8}
    49
    510// when form was sent
     
    1217    $t_ecp_status = $_POST['status'];
    1318    $t_ecp_id = $_POST['id'];
    14 
     19   
    1520    if($t_ecp_id=="" || !is_numeric($t_ecp_id)) {
    1621        // when get emty or other than numbers goto error page
     
    2934    }
    3035   
    31     $wpdb->update($wpdb->prefix.'ecp_data', array('code'=>$t_ecp_code,'alignment'=>$t_ecp_alignment,'status'=>$t_ecp_status), array('id'=>$t_ecp_id));
     36    $wpdb->update($wpdb->prefix.'ecp_data', array('code'=>$t_ecp_code,'alignment'=>$t_ecp_alignment,'status'=>$t_ecp_status,'changed'=>date('Y-m-d H:i:s')), array('id'=>$t_ecp_id));
    3237
    3338    // when edited goto options page
    34     header('Location: options-general.php?page=ecp');
     39    header('Location: options-general.php?page=ecp'.$ecp_sendpage.'');
    3540    exit();
    3641
     
    96101    </tr>
    97102</table>
    98 <br><input type="button" class="button-secondary" value="<?php _e('Back','easy-code-placement'); ?>" onClick='document.location.href="<?php echo admin_url('options-general.php?page=ecp');?>"'>&nbsp;&nbsp;<input type="submit" name="submit" class="button-primary" value="<?php _e('Save','easy-code-placement'); ?>">
     103<br><input type="button" class="button-secondary" value="<?php _e('Back','easy-code-placement'); ?>" onClick='document.location.href="<?php echo admin_url('options-general.php?page=ecp'.$ecp_sendpage.'');?>"'>&nbsp;&nbsp;<input type="submit" name="submit" class="button-primary" value="<?php _e('Save','easy-code-placement'); ?>">
    99104</form>
    100105
  • easy-code-placement/trunk/inc/actions/status.php

    r1335072 r1420409  
    77$ecp_id = $_GET['ecpid'];
    88$ecp_status = $_GET['status'];
     9
     10if (isset($_GET['pagenum'])) {
     11    $t_ecp_sendpage=$_GET['pagenum'];
     12    $ecp_sendpage='&pagenum='.$t_ecp_sendpage.'';
     13}
    914
    1015if ($ecp_id=="" || !is_numeric($ecp_id)) {
     
    2631
    2732// when status changes goto options page
    28 header('Location: options-general.php?page=ecp');
     33header('Location: options-general.php?page=ecp'.$ecp_sendpage.'');
    2934
    3035?>
  • easy-code-placement/trunk/inc/functions.php

    r1335072 r1420409  
    77
    88// check if role >= option
    9 function check_role() {
     9function ecp_check_role() {
    1010    global $wpdb;
    1111    $ecp_role = $wpdb->get_var("SELECT option_value FROM ".$wpdb->prefix."ecp_options WHERE option_name = 'role'" );
     
    1919// generate options menu
    2020function ecp_add_page() {
    21     if (check_role() === '1') {
     21    if (ecp_check_role() === '1') {
    2222        add_options_page( 'Easy Code Placement', 'Easy Code Placement', 'edit_posts', 'ecp', 'ecp' );
    2323    }
     
    2727function ecp() {
    2828    include ( dirname( __FILE__ ) . '/page.php' );
    29 }
    30 
    31 // add css to ecp page
    32 add_action('admin_head', 'table_css');
    33 function table_css() {
    34     $page = ( isset($_GET['page'] ) ) ? esc_attr( $_GET['page'] ) : false;
    35     if( 'ecp' != $page )
    36         return;
    37 
    38     echo '<style type="text/css">';
    39     echo '.wp-list-table .column-name { width: 31%; }';
    40     echo '.wp-list-table .column-shortcode { width: 45%; }';
    41     echo '.wp-list-table .column-action { width: 24%; }';
    42     echo '</style>';
    4329}
    4430
     
    9177}
    9278
    93 // create options table
    94 function render_ecp_table(){
    95     $ecp_options_table = new ecp_table();
    96     $ecp_options_table->prepare_items();
    97     $ecp_options_table->display();
    98 }
    99 
    100 // update to 3.1.1
     79// update to 3.2
    10180function ecp_update(){
    10281    // multiside update
     
    10786        foreach ($blogids as $blogid) {
    10887            switch_to_blog($blogid);
    109             $wpdb->query("ALTER TABLE ".$wpdb->prefix."ecp_options MODIFY COLUMN option_value varchar(20)");
    110             $wpdb->query("UPDATE ".$wpdb->prefix."ecp_data SET version='3.1.1'");
    111             $wpdb->insert($wpdb->prefix.'ecp_options', array( 'option_name' => 'role','option_value' => 'manage_options'));
    112             $wpdb->update($wpdb->prefix.'ecp_options', array( 'option_value' => '3.1.1' ), array( 'option_name' => 'version' ));
     88            $wpdb->query("ALTER TABLE ".$wpdb->prefix."ecp_data ADD COLUMN added TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER status");
     89            $wpdb->query("ALTER TABLE ".$wpdb->prefix."ecp_data ADD COLUMN changed TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER added");
     90            $wpdb->query("UPDATE ".$wpdb->prefix."ecp_data SET version='3.2'");
     91            $wpdb->update($wpdb->prefix.'ecp_options', array( 'option_value' => '3.2' ), array( 'option_name' => 'version' ));
    11392        }
    11493    switch_to_blog($blog);
     
    11695    // single update
    11796    global $wpdb;
    118     $wpdb->query("ALTER TABLE ".$wpdb->prefix."ecp_options MODIFY COLUMN option_value varchar(20)");
    119     $wpdb->query("UPDATE ".$wpdb->prefix."ecp_data SET version='3.1.1'");
    120     $wpdb->insert($wpdb->prefix.'ecp_options', array( 'option_name' => 'role','option_value' => 'manage_options'));
    121     $wpdb->update($wpdb->prefix.'ecp_options', array( 'option_value' => '3.1.1' ), array( 'option_name' => 'version' ));
     97        $wpdb->query("ALTER TABLE ".$wpdb->prefix."ecp_data ADD COLUMN added TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER status");
     98        $wpdb->query("ALTER TABLE ".$wpdb->prefix."ecp_data ADD COLUMN changed TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER added");
     99        $wpdb->query("UPDATE ".$wpdb->prefix."ecp_data SET version='3.2'");
     100        $wpdb->update($wpdb->prefix.'ecp_options', array( 'option_value' => '3.2' ), array( 'option_name' => 'version' ));
    122101    }
    123102}
     
    129108    if (! is_admin()) {
    130109        return;
    131     } elseif ($ecp_options_version === '3.1.1') {
     110    } elseif ($ecp_options_version === '3.2') {
    132111        return;
    133112    } else {
  • easy-code-placement/trunk/inc/install.php

    r1334958 r1420409  
    1212        `shortcode` varchar(55) COLLATE utf8_unicode_ci NOT NULL,
    1313        `status` int NOT NULL,
     14        `added` TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00',
     15        `changed` TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00',
    1416        `version` varchar(10) COLLATE utf8_unicode_ci NOT NULL
    1517        ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1";
     
    3032// multiside or single installation?
    3133function ecp_net_inst($networkwide) {
    32     global $wpdb; 
    33     // multiside installation
    34     if (is_multisite() && $networkwide) {
    35     $blog = $wpdb->blogid;
    36         $blogids = $wpdb->get_col("SELECT blog_id FROM $wpdb->blogs");
    37         foreach ($blogids as $blogid) {
    38             switch_to_blog($blogid);
    39             ecp_install();
     34    // check if an installation already exist
     35    global $wpdb;
     36    $ecp_find = $wpdb->prefix.'ecp_options';
     37    if($wpdb->get_var("SHOW TABLES LIKE '$ecp_find'") != $ecp_find) {
     38        // multiside installation
     39        if (is_multisite() && $networkwide) {
     40            $blog = $wpdb->blogid;
     41            $blogids = $wpdb->get_col("SELECT blog_id FROM $wpdb->blogs");
     42            foreach ($blogids as $blogid) {
     43                switch_to_blog($blogid);
     44                ecp_install();
     45            }
     46        switch_to_blog($blog);
     47        } else {
     48        // single installation 
     49        ecp_install();
    4050        }
    41     switch_to_blog($blog);
    42     } else {
    43     // single installation 
    44     ecp_install();
    4551    }
    4652}
  • easy-code-placement/trunk/inc/page.php

    r1335072 r1420409  
    2323    include ( dirname( __FILE__ ) . '/system.php' );
    2424    } else {
    25     // when nothing load options page
    26      
     25    // when nothing - load options page
     26    include ( dirname( __FILE__ ) . '/content.php' );
     27    }
     28   
    2729?>
    28 
    29 <div class="wrap">
    30 <table width="100%" border="0" cellspacing="0" cellpadding="0">
    31     <tr>
    32         <td width="70%" align="left"><h2>Easy Code Placement - <?php _e('Codes','easy-code-placement'); ?></h2></td>
    33         <td width="30%" align="right"><input type="button" class="button-secondary" value="<?php _e('System Information','easy-code-placement'); ?>" onClick='document.location.href="<?php echo admin_url('options-general.php?page=ecp&load=system');?>"'></td>
    34     </tr>
    35 </table>
    36 
    37 <?php render_ecp_table(); ?>
    38 
    39 <input type="button" class="button-primary" value="<?php _e('Add New Code','easy-code-placement'); ?>" onClick='document.location.href="<?php echo admin_url('options-general.php?page=ecp&load=add');?>"'>&nbsp;&nbsp;<input type="button" class="button-primary" value="<?php _e('Settings','easy-code-placement'); ?>" onClick='document.location.href="<?php echo admin_url('options-general.php?page=ecp&load=settings');?>"'>
    40 
    41 <table width="100%" border="0" cellspacing="0" cellpadding="6">
    42     <tr>
    43         <td width="600px" align="left"><?php _e('If you want to thank the developer for this free Plugin, you are welcome to make a donation via PayPal (you don\'t need a PayPal account to make the donation).','easy-code-placement'); ?></td>
    44         <td><form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank">
    45             <input type="hidden" name="cmd" value="_s-xclick">
    46             <input type="hidden" name="hosted_button_id" value="2X2EH5MYGPLL4">
    47             <input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG_global.gif" border="0" name="submit" alt="PayPal – The safer, easier way to pay online.">
    48             <img alt="" border="0" src="https://www.paypalobjects.com/de_DE/i/scr/pixel.gif" width="1" height="1"></form>
    49         </td>
    50     </tr>
    51 </table>
    52 
    53 </div>
    54 
    55 <?php
    56     }
    57 ?>
  • easy-code-placement/trunk/inc/settings.php

    r1335072 r1420409  
    88    // secure post data and set variables
    99    $_POST = stripslashes_deep ($_POST);
    10     $t_ecp_perpage = $_POST['perpage'];
     10    $t_ecp_per_page = $_POST['perpage'];
    1111    $t_ecp_role = $_POST['role'];
    1212
    13     if ($t_ecp_perpage == "") {
     13    if ($t_ecp_per_page == "") {
    1414        // when perpage is empty
    1515        $ecp_error = __('The Option "Codes per Page" must be filled in', 'easy-code-placement');
     
    1919    }
    2020   
    21     if (!is_numeric($t_ecp_perpage)) {
     21    if (!is_numeric($t_ecp_per_page)) {
    2222        // when perpage not a number
    2323        $ecp_error = __('The Value for the Option "Codes per Page" must be numeric', 'easy-code-placement');
     
    2727    }
    2828   
    29     $wpdb->update($wpdb->prefix.'ecp_options', array('option_value'=>$t_ecp_perpage), array('option_name'=>'perpage'));
     29    $wpdb->update($wpdb->prefix.'ecp_options', array('option_value'=>$t_ecp_per_page), array('option_name'=>'perpage'));
    3030    $wpdb->update($wpdb->prefix.'ecp_options', array('option_value'=>$t_ecp_role), array('option_name'=>'role'));
    3131
     
    7676                <?php
    7777                global $wpdb;
    78                 $per_page = $wpdb->get_var("SELECT option_value FROM ".$wpdb->prefix."ecp_options WHERE option_name = 'perpage'");
     78                $ecp_per_page = $wpdb->get_var("SELECT option_value FROM ".$wpdb->prefix."ecp_options WHERE option_name = 'perpage'");
    7979                ?>
    80                 <input type="text" name="perpage" value="<?php echo $per_page; ?>" size="10" maxlength="2">
     80                <input type="text" name="perpage" value="<?php echo $ecp_per_page; ?>" size="10" maxlength="2">
    8181            </td>
    8282    </tr>
  • easy-code-placement/trunk/inc/system.php

    r1335072 r1420409  
    7474                    } else {
    7575                        echo $ecp_options_role;
     76                    }
     77                ?>
     78            </td>
     79    </tr>
     80        <tr>
     81            <td><?php _e('Codes per Page','easy-code-placement'); ?></td>
     82            <td><?php
     83                    global $wpdb;
     84                    $ecp_per_page = $wpdb->get_var("SELECT option_value FROM ".$wpdb->prefix."ecp_options WHERE option_name = 'perpage'");
     85                    if ($ecp_per_page === '') {
     86                        _e('Error','easy-code-placement');
     87                    } else {
     88                        echo $ecp_per_page;
    7689                    }
    7790                ?>
  • easy-code-placement/trunk/lang/easy-code-placement-de_DE.po

    r1335072 r1420409  
    11msgid ""
    22msgstr ""
    3 "Project-Id-Version: Easy Code Placement - for any Code you want v3.1\n"
     3"Project-Id-Version: Easy Code Placement\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2016-01-24 18:22+0100\n"
    6 "PO-Revision-Date: 2016-01-24 18:22+0100\n"
    7 "Last-Translator: wassereimer <[email protected]>\n"
    8 "Language-Team: Jens Herdy\n"
    9 "Language: de\n"
     5"POT-Creation-Date: Sun Jan 24 2016 18:22:46 GMT+0100 (Mitteleuropäische "
     6"Zeit)\n"
     7"PO-Revision-Date: Thu May 19 2016 17:12:26 GMT+0200 (Mitteleuropäische "
     8"Sommerzeit)\n"
     9"Last-Translator: Jens Herdy <[email protected]>\n"
     10"Language-Team: \n"
     11"Language: German\n"
     12"Plural-Forms: nplurals=2; plural=n != 1\n"
    1013"MIME-Version: 1.0\n"
    1114"Content-Type: text/plain; charset=UTF-8\n"
    1215"Content-Transfer-Encoding: 8bit\n"
    13 "Plural-Forms: nplurals=2; plural=n != 1;\n"
    1416"X-Poedit-SourceCharset: UTF-8\n"
    15 "X-Generator: Poedit 1.8.6\n"
     17"X-Generator: Loco - https://localise.biz/\n"
    1618"X-Poedit-Basepath: .\n"
    17 "X-Poedit-KeywordsList: __;_e;esc_attr__;_n:1,2\n"
     19"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
     20"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
     21"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
     22"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
     23"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
    1824"X-Loco-Target-Locale: de_DE\n"
    19 "X-Poedit-SearchPath-0: ..\n"
    20 
    21 #: ../inc/actions/add.php:17 ../inc/actions/add.php:71
    22 #: ../inc/actions/edit.php:69
    23 msgid "A maximum of 30 Characters is allowed"
    24 msgstr "Maximal 30 Zeichen sind erlaubt"
    25 
    26 #: ../inc/actions/add.php:25
    27 msgid "Special Characters are not allowed in the Code Name"
    28 msgstr "Sonderzeichen sind im Code Namen nicht erlaubt"
    29 
    30 #: ../inc/actions/add.php:33
    31 msgid "The Code Name and / or the Code must be filled in"
    32 msgstr "Der Code Name und / oder der Code müssen ausgefüllt werden"
    33 
    34 #: ../inc/actions/add.php:42
    35 msgid "The Code Name already exist - It must be uniqe"
    36 msgstr "Der Name existiert bereits - Er muss einmalig sein"
    37 
    38 #: ../inc/actions/add.php:59
    39 msgid "New Code"
    40 msgstr "Code hinzufügen"
    41 
    42 #: ../inc/actions/add.php:65 ../inc/actions/edit.php:62
    43 #: ../inc/classes/class-ecp-table.php:56 ../inc/settings.php:53
    44 #: ../inc/system.php:13 ../inc/system.php:91 ../inc/system.php:131
     25"X-Poedit-SearchPath-0: .."
     26
     27#. Name of the plugin
     28msgid "Easy Code Placement"
     29msgstr "Easy Code Placement"
     30
     31#. URI of the plugin
     32msgid "http://www.randnotizen.org/easy-code-placement"
     33msgstr "http://www.randnotizen.org/easy-code-placement"
     34
     35#. Author of the plugin
     36msgid "Jens Herdy"
     37msgstr "Jens Herdy"
     38
     39#. Author URI of the plugin
     40msgid "http://www.randnotizen.org"
     41msgstr "http://www.randnotizen.org"
     42
     43#. Description of the plugin
     44msgid "A great Wordpress Plugin to place ANY Code ANYWHERE you want."
     45msgstr ""
     46"Ein tolles Wordpress Plugin um jeglichen Code dort zu platzieren wo du es "
     47"möchtest."
     48
     49#: ../inc/content.php:28
     50msgid "« Previous"
     51msgstr "« Vorherige"
     52
     53#: ../inc/content.php:29
     54msgid "Next »"
     55msgstr "Nächste »"
     56
     57#: ../inc/content.php:87
     58msgid "Added"
     59msgstr "Hinzugefügt"
     60
     61#: ../inc/content.php:87
     62msgid "Modified"
     63msgstr "Verändert"
     64
     65#: ../inc/content.php:87
     66msgid "Info"
     67msgstr "Info"
     68
     69#: ../inc/error.php:2 ../inc/error.php:7 ../inc/system.php:30 ../inc/system.php:
     70#: 60 ../inc/system.php:73 ../inc/system.php:86 ../inc/system.php:115 ..
     71#: inc/system.php:125
     72msgid "Error"
     73msgstr "Fehler"
     74
     75#: ../inc/error.php:13 ../inc/settings.php:86 ../inc/system.php:166 ..
     76#: inc/actions/add.php:100 ../inc/actions/edit.php:103
     77msgid "Back"
     78msgstr "Zurück"
     79
     80#: ../inc/settings.php:15
     81msgid "The Option \"Codes per Page\" must be filled in"
     82msgstr "Die Option \"Codes pro Seite\" muss ausgefüllt werden"
     83
     84#: ../inc/settings.php:23
     85msgid "The Value for the Option \"Codes per Page\" must be numeric"
     86msgstr "Die Wert der Option \"Codes pro Seite\" muss numerisch sein"
     87
     88#: ../inc/settings.php:41 ../inc/content.php:105
     89msgid "Settings"
     90msgstr "Einstellungen"
     91
     92#: ../inc/settings.php:53 ../inc/system.php:13 ../inc/system.php:104 ..
     93#: inc/system.php:144 ../inc/content.php:51 ../inc/actions/add.php:65 ..
     94#: inc/actions/edit.php:67
    4595msgid "Name"
    4696msgstr "Name"
    4797
    48 #: ../inc/actions/add.php:69 ../inc/actions/edit.php:67
    49 msgid "Only Letters and Numbers are allowed"
    50 msgstr "Nur Buchstaben und Zahlen sind erlaubt"
    51 
    52 #: ../inc/actions/add.php:70 ../inc/actions/edit.php:68
    53 msgid "Instead of Whitesspaces use Underlines"
    54 msgstr "Anstelle von Leerzeichen sind Unterstriche zu benutzen"
    55 
    56 #: ../inc/actions/add.php:74 ../inc/actions/edit.php:72
    57 msgid "Code"
    58 msgstr "Code"
    59 
    60 #: ../inc/actions/add.php:80 ../inc/actions/edit.php:78
    61 msgid "Alignment"
    62 msgstr "Ausrichtung"
    63 
    64 #: ../inc/actions/add.php:84 ../inc/actions/edit.php:82
    65 #: ../inc/classes/class-ecp-table.php:23
     98#: ../inc/settings.php:54 ../inc/system.php:14 ../inc/system.php:105 ..
     99#: inc/system.php:145
     100msgid "Value"
     101msgstr "Wert"
     102
     103#: ../inc/settings.php:59
     104msgid "Who can manage this Plugin?"
     105msgstr "Wer kann dieses Plugin verwalten?"
     106
     107#: ../inc/settings.php:66
     108msgid "Adminstrators and higher"
     109msgstr "Administratoren und höher"
     110
     111#: ../inc/settings.php:67
     112msgid "Editors and higher"
     113msgstr "Redakteure und höher"
     114
     115#: ../inc/settings.php:68
     116msgid "Authors and higher"
     117msgstr "Autoren und höher"
     118
     119#: ../inc/settings.php:69
     120msgid "Contributors and higher"
     121msgstr "Mitarbeiter und höher"
     122
     123#: ../inc/settings.php:74 ../inc/system.php:81
     124msgid "Codes per Page"
     125msgstr "Codes pro Seite"
     126
     127#: ../inc/settings.php:86 ../inc/actions/edit.php:103
     128msgid "Save"
     129msgstr "Speichern"
     130
     131#: ../inc/system.php:2 ../inc/content.php:105
     132msgid "System Information"
     133msgstr "System Informationen"
     134
     135#: ../inc/system.php:5
     136msgid "General"
     137msgstr "Allgemein"
     138
     139#: ../inc/system.php:19
     140msgid "PHP Version"
     141msgstr "PHP Version"
     142
     143#: ../inc/system.php:23
     144msgid "MySQL Version"
     145msgstr "MySQL Version"
     146
     147#: ../inc/system.php:36
     148msgid "WordPress Version"
     149msgstr "WordPress Version"
     150
     151#: ../inc/system.php:40
     152msgid "WordPress Network Page"
     153msgstr "WordPress Netzwerk Seite"
     154
     155#: ../inc/system.php:43
     156msgid "Yes"
     157msgstr "Ja"
     158
     159#: ../inc/system.php:45
     160msgid "No"
     161msgstr "Nein"
     162
     163#: ../inc/system.php:51
     164msgid "Plugin Version (File)"
     165msgstr "Plugin Version (Datei)"
     166
     167#: ../inc/system.php:55
     168msgid "Plugin Version (Database)"
     169msgstr "Plugin Version (Datenbank)"
     170
     171#: ../inc/system.php:68
     172msgid "Role"
     173msgstr "Rolle"
     174
     175#: ../inc/system.php:96
     176msgid "Configuration"
     177msgstr "Konfiguration"
     178
     179#: ../inc/system.php:110
     180msgid "PHP max. execution time"
     181msgstr "PHP max. Ausführungszeit"
     182
     183#: ../inc/system.php:120
     184msgid "PHP memory limit"
     185msgstr "PHP Speicherlimit"
     186
     187#: ../inc/system.php:130
     188msgid "WordPress memory limit"
     189msgstr "WordPress Speicherlimit"
     190
     191#: ../inc/system.php:136
     192msgid "Paths"
     193msgstr "Pfade"
     194
     195#: ../inc/system.php:150
     196msgid "Home URL"
     197msgstr "Home URL"
     198
     199#: ../inc/system.php:154
     200msgid "Site URL"
     201msgstr "Seiten URL"
     202
     203#: ../inc/system.php:158
     204msgid "Plugin URL"
     205msgstr "Plugin URL"
     206
     207#: ../inc/content.php:40
     208msgid "Codes"
     209msgstr "Codes"
     210
     211#: ../inc/content.php:52
     212msgid "Shortcode"
     213msgstr "Shortcode"
     214
     215#: ../inc/content.php:53
     216msgid "Action"
     217msgstr "Aktion"
     218
     219#: ../inc/content.php:72
     220msgid "Status is Online - Click to change"
     221msgstr "Status ist Online - Klicke um dies zu ändern"
     222
     223#: ../inc/content.php:72 ../inc/actions/add.php:95 ../inc/actions/edit.php:98
     224msgid "Online"
     225msgstr "Online"
     226
     227#: ../inc/content.php:74
     228msgid "Status is Offline - Click to change"
     229msgstr "Status ist Offline - Klicke um dies zu ändern"
     230
     231#: ../inc/content.php:74 ../inc/actions/add.php:96 ../inc/actions/edit.php:99
     232msgid "Offline"
     233msgstr "Offline"
     234
     235#: ../inc/content.php:77
     236msgid "No Alignment - Click to change"
     237msgstr "Keine Ausrichtung - Klicke um dies zu ändern"
     238
     239#: ../inc/content.php:77 ../inc/actions/add.php:84 ../inc/actions/edit.php:87
    66240msgid "None"
    67241msgstr "Keine"
    68242
    69 #: ../inc/actions/add.php:85 ../inc/actions/edit.php:83
    70 #: ../inc/classes/class-ecp-table.php:25
     243#: ../inc/content.php:79
     244msgid "Left Alignment - Click to change"
     245msgstr "Linke Ausrichtung - Klicke um dies zu ändern"
     246
     247#: ../inc/content.php:79 ../inc/actions/add.php:85 ../inc/actions/edit.php:88
    71248msgid "Left"
    72249msgstr "Links"
    73250
    74 #: ../inc/actions/add.php:86 ../inc/actions/edit.php:84
    75 #: ../inc/classes/class-ecp-table.php:27
     251#: ../inc/content.php:81
     252msgid "Center Alignment - Click to change"
     253msgstr "Zentrierte Ausrichtung - Klicke um dies zu ändern"
     254
     255#: ../inc/content.php:81 ../inc/actions/add.php:86 ../inc/actions/edit.php:89
    76256msgid "Center"
    77257msgstr "Zentriert"
    78258
    79 #: ../inc/actions/add.php:87 ../inc/actions/edit.php:85
    80 #: ../inc/classes/class-ecp-table.php:29
     259#: ../inc/content.php:83
     260msgid "Right Alignment - Click to change"
     261msgstr "Rechte Ausrichtung - Klicke um dies zu ändern"
     262
     263#: ../inc/content.php:83 ../inc/actions/add.php:87 ../inc/actions/edit.php:90
    81264msgid "Right"
    82265msgstr "Rechts"
    83266
    84 #: ../inc/actions/add.php:91 ../inc/actions/edit.php:89
    85 msgid "Status"
    86 msgstr "Status"
    87 
    88 #: ../inc/actions/add.php:95 ../inc/actions/edit.php:93
    89 #: ../inc/classes/class-ecp-table.php:18
    90 msgid "Online"
    91 msgstr "Online"
    92 
    93 #: ../inc/actions/add.php:96 ../inc/actions/edit.php:94
    94 #: ../inc/classes/class-ecp-table.php:20
    95 msgid "Offline"
    96 msgstr "Offline"
    97 
    98 #: ../inc/actions/add.php:100 ../inc/actions/edit.php:98 ../inc/error.php:13
    99 #: ../inc/settings.php:86 ../inc/system.php:153
    100 msgid "Back"
    101 msgstr "Zurück"
    102 
    103 #: ../inc/actions/add.php:100
    104 msgid "Add"
    105 msgstr "Hinzufügen"
    106 
    107 #: ../inc/actions/alignment.php:12 ../inc/actions/delete.php:11
    108 #: ../inc/actions/edit.php:17 ../inc/actions/edit.php:46
    109 #: ../inc/actions/status.php:12
    110 msgid "Modifying of the ID is not allowed"
    111 msgstr "Das verändern der ID ist nicht erlaubt"
    112 
    113 #: ../inc/actions/alignment.php:18
    114 msgid ""
    115 "Modifying the Alignment to something else than 0, 1, 2 or 3 is not allowed"
    116 msgstr ""
    117 "Das verändern der Ausrichtung zu etwas anderem als 0, 1, 2 oder 3 ist nicht "
    118 "erlaubt"
    119 
    120 #: ../inc/actions/edit.php:25
    121 msgid "The Code must be filled in"
    122 msgstr "Es muss ein Code eingegeben werden"
    123 
    124 #: ../inc/actions/edit.php:56
    125 msgid "Edit Code"
    126 msgstr "Code bearbeiten"
    127 
    128 #: ../inc/actions/edit.php:98 ../inc/settings.php:86
    129 msgid "Save"
    130 msgstr "Speichern"
    131 
    132 #: ../inc/actions/status.php:18
    133 msgid "Modifying of the Status to something else than 1 or 2 is not allowed"
    134 msgstr ""
    135 "Das verändern des Status zu etwas anderem als 1 oder 2 ist nicht erlaubt"
    136 
    137 #: ../inc/classes/class-ecp-table.php:18
    138 msgid "Status is Online - Click to change"
    139 msgstr "Status ist Online - Klicke um dies zu ändern"
    140 
    141 #: ../inc/classes/class-ecp-table.php:20
    142 msgid "Status is Offline - Click to change"
    143 msgstr "Status ist Offline - Klicke um dies zu ändern"
    144 
    145 #: ../inc/classes/class-ecp-table.php:23
    146 msgid "No Alignment - Click to change"
    147 msgstr "Keine Ausrichtung - Klicke um dies zu ändern"
    148 
    149 #: ../inc/classes/class-ecp-table.php:25
    150 msgid "Left Alignment - Click to change"
    151 msgstr "Linke Ausrichtung - Klicke um dies zu ändern"
    152 
    153 #: ../inc/classes/class-ecp-table.php:27
    154 msgid "Center Alignment - Click to change"
    155 msgstr "Zentrierte Ausrichtung - Klicke um dies zu ändern"
    156 
    157 #: ../inc/classes/class-ecp-table.php:29
    158 msgid "Right Alignment - Click to change"
    159 msgstr "Rechte Ausrichtung - Klicke um dies zu ändern"
    160 
    161 #: ../inc/classes/class-ecp-table.php:31
     267#: ../inc/content.php:85 ../inc/content.php:85
    162268msgid "Edit"
    163269msgstr "Bearbeiten"
    164270
    165 #: ../inc/classes/class-ecp-table.php:32
     271#: ../inc/content.php:86 ../inc/content.php:86
    166272msgid "Delete"
    167273msgstr "Löschen"
    168274
    169 #: ../inc/classes/class-ecp-table.php:57
    170 msgid "Shortcode"
    171 msgstr "Shortcode"
    172 
    173 #: ../inc/classes/class-ecp-table.php:58
    174 msgid "Action"
    175 msgstr "Aktion"
    176 
    177 #: ../inc/classes/class-ecp-table.php:70
     275#: ../inc/content.php:93
    178276msgid "No Code found - Click \"Add New Code\" to add one."
    179 msgstr ""
    180 "Kein Code gefunden - Klick auf \"Neuen Code hinzufügen\" um einen "
    181 "hinzuzufügen."
    182 
    183 #: ../inc/classes/class-ecp-tables.php:522
    184 #: ../inc/classes/class-ecp-tables.php:937
    185 #, php-format
    186 msgid "1 Code"
    187 msgid_plural "%s Codes"
    188 msgstr[0] "1 Code"
    189 msgstr[1] "%s Codes"
    190 
    191 #: ../inc/classes/class-ecp-tables.php:540
    192 msgid "Go to the first page"
    193 msgstr "Gehe zur ersten Seite"
    194 
    195 #: ../inc/classes/class-ecp-tables.php:547
    196 msgid "Go to the previous page"
    197 msgstr "Gehe zur vorigen Seite"
    198 
    199 #: ../inc/classes/class-ecp-tables.php:556
    200 msgid "Current page"
    201 msgstr "Aktuelle Seite"
    202 
    203 #: ../inc/classes/class-ecp-tables.php:562
    204 #, php-format
    205 msgid "%1$s of %2$s"
    206 msgstr "%1$s von %2$s"
    207 
    208 #: ../inc/classes/class-ecp-tables.php:566
    209 msgid "Go to the next page"
    210 msgstr "Gehe zur nächsten Seite"
    211 
    212 #: ../inc/classes/class-ecp-tables.php:573
    213 msgid "Go to the last page"
    214 msgstr "Gehe zur letzten Seite"
    215 
    216 #: ../inc/error.php:2 ../inc/error.php:7 ../inc/system.php:30
    217 #: ../inc/system.php:60 ../inc/system.php:73 ../inc/system.php:102
    218 #: ../inc/system.php:112
    219 msgid "Error"
    220 msgstr "Fehler"
    221 
    222 #: ../inc/page.php:32
    223 msgid "Codes"
    224 msgstr "Codes"
    225 
    226 #: ../inc/page.php:33 ../inc/system.php:2
    227 msgid "System Information"
    228 msgstr "System Informationen"
    229 
    230 #: ../inc/page.php:39
     277msgstr "Kein Code gefunden - Klick auf \"Neuen Code hinzufügen\" um einen hinzuzufügen."
     278
     279#: ../inc/content.php:105
    231280msgid "Add New Code"
    232281msgstr "Neuen Code hinzufügen"
    233282
    234 #: ../inc/page.php:39 ../inc/settings.php:41
    235 msgid "Settings"
    236 msgstr "Einstellungen"
    237 
    238 #: ../inc/page.php:43
     283#: ../inc/content.php:109
    239284msgid ""
    240285"If you want to thank the developer for this free Plugin, you are welcome to "
     
    246291"benötigt)."
    247292
    248 #: ../inc/settings.php:15
    249 msgid "The Option \"Codes per Page\" must be filled in"
    250 msgstr "Die Option \"Codes pro Seite\" muss ausgefüllt werden"
    251 
    252 #: ../inc/settings.php:23
    253 msgid "The Value for the Option \"Codes per Page\" must be numeric"
    254 msgstr "Die Wert der Option \"Codes pro Seite\" muss numerisch sein"
    255 
    256 #: ../inc/settings.php:54 ../inc/system.php:14 ../inc/system.php:92
    257 #: ../inc/system.php:132
    258 msgid "Value"
    259 msgstr "Wert"
    260 
    261 #: ../inc/settings.php:59
    262 msgid "Who can manage this Plugin?"
    263 msgstr "Wer kann dieses Plugin verwalten?"
    264 
    265 #: ../inc/settings.php:66
    266 msgid "Adminstrators and higher"
    267 msgstr "Administratoren und höher"
    268 
    269 #: ../inc/settings.php:67
    270 msgid "Editors and higher"
    271 msgstr "Redakteure und höher"
    272 
    273 #: ../inc/settings.php:68
    274 msgid "Authors and higher"
    275 msgstr "Autoren und höher"
    276 
    277 #: ../inc/settings.php:69
    278 msgid "Contributors and higher"
    279 msgstr "Mitarbeiter und höher"
    280 
    281 #: ../inc/settings.php:74
    282 msgid "Codes per Page"
    283 msgstr "Codes pro Seite"
    284 
    285 #: ../inc/system.php:5
    286 msgid "General"
    287 msgstr "Allgemein"
    288 
    289 #: ../inc/system.php:19
    290 msgid "PHP Version"
    291 msgstr "PHP Version"
    292 
    293 #: ../inc/system.php:23
    294 msgid "MySQL Version"
    295 msgstr "MySQL Version"
    296 
    297 #: ../inc/system.php:36
    298 msgid "WordPress Version"
    299 msgstr "WordPress Version"
    300 
    301 #: ../inc/system.php:40
    302 msgid "WordPress Network Page"
    303 msgstr "WordPress Netzwerk Seite"
    304 
    305 #: ../inc/system.php:43
    306 msgid "Yes"
    307 msgstr "Ja"
    308 
    309 #: ../inc/system.php:45
    310 msgid "No"
    311 msgstr "Nein"
    312 
    313 #: ../inc/system.php:51
    314 msgid "Plugin Version (File)"
    315 msgstr "Plugin Version (Datei)"
    316 
    317 #: ../inc/system.php:55
    318 msgid "Plugin Version (Database)"
    319 msgstr "Plugin Version (Datenbank)"
    320 
    321 #: ../inc/system.php:68
    322 msgid "Role"
    323 msgstr "Rolle"
    324 
    325 #: ../inc/system.php:83
    326 msgid "Configuration"
    327 msgstr "Konfiguration"
    328 
    329 #: ../inc/system.php:97
    330 msgid "PHP max. execution time"
    331 msgstr "PHP max. Ausführungszeit"
    332 
    333 #: ../inc/system.php:107
    334 msgid "PHP memory limit"
    335 msgstr "PHP Speicherlimit"
    336 
    337 #: ../inc/system.php:117
    338 msgid "WordPress memory limit"
    339 msgstr "WordPress Speicherlimit"
    340 
    341 #: ../inc/system.php:123
    342 msgid "Paths"
    343 msgstr "Pfade"
    344 
    345 #: ../inc/system.php:137
    346 msgid "Home URL"
    347 msgstr "Home URL"
    348 
    349 #: ../inc/system.php:141
    350 msgid "Site URL"
    351 msgstr "Seiten URL"
    352 
    353 #: ../inc/system.php:145
    354 msgid "Plugin URL"
    355 msgstr "Plugin URL"
    356 
    357 #, fuzzy
    358 #~ msgid "1 item"
    359 #~ msgid_plural "%s items"
    360 #~ msgstr[0] "1 code"
    361 #~ msgstr[1] "1 code"
    362 
    363 #~ msgid "%s Codes"
    364 #~ msgstr "%s Codes"
    365 
    366 #~ msgid "%s items"
    367 #~ msgstr "%s codes"
     293#: ../inc/actions/add.php:17 ../inc/actions/add.php:71 ../inc/actions/edit.php:74
     294msgid "A maximum of 30 Characters is allowed"
     295msgstr "Maximal 30 Zeichen sind erlaubt"
     296
     297#: ../inc/actions/add.php:25
     298msgid "Special Characters are not allowed in the Code Name"
     299msgstr "Sonderzeichen sind im Code Namen nicht erlaubt"
     300
     301#: ../inc/actions/add.php:33
     302msgid "The Code Name and / or the Code must be filled in"
     303msgstr "Der Code Name und / oder der Code müssen ausgefüllt werden"
     304
     305#: ../inc/actions/add.php:42
     306msgid "The Code Name already exist - It must be uniqe"
     307msgstr "Der Name existiert bereits - Er muss einmalig sein"
     308
     309#: ../inc/actions/add.php:59
     310msgid "New Code"
     311msgstr "Code hinzufügen"
     312
     313#: ../inc/actions/add.php:69 ../inc/actions/edit.php:72
     314msgid "Only Letters and Numbers are allowed"
     315msgstr "Nur Buchstaben und Zahlen sind erlaubt"
     316
     317#: ../inc/actions/add.php:70 ../inc/actions/edit.php:73
     318msgid "Instead of Whitesspaces use Underlines"
     319msgstr "Anstelle von Leerzeichen sind Unterstriche zu benutzen"
     320
     321#: ../inc/actions/add.php:74 ../inc/actions/edit.php:77
     322msgid "Code"
     323msgstr "Code"
     324
     325#: ../inc/actions/add.php:80 ../inc/actions/edit.php:83
     326msgid "Alignment"
     327msgstr "Ausrichtung"
     328
     329#: ../inc/actions/add.php:91 ../inc/actions/edit.php:94
     330msgid "Status"
     331msgstr "Status"
     332
     333#: ../inc/actions/add.php:100
     334msgid "Add"
     335msgstr "Hinzufügen"
     336
     337#: ../inc/actions/edit.php:22 ../inc/actions/edit.php:51 ../inc/actions/delete.
     338#: php:11 ../inc/actions/status.php:17 ../inc/actions/alignment.php:17
     339msgid "Modifying of the ID is not allowed"
     340msgstr "Das verändern der ID ist nicht erlaubt"
     341
     342#: ../inc/actions/edit.php:30
     343msgid "The Code must be filled in"
     344msgstr "Es muss ein Code eingegeben werden"
     345
     346#: ../inc/actions/edit.php:61
     347msgid "Edit Code"
     348msgstr "Code bearbeiten"
     349
     350#: ../inc/actions/status.php:23
     351msgid "Modifying of the Status to something else than 1 or 2 is not allowed"
     352msgstr "Das verändern des Status zu etwas anderem als 1 oder 2 ist nicht erlaubt"
     353
     354#: ../inc/actions/alignment.php:23
     355msgid "Modifying the Alignment to something else than 0, 1, 2 or 3 is not allowed"
     356msgstr ""
     357"Das verändern der Ausrichtung zu etwas anderem als 0, 1, 2 oder 3 ist nicht "
     358"erlaubt"
  • easy-code-placement/trunk/lang/easy-code-placement.pot

    r1335072 r1420409  
    77"POT-Creation-Date: Sun Jan 24 2016 18:22:46 GMT+0100 (Mitteleuropäische "
    88"Zeit)\n"
    9 "POT-Revision-Date: Sun Jan 24 2016 18:23:23 GMT+0100 (Mitteleuropäische "
    10 "Zeit)\n"
     9"POT-Revision-Date: Thu May 19 2016 17:08:44 GMT+0200 (Mitteleuropäische "
     10"Sommerzeit)\n"
    1111"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1212"Last-Translator: \n"
     
    2727"X-Generator: Loco - https://localise.biz/"
    2828
     29#. Name of the plugin
     30msgid "Easy Code Placement"
     31msgstr ""
     32
     33#. URI of the plugin
     34msgid "http://www.randnotizen.org/easy-code-placement"
     35msgstr ""
     36
     37#. Author of the plugin
     38msgid "Jens Herdy"
     39msgstr ""
     40
     41#. Author URI of the plugin
     42msgid "http://www.randnotizen.org"
     43msgstr ""
     44
     45#. Description of the plugin
     46msgid "A great Wordpress Plugin to place ANY Code ANYWHERE you want."
     47msgstr ""
     48
    2949#: ../inc/error.php:2 ../inc/error.php:7 ../inc/system.php:30 ../inc/system.php:
    30 #: 60 ../inc/system.php:73 ../inc/system.php:102 ../inc/system.php:112
     50#: 60 ../inc/system.php:73 ../inc/system.php:86 ../inc/system.php:115 ..
     51#: /inc/system.php:125
    3152msgid "Error"
    3253msgstr ""
    3354
    34 #: ../inc/error.php:13 ../inc/settings.php:86 ../inc/system.php:153 ..
    35 #: /inc/actions/add.php:100 ../inc/actions/edit.php:98
     55#: ../inc/error.php:13 ../inc/settings.php:86 ../inc/system.php:166 ..
     56#: /inc/actions/add.php:100 ../inc/actions/edit.php:103
    3657msgid "Back"
    3758msgstr ""
    3859
    39 #: ../inc/page.php:32
     60#: ../inc/settings.php:15
     61msgid "The Option \"Codes per Page\" must be filled in"
     62msgstr ""
     63
     64#: ../inc/settings.php:23
     65msgid "The Value for the Option \"Codes per Page\" must be numeric"
     66msgstr ""
     67
     68#: ../inc/settings.php:41 ../inc/content.php:105
     69msgid "Settings"
     70msgstr ""
     71
     72#: ../inc/settings.php:53 ../inc/system.php:13 ../inc/system.php:104 ..
     73#: /inc/system.php:144 ../inc/content.php:51 ../inc/actions/add.php:65 ..
     74#: /inc/actions/edit.php:67
     75msgid "Name"
     76msgstr ""
     77
     78#: ../inc/settings.php:54 ../inc/system.php:14 ../inc/system.php:105 ..
     79#: /inc/system.php:145
     80msgid "Value"
     81msgstr ""
     82
     83#: ../inc/settings.php:59
     84msgid "Who can manage this Plugin?"
     85msgstr ""
     86
     87#: ../inc/settings.php:66
     88msgid "Adminstrators and higher"
     89msgstr ""
     90
     91#: ../inc/settings.php:67
     92msgid "Editors and higher"
     93msgstr ""
     94
     95#: ../inc/settings.php:68
     96msgid "Authors and higher"
     97msgstr ""
     98
     99#: ../inc/settings.php:69
     100msgid "Contributors and higher"
     101msgstr ""
     102
     103#: ../inc/settings.php:74 ../inc/system.php:81
     104msgid "Codes per Page"
     105msgstr ""
     106
     107#: ../inc/settings.php:86 ../inc/actions/edit.php:103
     108msgid "Save"
     109msgstr ""
     110
     111#: ../inc/system.php:2 ../inc/content.php:105
     112msgid "System Information"
     113msgstr ""
     114
     115#: ../inc/system.php:5
     116msgid "General"
     117msgstr ""
     118
     119#: ../inc/system.php:19
     120msgid "PHP Version"
     121msgstr ""
     122
     123#: ../inc/system.php:23
     124msgid "MySQL Version"
     125msgstr ""
     126
     127#: ../inc/system.php:36
     128msgid "WordPress Version"
     129msgstr ""
     130
     131#: ../inc/system.php:40
     132msgid "WordPress Network Page"
     133msgstr ""
     134
     135#: ../inc/system.php:43
     136msgid "Yes"
     137msgstr ""
     138
     139#: ../inc/system.php:45
     140msgid "No"
     141msgstr ""
     142
     143#: ../inc/system.php:51
     144msgid "Plugin Version (File)"
     145msgstr ""
     146
     147#: ../inc/system.php:55
     148msgid "Plugin Version (Database)"
     149msgstr ""
     150
     151#: ../inc/system.php:68
     152msgid "Role"
     153msgstr ""
     154
     155#: ../inc/system.php:96
     156msgid "Configuration"
     157msgstr ""
     158
     159#: ../inc/system.php:110
     160msgid "PHP max. execution time"
     161msgstr ""
     162
     163#: ../inc/system.php:120
     164msgid "PHP memory limit"
     165msgstr ""
     166
     167#: ../inc/system.php:130
     168msgid "WordPress memory limit"
     169msgstr ""
     170
     171#: ../inc/system.php:136
     172msgid "Paths"
     173msgstr ""
     174
     175#: ../inc/system.php:150
     176msgid "Home URL"
     177msgstr ""
     178
     179#: ../inc/system.php:154
     180msgid "Site URL"
     181msgstr ""
     182
     183#: ../inc/system.php:158
     184msgid "Plugin URL"
     185msgstr ""
     186
     187#: ../inc/content.php:28
     188msgid "« Previous"
     189msgstr ""
     190
     191#: ../inc/content.php:29
     192msgid "Next »"
     193msgstr ""
     194
     195#: ../inc/content.php:40
    40196msgid "Codes"
    41197msgstr ""
    42198
    43 #: ../inc/page.php:33 ../inc/system.php:2
    44 msgid "System Information"
    45 msgstr ""
    46 
    47 #: ../inc/page.php:39
     199#: ../inc/content.php:52
     200msgid "Shortcode"
     201msgstr ""
     202
     203#: ../inc/content.php:53
     204msgid "Action"
     205msgstr ""
     206
     207#: ../inc/content.php:72
     208msgid "Status is Online - Click to change"
     209msgstr ""
     210
     211#: ../inc/content.php:72 ../inc/actions/add.php:95 ../inc/actions/edit.php:98
     212msgid "Online"
     213msgstr ""
     214
     215#: ../inc/content.php:74
     216msgid "Status is Offline - Click to change"
     217msgstr ""
     218
     219#: ../inc/content.php:74 ../inc/actions/add.php:96 ../inc/actions/edit.php:99
     220msgid "Offline"
     221msgstr ""
     222
     223#: ../inc/content.php:77
     224msgid "No Alignment - Click to change"
     225msgstr ""
     226
     227#: ../inc/content.php:77 ../inc/actions/add.php:84 ../inc/actions/edit.php:87
     228msgid "None"
     229msgstr ""
     230
     231#: ../inc/content.php:79
     232msgid "Left Alignment - Click to change"
     233msgstr ""
     234
     235#: ../inc/content.php:79 ../inc/actions/add.php:85 ../inc/actions/edit.php:88
     236msgid "Left"
     237msgstr ""
     238
     239#: ../inc/content.php:81
     240msgid "Center Alignment - Click to change"
     241msgstr ""
     242
     243#: ../inc/content.php:81 ../inc/actions/add.php:86 ../inc/actions/edit.php:89
     244msgid "Center"
     245msgstr ""
     246
     247#: ../inc/content.php:83
     248msgid "Right Alignment - Click to change"
     249msgstr ""
     250
     251#: ../inc/content.php:83 ../inc/actions/add.php:87 ../inc/actions/edit.php:90
     252msgid "Right"
     253msgstr ""
     254
     255#: ../inc/content.php:85 ../inc/content.php:85
     256msgid "Edit"
     257msgstr ""
     258
     259#: ../inc/content.php:86 ../inc/content.php:86
     260msgid "Delete"
     261msgstr ""
     262
     263#: ../inc/content.php:87
     264msgid "Added"
     265msgstr ""
     266
     267#: ../inc/content.php:87
     268msgid "Modified"
     269msgstr ""
     270
     271#: ../inc/content.php:87
     272msgid "Info"
     273msgstr ""
     274
     275#: ../inc/content.php:93
     276msgid "No Code found - Click \"Add New Code\" to add one."
     277msgstr ""
     278
     279#: ../inc/content.php:105
    48280msgid "Add New Code"
    49281msgstr ""
    50282
    51 #: ../inc/page.php:39 ../inc/settings.php:41
    52 msgid "Settings"
    53 msgstr ""
    54 
    55 #: ../inc/page.php:43
     283#: ../inc/content.php:109
    56284msgid ""
    57285"If you want to thank the developer for this free Plugin, you are welcome to "
     
    60288msgstr ""
    61289
    62 #: ../inc/settings.php:15
    63 msgid "The Option \"Codes per Page\" must be filled in"
    64 msgstr ""
    65 
    66 #: ../inc/settings.php:23
    67 msgid "The Value for the Option \"Codes per Page\" must be numeric"
    68 msgstr ""
    69 
    70 #: ../inc/settings.php:53 ../inc/system.php:13 ../inc/system.php:91 ../inc/system.
    71 #: php:131 ../inc/actions/add.php:65 ../inc/actions/edit.php:62 ..
    72 #: /inc/classes/class-ecp-table.php:56
    73 msgid "Name"
    74 msgstr ""
    75 
    76 #: ../inc/settings.php:54 ../inc/system.php:14 ../inc/system.php:92 ../inc/system.
    77 #: php:132
    78 msgid "Value"
    79 msgstr ""
    80 
    81 #: ../inc/settings.php:59
    82 msgid "Who can manage this Plugin?"
    83 msgstr ""
    84 
    85 #: ../inc/settings.php:66
    86 msgid "Adminstrators and higher"
    87 msgstr ""
    88 
    89 #: ../inc/settings.php:67
    90 msgid "Editors and higher"
    91 msgstr ""
    92 
    93 #: ../inc/settings.php:68
    94 msgid "Authors and higher"
    95 msgstr ""
    96 
    97 #: ../inc/settings.php:69
    98 msgid "Contributors and higher"
    99 msgstr ""
    100 
    101 #: ../inc/settings.php:74
    102 msgid "Codes per Page"
    103 msgstr ""
    104 
    105 #: ../inc/settings.php:86 ../inc/actions/edit.php:98
    106 msgid "Save"
    107 msgstr ""
    108 
    109 #: ../inc/system.php:5
    110 msgid "General"
    111 msgstr ""
    112 
    113 #: ../inc/system.php:19
    114 msgid "PHP Version"
    115 msgstr ""
    116 
    117 #: ../inc/system.php:23
    118 msgid "MySQL Version"
    119 msgstr ""
    120 
    121 #: ../inc/system.php:36
    122 msgid "WordPress Version"
    123 msgstr ""
    124 
    125 #: ../inc/system.php:40
    126 msgid "WordPress Network Page"
    127 msgstr ""
    128 
    129 #: ../inc/system.php:43
    130 msgid "Yes"
    131 msgstr ""
    132 
    133 #: ../inc/system.php:45
    134 msgid "No"
    135 msgstr ""
    136 
    137 #: ../inc/system.php:51
    138 msgid "Plugin Version (File)"
    139 msgstr ""
    140 
    141 #: ../inc/system.php:55
    142 msgid "Plugin Version (Database)"
    143 msgstr ""
    144 
    145 #: ../inc/system.php:68
    146 msgid "Role"
    147 msgstr ""
    148 
    149 #: ../inc/system.php:83
    150 msgid "Configuration"
    151 msgstr ""
    152 
    153 #: ../inc/system.php:97
    154 msgid "PHP max. execution time"
    155 msgstr ""
    156 
    157 #: ../inc/system.php:107
    158 msgid "PHP memory limit"
    159 msgstr ""
    160 
    161 #: ../inc/system.php:117
    162 msgid "WordPress memory limit"
    163 msgstr ""
    164 
    165 #: ../inc/system.php:123
    166 msgid "Paths"
    167 msgstr ""
    168 
    169 #: ../inc/system.php:137
    170 msgid "Home URL"
    171 msgstr ""
    172 
    173 #: ../inc/system.php:141
    174 msgid "Site URL"
    175 msgstr ""
    176 
    177 #: ../inc/system.php:145
    178 msgid "Plugin URL"
    179 msgstr ""
    180 
    181 #: ../inc/actions/add.php:17 ../inc/actions/add.php:71 ../inc/actions/edit.php:69
     290#: ../inc/actions/add.php:17 ../inc/actions/add.php:71 ../inc/actions/edit.php:74
    182291msgid "A maximum of 30 Characters is allowed"
    183292msgstr ""
     
    199308msgstr ""
    200309
    201 #: ../inc/actions/add.php:69 ../inc/actions/edit.php:67
     310#: ../inc/actions/add.php:69 ../inc/actions/edit.php:72
    202311msgid "Only Letters and Numbers are allowed"
    203312msgstr ""
    204313
    205 #: ../inc/actions/add.php:70 ../inc/actions/edit.php:68
     314#: ../inc/actions/add.php:70 ../inc/actions/edit.php:73
    206315msgid "Instead of Whitesspaces use Underlines"
    207316msgstr ""
    208317
    209 #: ../inc/actions/add.php:74 ../inc/actions/edit.php:72
     318#: ../inc/actions/add.php:74 ../inc/actions/edit.php:77
    210319msgid "Code"
    211320msgstr ""
    212321
    213 #: ../inc/actions/add.php:80 ../inc/actions/edit.php:78
     322#: ../inc/actions/add.php:80 ../inc/actions/edit.php:83
    214323msgid "Alignment"
    215324msgstr ""
    216325
    217 #: ../inc/actions/add.php:84 ../inc/actions/edit.php:82 ../inc/classes/class-ecp-
    218 #: table.php:23
    219 msgid "None"
    220 msgstr ""
    221 
    222 #: ../inc/actions/add.php:85 ../inc/actions/edit.php:83 ../inc/classes/class-ecp-
    223 #: table.php:25
    224 msgid "Left"
    225 msgstr ""
    226 
    227 #: ../inc/actions/add.php:86 ../inc/actions/edit.php:84 ../inc/classes/class-ecp-
    228 #: table.php:27
    229 msgid "Center"
    230 msgstr ""
    231 
    232 #: ../inc/actions/add.php:87 ../inc/actions/edit.php:85 ../inc/classes/class-ecp-
    233 #: table.php:29
    234 msgid "Right"
    235 msgstr ""
    236 
    237 #: ../inc/actions/add.php:91 ../inc/actions/edit.php:89
     326#: ../inc/actions/add.php:91 ../inc/actions/edit.php:94
    238327msgid "Status"
    239 msgstr ""
    240 
    241 #: ../inc/actions/add.php:95 ../inc/actions/edit.php:93 ../inc/classes/class-ecp-
    242 #: table.php:18
    243 msgid "Online"
    244 msgstr ""
    245 
    246 #: ../inc/actions/add.php:96 ../inc/actions/edit.php:94 ../inc/classes/class-ecp-
    247 #: table.php:20
    248 msgid "Offline"
    249328msgstr ""
    250329
     
    253332msgstr ""
    254333
    255 #: ../inc/actions/alignment.php:12 ../inc/actions/delete.php:11 ..
    256 #: /inc/actions/edit.php:17 ../inc/actions/edit.php:46 ../inc/actions/status.php:12
     334#: ../inc/actions/edit.php:22 ../inc/actions/edit.php:51 ../inc/actions/delete.
     335#: php:11 ../inc/actions/status.php:17 ../inc/actions/alignment.php:17
    257336msgid "Modifying of the ID is not allowed"
    258337msgstr ""
    259338
    260 #: ../inc/actions/alignment.php:18
     339#: ../inc/actions/edit.php:30
     340msgid "The Code must be filled in"
     341msgstr ""
     342
     343#: ../inc/actions/edit.php:61
     344msgid "Edit Code"
     345msgstr ""
     346
     347#: ../inc/actions/status.php:23
     348msgid "Modifying of the Status to something else than 1 or 2 is not allowed"
     349msgstr ""
     350
     351#: ../inc/actions/alignment.php:23
    261352msgid "Modifying the Alignment to something else than 0, 1, 2 or 3 is not allowed"
    262353msgstr ""
    263 
    264 #: ../inc/actions/edit.php:25
    265 msgid "The Code must be filled in"
    266 msgstr ""
    267 
    268 #: ../inc/actions/edit.php:56
    269 msgid "Edit Code"
    270 msgstr ""
    271 
    272 #: ../inc/actions/status.php:18
    273 msgid "Modifying of the Status to something else than 1 or 2 is not allowed"
    274 msgstr ""
    275 
    276 #: ../inc/classes/class-ecp-table.php:18
    277 msgid "Status is Online - Click to change"
    278 msgstr ""
    279 
    280 #: ../inc/classes/class-ecp-table.php:20
    281 msgid "Status is Offline - Click to change"
    282 msgstr ""
    283 
    284 #: ../inc/classes/class-ecp-table.php:23
    285 msgid "No Alignment - Click to change"
    286 msgstr ""
    287 
    288 #: ../inc/classes/class-ecp-table.php:25
    289 msgid "Left Alignment - Click to change"
    290 msgstr ""
    291 
    292 #: ../inc/classes/class-ecp-table.php:27
    293 msgid "Center Alignment - Click to change"
    294 msgstr ""
    295 
    296 #: ../inc/classes/class-ecp-table.php:29
    297 msgid "Right Alignment - Click to change"
    298 msgstr ""
    299 
    300 #: ../inc/classes/class-ecp-table.php:31 ../inc/classes/class-ecp-table.php:31
    301 msgid "Edit"
    302 msgstr ""
    303 
    304 #: ../inc/classes/class-ecp-table.php:32 ../inc/classes/class-ecp-table.php:32
    305 msgid "Delete"
    306 msgstr ""
    307 
    308 #: ../inc/classes/class-ecp-table.php:57
    309 msgid "Shortcode"
    310 msgstr ""
    311 
    312 #: ../inc/classes/class-ecp-table.php:58
    313 msgid "Action"
    314 msgstr ""
    315 
    316 #: ../inc/classes/class-ecp-table.php:70
    317 msgid "No Code found - Click \"Add New Code\" to add one."
    318 msgstr ""
    319 
    320 #: ../inc/classes/class-ecp-tables.php:522 ../inc/classes/class-ecp-tables.php:937
    321 #, php-format
    322 msgid "1 Code"
    323 msgid_plural "%s Codes"
    324 msgstr[0] ""
    325 msgstr[1] ""
    326 
    327 #: ../inc/classes/class-ecp-tables.php:540
    328 msgid "Go to the first page"
    329 msgstr ""
    330 
    331 #: ../inc/classes/class-ecp-tables.php:547
    332 msgid "Go to the previous page"
    333 msgstr ""
    334 
    335 #: ../inc/classes/class-ecp-tables.php:556
    336 msgid "Current page"
    337 msgstr ""
    338 
    339 #: ../inc/classes/class-ecp-tables.php:562
    340 #, php-format
    341 msgid "%1$s of %2$s"
    342 msgstr ""
    343 
    344 #: ../inc/classes/class-ecp-tables.php:566
    345 msgid "Go to the next page"
    346 msgstr ""
    347 
    348 #: ../inc/classes/class-ecp-tables.php:573
    349 msgid "Go to the last page"
    350 msgstr ""
  • easy-code-placement/trunk/readme.txt

    r1335072 r1420409  
    44Tags: ad, add, addthis, ads, adsense, adsense plugin, advertising, affilimatch, affilinet, align, alignment, amazon associates, any, audio, clicksor, code, codes, css, easy, flash, google, google adsense, html, infolinks, insert, java, javascript, multisite, network, offline, online, page, pages, php, place, placement, plugin, post, posts, shortcode, shortcodes, snippet, snippets, text, video, widget
    55Requires at least: 3.0.1
    6 Tested up to: 4.4.1
    7 Stable tag: 3.1.1
     6Tested up to: 4.5.2
     7Stable tag: 3.2
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    8383== Changelog ==
    8484
     85= 3.2 =
     86* 19.05.2016
     87* Compatibility check for WordPress Version 4.5.2
     88* Fixed a function name that could cause Problems
     89* Fixed an Error when deactivating and reactivating the Plugin
     90* Added a mouse over function to display the Date when a Code was added and last modified
     91* Added the Codes per Page to the System Informations Menu
     92* Updated the German translation
     93* Replaced the WordPress Table Class with a simple and self-written Version
     94
     95
    8596= 3.1.1 =
    8697* 24.01.2016
Note: See TracChangeset for help on using the changeset viewer.