Plugin Directory

Changeset 1506547


Ignore:
Timestamp:
10/01/2016 05:01:45 PM (10 years ago)
Author:
wassereimer
Message:

new version 4.0 for trunk

Location:
easy-code-placement/trunk
Files:
1 added
10 edited

Legend:

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

    r1501662 r1506547  
    44 * Text Domain: easy-code-placement
    55 * Domain Path: /lang
    6  * Version: 3.2.1
     6 * Version: 4.0
    77 * Plugin URI: http://www.randnotizen.org/easy-code-placement/
    88 * Author: Jens Herdy
     
    1313
    1414// standards
    15 ob_start();
    1615define('ECP_FILE',__FILE__);
    17 define('ECP_VERSION','3.2.1');
     16define('ECP_VERSION','4.0');
    1817
    1918// load functions, classes
     
    2120
    2221// set filters to replace shortcodes
    23 add_filter ( 'the_content', 'do_shortcode', 99);
    24 add_filter ( 'widget_text', 'do_shortcode', 99);
    25 add_filter ( 'the_excerpt', 'do_shortcode', 99);
     22add_filter( 'the_title', 'do_shortcode', 99);
     23add_filter( 'the_content', 'do_shortcode', 99);
     24add_filter( 'widget_title', 'do_shortcode', 99);
     25add_filter( 'widget_text', 'do_shortcode', 99);
     26add_filter( 'the_excerpt', 'do_shortcode', 99);
     27add_filter( 'the_tags', 'do_shortcode', 99);
    2628
    27 // set filters to allow php code
    28 add_filter ( 'the_content', 'ecp_allow_php', 99);
    29 add_filter ( 'widget_text', 'ecp_allow_php', 99);
    30 add_filter ( 'the_excerpt', 'ecp_allow_php', 99);
     29// support for plugin All in One SEO Pack
     30add_filter( 'aioseop_title', 'do_shortcode', 99);
     31add_filter( 'aioseop_description', 'do_shortcode', 99);
     32add_filter( 'aioseop_keywords', 'do_shortcode', 99);
     33
     34// support for plugin Yoast SEO
     35add_filter( 'wpseo_title', 'do_shortcode', 99);
     36add_filter( 'wpseo_metadesc', 'do_shortcode', 99);
     37add_filter( 'wpseo_metakey', 'do_shortcode', 99);
    3138
    3239// load languages
     
    4350add_action( 'admin_menu', 'ecp_add_page');
    4451
     52// add widget
     53add_action( 'widgets_init', 'ecp_register_widget' );
     54
    4555?>
  • easy-code-placement/trunk/inc/functions.php

    r1501662 r1506547  
    22
    33// error reporting for dev
    4 // error_reporting(E_ALL);
    5 // define( 'DIEONDBERROR', true ); // multisite
    6 // $wpdb->show_errors(); // single site
     4//error_reporting(E_ALL);
     5//define( 'DIEONDBERROR', true ); // multisite
     6//$wpdb->show_errors(); // single site
    77
    88// check if role >= option
     
    1717}
    1818
    19 // generate options menu
     19// generate options menu if user is allowed
    2020function ecp_add_page() {
    2121    if (ecp_check_role() === '1') {
     
    3434}
    3535
    36 // allow php code
    37 function ecp_allow_php($text) {
    38     if (strpos($text, '<' . '?') !== false) {
    39         ob_start();
    40         eval('?' . '>' . $text);
    41         $text = ob_get_contents();
    42         ob_end_clean();
    43     }
    44     return $text;
    45 }
    46 
    4736// replace shortcode with code
    4837add_shortcode('ecp','ecp_replace');
     
    5039    global $wpdb;
    5140    $query = $wpdb->get_results($wpdb->prepare( "SELECT * FROM ".$wpdb->prefix."ecp_data WHERE name=%s" ,$ecp_code));
    52    
    5341    if(count($query)>0){
    5442    foreach ($query as $code_load){
     43            // when status is activ
    5544            if($code_load->status === '1') {
    56                 // when status is activ
     45                // allow php code
     46                if (strpos($code_load->code, '<' . '?') !== false) {
     47                    ob_start();
     48                    eval('?' . '>' . $code_load->code);
     49                    $code_load->code = ob_get_contents();
     50                    ob_end_clean();
     51                }               
     52                // set alignment
    5753        if ($code_load->alignment === '0' OR $code_load->alignment === '') {
    5854                    $ecp_output = $code_load->code;
     
    6561                }
    6662                return $ecp_output;
     63            // when status is deactive
    6764            } else {
    68                 // when status is deactive
    6965        return '';
    7066            }
     
    7773}
    7874
    79 // update to 3.2.1
     75// update to 4.0
    8076function ecp_update(){
    8177    // multiside update
     
    8682        foreach ($blogids as $blogid) {
    8783            switch_to_blog($blogid);
     84            // if not updated to 3.2.1 still regenerate missing tables in multisite
    8885            ecp_install();
    89             $wpdb->query("UPDATE ".$wpdb->prefix."ecp_data SET version='3.2.1'");
    90             $wpdb->update($wpdb->prefix.'ecp_options', array( 'option_value' => '3.2.1' ), array( 'option_name' => 'version' ));
     86            $wpdb->query("UPDATE ".$wpdb->prefix."ecp_data SET version='4.0'");
     87            $wpdb->update($wpdb->prefix.'ecp_options', array( 'option_value' => '4.0' ), array( 'option_name' => 'version' ));
    9188        }
    9289    switch_to_blog($blog);
     
    9491        // single update
    9592        global $wpdb;
    96         $wpdb->query("UPDATE ".$wpdb->prefix."ecp_data SET version='3.2.1'");
    97         $wpdb->update($wpdb->prefix.'ecp_options', array( 'option_value' => '3.2.1' ), array( 'option_name' => 'version' ));
     93        $wpdb->query("UPDATE ".$wpdb->prefix."ecp_data SET version='4.0'");
     94        $wpdb->update($wpdb->prefix.'ecp_options', array( 'option_value' => '4.0' ), array( 'option_name' => 'version' ));
    9895    }
    9996}
     
    103100global $wpdb;
    104101$ecp_options_version = $wpdb->get_var("SELECT option_value FROM ".$wpdb->prefix."ecp_options WHERE option_name = 'version'" );
     102    // check if user is admin
    105103    if (! is_admin()) {
    106104        return;
    107     } elseif ($ecp_options_version === '3.2.1') {
     105    // check if we use the current version
     106    } elseif ($ecp_options_version === '4.0') {
    108107        return;
     108    // if user is admin and we have an old version do the update
    109109    } else {
    110110        ecp_update();
     
    113113}
    114114
     115// class for widget
     116class ecp_widget extends WP_Widget {
     117    // id, name, description
     118    function __construct() {
     119        parent::__construct(
     120        'ecp_widget',
     121        __( 'Easy Code Placement', 'easy-code-placement' ),
     122        array( 'description' => __( 'Add a Code wherever you want it.', 'easy-code-placement' ), )
     123        );
     124    }
     125    // front-end
     126    public function widget( $args, $instance ) {
     127        // when no code selected output nothing
     128        if ( $instance['ecp_code'] === "nothing" ) {
     129            echo '';
     130        // otherwise output ecp code
     131        } else {
     132            if ( array_key_exists('before_widget', $args) ) echo $args['before_widget'];
     133            global $wpdb;
     134            $ecp_output = ecp_replace($instance['ecp_code']);
     135            echo $ecp_output;
     136            if ( array_key_exists('after_widget', $args) ) echo $args['after_widget'];
     137        }
     138    }
     139    // back-end
     140    public function form( $instance ) {
     141        // load selected code er reset var
     142        if ( isset( $instance[ 'ecp_code' ] ) ) {
     143            $ecp_code = $instance[ 'ecp_code' ];
     144        }
     145        else {
     146            $ecp_code = 0;
     147        }
     148        ?>
     149        <p>
     150            <label for="<?php echo $this->get_field_id( 'ecp_code' ); ?>"><?php _e( 'Code to Display:', 'easy-code-placement' ); ?></label><br>
     151            <select id="<?php echo $this->get_field_id( 'ecp_code' ); ?>" name="<?php echo $this->get_field_name( 'ecp_code' ); ?>" style="width:100%;">
     152                <option value="nothing"><?php _e( 'Please select a Code', 'easy-code-placement' ); ?></option>
     153                <?php
     154                // get codes
     155                global $wpdb;
     156                $ecp_codes = $wpdb->get_results( "SELECT name FROM {$wpdb->prefix}ecp_data" );
     157                // generate dropdown options
     158                foreach( $ecp_codes as $ecp_codeitem ) {
     159                    $selected = ( $ecp_codeitem->name == $ecp_code ) ? 'selected' : '';
     160                    echo '<option value="' . $ecp_codeitem->name . '" ' . $selected . '>' . $ecp_codeitem->name . '</option>';
     161                    }
     162                ?>
     163            </select>
     164        </p>
     165        <?php
     166    }
     167    // save selected code in back-end
     168    public function update( $new_instance, $old_instance ) {
     169        $instance = array();
     170        $instance['ecp_code'] = ( ! empty( $new_instance['ecp_code'] ) ) ? strip_tags( $new_instance['ecp_code'] ) : '';
     171        return $instance;
     172    }
     173}
     174
     175// register widget
     176function ecp_register_widget() {
     177    register_widget( 'ecp_widget' );
     178}
     179
    115180?>
  • easy-code-placement/trunk/inc/install.php

    r1501662 r1506547  
    2424        ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1";
    2525    $wpdb->query($ecp_options);
    26     // insert data
    27     $wpdb->insert($wpdb->prefix.'ecp_options', array( 'option_name' => 'version','option_value' => ECP_VERSION));
    28     $wpdb->insert($wpdb->prefix.'ecp_options', array( 'option_name' => 'perpage','option_value' => '10'));
    29     $wpdb->insert($wpdb->prefix.'ecp_options', array( 'option_name' => 'role','option_value' => 'manage_options'));
     26    // insert data (ignore for updates)
     27    $wpdb->query("INSERT IGNORE INTO ".$wpdb->prefix."ecp_options (option_name,option_value) VALUES ('version','".ECP_VERSION."')");
     28    $wpdb->query("INSERT IGNORE INTO ".$wpdb->prefix."ecp_options (option_name,option_value) VALUES ('perpage','10')");
     29    $wpdb->query("INSERT IGNORE INTO ".$wpdb->prefix."ecp_options (option_name,option_value) VALUES ('role','manage_options')");
    3030}
    3131
  • easy-code-placement/trunk/lang/easy-code-placement-de_DE.po

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

    r1420409 r1506547  
    55"Project-Id-Version: Easy Code Placement\n"
    66"Report-Msgid-Bugs-To: \n"
    7 "POT-Creation-Date: Sun Jan 24 2016 18:22:46 GMT+0100 (Mitteleuropäische "
    8 "Zeit)\n"
     7"POT-Creation-Date: 2016-10-01 17:37+0200\n"
    98"POT-Revision-Date: Thu May 19 2016 17:08:44 GMT+0200 (Mitteleuropäische "
    109"Sommerzeit)\n"
     
    1211"Last-Translator: \n"
    1312"Language-Team: \n"
    14 "Language: \n"
    1513"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION\n"
    1614"MIME-Version: 1.0\n"
     
    1917"X-Poedit-SourceCharset: UTF-8\n"
    2018"X-Poedit-Basepath: .\n"
     19"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;"
     20"_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;"
     21"_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;"
     22"esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;"
     23"comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
     24"X-Generator: Poedit 1.8.9\n"
    2125"X-Poedit-SearchPath-0: ..\n"
    22 "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
    23 "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
    24 "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
    25 "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
    26 "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
    27 "X-Generator: Loco - https://localise.biz/"
    28 
    29 #. Name of the plugin
    30 msgid "Easy Code Placement"
    31 msgstr ""
    32 
    33 #. URI of the plugin
    34 msgid "http://www.randnotizen.org/easy-code-placement"
    35 msgstr ""
    36 
    37 #. Author of the plugin
    38 msgid "Jens Herdy"
    39 msgstr ""
    40 
    41 #. Author URI of the plugin
    42 msgid "http://www.randnotizen.org"
    43 msgstr ""
    44 
    45 #. Description of the plugin
    46 msgid "A great Wordpress Plugin to place ANY Code ANYWHERE you want."
    47 msgstr ""
    48 
    49 #: ../inc/error.php:2 ../inc/error.php:7 ../inc/system.php:30 ../inc/system.php:
    50 #: 60 ../inc/system.php:73 ../inc/system.php:86 ../inc/system.php:115 ..
    51 #: /inc/system.php:125
    52 msgid "Error"
    53 msgstr ""
    54 
    55 #: ../inc/error.php:13 ../inc/settings.php:86 ../inc/system.php:166 ..
    56 #: /inc/actions/add.php:100 ../inc/actions/edit.php:103
     26
     27#: ../inc/actions/add.php:17 ../inc/actions/add.php:71 ../inc/actions/edit.php:74
     28msgid "A maximum of 30 Characters is allowed"
     29msgstr ""
     30
     31#: ../inc/actions/add.php:25
     32msgid "Special Characters are not allowed in the Code Name"
     33msgstr ""
     34
     35#: ../inc/actions/add.php:33
     36msgid "The Code Name and / or the Code must be filled in"
     37msgstr ""
     38
     39#: ../inc/actions/add.php:42
     40msgid "The Code Name already exist - It must be uniqe"
     41msgstr ""
     42
     43#: ../inc/actions/add.php:59
     44msgid "New Code"
     45msgstr ""
     46
     47#: ../inc/actions/add.php:65 ../inc/actions/edit.php:67 ../inc/content.php:45
     48#: ../inc/settings.php:53 ../inc/system.php:13 ../inc/system.php:104
     49#: ../inc/system.php:144
     50msgid "Name"
     51msgstr ""
     52
     53#: ../inc/actions/add.php:69 ../inc/actions/edit.php:72
     54msgid "Only Letters and Numbers are allowed"
     55msgstr ""
     56
     57#: ../inc/actions/add.php:70 ../inc/actions/edit.php:73
     58msgid "Instead of Whitesspaces use Underlines"
     59msgstr ""
     60
     61#: ../inc/actions/add.php:74 ../inc/actions/edit.php:77
     62msgid "Code"
     63msgstr ""
     64
     65#: ../inc/actions/add.php:80 ../inc/actions/edit.php:83
     66msgid "Alignment"
     67msgstr ""
     68
     69#: ../inc/actions/add.php:84 ../inc/actions/edit.php:87 ../inc/content.php:71
     70msgid "None"
     71msgstr ""
     72
     73#: ../inc/actions/add.php:85 ../inc/actions/edit.php:88 ../inc/content.php:73
     74msgid "Left"
     75msgstr ""
     76
     77#: ../inc/actions/add.php:86 ../inc/actions/edit.php:89 ../inc/content.php:75
     78msgid "Center"
     79msgstr ""
     80
     81#: ../inc/actions/add.php:87 ../inc/actions/edit.php:90 ../inc/content.php:77
     82msgid "Right"
     83msgstr ""
     84
     85#: ../inc/actions/add.php:91 ../inc/actions/edit.php:94
     86msgid "Status"
     87msgstr ""
     88
     89#: ../inc/actions/add.php:95 ../inc/actions/edit.php:98 ../inc/content.php:66
     90msgid "Online"
     91msgstr ""
     92
     93#: ../inc/actions/add.php:96 ../inc/actions/edit.php:99 ../inc/content.php:68
     94msgid "Offline"
     95msgstr ""
     96
     97#: ../inc/actions/add.php:100 ../inc/actions/edit.php:103 ../inc/error.php:13
     98#: ../inc/settings.php:86 ../inc/system.php:166
    5799msgid "Back"
    58100msgstr ""
    59101
    60 #: ../inc/settings.php:15
    61 msgid "The Option \"Codes per Page\" must be filled in"
    62 msgstr ""
    63 
    64 #: ../inc/settings.php:23
    65 msgid "The Value for the Option \"Codes per Page\" must be numeric"
    66 msgstr ""
    67 
    68 #: ../inc/settings.php:41 ../inc/content.php:105
     102#: ../inc/actions/add.php:100
     103msgid "Add"
     104msgstr ""
     105
     106#: ../inc/actions/alignment.php:17 ../inc/actions/delete.php:11
     107#: ../inc/actions/edit.php:22 ../inc/actions/edit.php:51
     108#: ../inc/actions/status.php:17
     109msgid "Modifying of the ID is not allowed"
     110msgstr ""
     111
     112#: ../inc/actions/alignment.php:23
     113msgid "Modifying the Alignment to something else than 0, 1, 2 or 3 is not allowed"
     114msgstr ""
     115
     116#: ../inc/actions/edit.php:30
     117msgid "The Code must be filled in"
     118msgstr ""
     119
     120#: ../inc/actions/edit.php:61
     121msgid "Edit Code"
     122msgstr ""
     123
     124#: ../inc/actions/edit.php:103 ../inc/settings.php:86
     125msgid "Save"
     126msgstr ""
     127
     128#: ../inc/actions/status.php:23
     129msgid "Modifying of the Status to something else than 1 or 2 is not allowed"
     130msgstr ""
     131
     132#: ../inc/content.php:22
     133msgid "« Previous"
     134msgstr ""
     135
     136#: ../inc/content.php:23
     137msgid "Next »"
     138msgstr ""
     139
     140#: ../inc/content.php:34
     141msgid "Codes"
     142msgstr ""
     143
     144#: ../inc/content.php:46
     145msgid "Shortcode"
     146msgstr ""
     147
     148#: ../inc/content.php:47
     149msgid "Action"
     150msgstr ""
     151
     152#: ../inc/content.php:66
     153msgid "Status is Online - Click to change"
     154msgstr ""
     155
     156#: ../inc/content.php:68
     157msgid "Status is Offline - Click to change"
     158msgstr ""
     159
     160#: ../inc/content.php:71
     161msgid "No Alignment - Click to change"
     162msgstr ""
     163
     164#: ../inc/content.php:73
     165msgid "Left Alignment - Click to change"
     166msgstr ""
     167
     168#: ../inc/content.php:75
     169msgid "Center Alignment - Click to change"
     170msgstr ""
     171
     172#: ../inc/content.php:77
     173msgid "Right Alignment - Click to change"
     174msgstr ""
     175
     176#: ../inc/content.php:79
     177msgid "Edit"
     178msgstr ""
     179
     180#: ../inc/content.php:80
     181msgid "Delete"
     182msgstr ""
     183
     184#: ../inc/content.php:81
     185msgid "Added"
     186msgstr ""
     187
     188#: ../inc/content.php:81
     189msgid "Modified"
     190msgstr ""
     191
     192#: ../inc/content.php:81
     193msgid "Info"
     194msgstr ""
     195
     196#: ../inc/content.php:87
     197msgid "No Code found - Click \"Add New Code\" to add one."
     198msgstr ""
     199
     200#: ../inc/content.php:99
     201msgid "Add New Code"
     202msgstr ""
     203
     204#: ../inc/content.php:99 ../inc/settings.php:41
    69205msgid "Settings"
    70206msgstr ""
    71207
    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
    75 msgid "Name"
    76 msgstr ""
    77 
    78 #: ../inc/settings.php:54 ../inc/system.php:14 ../inc/system.php:105 ..
    79 #: /inc/system.php:145
    80 msgid "Value"
    81 msgstr ""
    82 
    83 #: ../inc/settings.php:59
    84 msgid "Who can manage this Plugin?"
    85 msgstr ""
    86 
    87 #: ../inc/settings.php:66
    88 msgid "Adminstrators and higher"
    89 msgstr ""
    90 
    91 #: ../inc/settings.php:67
    92 msgid "Editors and higher"
    93 msgstr ""
    94 
    95 #: ../inc/settings.php:68
    96 msgid "Authors and higher"
    97 msgstr ""
    98 
    99 #: ../inc/settings.php:69
    100 msgid "Contributors and higher"
    101 msgstr ""
    102 
    103 #: ../inc/settings.php:74 ../inc/system.php:81
    104 msgid "Codes per Page"
    105 msgstr ""
    106 
    107 #: ../inc/settings.php:86 ../inc/actions/edit.php:103
    108 msgid "Save"
    109 msgstr ""
    110 
    111 #: ../inc/system.php:2 ../inc/content.php:105
     208#: ../inc/content.php:99 ../inc/system.php:2
    112209msgid "System Information"
    113210msgstr ""
    114211
    115 #: ../inc/system.php:5
    116 msgid "General"
    117 msgstr ""
    118 
    119 #: ../inc/system.php:19
    120 msgid "PHP Version"
    121 msgstr ""
    122 
    123 #: ../inc/system.php:23
    124 msgid "MySQL Version"
    125 msgstr ""
    126 
    127 #: ../inc/system.php:36
    128 msgid "WordPress Version"
    129 msgstr ""
    130 
    131 #: ../inc/system.php:40
    132 msgid "WordPress Network Page"
    133 msgstr ""
    134 
    135 #: ../inc/system.php:43
    136 msgid "Yes"
    137 msgstr ""
    138 
    139 #: ../inc/system.php:45
    140 msgid "No"
    141 msgstr ""
    142 
    143 #: ../inc/system.php:51
    144 msgid "Plugin Version (File)"
    145 msgstr ""
    146 
    147 #: ../inc/system.php:55
    148 msgid "Plugin Version (Database)"
    149 msgstr ""
    150 
    151 #: ../inc/system.php:68
    152 msgid "Role"
    153 msgstr ""
    154 
    155 #: ../inc/system.php:96
    156 msgid "Configuration"
    157 msgstr ""
    158 
    159 #: ../inc/system.php:110
    160 msgid "PHP max. execution time"
    161 msgstr ""
    162 
    163 #: ../inc/system.php:120
    164 msgid "PHP memory limit"
    165 msgstr ""
    166 
    167 #: ../inc/system.php:130
    168 msgid "WordPress memory limit"
    169 msgstr ""
    170 
    171 #: ../inc/system.php:136
    172 msgid "Paths"
    173 msgstr ""
    174 
    175 #: ../inc/system.php:150
    176 msgid "Home URL"
    177 msgstr ""
    178 
    179 #: ../inc/system.php:154
    180 msgid "Site URL"
    181 msgstr ""
    182 
    183 #: ../inc/system.php:158
    184 msgid "Plugin URL"
    185 msgstr ""
    186 
    187 #: ../inc/content.php:28
    188 msgid "« Previous"
    189 msgstr ""
    190 
    191 #: ../inc/content.php:29
    192 msgid "Next »"
    193 msgstr ""
    194 
    195 #: ../inc/content.php:40
    196 msgid "Codes"
    197 msgstr ""
    198 
    199 #: ../inc/content.php:52
    200 msgid "Shortcode"
    201 msgstr ""
    202 
    203 #: ../inc/content.php:53
    204 msgid "Action"
    205 msgstr ""
    206 
    207 #: ../inc/content.php:72
    208 msgid "Status is Online - Click to change"
    209 msgstr ""
    210 
    211 #: ../inc/content.php:72 ../inc/actions/add.php:95 ../inc/actions/edit.php:98
    212 msgid "Online"
    213 msgstr ""
    214 
    215 #: ../inc/content.php:74
    216 msgid "Status is Offline - Click to change"
    217 msgstr ""
    218 
    219 #: ../inc/content.php:74 ../inc/actions/add.php:96 ../inc/actions/edit.php:99
    220 msgid "Offline"
    221 msgstr ""
    222 
    223 #: ../inc/content.php:77
    224 msgid "No Alignment - Click to change"
    225 msgstr ""
    226 
    227 #: ../inc/content.php:77 ../inc/actions/add.php:84 ../inc/actions/edit.php:87
    228 msgid "None"
    229 msgstr ""
    230 
    231 #: ../inc/content.php:79
    232 msgid "Left Alignment - Click to change"
    233 msgstr ""
    234 
    235 #: ../inc/content.php:79 ../inc/actions/add.php:85 ../inc/actions/edit.php:88
    236 msgid "Left"
    237 msgstr ""
    238 
    239 #: ../inc/content.php:81
    240 msgid "Center Alignment - Click to change"
    241 msgstr ""
    242 
    243 #: ../inc/content.php:81 ../inc/actions/add.php:86 ../inc/actions/edit.php:89
    244 msgid "Center"
    245 msgstr ""
    246 
    247 #: ../inc/content.php:83
    248 msgid "Right Alignment - Click to change"
    249 msgstr ""
    250 
    251 #: ../inc/content.php:83 ../inc/actions/add.php:87 ../inc/actions/edit.php:90
    252 msgid "Right"
    253 msgstr ""
    254 
    255 #: ../inc/content.php:85 ../inc/content.php:85
    256 msgid "Edit"
    257 msgstr ""
    258 
    259 #: ../inc/content.php:86 ../inc/content.php:86
    260 msgid "Delete"
    261 msgstr ""
    262 
    263 #: ../inc/content.php:87
    264 msgid "Added"
    265 msgstr ""
    266 
    267 #: ../inc/content.php:87
    268 msgid "Modified"
    269 msgstr ""
    270 
    271 #: ../inc/content.php:87
    272 msgid "Info"
    273 msgstr ""
    274 
    275 #: ../inc/content.php:93
    276 msgid "No Code found - Click \"Add New Code\" to add one."
    277 msgstr ""
    278 
    279 #: ../inc/content.php:105
    280 msgid "Add New Code"
    281 msgstr ""
    282 
    283 #: ../inc/content.php:109
     212#: ../inc/content.php:103
    284213msgid ""
    285214"If you want to thank the developer for this free Plugin, you are welcome to "
     
    288217msgstr ""
    289218
    290 #: ../inc/actions/add.php:17 ../inc/actions/add.php:71 ../inc/actions/edit.php:74
    291 msgid "A maximum of 30 Characters is allowed"
    292 msgstr ""
    293 
    294 #: ../inc/actions/add.php:25
    295 msgid "Special Characters are not allowed in the Code Name"
    296 msgstr ""
    297 
    298 #: ../inc/actions/add.php:33
    299 msgid "The Code Name and / or the Code must be filled in"
    300 msgstr ""
    301 
    302 #: ../inc/actions/add.php:42
    303 msgid "The Code Name already exist - It must be uniqe"
    304 msgstr ""
    305 
    306 #: ../inc/actions/add.php:59
    307 msgid "New Code"
    308 msgstr ""
    309 
    310 #: ../inc/actions/add.php:69 ../inc/actions/edit.php:72
    311 msgid "Only Letters and Numbers are allowed"
    312 msgstr ""
    313 
    314 #: ../inc/actions/add.php:70 ../inc/actions/edit.php:73
    315 msgid "Instead of Whitesspaces use Underlines"
    316 msgstr ""
    317 
    318 #: ../inc/actions/add.php:74 ../inc/actions/edit.php:77
    319 msgid "Code"
    320 msgstr ""
    321 
    322 #: ../inc/actions/add.php:80 ../inc/actions/edit.php:83
    323 msgid "Alignment"
    324 msgstr ""
    325 
    326 #: ../inc/actions/add.php:91 ../inc/actions/edit.php:94
    327 msgid "Status"
    328 msgstr ""
    329 
    330 #: ../inc/actions/add.php:100
    331 msgid "Add"
    332 msgstr ""
    333 
    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
    336 msgid "Modifying of the ID is not allowed"
    337 msgstr ""
    338 
    339 #: ../inc/actions/edit.php:30
    340 msgid "The Code must be filled in"
    341 msgstr ""
    342 
    343 #: ../inc/actions/edit.php:61
    344 msgid "Edit Code"
    345 msgstr ""
    346 
    347 #: ../inc/actions/status.php:23
    348 msgid "Modifying of the Status to something else than 1 or 2 is not allowed"
    349 msgstr ""
    350 
    351 #: ../inc/actions/alignment.php:23
    352 msgid "Modifying the Alignment to something else than 0, 1, 2 or 3 is not allowed"
    353 msgstr ""
     219#: ../inc/error.php:2 ../inc/error.php:7 ../inc/system.php:30 ../inc/system.php:60
     220#: ../inc/system.php:73 ../inc/system.php:86 ../inc/system.php:115
     221#: ../inc/system.php:125
     222msgid "Error"
     223msgstr ""
     224
     225#: ../inc/functions.php:121
     226msgid "Easy Code Placement"
     227msgstr ""
     228
     229#: ../inc/functions.php:122
     230msgid "Add a Code wherever you want it."
     231msgstr ""
     232
     233#: ../inc/functions.php:150
     234msgid "Code to Display:"
     235msgstr ""
     236
     237#: ../inc/functions.php:152
     238msgid "Please select a Code"
     239msgstr ""
     240
     241#: ../inc/settings.php:15
     242msgid "The Option \"Codes per Page\" must be filled in"
     243msgstr ""
     244
     245#: ../inc/settings.php:23
     246msgid "The Value for the Option \"Codes per Page\" must be numeric"
     247msgstr ""
     248
     249#: ../inc/settings.php:54 ../inc/system.php:14 ../inc/system.php:105
     250#: ../inc/system.php:145
     251msgid "Value"
     252msgstr ""
     253
     254#: ../inc/settings.php:59
     255msgid "Who can manage this Plugin?"
     256msgstr ""
     257
     258#: ../inc/settings.php:66
     259msgid "Adminstrators and higher"
     260msgstr ""
     261
     262#: ../inc/settings.php:67
     263msgid "Editors and higher"
     264msgstr ""
     265
     266#: ../inc/settings.php:68
     267msgid "Authors and higher"
     268msgstr ""
     269
     270#: ../inc/settings.php:69
     271msgid "Contributors and higher"
     272msgstr ""
     273
     274#: ../inc/settings.php:74 ../inc/system.php:81
     275msgid "Codes per Page"
     276msgstr ""
     277
     278#: ../inc/system.php:5
     279msgid "General"
     280msgstr ""
     281
     282#: ../inc/system.php:19
     283msgid "PHP Version"
     284msgstr ""
     285
     286#: ../inc/system.php:23
     287msgid "MySQL Version"
     288msgstr ""
     289
     290#: ../inc/system.php:36
     291msgid "WordPress Version"
     292msgstr ""
     293
     294#: ../inc/system.php:40
     295msgid "WordPress Network Page"
     296msgstr ""
     297
     298#: ../inc/system.php:43
     299msgid "Yes"
     300msgstr ""
     301
     302#: ../inc/system.php:45
     303msgid "No"
     304msgstr ""
     305
     306#: ../inc/system.php:51
     307msgid "Plugin Version (File)"
     308msgstr ""
     309
     310#: ../inc/system.php:55
     311msgid "Plugin Version (Database)"
     312msgstr ""
     313
     314#: ../inc/system.php:68
     315msgid "Role"
     316msgstr ""
     317
     318#: ../inc/system.php:96
     319msgid "Configuration"
     320msgstr ""
     321
     322#: ../inc/system.php:110
     323msgid "PHP max. execution time"
     324msgstr ""
     325
     326#: ../inc/system.php:120
     327msgid "PHP memory limit"
     328msgstr ""
     329
     330#: ../inc/system.php:130
     331msgid "WordPress memory limit"
     332msgstr ""
     333
     334#: ../inc/system.php:136
     335msgid "Paths"
     336msgstr ""
     337
     338#: ../inc/system.php:150
     339msgid "Home URL"
     340msgstr ""
     341
     342#: ../inc/system.php:154
     343msgid "Site URL"
     344msgstr ""
     345
     346#: ../inc/system.php:158
     347msgid "Plugin URL"
     348msgstr ""
  • easy-code-placement/trunk/readme.txt

    r1501662 r1506547  
    22Contributors: wassereimer
    33Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2X2EH5MYGPLL4
    4 Tags: 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
    5 Requires at least: 3.0.1
     4Tags: ad, add, addthis, ads, adsense, adsense plugin, advertising, affilimatch, affilinet, align, alignment, all in one seo pack, 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, seo, shortcode, shortcodes, snippet, snippets, text, video, widget, yoast, yoast seo
     5Requires at least: 4.0
    66Tested up to: 4.6.1
    7 Stable tag: 3.2.1
     7Stable tag: 4.0
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    1717ATTENTION! CSS, Javascript and Flash Codes does have Problems at the moment. It will be fixed in the future!
    1818
    19 = Which Codes? = 
     19= Which Codes? =
    2020
    2121* Text
    2222* PHP
    2323* HTML
    24 * CSS
    2524* AdSense or other Ads
    26 * Flash
    2725* Video & Audio
    28 * Javascript
    2926* Everything you want
    3027
    31 = Features = 
     28= Where? =
     29
     30* Widget Area
     31* Title of Posts and Pages
     32* Content of Posts and Pages
     33* Menu (In Link-Text and Url must be "#")
     34* All in One SEO Pack (Title, Description, Keywords)
     35* Yoast SEO (Title, Description, Keywords)
     36* Tags
     37* Excerpts
     38
     39= Features =
    3240     
    3341* Save unlimited Codes on options page
     
    3543* Set the alignment for the Codes
    3644* Place a Code with a Shortcode
     45* Place a Code with the own Widget
    3746* Place a Code with the standard WordPress Text-Widget
    3847* Choose who can manage the Plugin (Admin/Editor/Author/Contributor)
     
    77862. Add new Code
    78873. Edit existing Code
    79 4. Widget with Shortcode
    80 5. Settings
    81 6. System Informations
     884. Text-Widget with Shortcode inside
     895. Own Widget with Shortcode-Selection
     906. Settings
     917. System Informations
    8292
    8393== Changelog ==
     94
     95= 4.0 =
     96* 01.10.2016
     97* Added own Widget to easily select a Code from a List
     98* Added support for All in One SEO Pack Plugin fields
     99* Added support for Yoast SEO Plugin fields
     100* Codes now also work in Post/Page Titles, Tags and Widget Titles
     101* Removed the double filtering for shortcode and PHP Code and combined them
     102* Removed the global Output Buffering - now only used for allowing PHP Code in a closed function that will have no effect on other Plugins or Functions
     103* Updated the German translation
     104* Changed the required WordPress Version to 4.0
    84105
    85106= 3.2.1 =
Note: See TracChangeset for help on using the changeset viewer.