Changeset 1420409
- Timestamp:
- 05/19/2016 03:31:28 PM (10 years ago)
- Location:
- easy-code-placement/trunk
- Files:
-
- 2 added
- 14 edited
-
easy-code-placement.php (modified) (2 diffs)
-
img/info.png (added)
-
inc/actions/add.php (modified) (1 diff)
-
inc/actions/alignment.php (modified) (2 diffs)
-
inc/actions/edit.php (modified) (4 diffs)
-
inc/actions/status.php (modified) (2 diffs)
-
inc/content.php (added)
-
inc/functions.php (modified) (7 diffs)
-
inc/install.php (modified) (2 diffs)
-
inc/page.php (modified) (1 diff)
-
inc/settings.php (modified) (4 diffs)
-
inc/system.php (modified) (1 diff)
-
lang/easy-code-placement-de_DE.mo (modified) (previous)
-
lang/easy-code-placement-de_DE.po (modified) (2 diffs)
-
lang/easy-code-placement.pot (modified) (5 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
easy-code-placement/trunk/easy-code-placement.php
r1335072 r1420409 4 4 * Text Domain: easy-code-placement 5 5 * Domain Path: /lang 6 * Version: 3. 1.16 * Version: 3.2 7 7 * Plugin URI: http://www.randnotizen.org/easy-code-placement/ 8 8 * Author: Jens Herdy … … 15 15 ob_start(); 16 16 define('ECP_FILE',__FILE__); 17 define('ECP_VERSION','3. 1.1');17 define('ECP_VERSION','3.2'); 18 18 19 19 // load functions, classes 20 20 include( dirname( __FILE__ ) . '/inc/functions.php' ); 21 include( dirname( __FILE__ ) . '/inc/classes/class-ecp-tables.php' );22 include( dirname( __FILE__ ) . '/inc/classes/class-ecp-table.php' );23 21 24 22 // set filters to replace shortcodes -
easy-code-placement/trunk/inc/actions/add.php
r1335072 r1420409 46 46 } 47 47 48 $wpdb->insert($wpdb->prefix.'ecp_data', array('name' =>$t_ecp_name,'code'=>$t_ecp_code,'alignment'=>$t_ecp_alignment,'shortcode'=>$t_ecp_name,'status'=>$t_ecp_status,' version'=>ECP_VERSION));48 $wpdb->insert($wpdb->prefix.'ecp_data', array('name' =>$t_ecp_name,'code'=>$t_ecp_code,'alignment'=>$t_ecp_alignment,'shortcode'=>$t_ecp_name,'status'=>$t_ecp_status,'added'=>date('Y-m-d H:i:s'),'version'=>ECP_VERSION)); 49 49 50 50 // when added to database goto options page -
easy-code-placement/trunk/inc/actions/alignment.php
r1335072 r1420409 7 7 $ecp_id = $_GET['ecpid']; 8 8 $ecp_alignment = $_GET['alignment']; 9 10 if (isset($_GET['pagenum'])) { 11 $t_ecp_sendpage=$_GET['pagenum']; 12 $ecp_sendpage='&pagenum='.$t_ecp_sendpage.''; 13 } 9 14 10 15 if ($ecp_id=="" || !is_numeric($ecp_id)) { … … 26 31 27 32 // when status changes goto options page 28 header('Location: options-general.php?page=ecp' );33 header('Location: options-general.php?page=ecp'.$ecp_sendpage.''); 29 34 30 35 ?> -
easy-code-placement/trunk/inc/actions/edit.php
r1335072 r1420409 2 2 3 3 global $wpdb; 4 5 if (isset($_GET['pagenum'])) { 6 $t_ecp_sendpage=$_GET['pagenum']; 7 $ecp_sendpage='&pagenum='.$t_ecp_sendpage.''; 8 } 4 9 5 10 // when form was sent … … 12 17 $t_ecp_status = $_POST['status']; 13 18 $t_ecp_id = $_POST['id']; 14 19 15 20 if($t_ecp_id=="" || !is_numeric($t_ecp_id)) { 16 21 // when get emty or other than numbers goto error page … … 29 34 } 30 35 31 $wpdb->update($wpdb->prefix.'ecp_data', array('code'=>$t_ecp_code,'alignment'=>$t_ecp_alignment,'status'=>$t_ecp_status ), array('id'=>$t_ecp_id));36 $wpdb->update($wpdb->prefix.'ecp_data', array('code'=>$t_ecp_code,'alignment'=>$t_ecp_alignment,'status'=>$t_ecp_status,'changed'=>date('Y-m-d H:i:s')), array('id'=>$t_ecp_id)); 32 37 33 38 // when edited goto options page 34 header('Location: options-general.php?page=ecp' );39 header('Location: options-general.php?page=ecp'.$ecp_sendpage.''); 35 40 exit(); 36 41 … … 96 101 </tr> 97 102 </table> 98 <br><input type="button" class="button-secondary" value="<?php _e('Back','easy-code-placement'); ?>" onClick='document.location.href="<?php echo admin_url('options-general.php?page=ecp' );?>"'> <input type="submit" name="submit" class="button-primary" value="<?php _e('Save','easy-code-placement'); ?>">103 <br><input type="button" class="button-secondary" value="<?php _e('Back','easy-code-placement'); ?>" onClick='document.location.href="<?php echo admin_url('options-general.php?page=ecp'.$ecp_sendpage.'');?>"'> <input type="submit" name="submit" class="button-primary" value="<?php _e('Save','easy-code-placement'); ?>"> 99 104 </form> 100 105 -
easy-code-placement/trunk/inc/actions/status.php
r1335072 r1420409 7 7 $ecp_id = $_GET['ecpid']; 8 8 $ecp_status = $_GET['status']; 9 10 if (isset($_GET['pagenum'])) { 11 $t_ecp_sendpage=$_GET['pagenum']; 12 $ecp_sendpage='&pagenum='.$t_ecp_sendpage.''; 13 } 9 14 10 15 if ($ecp_id=="" || !is_numeric($ecp_id)) { … … 26 31 27 32 // when status changes goto options page 28 header('Location: options-general.php?page=ecp' );33 header('Location: options-general.php?page=ecp'.$ecp_sendpage.''); 29 34 30 35 ?> -
easy-code-placement/trunk/inc/functions.php
r1335072 r1420409 7 7 8 8 // check if role >= option 9 function check_role() {9 function ecp_check_role() { 10 10 global $wpdb; 11 11 $ecp_role = $wpdb->get_var("SELECT option_value FROM ".$wpdb->prefix."ecp_options WHERE option_name = 'role'" ); … … 19 19 // generate options menu 20 20 function ecp_add_page() { 21 if ( check_role() === '1') {21 if (ecp_check_role() === '1') { 22 22 add_options_page( 'Easy Code Placement', 'Easy Code Placement', 'edit_posts', 'ecp', 'ecp' ); 23 23 } … … 27 27 function ecp() { 28 28 include ( dirname( __FILE__ ) . '/page.php' ); 29 }30 31 // add css to ecp page32 add_action('admin_head', 'table_css');33 function table_css() {34 $page = ( isset($_GET['page'] ) ) ? esc_attr( $_GET['page'] ) : false;35 if( 'ecp' != $page )36 return;37 38 echo '<style type="text/css">';39 echo '.wp-list-table .column-name { width: 31%; }';40 echo '.wp-list-table .column-shortcode { width: 45%; }';41 echo '.wp-list-table .column-action { width: 24%; }';42 echo '</style>';43 29 } 44 30 … … 91 77 } 92 78 93 // create options table 94 function render_ecp_table(){ 95 $ecp_options_table = new ecp_table(); 96 $ecp_options_table->prepare_items(); 97 $ecp_options_table->display(); 98 } 99 100 // update to 3.1.1 79 // update to 3.2 101 80 function ecp_update(){ 102 81 // multiside update … … 107 86 foreach ($blogids as $blogid) { 108 87 switch_to_blog($blogid); 109 $wpdb->query("ALTER TABLE ".$wpdb->prefix."ecp_ options MODIFY COLUMN option_value varchar(20)");110 $wpdb->query(" UPDATE ".$wpdb->prefix."ecp_data SET version='3.1.1'");111 $wpdb-> insert($wpdb->prefix.'ecp_options', array( 'option_name' => 'role','option_value' => 'manage_options'));112 $wpdb->update($wpdb->prefix.'ecp_options', array( 'option_value' => '3. 1.1' ), array( 'option_name' => 'version' ));88 $wpdb->query("ALTER TABLE ".$wpdb->prefix."ecp_data ADD COLUMN added TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER status"); 89 $wpdb->query("ALTER TABLE ".$wpdb->prefix."ecp_data ADD COLUMN changed TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER added"); 90 $wpdb->query("UPDATE ".$wpdb->prefix."ecp_data SET version='3.2'"); 91 $wpdb->update($wpdb->prefix.'ecp_options', array( 'option_value' => '3.2' ), array( 'option_name' => 'version' )); 113 92 } 114 93 switch_to_blog($blog); … … 116 95 // single update 117 96 global $wpdb; 118 $wpdb->query("ALTER TABLE ".$wpdb->prefix."ecp_options MODIFY COLUMN option_value varchar(20)");119 $wpdb->query("UPDATE ".$wpdb->prefix."ecp_data SET version='3.1.1'");120 $wpdb->insert($wpdb->prefix.'ecp_options', array( 'option_name' => 'role','option_value' => 'manage_options'));121 $wpdb->update($wpdb->prefix.'ecp_options', array( 'option_value' => '3.1.1' ), array( 'option_name' => 'version' ));97 $wpdb->query("ALTER TABLE ".$wpdb->prefix."ecp_data ADD COLUMN added TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER status"); 98 $wpdb->query("ALTER TABLE ".$wpdb->prefix."ecp_data ADD COLUMN changed TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00' AFTER added"); 99 $wpdb->query("UPDATE ".$wpdb->prefix."ecp_data SET version='3.2'"); 100 $wpdb->update($wpdb->prefix.'ecp_options', array( 'option_value' => '3.2' ), array( 'option_name' => 'version' )); 122 101 } 123 102 } … … 129 108 if (! is_admin()) { 130 109 return; 131 } elseif ($ecp_options_version === '3. 1.1') {110 } elseif ($ecp_options_version === '3.2') { 132 111 return; 133 112 } else { -
easy-code-placement/trunk/inc/install.php
r1334958 r1420409 12 12 `shortcode` varchar(55) COLLATE utf8_unicode_ci NOT NULL, 13 13 `status` int NOT NULL, 14 `added` TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00', 15 `changed` TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00', 14 16 `version` varchar(10) COLLATE utf8_unicode_ci NOT NULL 15 17 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1"; … … 30 32 // multiside or single installation? 31 33 function ecp_net_inst($networkwide) { 32 global $wpdb; 33 // multiside installation 34 if (is_multisite() && $networkwide) { 35 $blog = $wpdb->blogid; 36 $blogids = $wpdb->get_col("SELECT blog_id FROM $wpdb->blogs"); 37 foreach ($blogids as $blogid) { 38 switch_to_blog($blogid); 39 ecp_install(); 34 // check if an installation already exist 35 global $wpdb; 36 $ecp_find = $wpdb->prefix.'ecp_options'; 37 if($wpdb->get_var("SHOW TABLES LIKE '$ecp_find'") != $ecp_find) { 38 // multiside installation 39 if (is_multisite() && $networkwide) { 40 $blog = $wpdb->blogid; 41 $blogids = $wpdb->get_col("SELECT blog_id FROM $wpdb->blogs"); 42 foreach ($blogids as $blogid) { 43 switch_to_blog($blogid); 44 ecp_install(); 45 } 46 switch_to_blog($blog); 47 } else { 48 // single installation 49 ecp_install(); 40 50 } 41 switch_to_blog($blog);42 } else {43 // single installation44 ecp_install();45 51 } 46 52 } -
easy-code-placement/trunk/inc/page.php
r1335072 r1420409 23 23 include ( dirname( __FILE__ ) . '/system.php' ); 24 24 } else { 25 // when nothing load options page 26 25 // when nothing - load options page 26 include ( dirname( __FILE__ ) . '/content.php' ); 27 } 28 27 29 ?> 28 29 <div class="wrap">30 <table width="100%" border="0" cellspacing="0" cellpadding="0">31 <tr>32 <td width="70%" align="left"><h2>Easy Code Placement - <?php _e('Codes','easy-code-placement'); ?></h2></td>33 <td width="30%" align="right"><input type="button" class="button-secondary" value="<?php _e('System Information','easy-code-placement'); ?>" onClick='document.location.href="<?php echo admin_url('options-general.php?page=ecp&load=system');?>"'></td>34 </tr>35 </table>36 37 <?php render_ecp_table(); ?>38 39 <input type="button" class="button-primary" value="<?php _e('Add New Code','easy-code-placement'); ?>" onClick='document.location.href="<?php echo admin_url('options-general.php?page=ecp&load=add');?>"'> <input type="button" class="button-primary" value="<?php _e('Settings','easy-code-placement'); ?>" onClick='document.location.href="<?php echo admin_url('options-general.php?page=ecp&load=settings');?>"'>40 41 <table width="100%" border="0" cellspacing="0" cellpadding="6">42 <tr>43 <td width="600px" align="left"><?php _e('If you want to thank the developer for this free Plugin, you are welcome to make a donation via PayPal (you don\'t need a PayPal account to make the donation).','easy-code-placement'); ?></td>44 <td><form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_blank">45 <input type="hidden" name="cmd" value="_s-xclick">46 <input type="hidden" name="hosted_button_id" value="2X2EH5MYGPLL4">47 <input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG_global.gif" border="0" name="submit" alt="PayPal – The safer, easier way to pay online.">48 <img alt="" border="0" src="https://www.paypalobjects.com/de_DE/i/scr/pixel.gif" width="1" height="1"></form>49 </td>50 </tr>51 </table>52 53 </div>54 55 <?php56 }57 ?> -
easy-code-placement/trunk/inc/settings.php
r1335072 r1420409 8 8 // secure post data and set variables 9 9 $_POST = stripslashes_deep ($_POST); 10 $t_ecp_per page = $_POST['perpage'];10 $t_ecp_per_page = $_POST['perpage']; 11 11 $t_ecp_role = $_POST['role']; 12 12 13 if ($t_ecp_per page == "") {13 if ($t_ecp_per_page == "") { 14 14 // when perpage is empty 15 15 $ecp_error = __('The Option "Codes per Page" must be filled in', 'easy-code-placement'); … … 19 19 } 20 20 21 if (!is_numeric($t_ecp_per page)) {21 if (!is_numeric($t_ecp_per_page)) { 22 22 // when perpage not a number 23 23 $ecp_error = __('The Value for the Option "Codes per Page" must be numeric', 'easy-code-placement'); … … 27 27 } 28 28 29 $wpdb->update($wpdb->prefix.'ecp_options', array('option_value'=>$t_ecp_per page), array('option_name'=>'perpage'));29 $wpdb->update($wpdb->prefix.'ecp_options', array('option_value'=>$t_ecp_per_page), array('option_name'=>'perpage')); 30 30 $wpdb->update($wpdb->prefix.'ecp_options', array('option_value'=>$t_ecp_role), array('option_name'=>'role')); 31 31 … … 76 76 <?php 77 77 global $wpdb; 78 $ per_page = $wpdb->get_var("SELECT option_value FROM ".$wpdb->prefix."ecp_options WHERE option_name = 'perpage'");78 $ecp_per_page = $wpdb->get_var("SELECT option_value FROM ".$wpdb->prefix."ecp_options WHERE option_name = 'perpage'"); 79 79 ?> 80 <input type="text" name="perpage" value="<?php echo $ per_page; ?>" size="10" maxlength="2">80 <input type="text" name="perpage" value="<?php echo $ecp_per_page; ?>" size="10" maxlength="2"> 81 81 </td> 82 82 </tr> -
easy-code-placement/trunk/inc/system.php
r1335072 r1420409 74 74 } else { 75 75 echo $ecp_options_role; 76 } 77 ?> 78 </td> 79 </tr> 80 <tr> 81 <td><?php _e('Codes per Page','easy-code-placement'); ?></td> 82 <td><?php 83 global $wpdb; 84 $ecp_per_page = $wpdb->get_var("SELECT option_value FROM ".$wpdb->prefix."ecp_options WHERE option_name = 'perpage'"); 85 if ($ecp_per_page === '') { 86 _e('Error','easy-code-placement'); 87 } else { 88 echo $ecp_per_page; 76 89 } 77 90 ?> -
easy-code-placement/trunk/lang/easy-code-placement-de_DE.po
r1335072 r1420409 1 1 msgid "" 2 2 msgstr "" 3 "Project-Id-Version: Easy Code Placement - for any Code you want v3.1\n"3 "Project-Id-Version: Easy Code Placement\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2016-01-24 18:22+0100\n" 6 "PO-Revision-Date: 2016-01-24 18:22+0100\n" 7 "Last-Translator: wassereimer <[email protected]>\n" 8 "Language-Team: Jens Herdy\n" 9 "Language: de\n" 5 "POT-Creation-Date: Sun Jan 24 2016 18:22:46 GMT+0100 (Mitteleuropäische " 6 "Zeit)\n" 7 "PO-Revision-Date: Thu May 19 2016 17:12:26 GMT+0200 (Mitteleuropäische " 8 "Sommerzeit)\n" 9 "Last-Translator: Jens Herdy <[email protected]>\n" 10 "Language-Team: \n" 11 "Language: German\n" 12 "Plural-Forms: nplurals=2; plural=n != 1\n" 10 13 "MIME-Version: 1.0\n" 11 14 "Content-Type: text/plain; charset=UTF-8\n" 12 15 "Content-Transfer-Encoding: 8bit\n" 13 "Plural-Forms: nplurals=2; plural=n != 1;\n"14 16 "X-Poedit-SourceCharset: UTF-8\n" 15 "X-Generator: Poedit 1.8.6\n"17 "X-Generator: Loco - https://localise.biz/\n" 16 18 "X-Poedit-Basepath: .\n" 17 "X-Poedit-KeywordsList: __;_e;esc_attr__;_n:1,2\n" 19 "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;" 20 "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;" 21 "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;" 22 "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;" 23 "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n" 18 24 "X-Loco-Target-Locale: de_DE\n" 19 "X-Poedit-SearchPath-0: ..\n" 20 21 #: ../inc/actions/add.php:17 ../inc/actions/add.php:71 22 #: ../inc/actions/edit.php:69 23 msgid "A maximum of 30 Characters is allowed" 24 msgstr "Maximal 30 Zeichen sind erlaubt" 25 26 #: ../inc/actions/add.php:25 27 msgid "Special Characters are not allowed in the Code Name" 28 msgstr "Sonderzeichen sind im Code Namen nicht erlaubt" 29 30 #: ../inc/actions/add.php:33 31 msgid "The Code Name and / or the Code must be filled in" 32 msgstr "Der Code Name und / oder der Code müssen ausgefüllt werden" 33 34 #: ../inc/actions/add.php:42 35 msgid "The Code Name already exist - It must be uniqe" 36 msgstr "Der Name existiert bereits - Er muss einmalig sein" 37 38 #: ../inc/actions/add.php:59 39 msgid "New Code" 40 msgstr "Code hinzufügen" 41 42 #: ../inc/actions/add.php:65 ../inc/actions/edit.php:62 43 #: ../inc/classes/class-ecp-table.php:56 ../inc/settings.php:53 44 #: ../inc/system.php:13 ../inc/system.php:91 ../inc/system.php:131 25 "X-Poedit-SearchPath-0: .." 26 27 #. Name of the plugin 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 50 msgid "« Previous" 51 msgstr "« Vorherige" 52 53 #: ../inc/content.php:29 54 msgid "Next »" 55 msgstr "Nächste »" 56 57 #: ../inc/content.php:87 58 msgid "Added" 59 msgstr "Hinzugefügt" 60 61 #: ../inc/content.php:87 62 msgid "Modified" 63 msgstr "Verändert" 64 65 #: ../inc/content.php:87 66 msgid "Info" 67 msgstr "Info" 68 69 #: ../inc/error.php:2 ../inc/error.php:7 ../inc/system.php:30 ../inc/system.php: 70 #: 60 ../inc/system.php:73 ../inc/system.php:86 ../inc/system.php:115 .. 71 #: inc/system.php:125 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 89 msgid "Settings" 90 msgstr "Einstellungen" 91 92 #: ../inc/settings.php:53 ../inc/system.php:13 ../inc/system.php:104 .. 93 #: inc/system.php:144 ../inc/content.php:51 ../inc/actions/add.php:65 .. 94 #: inc/actions/edit.php:67 45 95 msgid "Name" 46 96 msgstr "Name" 47 97 48 #: ../inc/actions/add.php:69 ../inc/actions/edit.php:67 49 msgid "Only Letters and Numbers are allowed" 50 msgstr "Nur Buchstaben und Zahlen sind erlaubt" 51 52 #: ../inc/actions/add.php:70 ../inc/actions/edit.php:68 53 msgid "Instead of Whitesspaces use Underlines" 54 msgstr "Anstelle von Leerzeichen sind Unterstriche zu benutzen" 55 56 #: ../inc/actions/add.php:74 ../inc/actions/edit.php:72 57 msgid "Code" 58 msgstr "Code" 59 60 #: ../inc/actions/add.php:80 ../inc/actions/edit.php:78 61 msgid "Alignment" 62 msgstr "Ausrichtung" 63 64 #: ../inc/actions/add.php:84 ../inc/actions/edit.php:82 65 #: ../inc/classes/class-ecp-table.php:23 98 #: ../inc/settings.php:54 ../inc/system.php:14 ../inc/system.php:105 .. 99 #: inc/system.php:145 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 132 msgid "System Information" 133 msgstr "System Informationen" 134 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 66 240 msgid "None" 67 241 msgstr "Keine" 68 242 69 #: ../inc/actions/add.php:85 ../inc/actions/edit.php:83 70 #: ../inc/classes/class-ecp-table.php:25 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 71 248 msgid "Left" 72 249 msgstr "Links" 73 250 74 #: ../inc/actions/add.php:86 ../inc/actions/edit.php:84 75 #: ../inc/classes/class-ecp-table.php:27 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 76 256 msgid "Center" 77 257 msgstr "Zentriert" 78 258 79 #: ../inc/actions/add.php:87 ../inc/actions/edit.php:85 80 #: ../inc/classes/class-ecp-table.php:29 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 81 264 msgid "Right" 82 265 msgstr "Rechts" 83 266 84 #: ../inc/actions/add.php:91 ../inc/actions/edit.php:89 85 msgid "Status" 86 msgstr "Status" 87 88 #: ../inc/actions/add.php:95 ../inc/actions/edit.php:93 89 #: ../inc/classes/class-ecp-table.php:18 90 msgid "Online" 91 msgstr "Online" 92 93 #: ../inc/actions/add.php:96 ../inc/actions/edit.php:94 94 #: ../inc/classes/class-ecp-table.php:20 95 msgid "Offline" 96 msgstr "Offline" 97 98 #: ../inc/actions/add.php:100 ../inc/actions/edit.php:98 ../inc/error.php:13 99 #: ../inc/settings.php:86 ../inc/system.php:153 100 msgid "Back" 101 msgstr "Zurück" 102 103 #: ../inc/actions/add.php:100 104 msgid "Add" 105 msgstr "Hinzufügen" 106 107 #: ../inc/actions/alignment.php:12 ../inc/actions/delete.php:11 108 #: ../inc/actions/edit.php:17 ../inc/actions/edit.php:46 109 #: ../inc/actions/status.php:12 110 msgid "Modifying of the ID is not allowed" 111 msgstr "Das verändern der ID ist nicht erlaubt" 112 113 #: ../inc/actions/alignment.php:18 114 msgid "" 115 "Modifying the Alignment to something else than 0, 1, 2 or 3 is not allowed" 116 msgstr "" 117 "Das verändern der Ausrichtung zu etwas anderem als 0, 1, 2 oder 3 ist nicht " 118 "erlaubt" 119 120 #: ../inc/actions/edit.php:25 121 msgid "The Code must be filled in" 122 msgstr "Es muss ein Code eingegeben werden" 123 124 #: ../inc/actions/edit.php:56 125 msgid "Edit Code" 126 msgstr "Code bearbeiten" 127 128 #: ../inc/actions/edit.php:98 ../inc/settings.php:86 129 msgid "Save" 130 msgstr "Speichern" 131 132 #: ../inc/actions/status.php:18 133 msgid "Modifying of the Status to something else than 1 or 2 is not allowed" 134 msgstr "" 135 "Das verändern des Status zu etwas anderem als 1 oder 2 ist nicht erlaubt" 136 137 #: ../inc/classes/class-ecp-table.php:18 138 msgid "Status is Online - Click to change" 139 msgstr "Status ist Online - Klicke um dies zu ändern" 140 141 #: ../inc/classes/class-ecp-table.php:20 142 msgid "Status is Offline - Click to change" 143 msgstr "Status ist Offline - Klicke um dies zu ändern" 144 145 #: ../inc/classes/class-ecp-table.php:23 146 msgid "No Alignment - Click to change" 147 msgstr "Keine Ausrichtung - Klicke um dies zu ändern" 148 149 #: ../inc/classes/class-ecp-table.php:25 150 msgid "Left Alignment - Click to change" 151 msgstr "Linke Ausrichtung - Klicke um dies zu ändern" 152 153 #: ../inc/classes/class-ecp-table.php:27 154 msgid "Center Alignment - Click to change" 155 msgstr "Zentrierte Ausrichtung - Klicke um dies zu ändern" 156 157 #: ../inc/classes/class-ecp-table.php:29 158 msgid "Right Alignment - Click to change" 159 msgstr "Rechte Ausrichtung - Klicke um dies zu ändern" 160 161 #: ../inc/classes/class-ecp-table.php:31 267 #: ../inc/content.php:85 ../inc/content.php:85 162 268 msgid "Edit" 163 269 msgstr "Bearbeiten" 164 270 165 #: ../inc/c lasses/class-ecp-table.php:32271 #: ../inc/content.php:86 ../inc/content.php:86 166 272 msgid "Delete" 167 273 msgstr "Löschen" 168 274 169 #: ../inc/classes/class-ecp-table.php:57 170 msgid "Shortcode" 171 msgstr "Shortcode" 172 173 #: ../inc/classes/class-ecp-table.php:58 174 msgid "Action" 175 msgstr "Aktion" 176 177 #: ../inc/classes/class-ecp-table.php:70 275 #: ../inc/content.php:93 178 276 msgid "No Code found - Click \"Add New Code\" to add one." 179 msgstr "" 180 "Kein Code gefunden - Klick auf \"Neuen Code hinzufügen\" um einen " 181 "hinzuzufügen." 182 183 #: ../inc/classes/class-ecp-tables.php:522 184 #: ../inc/classes/class-ecp-tables.php:937 185 #, php-format 186 msgid "1 Code" 187 msgid_plural "%s Codes" 188 msgstr[0] "1 Code" 189 msgstr[1] "%s Codes" 190 191 #: ../inc/classes/class-ecp-tables.php:540 192 msgid "Go to the first page" 193 msgstr "Gehe zur ersten Seite" 194 195 #: ../inc/classes/class-ecp-tables.php:547 196 msgid "Go to the previous page" 197 msgstr "Gehe zur vorigen Seite" 198 199 #: ../inc/classes/class-ecp-tables.php:556 200 msgid "Current page" 201 msgstr "Aktuelle Seite" 202 203 #: ../inc/classes/class-ecp-tables.php:562 204 #, php-format 205 msgid "%1$s of %2$s" 206 msgstr "%1$s von %2$s" 207 208 #: ../inc/classes/class-ecp-tables.php:566 209 msgid "Go to the next page" 210 msgstr "Gehe zur nächsten Seite" 211 212 #: ../inc/classes/class-ecp-tables.php:573 213 msgid "Go to the last page" 214 msgstr "Gehe zur letzten Seite" 215 216 #: ../inc/error.php:2 ../inc/error.php:7 ../inc/system.php:30 217 #: ../inc/system.php:60 ../inc/system.php:73 ../inc/system.php:102 218 #: ../inc/system.php:112 219 msgid "Error" 220 msgstr "Fehler" 221 222 #: ../inc/page.php:32 223 msgid "Codes" 224 msgstr "Codes" 225 226 #: ../inc/page.php:33 ../inc/system.php:2 227 msgid "System Information" 228 msgstr "System Informationen" 229 230 #: ../inc/page.php:39 277 msgstr "Kein Code gefunden - Klick auf \"Neuen Code hinzufügen\" um einen hinzuzufügen." 278 279 #: ../inc/content.php:105 231 280 msgid "Add New Code" 232 281 msgstr "Neuen Code hinzufügen" 233 282 234 #: ../inc/page.php:39 ../inc/settings.php:41 235 msgid "Settings" 236 msgstr "Einstellungen" 237 238 #: ../inc/page.php:43 283 #: ../inc/content.php:109 239 284 msgid "" 240 285 "If you want to thank the developer for this free Plugin, you are welcome to " … … 246 291 "benötigt)." 247 292 248 #: ../inc/settings.php:15 249 msgid "The Option \"Codes per Page\" must be filled in" 250 msgstr "Die Option \"Codes pro Seite\" muss ausgefüllt werden" 251 252 #: ../inc/settings.php:23 253 msgid "The Value for the Option \"Codes per Page\" must be numeric" 254 msgstr "Die Wert der Option \"Codes pro Seite\" muss numerisch sein" 255 256 #: ../inc/settings.php:54 ../inc/system.php:14 ../inc/system.php:92 257 #: ../inc/system.php:132 258 msgid "Value" 259 msgstr "Wert" 260 261 #: ../inc/settings.php:59 262 msgid "Who can manage this Plugin?" 263 msgstr "Wer kann dieses Plugin verwalten?" 264 265 #: ../inc/settings.php:66 266 msgid "Adminstrators and higher" 267 msgstr "Administratoren und höher" 268 269 #: ../inc/settings.php:67 270 msgid "Editors and higher" 271 msgstr "Redakteure und höher" 272 273 #: ../inc/settings.php:68 274 msgid "Authors and higher" 275 msgstr "Autoren und höher" 276 277 #: ../inc/settings.php:69 278 msgid "Contributors and higher" 279 msgstr "Mitarbeiter und höher" 280 281 #: ../inc/settings.php:74 282 msgid "Codes per Page" 283 msgstr "Codes pro Seite" 284 285 #: ../inc/system.php:5 286 msgid "General" 287 msgstr "Allgemein" 288 289 #: ../inc/system.php:19 290 msgid "PHP Version" 291 msgstr "PHP Version" 292 293 #: ../inc/system.php:23 294 msgid "MySQL Version" 295 msgstr "MySQL Version" 296 297 #: ../inc/system.php:36 298 msgid "WordPress Version" 299 msgstr "WordPress Version" 300 301 #: ../inc/system.php:40 302 msgid "WordPress Network Page" 303 msgstr "WordPress Netzwerk Seite" 304 305 #: ../inc/system.php:43 306 msgid "Yes" 307 msgstr "Ja" 308 309 #: ../inc/system.php:45 310 msgid "No" 311 msgstr "Nein" 312 313 #: ../inc/system.php:51 314 msgid "Plugin Version (File)" 315 msgstr "Plugin Version (Datei)" 316 317 #: ../inc/system.php:55 318 msgid "Plugin Version (Database)" 319 msgstr "Plugin Version (Datenbank)" 320 321 #: ../inc/system.php:68 322 msgid "Role" 323 msgstr "Rolle" 324 325 #: ../inc/system.php:83 326 msgid "Configuration" 327 msgstr "Konfiguration" 328 329 #: ../inc/system.php:97 330 msgid "PHP max. execution time" 331 msgstr "PHP max. Ausführungszeit" 332 333 #: ../inc/system.php:107 334 msgid "PHP memory limit" 335 msgstr "PHP Speicherlimit" 336 337 #: ../inc/system.php:117 338 msgid "WordPress memory limit" 339 msgstr "WordPress Speicherlimit" 340 341 #: ../inc/system.php:123 342 msgid "Paths" 343 msgstr "Pfade" 344 345 #: ../inc/system.php:137 346 msgid "Home URL" 347 msgstr "Home URL" 348 349 #: ../inc/system.php:141 350 msgid "Site URL" 351 msgstr "Seiten URL" 352 353 #: ../inc/system.php:145 354 msgid "Plugin URL" 355 msgstr "Plugin URL" 356 357 #, fuzzy 358 #~ msgid "1 item" 359 #~ msgid_plural "%s items" 360 #~ msgstr[0] "1 code" 361 #~ msgstr[1] "1 code" 362 363 #~ msgid "%s Codes" 364 #~ msgstr "%s Codes" 365 366 #~ msgid "%s items" 367 #~ msgstr "%s codes" 293 #: ../inc/actions/add.php:17 ../inc/actions/add.php:71 ../inc/actions/edit.php:74 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" -
easy-code-placement/trunk/lang/easy-code-placement.pot
r1335072 r1420409 7 7 "POT-Creation-Date: Sun Jan 24 2016 18:22:46 GMT+0100 (Mitteleuropäische " 8 8 "Zeit)\n" 9 "POT-Revision-Date: Sun Jan 24 2016 18:23:23 GMT+0100 (Mitteleuropäische "10 " Zeit)\n"9 "POT-Revision-Date: Thu May 19 2016 17:08:44 GMT+0200 (Mitteleuropäische " 10 "Sommerzeit)\n" 11 11 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 12 12 "Last-Translator: \n" … … 27 27 "X-Generator: Loco - https://localise.biz/" 28 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 29 49 #: ../inc/error.php:2 ../inc/error.php:7 ../inc/system.php:30 ../inc/system.php: 30 #: 60 ../inc/system.php:73 ../inc/system.php:102 ../inc/system.php:112 50 #: 60 ../inc/system.php:73 ../inc/system.php:86 ../inc/system.php:115 .. 51 #: /inc/system.php:125 31 52 msgid "Error" 32 53 msgstr "" 33 54 34 #: ../inc/error.php:13 ../inc/settings.php:86 ../inc/system.php:1 53..35 #: /inc/actions/add.php:100 ../inc/actions/edit.php: 9855 #: ../inc/error.php:13 ../inc/settings.php:86 ../inc/system.php:166 .. 56 #: /inc/actions/add.php:100 ../inc/actions/edit.php:103 36 57 msgid "Back" 37 58 msgstr "" 38 59 39 #: ../inc/page.php:32 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 69 msgid "Settings" 70 msgstr "" 71 72 #: ../inc/settings.php:53 ../inc/system.php:13 ../inc/system.php:104 .. 73 #: /inc/system.php:144 ../inc/content.php:51 ../inc/actions/add.php:65 .. 74 #: /inc/actions/edit.php:67 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 112 msgid "System Information" 113 msgstr "" 114 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 40 196 msgid "Codes" 41 197 msgstr "" 42 198 43 #: ../inc/page.php:33 ../inc/system.php:2 44 msgid "System Information" 45 msgstr "" 46 47 #: ../inc/page.php:39 199 #: ../inc/content.php:52 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 48 280 msgid "Add New Code" 49 281 msgstr "" 50 282 51 #: ../inc/page.php:39 ../inc/settings.php:41 52 msgid "Settings" 53 msgstr "" 54 55 #: ../inc/page.php:43 283 #: ../inc/content.php:109 56 284 msgid "" 57 285 "If you want to thank the developer for this free Plugin, you are welcome to " … … 60 288 msgstr "" 61 289 62 #: ../inc/settings.php:15 63 msgid "The Option \"Codes per Page\" must be filled in" 64 msgstr "" 65 66 #: ../inc/settings.php:23 67 msgid "The Value for the Option \"Codes per Page\" must be numeric" 68 msgstr "" 69 70 #: ../inc/settings.php:53 ../inc/system.php:13 ../inc/system.php:91 ../inc/system. 71 #: php:131 ../inc/actions/add.php:65 ../inc/actions/edit.php:62 .. 72 #: /inc/classes/class-ecp-table.php:56 73 msgid "Name" 74 msgstr "" 75 76 #: ../inc/settings.php:54 ../inc/system.php:14 ../inc/system.php:92 ../inc/system. 77 #: php:132 78 msgid "Value" 79 msgstr "" 80 81 #: ../inc/settings.php:59 82 msgid "Who can manage this Plugin?" 83 msgstr "" 84 85 #: ../inc/settings.php:66 86 msgid "Adminstrators and higher" 87 msgstr "" 88 89 #: ../inc/settings.php:67 90 msgid "Editors and higher" 91 msgstr "" 92 93 #: ../inc/settings.php:68 94 msgid "Authors and higher" 95 msgstr "" 96 97 #: ../inc/settings.php:69 98 msgid "Contributors and higher" 99 msgstr "" 100 101 #: ../inc/settings.php:74 102 msgid "Codes per Page" 103 msgstr "" 104 105 #: ../inc/settings.php:86 ../inc/actions/edit.php:98 106 msgid "Save" 107 msgstr "" 108 109 #: ../inc/system.php:5 110 msgid "General" 111 msgstr "" 112 113 #: ../inc/system.php:19 114 msgid "PHP Version" 115 msgstr "" 116 117 #: ../inc/system.php:23 118 msgid "MySQL Version" 119 msgstr "" 120 121 #: ../inc/system.php:36 122 msgid "WordPress Version" 123 msgstr "" 124 125 #: ../inc/system.php:40 126 msgid "WordPress Network Page" 127 msgstr "" 128 129 #: ../inc/system.php:43 130 msgid "Yes" 131 msgstr "" 132 133 #: ../inc/system.php:45 134 msgid "No" 135 msgstr "" 136 137 #: ../inc/system.php:51 138 msgid "Plugin Version (File)" 139 msgstr "" 140 141 #: ../inc/system.php:55 142 msgid "Plugin Version (Database)" 143 msgstr "" 144 145 #: ../inc/system.php:68 146 msgid "Role" 147 msgstr "" 148 149 #: ../inc/system.php:83 150 msgid "Configuration" 151 msgstr "" 152 153 #: ../inc/system.php:97 154 msgid "PHP max. execution time" 155 msgstr "" 156 157 #: ../inc/system.php:107 158 msgid "PHP memory limit" 159 msgstr "" 160 161 #: ../inc/system.php:117 162 msgid "WordPress memory limit" 163 msgstr "" 164 165 #: ../inc/system.php:123 166 msgid "Paths" 167 msgstr "" 168 169 #: ../inc/system.php:137 170 msgid "Home URL" 171 msgstr "" 172 173 #: ../inc/system.php:141 174 msgid "Site URL" 175 msgstr "" 176 177 #: ../inc/system.php:145 178 msgid "Plugin URL" 179 msgstr "" 180 181 #: ../inc/actions/add.php:17 ../inc/actions/add.php:71 ../inc/actions/edit.php:69 290 #: ../inc/actions/add.php:17 ../inc/actions/add.php:71 ../inc/actions/edit.php:74 182 291 msgid "A maximum of 30 Characters is allowed" 183 292 msgstr "" … … 199 308 msgstr "" 200 309 201 #: ../inc/actions/add.php:69 ../inc/actions/edit.php: 67310 #: ../inc/actions/add.php:69 ../inc/actions/edit.php:72 202 311 msgid "Only Letters and Numbers are allowed" 203 312 msgstr "" 204 313 205 #: ../inc/actions/add.php:70 ../inc/actions/edit.php: 68314 #: ../inc/actions/add.php:70 ../inc/actions/edit.php:73 206 315 msgid "Instead of Whitesspaces use Underlines" 207 316 msgstr "" 208 317 209 #: ../inc/actions/add.php:74 ../inc/actions/edit.php:7 2318 #: ../inc/actions/add.php:74 ../inc/actions/edit.php:77 210 319 msgid "Code" 211 320 msgstr "" 212 321 213 #: ../inc/actions/add.php:80 ../inc/actions/edit.php: 78322 #: ../inc/actions/add.php:80 ../inc/actions/edit.php:83 214 323 msgid "Alignment" 215 324 msgstr "" 216 325 217 #: ../inc/actions/add.php:84 ../inc/actions/edit.php:82 ../inc/classes/class-ecp- 218 #: table.php:23 219 msgid "None" 220 msgstr "" 221 222 #: ../inc/actions/add.php:85 ../inc/actions/edit.php:83 ../inc/classes/class-ecp- 223 #: table.php:25 224 msgid "Left" 225 msgstr "" 226 227 #: ../inc/actions/add.php:86 ../inc/actions/edit.php:84 ../inc/classes/class-ecp- 228 #: table.php:27 229 msgid "Center" 230 msgstr "" 231 232 #: ../inc/actions/add.php:87 ../inc/actions/edit.php:85 ../inc/classes/class-ecp- 233 #: table.php:29 234 msgid "Right" 235 msgstr "" 236 237 #: ../inc/actions/add.php:91 ../inc/actions/edit.php:89 326 #: ../inc/actions/add.php:91 ../inc/actions/edit.php:94 238 327 msgid "Status" 239 msgstr ""240 241 #: ../inc/actions/add.php:95 ../inc/actions/edit.php:93 ../inc/classes/class-ecp-242 #: table.php:18243 msgid "Online"244 msgstr ""245 246 #: ../inc/actions/add.php:96 ../inc/actions/edit.php:94 ../inc/classes/class-ecp-247 #: table.php:20248 msgid "Offline"249 328 msgstr "" 250 329 … … 253 332 msgstr "" 254 333 255 #: ../inc/actions/ alignment.php:12 ../inc/actions/delete.php:11 ..256 #: /inc/actions/edit.php:17 ../inc/actions/edit.php:46 ../inc/actions/status.php:12334 #: ../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 257 336 msgid "Modifying of the ID is not allowed" 258 337 msgstr "" 259 338 260 #: ../inc/actions/alignment.php:18 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 261 352 msgid "Modifying the Alignment to something else than 0, 1, 2 or 3 is not allowed" 262 353 msgstr "" 263 264 #: ../inc/actions/edit.php:25265 msgid "The Code must be filled in"266 msgstr ""267 268 #: ../inc/actions/edit.php:56269 msgid "Edit Code"270 msgstr ""271 272 #: ../inc/actions/status.php:18273 msgid "Modifying of the Status to something else than 1 or 2 is not allowed"274 msgstr ""275 276 #: ../inc/classes/class-ecp-table.php:18277 msgid "Status is Online - Click to change"278 msgstr ""279 280 #: ../inc/classes/class-ecp-table.php:20281 msgid "Status is Offline - Click to change"282 msgstr ""283 284 #: ../inc/classes/class-ecp-table.php:23285 msgid "No Alignment - Click to change"286 msgstr ""287 288 #: ../inc/classes/class-ecp-table.php:25289 msgid "Left Alignment - Click to change"290 msgstr ""291 292 #: ../inc/classes/class-ecp-table.php:27293 msgid "Center Alignment - Click to change"294 msgstr ""295 296 #: ../inc/classes/class-ecp-table.php:29297 msgid "Right Alignment - Click to change"298 msgstr ""299 300 #: ../inc/classes/class-ecp-table.php:31 ../inc/classes/class-ecp-table.php:31301 msgid "Edit"302 msgstr ""303 304 #: ../inc/classes/class-ecp-table.php:32 ../inc/classes/class-ecp-table.php:32305 msgid "Delete"306 msgstr ""307 308 #: ../inc/classes/class-ecp-table.php:57309 msgid "Shortcode"310 msgstr ""311 312 #: ../inc/classes/class-ecp-table.php:58313 msgid "Action"314 msgstr ""315 316 #: ../inc/classes/class-ecp-table.php:70317 msgid "No Code found - Click \"Add New Code\" to add one."318 msgstr ""319 320 #: ../inc/classes/class-ecp-tables.php:522 ../inc/classes/class-ecp-tables.php:937321 #, php-format322 msgid "1 Code"323 msgid_plural "%s Codes"324 msgstr[0] ""325 msgstr[1] ""326 327 #: ../inc/classes/class-ecp-tables.php:540328 msgid "Go to the first page"329 msgstr ""330 331 #: ../inc/classes/class-ecp-tables.php:547332 msgid "Go to the previous page"333 msgstr ""334 335 #: ../inc/classes/class-ecp-tables.php:556336 msgid "Current page"337 msgstr ""338 339 #: ../inc/classes/class-ecp-tables.php:562340 #, php-format341 msgid "%1$s of %2$s"342 msgstr ""343 344 #: ../inc/classes/class-ecp-tables.php:566345 msgid "Go to the next page"346 msgstr ""347 348 #: ../inc/classes/class-ecp-tables.php:573349 msgid "Go to the last page"350 msgstr "" -
easy-code-placement/trunk/readme.txt
r1335072 r1420409 4 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 5 Requires at least: 3.0.1 6 Tested up to: 4. 4.17 Stable tag: 3. 1.16 Tested up to: 4.5.2 7 Stable tag: 3.2 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 83 83 == Changelog == 84 84 85 = 3.2 = 86 * 19.05.2016 87 * Compatibility check for WordPress Version 4.5.2 88 * Fixed a function name that could cause Problems 89 * Fixed an Error when deactivating and reactivating the Plugin 90 * Added a mouse over function to display the Date when a Code was added and last modified 91 * Added the Codes per Page to the System Informations Menu 92 * Updated the German translation 93 * Replaced the WordPress Table Class with a simple and self-written Version 94 95 85 96 = 3.1.1 = 86 97 * 24.01.2016
Note: See TracChangeset
for help on using the changeset viewer.