Plugin Directory

Changeset 1512852


Ignore:
Timestamp:
10/11/2016 05:10:54 PM (9 years ago)
Author:
wassereimer
Message:

new version 16.10 for trunk

Location:
easy-code-placement/trunk
Files:
76 added
5 deleted
14 edited

Legend:

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

    r1508386 r1512852  
    44 * Text Domain: easy-code-placement
    55 * Domain Path: /lang
    6  * Version: 4.0.2
     6 * Version: 16.10
    77 * Plugin URI: http://www.randnotizen.org/easy-code-placement/
    88 * Author: Jens Herdy
     
    1717// standards
    1818define('ECP_FILE',__FILE__);
    19 define('ECP_VERSION','4.0.2');
     19define('ECP_VERSION','16.10');
    2020
    2121// load functions, classes
  • easy-code-placement/trunk/inc/actions/add.php

    r1420409 r1512852  
    6161
    6262<form method="post" action="<?php echo $_SERVER["REQUEST_URI"]; ?>">
    63 <table width="100%" border="0" cellspacing="0" cellpadding="3">   
     63<table class="table borderless paddingless" style="max-width:1000px;">   
    6464    <tr>
    65         <td><?php _e('Name','easy-code-placement'); ?>:</td>
    66     </tr>
    67     <tr>
    68         <td><input type="text" style="width: 250px; height: 50px;" name="name" align="center">
    69         <br>- <?php _e('Only Letters and Numbers are allowed','easy-code-placement'); ?>.
    70         <br>- <?php _e('Instead of Whitesspaces use Underlines','easy-code-placement'); ?>.
    71         <br>- <?php _e('A maximum of 30 Characters is allowed','easy-code-placement'); ?>.</td>
    72     </tr>
    73     <tr>
    74         <td><?php _e('Code','easy-code-placement'); ?>:</td>
    75     </tr>
    76     <tr>
    77         <td><textarea style="width: 600px; height: 150px;" name="code"></textarea></td>
    78     </tr>
    79     <tr>
    80         <td><?php _e('Alignment','easy-code-placement'); ?>:</td>
     65        <td>
     66            <div class="form-group">
     67                <label for="name" class="control-label"><?php _e('Name','easy-code-placement'); ?>:</label>
     68                <input id="name" name="name" type="text" class="form-control">
     69                <p class="help-block">
     70                    <i class="fa fa-info"></i>&nbsp;<?php _e('Only Letters and Numbers are allowed','easy-code-placement'); ?><br>
     71                    <i class="fa fa-info"></i>&nbsp;<?php _e('Instead of Whitesspaces use Underlines','easy-code-placement'); ?><br>
     72                    <i class="fa fa-info"></i>&nbsp;<?php _e('A maximum of 30 Characters is allowed','easy-code-placement'); ?>
     73                </p>
     74            </div>
     75        </td>
    8176    </tr>
    8277    <tr>
    8378        <td>
    84             <input type="radio" name="alignment" value="0" checked><?php _e('None','easy-code-placement'); ?>
    85             <input type="radio" name="alignment" value="1"><?php _e('Left','easy-code-placement'); ?>
    86             <input type="radio" name="alignment" value="2"><?php _e('Center','easy-code-placement'); ?>
    87             <input type="radio" name="alignment" value="3"><?php _e('Right','easy-code-placement'); ?>
     79            <div class="form-group">
     80                <label for="code" class="control-label"><?php _e('Code','easy-code-placement'); ?>:</label>
     81                <textarea id="code" name="code" rows="10" class="form-control"></textarea>
     82            </div>
    8883        </td>
    8984    </tr>
    9085    <tr>
    91         <td><?php _e('Status','easy-code-placement'); ?>:</td>
     86        <td>
     87            <div class="form-group">
     88                <label for="alignment" class="control-label"><?php _e('Alignment','easy-code-placement'); ?>:</label>
     89                <select id="alignment" name="alignment" class="form-control">
     90                    <option value="0" checked><?php _e('None','easy-code-placement'); ?></option>
     91                    <option value="1"><?php _e('Left','easy-code-placement'); ?></option>
     92                    <option value="2"><?php _e('Center','easy-code-placement'); ?></option>
     93                    <option value="3"><?php _e('Right','easy-code-placement'); ?></option>
     94                </select>
     95            </div>
     96        </td>
    9297    </tr>
    9398    <tr>
    9499        <td>
    95             <input type="radio" name="status" value="1" checked><?php _e('Online','easy-code-placement'); ?>
    96             <input type="radio" name="status" value="2"><?php _e('Offline','easy-code-placement'); ?>
     100            <div class="form-group">
     101                <label for="status" class="control-label"><?php _e('Status','easy-code-placement'); ?>:</label>
     102                <select id="status" name="status" class="form-control">
     103                    <option value="1" checked><?php _e('Online','easy-code-placement'); ?></option>
     104                    <option value="2"><?php _e('Offline','easy-code-placement'); ?></option>
     105                </select>
     106            </div>
    97107        </td>
    98108    </tr>
    99109</table>
    100 <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('Add','easy-code-placement'); ?>">
     110<button type="button" class="btn btn-default" onClick='document.location.href="<?php echo admin_url('options-general.php?page=ecp');?>"'><?php _e('Back','easy-code-placement'); ?></button>&nbsp;&nbsp;<button type="submit" name="submit" class="btn btn-primary"><?php _e('Add','easy-code-placement'); ?></button>
    101111</form>
    102112
  • easy-code-placement/trunk/inc/actions/edit.php

    r1420409 r1512852  
    1 <?php 
     1<?php
    22
    33global $wpdb;
     
    6363
    6464<form method="post" action="<?php echo $_SERVER["REQUEST_URI"]; ?>">
    65 <table width="100%" border="0" cellspacing="0" cellpadding="3">   
     65<table class="table borderless paddingless" style="max-width:1000px;">   
    6666    <tr>
    67         <td><?php _e('Name','easy-code-placement'); ?>:</td>
    68     </tr>
    69     <tr>
    70         <td><input disabled="disabled" type="text" style="width: 250px; height: 50px;" name="name" align="center" value="<?php echo ($ecp_load->name); ?>">
    71         <input type="hidden" name="id" align="center" value="<?php echo ($ecp_load->id); ?>">
    72         <br>- <?php _e('Only Letters and Numbers are allowed','easy-code-placement'); ?>.
    73         <br>- <?php _e('Instead of Whitesspaces use Underlines','easy-code-placement'); ?>.
    74         <br>- <?php _e('A maximum of 30 Characters is allowed','easy-code-placement'); ?>.</td>
    75     </tr>
    76     <tr>
    77         <td><?php _e('Code','easy-code-placement'); ?>:</td>
    78     </tr>
    79     <tr>
    80         <td><textarea style="width: 600px; height: 150px;" name="code"><?php echo ($ecp_load->code); ?></textarea></td>
    81     </tr>
    82     <tr>
    83         <td><?php _e('Alignment','easy-code-placement'); ?>:</td>
     67        <td>
     68            <div class="form-group">
     69                <label for="name" class="control-label"><?php _e('Name','easy-code-placement'); ?>:</label>
     70                <input id="name disabledInput" name="name" type="text" class="form-control" placeholder="<?php echo ($ecp_load->name); ?>" disabled>
     71                <input type="hidden" name="id" align="center" value="<?php echo ($ecp_load->id); ?>">
     72            </div>
     73        </td>
    8474    </tr>
    8575    <tr>
    8676        <td>
    87             <input type="radio" name="alignment" value="0" <?php if ($ecp_load->alignment == "0" OR $ecp_load->alignment == "") {echo "checked";} else {echo "";}; ?>><?php _e('None','easy-code-placement'); ?>
    88             <input type="radio" name="alignment" value="1" <?php if ($ecp_load->alignment == "1") {echo "checked";} else {echo "";}; ?>><?php _e('Left','easy-code-placement'); ?>
    89             <input type="radio" name="alignment" value="2" <?php if ($ecp_load->alignment == "2") {echo "checked";} else {echo "";}; ?>><?php _e('Center','easy-code-placement'); ?>
    90             <input type="radio" name="alignment" value="3" <?php if ($ecp_load->alignment == "3") {echo "checked";} else {echo "";}; ?>><?php _e('Right','easy-code-placement'); ?>
     77            <div class="form-group">
     78                <label for="code" class="control-label"><?php _e('Code','easy-code-placement'); ?>:</label>
     79                <textarea id="code" name="code" rows="10" class="form-control"><?php echo ($ecp_load->code); ?></textarea>
     80            </div>
    9181        </td>
    9282    </tr>
    9383    <tr>
    94         <td><?php _e('Status','easy-code-placement'); ?>:</td>
     84        <td>
     85            <div class="form-group">
     86                <label for="alignment" class="control-label"><?php _e('Alignment','easy-code-placement'); ?>:</label>
     87                <select id="alignment" name="alignment" class="form-control">
     88                    <option value="0"<?php if ($ecp_load->alignment == "0" OR $ecp_load->alignment == "") {echo " selected";} else {echo "";}; ?>><?php _e('None','easy-code-placement'); ?></option>
     89                    <option value="1"<?php if ($ecp_load->alignment == "1") {echo " selected";} else {echo "";}; ?>><?php _e('Left','easy-code-placement'); ?></option>
     90                    <option value="2"<?php if ($ecp_load->alignment == "2") {echo " selected";} else {echo "";}; ?>><?php _e('Center','easy-code-placement'); ?></option>
     91                    <option value="3"<?php if ($ecp_load->alignment == "3") {echo " selected";} else {echo "";}; ?>><?php _e('Right','easy-code-placement'); ?></option>
     92                </select>
     93            </div>
     94        </td>
    9595    </tr>
    9696    <tr>
    9797        <td>
    98             <input type="radio" name="status" value="1" <?php if ($ecp_load->status == "1") {echo "checked";} else {echo "";}; ?>><?php _e('Online','easy-code-placement'); ?>
    99             <input type="radio" name="status" value="2" <?php if ($ecp_load->status == "2") {echo "checked";} else {echo "";}; ?>><?php _e('Offline','easy-code-placement'); ?>
     98            <div class="form-group">
     99                <label for="status" class="control-label"><?php _e('Status','easy-code-placement'); ?>:</label>
     100                <select id="status" name="status" class="form-control">
     101                    <option value="1"<?php if ($ecp_load->status == "1") {echo " selected";} else {echo "";}; ?>><?php _e('Online','easy-code-placement'); ?></option>
     102                    <option value="2"<?php if ($ecp_load->status == "2") {echo " selected";} else {echo "";}; ?>><?php _e('Offline','easy-code-placement'); ?></option>
     103                </select>
     104            </div>
    100105        </td>
    101106    </tr>
    102 </table>
    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'); ?>">
     107</table>   
     108<button type="button" class="btn btn-default" onClick='document.location.href="<?php echo admin_url('options-general.php?page=ecp'.$ecp_sendpage.'');?>"'><?php _e('Back','easy-code-placement'); ?></button>&nbsp;&nbsp;<button type="submit" name="submit" class="btn btn-primary"><?php _e('Save','easy-code-placement'); ?></button>
    104109</form>
    105110
  • easy-code-placement/trunk/inc/functions.php

    r1508386 r1512852  
    11<?php
    2 
    3 // error reporting for dev
    4 //error_reporting(E_ALL);
    5 //define( 'DIEONDBERROR', true ); // multisite
    6 //wpdb->show_errors(); // single site
    72
    83// check if role >= option
     
    105    global $wpdb;
    116    $ecp_role = $wpdb->get_var("SELECT option_value FROM ".$wpdb->prefix."ecp_options WHERE option_name = 'role'" );
    12     if (current_user_can($ecp_role)) {
    13         return '1';
    14     } else {
    15         return '0';
     7    if (!current_user_can($ecp_role)) {
     8        wp_die("<h2>" . __('You don´t have the Permissions to access this Page. Please contact the Administrator.','easy-code-placement') . "</h2>");
    169    }
    1710}
     
    1912// generate options menu if user is allowed
    2013function ecp_add_page() {
    21     if (ecp_check_role() === '1') {
    22         add_options_page( 'Easy Code Placement', 'Easy Code Placement', 'edit_posts', 'ecp', 'ecp' );
    23     }
     14    global $wpdb;
     15    global $ecp_settings_page;
     16    $ecp_role = $wpdb->get_var("SELECT option_value FROM ".$wpdb->prefix."ecp_options WHERE option_name = 'role'" );
     17    $ecp_settings_page = add_options_page( __('Easy Code Placement', 'my-domain'), __('Easy Code Placement', 'my-domain'), $ecp_role, 'ecp', 'ecp' );
    2418}
    2519
    2620// add options to menu
    2721function ecp() {
    28     include ( dirname( __FILE__ ) . '/page.php' );
     22    include ( dirname( __FILE__ ) . '/load.php' );
    2923}
    3024
     
    7367}
    7468
    75 // update to 4.0.2
     69// update to 16.10
    7670function ecp_update(){
    7771    // multiside update
     
    8478            // if not updated yet to 3.2.1 still regenerate missing tables in multisite
    8579            ecp_install();
    86             $wpdb->query("UPDATE ".$wpdb->prefix."ecp_data SET version='4.0.2'");
    87             $wpdb->update($wpdb->prefix.'ecp_options', array( 'option_value' => '4.0.2' ), array( 'option_name' => 'version' ));
     80            $wpdb->query("UPDATE ".$wpdb->prefix."ecp_data SET version='16.10'");
     81            $wpdb->update($wpdb->prefix.'ecp_options', array( 'option_value' => '16.10' ), array( 'option_name' => 'version' ));
    8882        }
    8983    switch_to_blog($blog);
     
    9185        // single update
    9286        global $wpdb;
    93         $wpdb->query("UPDATE ".$wpdb->prefix."ecp_data SET version='4.0.2'");
    94         $wpdb->update($wpdb->prefix.'ecp_options', array( 'option_value' => '4.0.2' ), array( 'option_name' => 'version' ));
     87        $wpdb->query("UPDATE ".$wpdb->prefix."ecp_data SET version='16.10'");
     88        $wpdb->update($wpdb->prefix.'ecp_options', array( 'option_value' => '16.10' ), array( 'option_name' => 'version' ));
    9589    }
    9690}
     
    10498        return;
    10599    // check if we use the current version
    106     } elseif ($ecp_options_version === '4.0.2') {
     100    } elseif ($ecp_options_version === '16.10') {
    107101        return;
    108102    // if user is admin and we have an old version do the update
     
    191185}
    192186
     187// add clipboard.js, font-awesome, bootstrap, jquery and own css and js to admin area
     188function ecp_admin_enqueue($hook) {
     189    // check if on content page
     190    global $ecp_settings_page;
     191    if ( $hook != $ecp_settings_page ) {
     192        return;
     193    }
     194    // add to wp
     195    wp_enqueue_script( 'ecp_admin_jquery', plugins_url('/ext/jquery-3.1.1.min.js' , __FILE__), array(), '3.1.1', false );
     196    wp_enqueue_script( 'ecp_admin_clipboard', plugins_url('/ext/clipboard.js-1.5.12/clipboard.min.js' , __FILE__), array(), '1.5.12', false );
     197    wp_enqueue_script( 'ecp_admin_bootstrap', plugins_url('/ext/bootstrap-3.3.7/js/bootstrap.min.js' , __FILE__), array(), '3.3.7', false );
     198    wp_enqueue_script( 'ecp_admin_js', plugins_url('/js/scripts.js' , __FILE__), array(), '16.10', true );
     199    wp_enqueue_style( 'ecp_admin_css', plugins_url('/css/style.css' , __FILE__), array(), '16.10', 'all' );
     200    wp_enqueue_style( 'ecp_admin_fontawesome', plugins_url('/ext/font-awesome-4.6.3/css/font-awesome.min.css' , __FILE__), array(), '4.6.3', 'all' );
     201    wp_enqueue_style( 'ecp_admin_bootstrap', plugins_url('/ext/bootstrap-3.3.7/css/bootstrap.min.css' , __FILE__), array(), '3.3.7', 'all' );
     202}
     203add_action( 'admin_enqueue_scripts', 'ecp_admin_enqueue' );
     204
    193205?>
  • easy-code-placement/trunk/lang/easy-code-placement-de_DE.po

    r1506635 r1512852  
    33"Project-Id-Version: Easy Code Placement\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2016-10-01 22:26+0200\n"
    6 "PO-Revision-Date: 2016-10-01 22:27+0200\n"
     5"POT-Creation-Date: 2016-10-10 23:29+0200\n"
     6"PO-Revision-Date: 2016-10-10 23:29+0200\n"
    77"Last-Translator: Jens Herdy <[email protected]>\n"
    88"Language-Team: \n"
     
    1414"X-Poedit-SourceCharset: UTF-8\n"
    1515"X-Generator: Poedit 1.8.9\n"
    16 "X-Poedit-Basepath: .\n"
     16"X-Poedit-Basepath: ..\n"
    1717"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
    1818"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
     
    2121"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
    2222"X-Loco-Target-Locale: de_DE\n"
    23 "X-Poedit-SearchPath-0: ..\n"
    24 
    25 #: ../inc/actions/add.php:17 ../inc/actions/add.php:71
    26 #: ../inc/actions/edit.php:74
     23"X-Poedit-SearchPath-0: .\n"
     24"X-Poedit-SearchPathExcluded-0: inc/ext\n"
     25
     26#: inc/actions/add.php:17 inc/actions/add.php:72
    2727msgid "A maximum of 30 Characters is allowed"
    2828msgstr "Maximal 30 Zeichen sind erlaubt"
    2929
    30 #: ../inc/actions/add.php:25
     30#: inc/actions/add.php:25
    3131msgid "Special Characters are not allowed in the Code Name"
    3232msgstr "Sonderzeichen sind im Code Namen nicht erlaubt"
    3333
    34 #: ../inc/actions/add.php:33
     34#: inc/actions/add.php:33
    3535msgid "The Code Name and / or the Code must be filled in"
    3636msgstr "Der Code Name und / oder der Code müssen ausgefüllt werden"
    3737
    38 #: ../inc/actions/add.php:42
     38#: inc/actions/add.php:42
    3939msgid "The Code Name already exist - It must be uniqe"
    4040msgstr "Der Name existiert bereits - Er muss einmalig sein"
    4141
    42 #: ../inc/actions/add.php:59
     42#: inc/actions/add.php:59
    4343msgid "New Code"
    4444msgstr "Code hinzufügen"
    4545
    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
     46#: inc/actions/add.php:67 inc/actions/edit.php:69 inc/home.php:34
     47#: inc/pages/settings.php:9 inc/pages/system.php:9 inc/pages/system.php:100
     48#: inc/pages/system.php:140
    4949msgid "Name"
    5050msgstr "Name"
    5151
    52 #: ../inc/actions/add.php:69 ../inc/actions/edit.php:72
     52#: inc/actions/add.php:70
    5353msgid "Only Letters and Numbers are allowed"
    5454msgstr "Nur Buchstaben und Zahlen sind erlaubt"
    5555
    56 #: ../inc/actions/add.php:70 ../inc/actions/edit.php:73
     56#: inc/actions/add.php:71
    5757msgid "Instead of Whitesspaces use Underlines"
    5858msgstr "Anstelle von Leerzeichen sind Unterstriche zu benutzen"
    5959
    60 #: ../inc/actions/add.php:74 ../inc/actions/edit.php:77
     60#: inc/actions/add.php:80 inc/actions/edit.php:78
    6161msgid "Code"
    6262msgstr "Code"
    6363
    64 #: ../inc/actions/add.php:80 ../inc/actions/edit.php:83
     64#: inc/actions/add.php:88 inc/actions/edit.php:86
    6565msgid "Alignment"
    6666msgstr "Ausrichtung"
    6767
    68 #: ../inc/actions/add.php:84 ../inc/actions/edit.php:87 ../inc/content.php:71
     68#: inc/actions/add.php:90 inc/actions/edit.php:88
    6969msgid "None"
    7070msgstr "Keine"
    7171
    72 #: ../inc/actions/add.php:85 ../inc/actions/edit.php:88 ../inc/content.php:73
     72#: inc/actions/add.php:91 inc/actions/edit.php:89
    7373msgid "Left"
    7474msgstr "Links"
    7575
    76 #: ../inc/actions/add.php:86 ../inc/actions/edit.php:89 ../inc/content.php:75
     76#: inc/actions/add.php:92 inc/actions/edit.php:90
    7777msgid "Center"
    7878msgstr "Zentriert"
    7979
    80 #: ../inc/actions/add.php:87 ../inc/actions/edit.php:90 ../inc/content.php:77
     80#: inc/actions/add.php:93 inc/actions/edit.php:91
    8181msgid "Right"
    8282msgstr "Rechts"
    8383
    84 #: ../inc/actions/add.php:91 ../inc/actions/edit.php:94
     84#: inc/actions/add.php:101 inc/actions/edit.php:99
    8585msgid "Status"
    8686msgstr "Status"
    8787
    88 #: ../inc/actions/add.php:95 ../inc/actions/edit.php:98 ../inc/content.php:66
     88#: inc/actions/add.php:103 inc/actions/edit.php:101
    8989msgid "Online"
    9090msgstr "Online"
    9191
    92 #: ../inc/actions/add.php:96 ../inc/actions/edit.php:99 ../inc/content.php:68
     92#: inc/actions/add.php:104 inc/actions/edit.php:102
    9393msgid "Offline"
    9494msgstr "Offline"
    9595
    96 #: ../inc/actions/add.php:100 ../inc/actions/edit.php:103 ../inc/error.php:13
    97 #: ../inc/settings.php:86 ../inc/system.php:166
     96#: inc/actions/add.php:110 inc/actions/edit.php:108 inc/error.php:13
    9897msgid "Back"
    9998msgstr "Zurück"
    10099
    101 #: ../inc/actions/add.php:100
     100#: inc/actions/add.php:110
    102101msgid "Add"
    103102msgstr "Hinzufügen"
    104103
    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
     104#: inc/actions/alignment.php:17 inc/actions/delete.php:11
     105#: inc/actions/edit.php:22 inc/actions/edit.php:51 inc/actions/status.php:17
    108106msgid "Modifying of the ID is not allowed"
    109107msgstr "Das verändern der ID ist nicht erlaubt"
    110108
    111 #: ../inc/actions/alignment.php:23
     109#: inc/actions/alignment.php:23
    112110msgid ""
    113111"Modifying the Alignment to something else than 0, 1, 2 or 3 is not allowed"
     
    116114"erlaubt"
    117115
    118 #: ../inc/actions/edit.php:30
     116#: inc/actions/edit.php:30
    119117msgid "The Code must be filled in"
    120118msgstr "Es muss ein Code eingegeben werden"
    121119
    122 #: ../inc/actions/edit.php:61
     120#: inc/actions/edit.php:61
    123121msgid "Edit Code"
    124122msgstr "Code bearbeiten"
    125123
    126 #: ../inc/actions/edit.php:103 ../inc/settings.php:86
     124#: inc/actions/edit.php:108 inc/pages/settings.php:41
    127125msgid "Save"
    128126msgstr "Speichern"
    129127
    130 #: ../inc/actions/status.php:23
     128#: inc/actions/settings.php:12
     129msgid "The Option \"Codes per Page\" must be filled in"
     130msgstr "Die Option \"Codes pro Seite\" muss ausgefüllt werden"
     131
     132#: inc/actions/settings.php:20
     133msgid "The Value for the Option \"Codes per Page\" must be numeric"
     134msgstr "Die Wert der Option \"Codes pro Seite\" muss numerisch sein"
     135
     136#: inc/actions/status.php:23
    131137msgid "Modifying of the Status to something else than 1 or 2 is not allowed"
    132138msgstr ""
    133139"Das verändern des Status zu etwas anderem als 1 oder 2 ist nicht erlaubt"
    134140
    135 #: ../inc/content.php:22
     141#: inc/error.php:2 inc/error.php:7 inc/pages/system.php:26
     142#: inc/pages/system.php:56 inc/pages/system.php:69 inc/pages/system.php:82
     143#: inc/pages/system.php:111 inc/pages/system.php:121
     144msgid "Error"
     145msgstr "Fehler"
     146
     147#: inc/functions.php:8
     148msgid ""
     149"You don´t have the Permissions to access this Page. Please contact the "
     150"Administrator."
     151msgstr ""
     152"Du hast nicht die Berechtigungen um diese Seite aufzurufen. Bitte "
     153"kontaktiere den Administrator."
     154
     155#: inc/functions.php:17 inc/functions.php:115 inc/load.php:35
     156msgid "Easy Code Placement"
     157msgstr "Easy Code Placement"
     158
     159#: inc/functions.php:116
     160msgid "Add a Code wherever you want it."
     161msgstr "Füge einen Code ein wo immer du möchtest."
     162
     163#: inc/functions.php:151
     164msgid "Code to Display:"
     165msgstr "Code der angezeigt werden soll:"
     166
     167#: inc/functions.php:153
     168msgid "Please select a Code"
     169msgstr "Bitte wähle einen Code aus"
     170
     171#: inc/functions.php:168
     172msgid "Remove Borders and Design from Widget?"
     173msgstr "Rahmen und Design vom Widget entfernen?"
     174
     175#: inc/home.php:17
    136176msgid "« Previous"
    137177msgstr "« Vorherige"
    138178
    139 #: ../inc/content.php:23
     179#: inc/home.php:18
    140180msgid "Next »"
    141181msgstr "Nächste »"
    142182
    143 #: ../inc/content.php:34
    144 msgid "Codes"
    145 msgstr "Codes"
    146 
    147 #: ../inc/content.php:46
     183#: inc/home.php:35
    148184msgid "Shortcode"
    149185msgstr "Shortcode"
    150186
    151 #: ../inc/content.php:47
     187#: inc/home.php:36
    152188msgid "Action"
    153189msgstr "Aktion"
    154190
    155 #: ../inc/content.php:66
    156 msgid "Status is Online - Click to change"
    157 msgstr "Status ist Online - Klicke um dies zu ändern"
    158 
    159 #: ../inc/content.php:68
    160 msgid "Status is Offline - Click to change"
    161 msgstr "Status ist Offline - Klicke um dies zu ändern"
    162 
    163 #: ../inc/content.php:71
     191#: inc/home.php:48
     192msgid "Copy Shortcode to Clipboard"
     193msgstr "Kopiere Shortcode in die Zwischenablage"
     194
     195#: inc/home.php:48
     196msgid "Copy"
     197msgstr "Kopieren"
     198
     199#: inc/home.php:53
     200msgid "Online - Click to change"
     201msgstr "Online - Klicke um dies zu ändern"
     202
     203#: inc/home.php:55
     204msgid "Offline - Click to change"
     205msgstr "Offline - Klicke um dies zu ändern"
     206
     207#: inc/home.php:59
    164208msgid "No Alignment - Click to change"
    165209msgstr "Keine Ausrichtung - Klicke um dies zu ändern"
    166210
    167 #: ../inc/content.php:73
    168 msgid "Left Alignment - Click to change"
    169 msgstr "Linke Ausrichtung - Klicke um dies zu ändern"
    170 
    171 #: ../inc/content.php:75
    172 msgid "Center Alignment - Click to change"
    173 msgstr "Zentrierte Ausrichtung - Klicke um dies zu ändern"
    174 
    175 #: ../inc/content.php:77
    176 msgid "Right Alignment - Click to change"
    177 msgstr "Rechte Ausrichtung - Klicke um dies zu ändern"
    178 
    179 #: ../inc/content.php:79
     211#: inc/home.php:61
     212msgid "Alignment Left - Click to change"
     213msgstr "Ausrichtung links - Klicke um dies zu ändern"
     214
     215#: inc/home.php:63
     216msgid "Alignment Center - Click to change"
     217msgstr "Ausrichtung zentriert - Klicke um dies zu ändern"
     218
     219#: inc/home.php:65
     220msgid "Alignment Right - Click to change"
     221msgstr "Ausrichtung rechts - Klicke um dies zu ändern"
     222
     223#: inc/home.php:68
    180224msgid "Edit"
    181225msgstr "Bearbeiten"
    182226
    183 #: ../inc/content.php:80
    184 msgid "Delete"
    185 msgstr "Löschen"
    186 
    187 #: ../inc/content.php:81
    188 msgid "Added"
    189 msgstr "Hinzugefügt"
    190 
    191 #: ../inc/content.php:81
    192 msgid "Modified"
    193 msgstr "Verändert"
    194 
    195 #: ../inc/content.php:81
    196 msgid "Info"
    197 msgstr "Info"
    198 
    199 #: ../inc/content.php:87
     227#: inc/home.php:78
    200228msgid "No Code found - Click \"Add New Code\" to add one."
    201229msgstr ""
     
    203231"hinzuzufügen."
    204232
    205 #: ../inc/content.php:99
     233#: inc/home.php:87
    206234msgid "Add New Code"
    207235msgstr "Neuen Code hinzufügen"
    208236
    209 #: ../inc/content.php:99 ../inc/settings.php:41
    210 msgid "Settings"
    211 msgstr "Einstellungen"
    212 
    213 #: ../inc/content.php:99 ../inc/system.php:2
    214 msgid "System Information"
    215 msgstr "System Informationen"
    216 
    217 #: ../inc/content.php:103
     237#: inc/home.php:123
    218238msgid ""
    219239"If you want to thank the developer for this free Plugin, you are welcome to "
     
    225245"benötigt)."
    226246
    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
    230 msgid "Error"
    231 msgstr "Fehler"
    232 
    233 #: ../inc/functions.php:121
    234 msgid "Easy Code Placement"
    235 msgstr "Easy Code Placement"
    236 
    237 #: ../inc/functions.php:122
    238 msgid "Add a Code wherever you want it."
    239 msgstr "Füge einen Code ein wo immer du möchtest."
    240 
    241 #: ../inc/functions.php:157
    242 msgid "Code to Display:"
    243 msgstr "Code der angezeigt werden soll:"
    244 
    245 #: ../inc/functions.php:159
    246 msgid "Please select a Code"
    247 msgstr "Bitte wähle einen Code aus"
    248 
    249 #: ../inc/functions.php:174
    250 msgid "Remove Borders and Design from Widget?"
    251 msgstr "Rahmen und Design vom Widget entfernen?"
    252 
    253 #: ../inc/settings.php:15
    254 msgid "The Option \"Codes per Page\" must be filled in"
    255 msgstr "Die Option \"Codes pro Seite\" muss ausgefüllt werden"
    256 
    257 #: ../inc/settings.php:23
    258 msgid "The Value for the Option \"Codes per Page\" must be numeric"
    259 msgstr "Die Wert der Option \"Codes pro Seite\" muss numerisch sein"
    260 
    261 #: ../inc/settings.php:54 ../inc/system.php:14 ../inc/system.php:105
    262 #: ../inc/system.php:145
     247#: inc/home.php:134
     248msgid "Added on"
     249msgstr "Hinzugefügt am"
     250
     251#: inc/home.php:136
     252msgid "Last Modified on"
     253msgstr "Zuletzt geändert am"
     254
     255#: inc/home.php:140
     256msgid "Close"
     257msgstr "Schließen"
     258
     259#: inc/home.php:153
     260msgid "Are you really sure you want to permanently delete this Shortcode?"
     261msgstr ""
     262"Bist du wirklich sicher das du den Shortcode für immer löschen möchtest?"
     263
     264#: inc/home.php:156
     265msgid "No!"
     266msgstr "Nein!"
     267
     268#: inc/home.php:157
     269msgid "Confirm"
     270msgstr "Bestätigen"
     271
     272#: inc/load.php:38
     273msgid "Home"
     274msgstr "Übersicht"
     275
     276#: inc/load.php:39
     277msgid "Settings"
     278msgstr "Einstellungen"
     279
     280#: inc/load.php:40
     281msgid "Help"
     282msgstr "Hilfe"
     283
     284#: inc/load.php:41
     285msgid "System Information"
     286msgstr "System Informationen"
     287
     288#: inc/pages/help.php:7
     289msgid "Where do I get the Shortcode from?"
     290msgstr "Wo bekomme ich den Shortcode her?"
     291
     292#: inc/pages/help.php:13
     293msgid ""
     294"You only need to Click on the \"Copy\" Button in the Row with your Shortcode "
     295"you need. When you click on the Button the Shortcode is copied to your "
     296"Clipoard. Now you only need to Press \"Strg + V\" on your Keyboard or Right-"
     297"Click on your Mouse and click on \"Insert\" at the place you want to have "
     298"the Shortcode."
     299msgstr ""
     300"In der Zeile in der sich dein benötigter Shortcode befindet brauchst du "
     301"lediglich auf den \"Kopieren\" Button drücken. Wenn du auf diesen Button "
     302"klickst wird der Shortcode in deine Zwischenablage kopiert. Nun musst du "
     303"lediglich an der Stelle an der du den Shortcode haben möchtest \"Strg + V\" "
     304"auf deiner Tastatur drücken oder auf deine rechte Maustaste klicken und "
     305"\"Einfügen\" auswählen."
     306
     307#: inc/pages/help.php:21
     308msgid "The \"Copy\" Button don´t work or I want to write the Code manually!"
     309msgstr ""
     310"Der \"Kopieren\" Button funktioniert nicht oder ich möchte den Code manuell "
     311"eingeben!"
     312
     313#: inc/pages/help.php:27
     314msgid ""
     315"Just type [ecp code=\"%PLACEHOLDER%\"] at the place you want to have the "
     316"Shortcode. Replace %PLACEHOLDER% with the Name of your Shortcode."
     317msgstr ""
     318"Schreibe einfach [ecp code=\"%PLATZHALTER%\"] an die Stelle an der du deinen "
     319"Shortcode haben möchtest. Ersetze %PLATZHALTER% mit dem Namen deines "
     320"Shortcodes."
     321
     322#: inc/pages/help.php:35
     323msgid "Where can I place the Shortcode?"
     324msgstr "Wo kann ich den Shortcode platzieren?"
     325
     326#: inc/pages/help.php:41
     327msgid ""
     328"At the moment you can place the Shortcode at the following Areas: Widget "
     329"Title and Content, Title of Posts and Pages (only Text and without "
     330"alignement), Content of Posts and Pages, Menu (in the Link-Text and the URL "
     331"must be \"#\" if you dont want to link it somewhere), Tags and Excerpts."
     332msgstr ""
     333"Im Moment kannst du den Shortcode in folgenden Bereichen platzieren: Widget "
     334"Titel und Inhalt, Titel von Beiträgen und Seiten (nur Text und ohne "
     335"Ausrichtung), Inhalt von Beiträgen und Seiten, Menü (in den Text des Links "
     336"und die URL muss \"#\" sein wenn du diesen nicht verlinken möchtest), "
     337"Schlagwörter und Auszüge."
     338
     339#: inc/pages/settings.php:10 inc/pages/system.php:10 inc/pages/system.php:101
     340#: inc/pages/system.php:141
    263341msgid "Value"
    264342msgstr "Wert"
    265343
    266 #: ../inc/settings.php:59
     344#: inc/pages/settings.php:15
    267345msgid "Who can manage this Plugin?"
    268346msgstr "Wer kann dieses Plugin verwalten?"
    269347
    270 #: ../inc/settings.php:66
     348#: inc/pages/settings.php:22
    271349msgid "Adminstrators and higher"
    272350msgstr "Administratoren und höher"
    273351
    274 #: ../inc/settings.php:67
     352#: inc/pages/settings.php:23
    275353msgid "Editors and higher"
    276354msgstr "Redakteure und höher"
    277355
    278 #: ../inc/settings.php:68
     356#: inc/pages/settings.php:24
    279357msgid "Authors and higher"
    280358msgstr "Autoren und höher"
    281359
    282 #: ../inc/settings.php:69
     360#: inc/pages/settings.php:25
    283361msgid "Contributors and higher"
    284362msgstr "Mitarbeiter und höher"
    285363
    286 #: ../inc/settings.php:74 ../inc/system.php:81
     364#: inc/pages/settings.php:30 inc/pages/system.php:77
    287365msgid "Codes per Page"
    288366msgstr "Codes pro Seite"
    289367
    290 #: ../inc/system.php:5
     368#: inc/pages/system.php:1
    291369msgid "General"
    292370msgstr "Allgemein"
    293371
    294 #: ../inc/system.php:19
     372#: inc/pages/system.php:15
    295373msgid "PHP Version"
    296374msgstr "PHP Version"
    297375
    298 #: ../inc/system.php:23
     376#: inc/pages/system.php:19
    299377msgid "MySQL Version"
    300378msgstr "MySQL Version"
    301379
    302 #: ../inc/system.php:36
     380#: inc/pages/system.php:32
    303381msgid "WordPress Version"
    304382msgstr "WordPress Version"
    305383
    306 #: ../inc/system.php:40
     384#: inc/pages/system.php:36
    307385msgid "WordPress Network Page"
    308386msgstr "WordPress Netzwerk Seite"
    309387
    310 #: ../inc/system.php:43
     388#: inc/pages/system.php:39
    311389msgid "Yes"
    312390msgstr "Ja"
    313391
    314 #: ../inc/system.php:45
     392#: inc/pages/system.php:41
    315393msgid "No"
    316394msgstr "Nein"
    317395
    318 #: ../inc/system.php:51
     396#: inc/pages/system.php:47
    319397msgid "Plugin Version (File)"
    320398msgstr "Plugin Version (Datei)"
    321399
    322 #: ../inc/system.php:55
     400#: inc/pages/system.php:51
    323401msgid "Plugin Version (Database)"
    324402msgstr "Plugin Version (Datenbank)"
    325403
    326 #: ../inc/system.php:68
     404#: inc/pages/system.php:64
    327405msgid "Role"
    328406msgstr "Rolle"
    329407
    330 #: ../inc/system.php:96
     408#: inc/pages/system.php:92
    331409msgid "Configuration"
    332410msgstr "Konfiguration"
    333411
    334 #: ../inc/system.php:110
     412#: inc/pages/system.php:106
    335413msgid "PHP max. execution time"
    336414msgstr "PHP max. Ausführungszeit"
    337415
    338 #: ../inc/system.php:120
     416#: inc/pages/system.php:116
    339417msgid "PHP memory limit"
    340418msgstr "PHP Speicherlimit"
    341419
    342 #: ../inc/system.php:130
     420#: inc/pages/system.php:126
    343421msgid "WordPress memory limit"
    344422msgstr "WordPress Speicherlimit"
    345423
    346 #: ../inc/system.php:136
     424#: inc/pages/system.php:132
    347425msgid "Paths"
    348426msgstr "Pfade"
    349427
    350 #: ../inc/system.php:150
     428#: inc/pages/system.php:146
    351429msgid "Home URL"
    352430msgstr "Home URL"
    353431
    354 #: ../inc/system.php:154
     432#: inc/pages/system.php:150
    355433msgid "Site URL"
    356434msgstr "Seiten URL"
    357435
    358 #: ../inc/system.php:158
     436#: inc/pages/system.php:154
    359437msgid "Plugin URL"
    360438msgstr "Plugin URL"
     439
     440#~ msgid ""
     441#~ "At the moment you can place the Shortcode at the following Areas: Widget "
     442#~ "Title and Content, Title of Posts and Pages (only Text and without "
     443#~ "alignement), Content of Posts and Pages, Menu (in the Link-Text and the "
     444#~ "URL must be \"#\" if you dont want to link it somewhere), Tags and "
     445#~ "Excerpts"
     446#~ msgstr ""
     447#~ "Im Moment kannst du den Shortcode in folgenden Bereichen platzieren: "
     448#~ "Widget Titel und Inhalt, Titel von Beiträgen und Seiten (nur Text und "
     449#~ "ohne Ausrichtung), Inhalt von Beiträgen und Seiten, Menü (in den Text des "
     450#~ "Links und die URL muss \"#\" sein wenn du diesen nicht verlinken "
     451#~ "möchtest), Schlagwörter und Auszüge"
     452
     453#~ msgid "Delete"
     454#~ msgstr "Löschen"
     455
     456#~ msgid "Added"
     457#~ msgstr "Hinzugefügt"
     458
     459#~ msgid "Last Modified"
     460#~ msgstr "Zuletzt geändert"
     461
     462#~ msgid "Modified"
     463#~ msgstr "Verändert"
     464
     465#~ msgid "Confirm deletion"
     466#~ msgstr "Löschen bestätigen"
     467
     468#~ msgid "Codes"
     469#~ msgstr "Codes"
     470
     471#~ msgid "Status is Online - Click to change"
     472#~ msgstr "Status ist Online - Klicke um dies zu ändern"
     473
     474#~ msgid "Status is Offline - Click to change"
     475#~ msgstr "Status ist Offline - Klicke um dies zu ändern"
     476
     477#~ msgid "Left Alignment - Click to change"
     478#~ msgstr "Linke Ausrichtung - Klicke um dies zu ändern"
     479
     480#~ msgid "Center Alignment - Click to change"
     481#~ msgstr "Zentrierte Ausrichtung - Klicke um dies zu ändern"
     482
     483#~ msgid "Right Alignment - Click to change"
     484#~ msgstr "Rechte Ausrichtung - Klicke um dies zu ändern"
     485
     486#~ msgid "Info"
     487#~ msgstr "Info"
    361488
    362489#~ msgid "http://www.randnotizen.org/easy-code-placement"
  • easy-code-placement/trunk/lang/easy-code-placement.pot

    r1506635 r1512852  
    55"Project-Id-Version: Easy Code Placement\n"
    66"Report-Msgid-Bugs-To: \n"
    7 "POT-Creation-Date: 2016-10-01 22:26+0200\n"
     7"POT-Creation-Date: 2016-10-10 23:29+0200\n"
    88"POT-Revision-Date: Thu May 19 2016 17:08:44 GMT+0200 (Mitteleuropäische "
    99"Sommerzeit)\n"
     
    1616"Content-Transfer-Encoding: 8bit\n"
    1717"X-Poedit-SourceCharset: UTF-8\n"
    18 "X-Poedit-Basepath: .\n"
     18"X-Poedit-Basepath: ..\n"
    1919"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;"
    2020"_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;"
     
    2323"comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
    2424"X-Generator: Poedit 1.8.9\n"
    25 "X-Poedit-SearchPath-0: ..\n"
    26 
    27 #: ../inc/actions/add.php:17 ../inc/actions/add.php:71 ../inc/actions/edit.php:74
     25"X-Poedit-SearchPath-0: .\n"
     26"X-Poedit-SearchPathExcluded-0: inc/ext\n"
     27
     28#: inc/actions/add.php:17 inc/actions/add.php:72
    2829msgid "A maximum of 30 Characters is allowed"
    2930msgstr ""
    3031
    31 #: ../inc/actions/add.php:25
     32#: inc/actions/add.php:25
    3233msgid "Special Characters are not allowed in the Code Name"
    3334msgstr ""
    3435
    35 #: ../inc/actions/add.php:33
     36#: inc/actions/add.php:33
    3637msgid "The Code Name and / or the Code must be filled in"
    3738msgstr ""
    3839
    39 #: ../inc/actions/add.php:42
     40#: inc/actions/add.php:42
    4041msgid "The Code Name already exist - It must be uniqe"
    4142msgstr ""
    4243
    43 #: ../inc/actions/add.php:59
     44#: inc/actions/add.php:59
    4445msgid "New Code"
    4546msgstr ""
    4647
    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
     48#: inc/actions/add.php:67 inc/actions/edit.php:69 inc/home.php:34
     49#: inc/pages/settings.php:9 inc/pages/system.php:9 inc/pages/system.php:100
     50#: inc/pages/system.php:140
    5051msgid "Name"
    5152msgstr ""
    5253
    53 #: ../inc/actions/add.php:69 ../inc/actions/edit.php:72
     54#: inc/actions/add.php:70
    5455msgid "Only Letters and Numbers are allowed"
    5556msgstr ""
    5657
    57 #: ../inc/actions/add.php:70 ../inc/actions/edit.php:73
     58#: inc/actions/add.php:71
    5859msgid "Instead of Whitesspaces use Underlines"
    5960msgstr ""
    6061
    61 #: ../inc/actions/add.php:74 ../inc/actions/edit.php:77
     62#: inc/actions/add.php:80 inc/actions/edit.php:78
    6263msgid "Code"
    6364msgstr ""
    6465
    65 #: ../inc/actions/add.php:80 ../inc/actions/edit.php:83
     66#: inc/actions/add.php:88 inc/actions/edit.php:86
    6667msgid "Alignment"
    6768msgstr ""
    6869
    69 #: ../inc/actions/add.php:84 ../inc/actions/edit.php:87 ../inc/content.php:71
     70#: inc/actions/add.php:90 inc/actions/edit.php:88
    7071msgid "None"
    7172msgstr ""
    7273
    73 #: ../inc/actions/add.php:85 ../inc/actions/edit.php:88 ../inc/content.php:73
     74#: inc/actions/add.php:91 inc/actions/edit.php:89
    7475msgid "Left"
    7576msgstr ""
    7677
    77 #: ../inc/actions/add.php:86 ../inc/actions/edit.php:89 ../inc/content.php:75
     78#: inc/actions/add.php:92 inc/actions/edit.php:90
    7879msgid "Center"
    7980msgstr ""
    8081
    81 #: ../inc/actions/add.php:87 ../inc/actions/edit.php:90 ../inc/content.php:77
     82#: inc/actions/add.php:93 inc/actions/edit.php:91
    8283msgid "Right"
    8384msgstr ""
    8485
    85 #: ../inc/actions/add.php:91 ../inc/actions/edit.php:94
     86#: inc/actions/add.php:101 inc/actions/edit.php:99
    8687msgid "Status"
    8788msgstr ""
    8889
    89 #: ../inc/actions/add.php:95 ../inc/actions/edit.php:98 ../inc/content.php:66
     90#: inc/actions/add.php:103 inc/actions/edit.php:101
    9091msgid "Online"
    9192msgstr ""
    9293
    93 #: ../inc/actions/add.php:96 ../inc/actions/edit.php:99 ../inc/content.php:68
     94#: inc/actions/add.php:104 inc/actions/edit.php:102
    9495msgid "Offline"
    9596msgstr ""
    9697
    97 #: ../inc/actions/add.php:100 ../inc/actions/edit.php:103 ../inc/error.php:13
    98 #: ../inc/settings.php:86 ../inc/system.php:166
     98#: inc/actions/add.php:110 inc/actions/edit.php:108 inc/error.php:13
    9999msgid "Back"
    100100msgstr ""
    101101
    102 #: ../inc/actions/add.php:100
     102#: inc/actions/add.php:110
    103103msgid "Add"
    104104msgstr ""
    105105
    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
     106#: inc/actions/alignment.php:17 inc/actions/delete.php:11 inc/actions/edit.php:22
     107#: inc/actions/edit.php:51 inc/actions/status.php:17
    109108msgid "Modifying of the ID is not allowed"
    110109msgstr ""
    111110
    112 #: ../inc/actions/alignment.php:23
     111#: inc/actions/alignment.php:23
    113112msgid "Modifying the Alignment to something else than 0, 1, 2 or 3 is not allowed"
    114113msgstr ""
    115114
    116 #: ../inc/actions/edit.php:30
     115#: inc/actions/edit.php:30
    117116msgid "The Code must be filled in"
    118117msgstr ""
    119118
    120 #: ../inc/actions/edit.php:61
     119#: inc/actions/edit.php:61
    121120msgid "Edit Code"
    122121msgstr ""
    123122
    124 #: ../inc/actions/edit.php:103 ../inc/settings.php:86
     123#: inc/actions/edit.php:108 inc/pages/settings.php:41
    125124msgid "Save"
    126125msgstr ""
    127126
    128 #: ../inc/actions/status.php:23
     127#: inc/actions/settings.php:12
     128msgid "The Option \"Codes per Page\" must be filled in"
     129msgstr ""
     130
     131#: inc/actions/settings.php:20
     132msgid "The Value for the Option \"Codes per Page\" must be numeric"
     133msgstr ""
     134
     135#: inc/actions/status.php:23
    129136msgid "Modifying of the Status to something else than 1 or 2 is not allowed"
    130137msgstr ""
    131138
    132 #: ../inc/content.php:22
     139#: inc/error.php:2 inc/error.php:7 inc/pages/system.php:26 inc/pages/system.php:56
     140#: inc/pages/system.php:69 inc/pages/system.php:82 inc/pages/system.php:111
     141#: inc/pages/system.php:121
     142msgid "Error"
     143msgstr ""
     144
     145#: inc/functions.php:8
     146msgid ""
     147"You don´t have the Permissions to access this Page. Please contact the "
     148"Administrator."
     149msgstr ""
     150
     151#: inc/functions.php:17 inc/functions.php:115 inc/load.php:35
     152msgid "Easy Code Placement"
     153msgstr ""
     154
     155#: inc/functions.php:116
     156msgid "Add a Code wherever you want it."
     157msgstr ""
     158
     159#: inc/functions.php:151
     160msgid "Code to Display:"
     161msgstr ""
     162
     163#: inc/functions.php:153
     164msgid "Please select a Code"
     165msgstr ""
     166
     167#: inc/functions.php:168
     168msgid "Remove Borders and Design from Widget?"
     169msgstr ""
     170
     171#: inc/home.php:17
    133172msgid "« Previous"
    134173msgstr ""
    135174
    136 #: ../inc/content.php:23
     175#: inc/home.php:18
    137176msgid "Next »"
    138177msgstr ""
    139178
    140 #: ../inc/content.php:34
    141 msgid "Codes"
    142 msgstr ""
    143 
    144 #: ../inc/content.php:46
     179#: inc/home.php:35
    145180msgid "Shortcode"
    146181msgstr ""
    147182
    148 #: ../inc/content.php:47
     183#: inc/home.php:36
    149184msgid "Action"
    150185msgstr ""
    151186
    152 #: ../inc/content.php:66
    153 msgid "Status is Online - Click to change"
    154 msgstr ""
    155 
    156 #: ../inc/content.php:68
    157 msgid "Status is Offline - Click to change"
    158 msgstr ""
    159 
    160 #: ../inc/content.php:71
     187#: inc/home.php:48
     188msgid "Copy Shortcode to Clipboard"
     189msgstr ""
     190
     191#: inc/home.php:48
     192msgid "Copy"
     193msgstr ""
     194
     195#: inc/home.php:53
     196msgid "Online - Click to change"
     197msgstr ""
     198
     199#: inc/home.php:55
     200msgid "Offline - Click to change"
     201msgstr ""
     202
     203#: inc/home.php:59
    161204msgid "No Alignment - Click to change"
    162205msgstr ""
    163206
    164 #: ../inc/content.php:73
    165 msgid "Left Alignment - Click to change"
    166 msgstr ""
    167 
    168 #: ../inc/content.php:75
    169 msgid "Center Alignment - Click to change"
    170 msgstr ""
    171 
    172 #: ../inc/content.php:77
    173 msgid "Right Alignment - Click to change"
    174 msgstr ""
    175 
    176 #: ../inc/content.php:79
     207#: inc/home.php:61
     208msgid "Alignment Left - Click to change"
     209msgstr ""
     210
     211#: inc/home.php:63
     212msgid "Alignment Center - Click to change"
     213msgstr ""
     214
     215#: inc/home.php:65
     216msgid "Alignment Right - Click to change"
     217msgstr ""
     218
     219#: inc/home.php:68
    177220msgid "Edit"
    178221msgstr ""
    179222
    180 #: ../inc/content.php:80
    181 msgid "Delete"
    182 msgstr ""
    183 
    184 #: ../inc/content.php:81
    185 msgid "Added"
    186 msgstr ""
    187 
    188 #: ../inc/content.php:81
    189 msgid "Modified"
    190 msgstr ""
    191 
    192 #: ../inc/content.php:81
    193 msgid "Info"
    194 msgstr ""
    195 
    196 #: ../inc/content.php:87
     223#: inc/home.php:78
    197224msgid "No Code found - Click \"Add New Code\" to add one."
    198225msgstr ""
    199226
    200 #: ../inc/content.php:99
     227#: inc/home.php:87
    201228msgid "Add New Code"
    202229msgstr ""
    203230
    204 #: ../inc/content.php:99 ../inc/settings.php:41
    205 msgid "Settings"
    206 msgstr ""
    207 
    208 #: ../inc/content.php:99 ../inc/system.php:2
    209 msgid "System Information"
    210 msgstr ""
    211 
    212 #: ../inc/content.php:103
     231#: inc/home.php:123
    213232msgid ""
    214233"If you want to thank the developer for this free Plugin, you are welcome to "
     
    217236msgstr ""
    218237
    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
    222 msgid "Error"
    223 msgstr ""
    224 
    225 #: ../inc/functions.php:121
    226 msgid "Easy Code Placement"
    227 msgstr ""
    228 
    229 #: ../inc/functions.php:122
    230 msgid "Add a Code wherever you want it."
    231 msgstr ""
    232 
    233 #: ../inc/functions.php:157
    234 msgid "Code to Display:"
    235 msgstr ""
    236 
    237 #: ../inc/functions.php:159
    238 msgid "Please select a Code"
    239 msgstr ""
    240 
    241 #: ../inc/functions.php:174
    242 msgid "Remove Borders and Design from Widget?"
    243 msgstr ""
    244 
    245 #: ../inc/settings.php:15
    246 msgid "The Option \"Codes per Page\" must be filled in"
    247 msgstr ""
    248 
    249 #: ../inc/settings.php:23
    250 msgid "The Value for the Option \"Codes per Page\" must be numeric"
    251 msgstr ""
    252 
    253 #: ../inc/settings.php:54 ../inc/system.php:14 ../inc/system.php:105
    254 #: ../inc/system.php:145
     238#: inc/home.php:134
     239msgid "Added on"
     240msgstr ""
     241
     242#: inc/home.php:136
     243msgid "Last Modified on"
     244msgstr ""
     245
     246#: inc/home.php:140
     247msgid "Close"
     248msgstr ""
     249
     250#: inc/home.php:153
     251msgid "Are you really sure you want to permanently delete this Shortcode?"
     252msgstr ""
     253
     254#: inc/home.php:156
     255msgid "No!"
     256msgstr ""
     257
     258#: inc/home.php:157
     259msgid "Confirm"
     260msgstr ""
     261
     262#: inc/load.php:38
     263msgid "Home"
     264msgstr ""
     265
     266#: inc/load.php:39
     267msgid "Settings"
     268msgstr ""
     269
     270#: inc/load.php:40
     271msgid "Help"
     272msgstr ""
     273
     274#: inc/load.php:41
     275msgid "System Information"
     276msgstr ""
     277
     278#: inc/pages/help.php:7
     279msgid "Where do I get the Shortcode from?"
     280msgstr ""
     281
     282#: inc/pages/help.php:13
     283msgid ""
     284"You only need to Click on the \"Copy\" Button in the Row with your Shortcode "
     285"you need. When you click on the Button the Shortcode is copied to your "
     286"Clipoard. Now you only need to Press \"Strg + V\" on your Keyboard or Right-"
     287"Click on your Mouse and click on \"Insert\" at the place you want to have the "
     288"Shortcode."
     289msgstr ""
     290
     291#: inc/pages/help.php:21
     292msgid "The \"Copy\" Button don´t work or I want to write the Code manually!"
     293msgstr ""
     294
     295#: inc/pages/help.php:27
     296msgid ""
     297"Just type [ecp code=\"%PLACEHOLDER%\"] at the place you want to have the "
     298"Shortcode. Replace %PLACEHOLDER% with the Name of your Shortcode."
     299msgstr ""
     300
     301#: inc/pages/help.php:35
     302msgid "Where can I place the Shortcode?"
     303msgstr ""
     304
     305#: inc/pages/help.php:41
     306msgid ""
     307"At the moment you can place the Shortcode at the following Areas: Widget Title "
     308"and Content, Title of Posts and Pages (only Text and without alignement), "
     309"Content of Posts and Pages, Menu (in the Link-Text and the URL must be \"#\" if "
     310"you dont want to link it somewhere), Tags and Excerpts."
     311msgstr ""
     312
     313#: inc/pages/settings.php:10 inc/pages/system.php:10 inc/pages/system.php:101
     314#: inc/pages/system.php:141
    255315msgid "Value"
    256316msgstr ""
    257317
    258 #: ../inc/settings.php:59
     318#: inc/pages/settings.php:15
    259319msgid "Who can manage this Plugin?"
    260320msgstr ""
    261321
    262 #: ../inc/settings.php:66
     322#: inc/pages/settings.php:22
    263323msgid "Adminstrators and higher"
    264324msgstr ""
    265325
    266 #: ../inc/settings.php:67
     326#: inc/pages/settings.php:23
    267327msgid "Editors and higher"
    268328msgstr ""
    269329
    270 #: ../inc/settings.php:68
     330#: inc/pages/settings.php:24
    271331msgid "Authors and higher"
    272332msgstr ""
    273333
    274 #: ../inc/settings.php:69
     334#: inc/pages/settings.php:25
    275335msgid "Contributors and higher"
    276336msgstr ""
    277337
    278 #: ../inc/settings.php:74 ../inc/system.php:81
     338#: inc/pages/settings.php:30 inc/pages/system.php:77
    279339msgid "Codes per Page"
    280340msgstr ""
    281341
    282 #: ../inc/system.php:5
     342#: inc/pages/system.php:1
    283343msgid "General"
    284344msgstr ""
    285345
    286 #: ../inc/system.php:19
     346#: inc/pages/system.php:15
    287347msgid "PHP Version"
    288348msgstr ""
    289349
    290 #: ../inc/system.php:23
     350#: inc/pages/system.php:19
    291351msgid "MySQL Version"
    292352msgstr ""
    293353
    294 #: ../inc/system.php:36
     354#: inc/pages/system.php:32
    295355msgid "WordPress Version"
    296356msgstr ""
    297357
    298 #: ../inc/system.php:40
     358#: inc/pages/system.php:36
    299359msgid "WordPress Network Page"
    300360msgstr ""
    301361
    302 #: ../inc/system.php:43
     362#: inc/pages/system.php:39
    303363msgid "Yes"
    304364msgstr ""
    305365
    306 #: ../inc/system.php:45
     366#: inc/pages/system.php:41
    307367msgid "No"
    308368msgstr ""
    309369
    310 #: ../inc/system.php:51
     370#: inc/pages/system.php:47
    311371msgid "Plugin Version (File)"
    312372msgstr ""
    313373
    314 #: ../inc/system.php:55
     374#: inc/pages/system.php:51
    315375msgid "Plugin Version (Database)"
    316376msgstr ""
    317377
    318 #: ../inc/system.php:68
     378#: inc/pages/system.php:64
    319379msgid "Role"
    320380msgstr ""
    321381
    322 #: ../inc/system.php:96
     382#: inc/pages/system.php:92
    323383msgid "Configuration"
    324384msgstr ""
    325385
    326 #: ../inc/system.php:110
     386#: inc/pages/system.php:106
    327387msgid "PHP max. execution time"
    328388msgstr ""
    329389
    330 #: ../inc/system.php:120
     390#: inc/pages/system.php:116
    331391msgid "PHP memory limit"
    332392msgstr ""
    333393
    334 #: ../inc/system.php:130
     394#: inc/pages/system.php:126
    335395msgid "WordPress memory limit"
    336396msgstr ""
    337397
    338 #: ../inc/system.php:136
     398#: inc/pages/system.php:132
    339399msgid "Paths"
    340400msgstr ""
    341401
    342 #: ../inc/system.php:150
     402#: inc/pages/system.php:146
    343403msgid "Home URL"
    344404msgstr ""
    345405
    346 #: ../inc/system.php:154
     406#: inc/pages/system.php:150
    347407msgid "Site URL"
    348408msgstr ""
    349409
    350 #: ../inc/system.php:158
     410#: inc/pages/system.php:154
    351411msgid "Plugin URL"
    352412msgstr ""
  • easy-code-placement/trunk/readme.txt

    r1508386 r1512852  
    55Requires at least: 4.0
    66Tested up to: 4.6.1
    7 Stable tag: 4.0.2
     7Stable tag: 16.10
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    7676* Now you can go to the Settings-Page on 'Settings' -> 'Easy Code Placement'
    7777
    78 == Frequently Asked Questions ==
    79 
    80 Not yet
    81 
    8278== Screenshots ==
    8379
     
    9187
    9288== Changelog ==
     89
     90= 16.10 =
     91* 11.10.2016
     92* Changed versioning to year.month.revision
     93* Complete Mobile friendly now
     94* Shortcode delete must now be confirmed
     95* Added Tab-Navigation
     96* Added Help Page
     97* Added Button to Copy Shortcode to Clipboard
     98* Fixed that Plugin Page was shown under WP Settings even when User couldn´t access it
     99* Changed Table Layout
     100* Changed Form Layout
     101* Changed Layout to max 1000px
     102* Changed all Buttons
     103* Changed Pagination Layout
     104* Changed Screenshots
     105* Updated the German translation
     106* Added jQuery 3.1.1 (loaded on ECP Admin Page only)
     107* Added Bootstrap 3.3.7 (loaded on ECP Admin Page only)
     108* Added Font-Awesome 4.6.3 (loaded on ECP Admin Page only)
     109* Added clipboard.js 1.5.12 (loaded on ECP Admin Page only)
    93110
    94111= 4.0.2 =
Note: See TracChangeset for help on using the changeset viewer.