Changeset 1506547
- Timestamp:
- 10/01/2016 05:01:45 PM (10 years ago)
- Location:
- easy-code-placement/trunk
- Files:
-
- 1 added
- 10 edited
-
easy-code-placement.php (modified) (4 diffs)
-
inc/functions.php (modified) (10 diffs)
-
inc/install.php (modified) (1 diff)
-
lang/easy-code-placement-de_DE.mo (modified) (previous)
-
lang/easy-code-placement-de_DE.po (modified) (3 diffs)
-
lang/easy-code-placement.pot (modified) (4 diffs)
-
readme.txt (modified) (4 diffs)
-
screenshot-4.png (modified) (previous)
-
screenshot-5.png (modified) (previous)
-
screenshot-6.png (modified) (previous)
-
screenshot-7.png (added)
Legend:
- Unmodified
- Added
- Removed
-
easy-code-placement/trunk/easy-code-placement.php
r1501662 r1506547 4 4 * Text Domain: easy-code-placement 5 5 * Domain Path: /lang 6 * Version: 3.2.16 * Version: 4.0 7 7 * Plugin URI: http://www.randnotizen.org/easy-code-placement/ 8 8 * Author: Jens Herdy … … 13 13 14 14 // standards 15 ob_start();16 15 define('ECP_FILE',__FILE__); 17 define('ECP_VERSION',' 3.2.1');16 define('ECP_VERSION','4.0'); 18 17 19 18 // load functions, classes … … 21 20 22 21 // set filters to replace shortcodes 23 add_filter ( 'the_content', 'do_shortcode', 99); 24 add_filter ( 'widget_text', 'do_shortcode', 99); 25 add_filter ( 'the_excerpt', 'do_shortcode', 99); 22 add_filter( 'the_title', 'do_shortcode', 99); 23 add_filter( 'the_content', 'do_shortcode', 99); 24 add_filter( 'widget_title', 'do_shortcode', 99); 25 add_filter( 'widget_text', 'do_shortcode', 99); 26 add_filter( 'the_excerpt', 'do_shortcode', 99); 27 add_filter( 'the_tags', 'do_shortcode', 99); 26 28 27 // set filters to allow php code 28 add_filter ( 'the_content', 'ecp_allow_php', 99); 29 add_filter ( 'widget_text', 'ecp_allow_php', 99); 30 add_filter ( 'the_excerpt', 'ecp_allow_php', 99); 29 // support for plugin All in One SEO Pack 30 add_filter( 'aioseop_title', 'do_shortcode', 99); 31 add_filter( 'aioseop_description', 'do_shortcode', 99); 32 add_filter( 'aioseop_keywords', 'do_shortcode', 99); 33 34 // support for plugin Yoast SEO 35 add_filter( 'wpseo_title', 'do_shortcode', 99); 36 add_filter( 'wpseo_metadesc', 'do_shortcode', 99); 37 add_filter( 'wpseo_metakey', 'do_shortcode', 99); 31 38 32 39 // load languages … … 43 50 add_action( 'admin_menu', 'ecp_add_page'); 44 51 52 // add widget 53 add_action( 'widgets_init', 'ecp_register_widget' ); 54 45 55 ?> -
easy-code-placement/trunk/inc/functions.php
r1501662 r1506547 2 2 3 3 // error reporting for dev 4 // error_reporting(E_ALL);5 // define( 'DIEONDBERROR', true ); // multisite6 // $wpdb->show_errors(); // single site4 //error_reporting(E_ALL); 5 //define( 'DIEONDBERROR', true ); // multisite 6 //$wpdb->show_errors(); // single site 7 7 8 8 // check if role >= option … … 17 17 } 18 18 19 // generate options menu 19 // generate options menu if user is allowed 20 20 function ecp_add_page() { 21 21 if (ecp_check_role() === '1') { … … 34 34 } 35 35 36 // allow php code37 function ecp_allow_php($text) {38 if (strpos($text, '<' . '?') !== false) {39 ob_start();40 eval('?' . '>' . $text);41 $text = ob_get_contents();42 ob_end_clean();43 }44 return $text;45 }46 47 36 // replace shortcode with code 48 37 add_shortcode('ecp','ecp_replace'); … … 50 39 global $wpdb; 51 40 $query = $wpdb->get_results($wpdb->prepare( "SELECT * FROM ".$wpdb->prefix."ecp_data WHERE name=%s" ,$ecp_code)); 52 53 41 if(count($query)>0){ 54 42 foreach ($query as $code_load){ 43 // when status is activ 55 44 if($code_load->status === '1') { 56 // when status is activ 45 // allow php code 46 if (strpos($code_load->code, '<' . '?') !== false) { 47 ob_start(); 48 eval('?' . '>' . $code_load->code); 49 $code_load->code = ob_get_contents(); 50 ob_end_clean(); 51 } 52 // set alignment 57 53 if ($code_load->alignment === '0' OR $code_load->alignment === '') { 58 54 $ecp_output = $code_load->code; … … 65 61 } 66 62 return $ecp_output; 63 // when status is deactive 67 64 } else { 68 // when status is deactive69 65 return ''; 70 66 } … … 77 73 } 78 74 79 // update to 3.2.175 // update to 4.0 80 76 function ecp_update(){ 81 77 // multiside update … … 86 82 foreach ($blogids as $blogid) { 87 83 switch_to_blog($blogid); 84 // if not updated to 3.2.1 still regenerate missing tables in multisite 88 85 ecp_install(); 89 $wpdb->query("UPDATE ".$wpdb->prefix."ecp_data SET version=' 3.2.1'");90 $wpdb->update($wpdb->prefix.'ecp_options', array( 'option_value' => ' 3.2.1' ), array( 'option_name' => 'version' ));86 $wpdb->query("UPDATE ".$wpdb->prefix."ecp_data SET version='4.0'"); 87 $wpdb->update($wpdb->prefix.'ecp_options', array( 'option_value' => '4.0' ), array( 'option_name' => 'version' )); 91 88 } 92 89 switch_to_blog($blog); … … 94 91 // single update 95 92 global $wpdb; 96 $wpdb->query("UPDATE ".$wpdb->prefix."ecp_data SET version=' 3.2.1'");97 $wpdb->update($wpdb->prefix.'ecp_options', array( 'option_value' => ' 3.2.1' ), array( 'option_name' => 'version' ));93 $wpdb->query("UPDATE ".$wpdb->prefix."ecp_data SET version='4.0'"); 94 $wpdb->update($wpdb->prefix.'ecp_options', array( 'option_value' => '4.0' ), array( 'option_name' => 'version' )); 98 95 } 99 96 } … … 103 100 global $wpdb; 104 101 $ecp_options_version = $wpdb->get_var("SELECT option_value FROM ".$wpdb->prefix."ecp_options WHERE option_name = 'version'" ); 102 // check if user is admin 105 103 if (! is_admin()) { 106 104 return; 107 } elseif ($ecp_options_version === '3.2.1') { 105 // check if we use the current version 106 } elseif ($ecp_options_version === '4.0') { 108 107 return; 108 // if user is admin and we have an old version do the update 109 109 } else { 110 110 ecp_update(); … … 113 113 } 114 114 115 // class for widget 116 class ecp_widget extends WP_Widget { 117 // id, name, description 118 function __construct() { 119 parent::__construct( 120 'ecp_widget', 121 __( 'Easy Code Placement', 'easy-code-placement' ), 122 array( 'description' => __( 'Add a Code wherever you want it.', 'easy-code-placement' ), ) 123 ); 124 } 125 // front-end 126 public function widget( $args, $instance ) { 127 // when no code selected output nothing 128 if ( $instance['ecp_code'] === "nothing" ) { 129 echo ''; 130 // otherwise output ecp code 131 } else { 132 if ( array_key_exists('before_widget', $args) ) echo $args['before_widget']; 133 global $wpdb; 134 $ecp_output = ecp_replace($instance['ecp_code']); 135 echo $ecp_output; 136 if ( array_key_exists('after_widget', $args) ) echo $args['after_widget']; 137 } 138 } 139 // back-end 140 public function form( $instance ) { 141 // load selected code er reset var 142 if ( isset( $instance[ 'ecp_code' ] ) ) { 143 $ecp_code = $instance[ 'ecp_code' ]; 144 } 145 else { 146 $ecp_code = 0; 147 } 148 ?> 149 <p> 150 <label for="<?php echo $this->get_field_id( 'ecp_code' ); ?>"><?php _e( 'Code to Display:', 'easy-code-placement' ); ?></label><br> 151 <select id="<?php echo $this->get_field_id( 'ecp_code' ); ?>" name="<?php echo $this->get_field_name( 'ecp_code' ); ?>" style="width:100%;"> 152 <option value="nothing"><?php _e( 'Please select a Code', 'easy-code-placement' ); ?></option> 153 <?php 154 // get codes 155 global $wpdb; 156 $ecp_codes = $wpdb->get_results( "SELECT name FROM {$wpdb->prefix}ecp_data" ); 157 // generate dropdown options 158 foreach( $ecp_codes as $ecp_codeitem ) { 159 $selected = ( $ecp_codeitem->name == $ecp_code ) ? 'selected' : ''; 160 echo '<option value="' . $ecp_codeitem->name . '" ' . $selected . '>' . $ecp_codeitem->name . '</option>'; 161 } 162 ?> 163 </select> 164 </p> 165 <?php 166 } 167 // save selected code in back-end 168 public function update( $new_instance, $old_instance ) { 169 $instance = array(); 170 $instance['ecp_code'] = ( ! empty( $new_instance['ecp_code'] ) ) ? strip_tags( $new_instance['ecp_code'] ) : ''; 171 return $instance; 172 } 173 } 174 175 // register widget 176 function ecp_register_widget() { 177 register_widget( 'ecp_widget' ); 178 } 179 115 180 ?> -
easy-code-placement/trunk/inc/install.php
r1501662 r1506547 24 24 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1"; 25 25 $wpdb->query($ecp_options); 26 // insert data 27 $wpdb-> insert($wpdb->prefix.'ecp_options', array( 'option_name' => 'version','option_value' => ECP_VERSION));28 $wpdb-> insert($wpdb->prefix.'ecp_options', array( 'option_name' => 'perpage','option_value' => '10'));29 $wpdb-> insert($wpdb->prefix.'ecp_options', array( 'option_name' => 'role','option_value' => 'manage_options'));26 // insert data (ignore for updates) 27 $wpdb->query("INSERT IGNORE INTO ".$wpdb->prefix."ecp_options (option_name,option_value) VALUES ('version','".ECP_VERSION."')"); 28 $wpdb->query("INSERT IGNORE INTO ".$wpdb->prefix."ecp_options (option_name,option_value) VALUES ('perpage','10')"); 29 $wpdb->query("INSERT IGNORE INTO ".$wpdb->prefix."ecp_options (option_name,option_value) VALUES ('role','manage_options')"); 30 30 } 31 31 -
easy-code-placement/trunk/lang/easy-code-placement-de_DE.po
r1420409 r1506547 3 3 "Project-Id-Version: Easy Code Placement\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: Sun Jan 24 2016 18:22:46 GMT+0100 (Mitteleuropäische " 6 "Zeit)\n" 7 "PO-Revision-Date: Thu May 19 2016 17:12:26 GMT+0200 (Mitteleuropäische " 8 "Sommerzeit)\n" 5 "POT-Creation-Date: 2016-10-01 17:37+0200\n" 6 "PO-Revision-Date: 2016-10-01 17:40+0200\n" 9 7 "Last-Translator: Jens Herdy <[email protected]>\n" 10 8 "Language-Team: \n" 11 "Language: German\n" 12 "Plural-Forms: nplurals=2; plural=n != 1\n" 9 "Language: de\n" 13 10 "MIME-Version: 1.0\n" 14 11 "Content-Type: text/plain; charset=UTF-8\n" 15 12 "Content-Transfer-Encoding: 8bit\n" 13 "Plural-Forms: nplurals=2; plural=n != 1;\n" 16 14 "X-Poedit-SourceCharset: UTF-8\n" 17 "X-Generator: Loco - https://localise.biz/\n"15 "X-Generator: Poedit 1.8.9\n" 18 16 "X-Poedit-Basepath: .\n" 19 17 "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;" … … 23 21 "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n" 24 22 "X-Loco-Target-Locale: de_DE\n" 25 "X-Poedit-SearchPath-0: .." 26 27 #. Name of the plugin 28 msgid "Easy Code Placement" 29 msgstr "Easy Code Placement" 30 31 #. URI of the plugin 32 msgid "http://www.randnotizen.org/easy-code-placement" 33 msgstr "http://www.randnotizen.org/easy-code-placement" 34 35 #. Author of the plugin 36 msgid "Jens Herdy" 37 msgstr "Jens Herdy" 38 39 #. Author URI of the plugin 40 msgid "http://www.randnotizen.org" 41 msgstr "http://www.randnotizen.org" 42 43 #. Description of the plugin 44 msgid "A great Wordpress Plugin to place ANY Code ANYWHERE you want." 45 msgstr "" 46 "Ein tolles Wordpress Plugin um jeglichen Code dort zu platzieren wo du es " 47 "möchtest." 48 49 #: ../inc/content.php:28 23 "X-Poedit-SearchPath-0: ..\n" 24 25 #: ../inc/actions/add.php:17 ../inc/actions/add.php:71 26 #: ../inc/actions/edit.php:74 27 msgid "A maximum of 30 Characters is allowed" 28 msgstr "Maximal 30 Zeichen sind erlaubt" 29 30 #: ../inc/actions/add.php:25 31 msgid "Special Characters are not allowed in the Code Name" 32 msgstr "Sonderzeichen sind im Code Namen nicht erlaubt" 33 34 #: ../inc/actions/add.php:33 35 msgid "The Code Name and / or the Code must be filled in" 36 msgstr "Der Code Name und / oder der Code müssen ausgefüllt werden" 37 38 #: ../inc/actions/add.php:42 39 msgid "The Code Name already exist - It must be uniqe" 40 msgstr "Der Name existiert bereits - Er muss einmalig sein" 41 42 #: ../inc/actions/add.php:59 43 msgid "New Code" 44 msgstr "Code hinzufügen" 45 46 #: ../inc/actions/add.php:65 ../inc/actions/edit.php:67 ../inc/content.php:45 47 #: ../inc/settings.php:53 ../inc/system.php:13 ../inc/system.php:104 48 #: ../inc/system.php:144 49 msgid "Name" 50 msgstr "Name" 51 52 #: ../inc/actions/add.php:69 ../inc/actions/edit.php:72 53 msgid "Only Letters and Numbers are allowed" 54 msgstr "Nur Buchstaben und Zahlen sind erlaubt" 55 56 #: ../inc/actions/add.php:70 ../inc/actions/edit.php:73 57 msgid "Instead of Whitesspaces use Underlines" 58 msgstr "Anstelle von Leerzeichen sind Unterstriche zu benutzen" 59 60 #: ../inc/actions/add.php:74 ../inc/actions/edit.php:77 61 msgid "Code" 62 msgstr "Code" 63 64 #: ../inc/actions/add.php:80 ../inc/actions/edit.php:83 65 msgid "Alignment" 66 msgstr "Ausrichtung" 67 68 #: ../inc/actions/add.php:84 ../inc/actions/edit.php:87 ../inc/content.php:71 69 msgid "None" 70 msgstr "Keine" 71 72 #: ../inc/actions/add.php:85 ../inc/actions/edit.php:88 ../inc/content.php:73 73 msgid "Left" 74 msgstr "Links" 75 76 #: ../inc/actions/add.php:86 ../inc/actions/edit.php:89 ../inc/content.php:75 77 msgid "Center" 78 msgstr "Zentriert" 79 80 #: ../inc/actions/add.php:87 ../inc/actions/edit.php:90 ../inc/content.php:77 81 msgid "Right" 82 msgstr "Rechts" 83 84 #: ../inc/actions/add.php:91 ../inc/actions/edit.php:94 85 msgid "Status" 86 msgstr "Status" 87 88 #: ../inc/actions/add.php:95 ../inc/actions/edit.php:98 ../inc/content.php:66 89 msgid "Online" 90 msgstr "Online" 91 92 #: ../inc/actions/add.php:96 ../inc/actions/edit.php:99 ../inc/content.php:68 93 msgid "Offline" 94 msgstr "Offline" 95 96 #: ../inc/actions/add.php:100 ../inc/actions/edit.php:103 ../inc/error.php:13 97 #: ../inc/settings.php:86 ../inc/system.php:166 98 msgid "Back" 99 msgstr "Zurück" 100 101 #: ../inc/actions/add.php:100 102 msgid "Add" 103 msgstr "Hinzufügen" 104 105 #: ../inc/actions/alignment.php:17 ../inc/actions/delete.php:11 106 #: ../inc/actions/edit.php:22 ../inc/actions/edit.php:51 107 #: ../inc/actions/status.php:17 108 msgid "Modifying of the ID is not allowed" 109 msgstr "Das verändern der ID ist nicht erlaubt" 110 111 #: ../inc/actions/alignment.php:23 112 msgid "" 113 "Modifying the Alignment to something else than 0, 1, 2 or 3 is not allowed" 114 msgstr "" 115 "Das verändern der Ausrichtung zu etwas anderem als 0, 1, 2 oder 3 ist nicht " 116 "erlaubt" 117 118 #: ../inc/actions/edit.php:30 119 msgid "The Code must be filled in" 120 msgstr "Es muss ein Code eingegeben werden" 121 122 #: ../inc/actions/edit.php:61 123 msgid "Edit Code" 124 msgstr "Code bearbeiten" 125 126 #: ../inc/actions/edit.php:103 ../inc/settings.php:86 127 msgid "Save" 128 msgstr "Speichern" 129 130 #: ../inc/actions/status.php:23 131 msgid "Modifying of the Status to something else than 1 or 2 is not allowed" 132 msgstr "" 133 "Das verändern des Status zu etwas anderem als 1 oder 2 ist nicht erlaubt" 134 135 #: ../inc/content.php:22 50 136 msgid "« Previous" 51 137 msgstr "« Vorherige" 52 138 53 #: ../inc/content.php:2 9139 #: ../inc/content.php:23 54 140 msgid "Next »" 55 141 msgstr "Nächste »" 56 142 57 #: ../inc/content.php:87 143 #: ../inc/content.php:34 144 msgid "Codes" 145 msgstr "Codes" 146 147 #: ../inc/content.php:46 148 msgid "Shortcode" 149 msgstr "Shortcode" 150 151 #: ../inc/content.php:47 152 msgid "Action" 153 msgstr "Aktion" 154 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 164 msgid "No Alignment - Click to change" 165 msgstr "Keine Ausrichtung - Klicke um dies zu ändern" 166 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 180 msgid "Edit" 181 msgstr "Bearbeiten" 182 183 #: ../inc/content.php:80 184 msgid "Delete" 185 msgstr "Löschen" 186 187 #: ../inc/content.php:81 58 188 msgid "Added" 59 189 msgstr "Hinzugefügt" 60 190 61 #: ../inc/content.php:8 7191 #: ../inc/content.php:81 62 192 msgid "Modified" 63 193 msgstr "Verändert" 64 194 65 #: ../inc/content.php:8 7195 #: ../inc/content.php:81 66 196 msgid "Info" 67 197 msgstr "Info" 68 198 69 #: ../inc/error.php:2 ../inc/error.php:7 ../inc/system.php:30 ../inc/system.php: 70 #: 60 ../inc/system.php:73 ../inc/system.php:86 ../inc/system.php:115 .. 71 #: inc/system.php:125 72 msgid "Error" 73 msgstr "Fehler" 74 75 #: ../inc/error.php:13 ../inc/settings.php:86 ../inc/system.php:166 .. 76 #: inc/actions/add.php:100 ../inc/actions/edit.php:103 77 msgid "Back" 78 msgstr "Zurück" 79 80 #: ../inc/settings.php:15 81 msgid "The Option \"Codes per Page\" must be filled in" 82 msgstr "Die Option \"Codes pro Seite\" muss ausgefüllt werden" 83 84 #: ../inc/settings.php:23 85 msgid "The Value for the Option \"Codes per Page\" must be numeric" 86 msgstr "Die Wert der Option \"Codes pro Seite\" muss numerisch sein" 87 88 #: ../inc/settings.php:41 ../inc/content.php:105 199 #: ../inc/content.php:87 200 msgid "No Code found - Click \"Add New Code\" to add one." 201 msgstr "" 202 "Kein Code gefunden - Klick auf \"Neuen Code hinzufügen\" um einen " 203 "hinzuzufügen." 204 205 #: ../inc/content.php:99 206 msgid "Add New Code" 207 msgstr "Neuen Code hinzufügen" 208 209 #: ../inc/content.php:99 ../inc/settings.php:41 89 210 msgid "Settings" 90 211 msgstr "Einstellungen" 91 212 92 #: ../inc/settings.php:53 ../inc/system.php:13 ../inc/system.php:104 .. 93 #: inc/system.php:144 ../inc/content.php:51 ../inc/actions/add.php:65 .. 94 #: inc/actions/edit.php:67 95 msgid "Name" 96 msgstr "Name" 97 98 #: ../inc/settings.php:54 ../inc/system.php:14 ../inc/system.php:105 .. 99 #: inc/system.php:145 100 msgid "Value" 101 msgstr "Wert" 102 103 #: ../inc/settings.php:59 104 msgid "Who can manage this Plugin?" 105 msgstr "Wer kann dieses Plugin verwalten?" 106 107 #: ../inc/settings.php:66 108 msgid "Adminstrators and higher" 109 msgstr "Administratoren und höher" 110 111 #: ../inc/settings.php:67 112 msgid "Editors and higher" 113 msgstr "Redakteure und höher" 114 115 #: ../inc/settings.php:68 116 msgid "Authors and higher" 117 msgstr "Autoren und höher" 118 119 #: ../inc/settings.php:69 120 msgid "Contributors and higher" 121 msgstr "Mitarbeiter und höher" 122 123 #: ../inc/settings.php:74 ../inc/system.php:81 124 msgid "Codes per Page" 125 msgstr "Codes pro Seite" 126 127 #: ../inc/settings.php:86 ../inc/actions/edit.php:103 128 msgid "Save" 129 msgstr "Speichern" 130 131 #: ../inc/system.php:2 ../inc/content.php:105 213 #: ../inc/content.php:99 ../inc/system.php:2 132 214 msgid "System Information" 133 215 msgstr "System Informationen" 134 216 135 #: ../inc/system.php:5 136 msgid "General" 137 msgstr "Allgemein" 138 139 #: ../inc/system.php:19 140 msgid "PHP Version" 141 msgstr "PHP Version" 142 143 #: ../inc/system.php:23 144 msgid "MySQL Version" 145 msgstr "MySQL Version" 146 147 #: ../inc/system.php:36 148 msgid "WordPress Version" 149 msgstr "WordPress Version" 150 151 #: ../inc/system.php:40 152 msgid "WordPress Network Page" 153 msgstr "WordPress Netzwerk Seite" 154 155 #: ../inc/system.php:43 156 msgid "Yes" 157 msgstr "Ja" 158 159 #: ../inc/system.php:45 160 msgid "No" 161 msgstr "Nein" 162 163 #: ../inc/system.php:51 164 msgid "Plugin Version (File)" 165 msgstr "Plugin Version (Datei)" 166 167 #: ../inc/system.php:55 168 msgid "Plugin Version (Database)" 169 msgstr "Plugin Version (Datenbank)" 170 171 #: ../inc/system.php:68 172 msgid "Role" 173 msgstr "Rolle" 174 175 #: ../inc/system.php:96 176 msgid "Configuration" 177 msgstr "Konfiguration" 178 179 #: ../inc/system.php:110 180 msgid "PHP max. execution time" 181 msgstr "PHP max. Ausführungszeit" 182 183 #: ../inc/system.php:120 184 msgid "PHP memory limit" 185 msgstr "PHP Speicherlimit" 186 187 #: ../inc/system.php:130 188 msgid "WordPress memory limit" 189 msgstr "WordPress Speicherlimit" 190 191 #: ../inc/system.php:136 192 msgid "Paths" 193 msgstr "Pfade" 194 195 #: ../inc/system.php:150 196 msgid "Home URL" 197 msgstr "Home URL" 198 199 #: ../inc/system.php:154 200 msgid "Site URL" 201 msgstr "Seiten URL" 202 203 #: ../inc/system.php:158 204 msgid "Plugin URL" 205 msgstr "Plugin URL" 206 207 #: ../inc/content.php:40 208 msgid "Codes" 209 msgstr "Codes" 210 211 #: ../inc/content.php:52 212 msgid "Shortcode" 213 msgstr "Shortcode" 214 215 #: ../inc/content.php:53 216 msgid "Action" 217 msgstr "Aktion" 218 219 #: ../inc/content.php:72 220 msgid "Status is Online - Click to change" 221 msgstr "Status ist Online - Klicke um dies zu ändern" 222 223 #: ../inc/content.php:72 ../inc/actions/add.php:95 ../inc/actions/edit.php:98 224 msgid "Online" 225 msgstr "Online" 226 227 #: ../inc/content.php:74 228 msgid "Status is Offline - Click to change" 229 msgstr "Status ist Offline - Klicke um dies zu ändern" 230 231 #: ../inc/content.php:74 ../inc/actions/add.php:96 ../inc/actions/edit.php:99 232 msgid "Offline" 233 msgstr "Offline" 234 235 #: ../inc/content.php:77 236 msgid "No Alignment - Click to change" 237 msgstr "Keine Ausrichtung - Klicke um dies zu ändern" 238 239 #: ../inc/content.php:77 ../inc/actions/add.php:84 ../inc/actions/edit.php:87 240 msgid "None" 241 msgstr "Keine" 242 243 #: ../inc/content.php:79 244 msgid "Left Alignment - Click to change" 245 msgstr "Linke Ausrichtung - Klicke um dies zu ändern" 246 247 #: ../inc/content.php:79 ../inc/actions/add.php:85 ../inc/actions/edit.php:88 248 msgid "Left" 249 msgstr "Links" 250 251 #: ../inc/content.php:81 252 msgid "Center Alignment - Click to change" 253 msgstr "Zentrierte Ausrichtung - Klicke um dies zu ändern" 254 255 #: ../inc/content.php:81 ../inc/actions/add.php:86 ../inc/actions/edit.php:89 256 msgid "Center" 257 msgstr "Zentriert" 258 259 #: ../inc/content.php:83 260 msgid "Right Alignment - Click to change" 261 msgstr "Rechte Ausrichtung - Klicke um dies zu ändern" 262 263 #: ../inc/content.php:83 ../inc/actions/add.php:87 ../inc/actions/edit.php:90 264 msgid "Right" 265 msgstr "Rechts" 266 267 #: ../inc/content.php:85 ../inc/content.php:85 268 msgid "Edit" 269 msgstr "Bearbeiten" 270 271 #: ../inc/content.php:86 ../inc/content.php:86 272 msgid "Delete" 273 msgstr "Löschen" 274 275 #: ../inc/content.php:93 276 msgid "No Code found - Click \"Add New Code\" to add one." 277 msgstr "Kein Code gefunden - Klick auf \"Neuen Code hinzufügen\" um einen hinzuzufügen." 278 279 #: ../inc/content.php:105 280 msgid "Add New Code" 281 msgstr "Neuen Code hinzufügen" 282 283 #: ../inc/content.php:109 217 #: ../inc/content.php:103 284 218 msgid "" 285 219 "If you want to thank the developer for this free Plugin, you are welcome to " … … 291 225 "benötigt)." 292 226 293 #: ../inc/actions/add.php:17 ../inc/actions/add.php:71 ../inc/actions/edit.php:74 294 msgid "A maximum of 30 Characters is allowed" 295 msgstr "Maximal 30 Zeichen sind erlaubt" 296 297 #: ../inc/actions/add.php:25 298 msgid "Special Characters are not allowed in the Code Name" 299 msgstr "Sonderzeichen sind im Code Namen nicht erlaubt" 300 301 #: ../inc/actions/add.php:33 302 msgid "The Code Name and / or the Code must be filled in" 303 msgstr "Der Code Name und / oder der Code müssen ausgefüllt werden" 304 305 #: ../inc/actions/add.php:42 306 msgid "The Code Name already exist - It must be uniqe" 307 msgstr "Der Name existiert bereits - Er muss einmalig sein" 308 309 #: ../inc/actions/add.php:59 310 msgid "New Code" 311 msgstr "Code hinzufügen" 312 313 #: ../inc/actions/add.php:69 ../inc/actions/edit.php:72 314 msgid "Only Letters and Numbers are allowed" 315 msgstr "Nur Buchstaben und Zahlen sind erlaubt" 316 317 #: ../inc/actions/add.php:70 ../inc/actions/edit.php:73 318 msgid "Instead of Whitesspaces use Underlines" 319 msgstr "Anstelle von Leerzeichen sind Unterstriche zu benutzen" 320 321 #: ../inc/actions/add.php:74 ../inc/actions/edit.php:77 322 msgid "Code" 323 msgstr "Code" 324 325 #: ../inc/actions/add.php:80 ../inc/actions/edit.php:83 326 msgid "Alignment" 327 msgstr "Ausrichtung" 328 329 #: ../inc/actions/add.php:91 ../inc/actions/edit.php:94 330 msgid "Status" 331 msgstr "Status" 332 333 #: ../inc/actions/add.php:100 334 msgid "Add" 335 msgstr "Hinzufügen" 336 337 #: ../inc/actions/edit.php:22 ../inc/actions/edit.php:51 ../inc/actions/delete. 338 #: php:11 ../inc/actions/status.php:17 ../inc/actions/alignment.php:17 339 msgid "Modifying of the ID is not allowed" 340 msgstr "Das verändern der ID ist nicht erlaubt" 341 342 #: ../inc/actions/edit.php:30 343 msgid "The Code must be filled in" 344 msgstr "Es muss ein Code eingegeben werden" 345 346 #: ../inc/actions/edit.php:61 347 msgid "Edit Code" 348 msgstr "Code bearbeiten" 349 350 #: ../inc/actions/status.php:23 351 msgid "Modifying of the Status to something else than 1 or 2 is not allowed" 352 msgstr "Das verändern des Status zu etwas anderem als 1 oder 2 ist nicht erlaubt" 353 354 #: ../inc/actions/alignment.php:23 355 msgid "Modifying the Alignment to something else than 0, 1, 2 or 3 is not allowed" 356 msgstr "" 357 "Das verändern der Ausrichtung zu etwas anderem als 0, 1, 2 oder 3 ist nicht " 358 "erlaubt" 227 #: ../inc/error.php:2 ../inc/error.php:7 ../inc/system.php:30 228 #: ../inc/system.php:60 ../inc/system.php:73 ../inc/system.php:86 229 #: ../inc/system.php:115 ../inc/system.php:125 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:150 242 msgid "Code to Display:" 243 msgstr "Code der angezeigt werden soll:" 244 245 #: ../inc/functions.php:152 246 msgid "Please select a Code" 247 msgstr "Bitte wähle einen Code aus" 248 249 #: ../inc/settings.php:15 250 msgid "The Option \"Codes per Page\" must be filled in" 251 msgstr "Die Option \"Codes pro Seite\" muss ausgefüllt werden" 252 253 #: ../inc/settings.php:23 254 msgid "The Value for the Option \"Codes per Page\" must be numeric" 255 msgstr "Die Wert der Option \"Codes pro Seite\" muss numerisch sein" 256 257 #: ../inc/settings.php:54 ../inc/system.php:14 ../inc/system.php:105 258 #: ../inc/system.php:145 259 msgid "Value" 260 msgstr "Wert" 261 262 #: ../inc/settings.php:59 263 msgid "Who can manage this Plugin?" 264 msgstr "Wer kann dieses Plugin verwalten?" 265 266 #: ../inc/settings.php:66 267 msgid "Adminstrators and higher" 268 msgstr "Administratoren und höher" 269 270 #: ../inc/settings.php:67 271 msgid "Editors and higher" 272 msgstr "Redakteure und höher" 273 274 #: ../inc/settings.php:68 275 msgid "Authors and higher" 276 msgstr "Autoren und höher" 277 278 #: ../inc/settings.php:69 279 msgid "Contributors and higher" 280 msgstr "Mitarbeiter und höher" 281 282 #: ../inc/settings.php:74 ../inc/system.php:81 283 msgid "Codes per Page" 284 msgstr "Codes pro Seite" 285 286 #: ../inc/system.php:5 287 msgid "General" 288 msgstr "Allgemein" 289 290 #: ../inc/system.php:19 291 msgid "PHP Version" 292 msgstr "PHP Version" 293 294 #: ../inc/system.php:23 295 msgid "MySQL Version" 296 msgstr "MySQL Version" 297 298 #: ../inc/system.php:36 299 msgid "WordPress Version" 300 msgstr "WordPress Version" 301 302 #: ../inc/system.php:40 303 msgid "WordPress Network Page" 304 msgstr "WordPress Netzwerk Seite" 305 306 #: ../inc/system.php:43 307 msgid "Yes" 308 msgstr "Ja" 309 310 #: ../inc/system.php:45 311 msgid "No" 312 msgstr "Nein" 313 314 #: ../inc/system.php:51 315 msgid "Plugin Version (File)" 316 msgstr "Plugin Version (Datei)" 317 318 #: ../inc/system.php:55 319 msgid "Plugin Version (Database)" 320 msgstr "Plugin Version (Datenbank)" 321 322 #: ../inc/system.php:68 323 msgid "Role" 324 msgstr "Rolle" 325 326 #: ../inc/system.php:96 327 msgid "Configuration" 328 msgstr "Konfiguration" 329 330 #: ../inc/system.php:110 331 msgid "PHP max. execution time" 332 msgstr "PHP max. Ausführungszeit" 333 334 #: ../inc/system.php:120 335 msgid "PHP memory limit" 336 msgstr "PHP Speicherlimit" 337 338 #: ../inc/system.php:130 339 msgid "WordPress memory limit" 340 msgstr "WordPress Speicherlimit" 341 342 #: ../inc/system.php:136 343 msgid "Paths" 344 msgstr "Pfade" 345 346 #: ../inc/system.php:150 347 msgid "Home URL" 348 msgstr "Home URL" 349 350 #: ../inc/system.php:154 351 msgid "Site URL" 352 msgstr "Seiten URL" 353 354 #: ../inc/system.php:158 355 msgid "Plugin URL" 356 msgstr "Plugin URL" 357 358 #~ msgid "http://www.randnotizen.org/easy-code-placement" 359 #~ msgstr "http://www.randnotizen.org/easy-code-placement" 360 361 #~ msgid "Jens Herdy" 362 #~ msgstr "Jens Herdy" 363 364 #~ msgid "http://www.randnotizen.org" 365 #~ msgstr "http://www.randnotizen.org" 366 367 #~ msgid "A great Wordpress Plugin to place ANY Code ANYWHERE you want." 368 #~ msgstr "" 369 #~ "Ein tolles Wordpress Plugin um jeglichen Code dort zu platzieren wo du es " 370 #~ "möchtest." -
easy-code-placement/trunk/lang/easy-code-placement.pot
r1420409 r1506547 5 5 "Project-Id-Version: Easy Code Placement\n" 6 6 "Report-Msgid-Bugs-To: \n" 7 "POT-Creation-Date: Sun Jan 24 2016 18:22:46 GMT+0100 (Mitteleuropäische " 8 "Zeit)\n" 7 "POT-Creation-Date: 2016-10-01 17:37+0200\n" 9 8 "POT-Revision-Date: Thu May 19 2016 17:08:44 GMT+0200 (Mitteleuropäische " 10 9 "Sommerzeit)\n" … … 12 11 "Last-Translator: \n" 13 12 "Language-Team: \n" 14 "Language: \n"15 13 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION\n" 16 14 "MIME-Version: 1.0\n" … … 19 17 "X-Poedit-SourceCharset: UTF-8\n" 20 18 "X-Poedit-Basepath: .\n" 19 "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;" 20 "_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;" 21 "_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;" 22 "esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;" 23 "comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n" 24 "X-Generator: Poedit 1.8.9\n" 21 25 "X-Poedit-SearchPath-0: ..\n" 22 "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;" 23 "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;" 24 "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;" 25 "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;" 26 "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n" 27 "X-Generator: Loco - https://localise.biz/" 28 29 #. Name of the plugin 30 msgid "Easy Code Placement" 31 msgstr "" 32 33 #. URI of the plugin 34 msgid "http://www.randnotizen.org/easy-code-placement" 35 msgstr "" 36 37 #. Author of the plugin 38 msgid "Jens Herdy" 39 msgstr "" 40 41 #. Author URI of the plugin 42 msgid "http://www.randnotizen.org" 43 msgstr "" 44 45 #. Description of the plugin 46 msgid "A great Wordpress Plugin to place ANY Code ANYWHERE you want." 47 msgstr "" 48 49 #: ../inc/error.php:2 ../inc/error.php:7 ../inc/system.php:30 ../inc/system.php: 50 #: 60 ../inc/system.php:73 ../inc/system.php:86 ../inc/system.php:115 .. 51 #: /inc/system.php:125 52 msgid "Error" 53 msgstr "" 54 55 #: ../inc/error.php:13 ../inc/settings.php:86 ../inc/system.php:166 .. 56 #: /inc/actions/add.php:100 ../inc/actions/edit.php:103 26 27 #: ../inc/actions/add.php:17 ../inc/actions/add.php:71 ../inc/actions/edit.php:74 28 msgid "A maximum of 30 Characters is allowed" 29 msgstr "" 30 31 #: ../inc/actions/add.php:25 32 msgid "Special Characters are not allowed in the Code Name" 33 msgstr "" 34 35 #: ../inc/actions/add.php:33 36 msgid "The Code Name and / or the Code must be filled in" 37 msgstr "" 38 39 #: ../inc/actions/add.php:42 40 msgid "The Code Name already exist - It must be uniqe" 41 msgstr "" 42 43 #: ../inc/actions/add.php:59 44 msgid "New Code" 45 msgstr "" 46 47 #: ../inc/actions/add.php:65 ../inc/actions/edit.php:67 ../inc/content.php:45 48 #: ../inc/settings.php:53 ../inc/system.php:13 ../inc/system.php:104 49 #: ../inc/system.php:144 50 msgid "Name" 51 msgstr "" 52 53 #: ../inc/actions/add.php:69 ../inc/actions/edit.php:72 54 msgid "Only Letters and Numbers are allowed" 55 msgstr "" 56 57 #: ../inc/actions/add.php:70 ../inc/actions/edit.php:73 58 msgid "Instead of Whitesspaces use Underlines" 59 msgstr "" 60 61 #: ../inc/actions/add.php:74 ../inc/actions/edit.php:77 62 msgid "Code" 63 msgstr "" 64 65 #: ../inc/actions/add.php:80 ../inc/actions/edit.php:83 66 msgid "Alignment" 67 msgstr "" 68 69 #: ../inc/actions/add.php:84 ../inc/actions/edit.php:87 ../inc/content.php:71 70 msgid "None" 71 msgstr "" 72 73 #: ../inc/actions/add.php:85 ../inc/actions/edit.php:88 ../inc/content.php:73 74 msgid "Left" 75 msgstr "" 76 77 #: ../inc/actions/add.php:86 ../inc/actions/edit.php:89 ../inc/content.php:75 78 msgid "Center" 79 msgstr "" 80 81 #: ../inc/actions/add.php:87 ../inc/actions/edit.php:90 ../inc/content.php:77 82 msgid "Right" 83 msgstr "" 84 85 #: ../inc/actions/add.php:91 ../inc/actions/edit.php:94 86 msgid "Status" 87 msgstr "" 88 89 #: ../inc/actions/add.php:95 ../inc/actions/edit.php:98 ../inc/content.php:66 90 msgid "Online" 91 msgstr "" 92 93 #: ../inc/actions/add.php:96 ../inc/actions/edit.php:99 ../inc/content.php:68 94 msgid "Offline" 95 msgstr "" 96 97 #: ../inc/actions/add.php:100 ../inc/actions/edit.php:103 ../inc/error.php:13 98 #: ../inc/settings.php:86 ../inc/system.php:166 57 99 msgid "Back" 58 100 msgstr "" 59 101 60 #: ../inc/settings.php:15 61 msgid "The Option \"Codes per Page\" must be filled in" 62 msgstr "" 63 64 #: ../inc/settings.php:23 65 msgid "The Value for the Option \"Codes per Page\" must be numeric" 66 msgstr "" 67 68 #: ../inc/settings.php:41 ../inc/content.php:105 102 #: ../inc/actions/add.php:100 103 msgid "Add" 104 msgstr "" 105 106 #: ../inc/actions/alignment.php:17 ../inc/actions/delete.php:11 107 #: ../inc/actions/edit.php:22 ../inc/actions/edit.php:51 108 #: ../inc/actions/status.php:17 109 msgid "Modifying of the ID is not allowed" 110 msgstr "" 111 112 #: ../inc/actions/alignment.php:23 113 msgid "Modifying the Alignment to something else than 0, 1, 2 or 3 is not allowed" 114 msgstr "" 115 116 #: ../inc/actions/edit.php:30 117 msgid "The Code must be filled in" 118 msgstr "" 119 120 #: ../inc/actions/edit.php:61 121 msgid "Edit Code" 122 msgstr "" 123 124 #: ../inc/actions/edit.php:103 ../inc/settings.php:86 125 msgid "Save" 126 msgstr "" 127 128 #: ../inc/actions/status.php:23 129 msgid "Modifying of the Status to something else than 1 or 2 is not allowed" 130 msgstr "" 131 132 #: ../inc/content.php:22 133 msgid "« Previous" 134 msgstr "" 135 136 #: ../inc/content.php:23 137 msgid "Next »" 138 msgstr "" 139 140 #: ../inc/content.php:34 141 msgid "Codes" 142 msgstr "" 143 144 #: ../inc/content.php:46 145 msgid "Shortcode" 146 msgstr "" 147 148 #: ../inc/content.php:47 149 msgid "Action" 150 msgstr "" 151 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 161 msgid "No Alignment - Click to change" 162 msgstr "" 163 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 177 msgid "Edit" 178 msgstr "" 179 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 197 msgid "No Code found - Click \"Add New Code\" to add one." 198 msgstr "" 199 200 #: ../inc/content.php:99 201 msgid "Add New Code" 202 msgstr "" 203 204 #: ../inc/content.php:99 ../inc/settings.php:41 69 205 msgid "Settings" 70 206 msgstr "" 71 207 72 #: ../inc/settings.php:53 ../inc/system.php:13 ../inc/system.php:104 .. 73 #: /inc/system.php:144 ../inc/content.php:51 ../inc/actions/add.php:65 .. 74 #: /inc/actions/edit.php:67 75 msgid "Name" 76 msgstr "" 77 78 #: ../inc/settings.php:54 ../inc/system.php:14 ../inc/system.php:105 .. 79 #: /inc/system.php:145 80 msgid "Value" 81 msgstr "" 82 83 #: ../inc/settings.php:59 84 msgid "Who can manage this Plugin?" 85 msgstr "" 86 87 #: ../inc/settings.php:66 88 msgid "Adminstrators and higher" 89 msgstr "" 90 91 #: ../inc/settings.php:67 92 msgid "Editors and higher" 93 msgstr "" 94 95 #: ../inc/settings.php:68 96 msgid "Authors and higher" 97 msgstr "" 98 99 #: ../inc/settings.php:69 100 msgid "Contributors and higher" 101 msgstr "" 102 103 #: ../inc/settings.php:74 ../inc/system.php:81 104 msgid "Codes per Page" 105 msgstr "" 106 107 #: ../inc/settings.php:86 ../inc/actions/edit.php:103 108 msgid "Save" 109 msgstr "" 110 111 #: ../inc/system.php:2 ../inc/content.php:105 208 #: ../inc/content.php:99 ../inc/system.php:2 112 209 msgid "System Information" 113 210 msgstr "" 114 211 115 #: ../inc/system.php:5 116 msgid "General" 117 msgstr "" 118 119 #: ../inc/system.php:19 120 msgid "PHP Version" 121 msgstr "" 122 123 #: ../inc/system.php:23 124 msgid "MySQL Version" 125 msgstr "" 126 127 #: ../inc/system.php:36 128 msgid "WordPress Version" 129 msgstr "" 130 131 #: ../inc/system.php:40 132 msgid "WordPress Network Page" 133 msgstr "" 134 135 #: ../inc/system.php:43 136 msgid "Yes" 137 msgstr "" 138 139 #: ../inc/system.php:45 140 msgid "No" 141 msgstr "" 142 143 #: ../inc/system.php:51 144 msgid "Plugin Version (File)" 145 msgstr "" 146 147 #: ../inc/system.php:55 148 msgid "Plugin Version (Database)" 149 msgstr "" 150 151 #: ../inc/system.php:68 152 msgid "Role" 153 msgstr "" 154 155 #: ../inc/system.php:96 156 msgid "Configuration" 157 msgstr "" 158 159 #: ../inc/system.php:110 160 msgid "PHP max. execution time" 161 msgstr "" 162 163 #: ../inc/system.php:120 164 msgid "PHP memory limit" 165 msgstr "" 166 167 #: ../inc/system.php:130 168 msgid "WordPress memory limit" 169 msgstr "" 170 171 #: ../inc/system.php:136 172 msgid "Paths" 173 msgstr "" 174 175 #: ../inc/system.php:150 176 msgid "Home URL" 177 msgstr "" 178 179 #: ../inc/system.php:154 180 msgid "Site URL" 181 msgstr "" 182 183 #: ../inc/system.php:158 184 msgid "Plugin URL" 185 msgstr "" 186 187 #: ../inc/content.php:28 188 msgid "« Previous" 189 msgstr "" 190 191 #: ../inc/content.php:29 192 msgid "Next »" 193 msgstr "" 194 195 #: ../inc/content.php:40 196 msgid "Codes" 197 msgstr "" 198 199 #: ../inc/content.php:52 200 msgid "Shortcode" 201 msgstr "" 202 203 #: ../inc/content.php:53 204 msgid "Action" 205 msgstr "" 206 207 #: ../inc/content.php:72 208 msgid "Status is Online - Click to change" 209 msgstr "" 210 211 #: ../inc/content.php:72 ../inc/actions/add.php:95 ../inc/actions/edit.php:98 212 msgid "Online" 213 msgstr "" 214 215 #: ../inc/content.php:74 216 msgid "Status is Offline - Click to change" 217 msgstr "" 218 219 #: ../inc/content.php:74 ../inc/actions/add.php:96 ../inc/actions/edit.php:99 220 msgid "Offline" 221 msgstr "" 222 223 #: ../inc/content.php:77 224 msgid "No Alignment - Click to change" 225 msgstr "" 226 227 #: ../inc/content.php:77 ../inc/actions/add.php:84 ../inc/actions/edit.php:87 228 msgid "None" 229 msgstr "" 230 231 #: ../inc/content.php:79 232 msgid "Left Alignment - Click to change" 233 msgstr "" 234 235 #: ../inc/content.php:79 ../inc/actions/add.php:85 ../inc/actions/edit.php:88 236 msgid "Left" 237 msgstr "" 238 239 #: ../inc/content.php:81 240 msgid "Center Alignment - Click to change" 241 msgstr "" 242 243 #: ../inc/content.php:81 ../inc/actions/add.php:86 ../inc/actions/edit.php:89 244 msgid "Center" 245 msgstr "" 246 247 #: ../inc/content.php:83 248 msgid "Right Alignment - Click to change" 249 msgstr "" 250 251 #: ../inc/content.php:83 ../inc/actions/add.php:87 ../inc/actions/edit.php:90 252 msgid "Right" 253 msgstr "" 254 255 #: ../inc/content.php:85 ../inc/content.php:85 256 msgid "Edit" 257 msgstr "" 258 259 #: ../inc/content.php:86 ../inc/content.php:86 260 msgid "Delete" 261 msgstr "" 262 263 #: ../inc/content.php:87 264 msgid "Added" 265 msgstr "" 266 267 #: ../inc/content.php:87 268 msgid "Modified" 269 msgstr "" 270 271 #: ../inc/content.php:87 272 msgid "Info" 273 msgstr "" 274 275 #: ../inc/content.php:93 276 msgid "No Code found - Click \"Add New Code\" to add one." 277 msgstr "" 278 279 #: ../inc/content.php:105 280 msgid "Add New Code" 281 msgstr "" 282 283 #: ../inc/content.php:109 212 #: ../inc/content.php:103 284 213 msgid "" 285 214 "If you want to thank the developer for this free Plugin, you are welcome to " … … 288 217 msgstr "" 289 218 290 #: ../inc/actions/add.php:17 ../inc/actions/add.php:71 ../inc/actions/edit.php:74 291 msgid "A maximum of 30 Characters is allowed" 292 msgstr "" 293 294 #: ../inc/actions/add.php:25 295 msgid "Special Characters are not allowed in the Code Name" 296 msgstr "" 297 298 #: ../inc/actions/add.php:33 299 msgid "The Code Name and / or the Code must be filled in" 300 msgstr "" 301 302 #: ../inc/actions/add.php:42 303 msgid "The Code Name already exist - It must be uniqe" 304 msgstr "" 305 306 #: ../inc/actions/add.php:59 307 msgid "New Code" 308 msgstr "" 309 310 #: ../inc/actions/add.php:69 ../inc/actions/edit.php:72 311 msgid "Only Letters and Numbers are allowed" 312 msgstr "" 313 314 #: ../inc/actions/add.php:70 ../inc/actions/edit.php:73 315 msgid "Instead of Whitesspaces use Underlines" 316 msgstr "" 317 318 #: ../inc/actions/add.php:74 ../inc/actions/edit.php:77 319 msgid "Code" 320 msgstr "" 321 322 #: ../inc/actions/add.php:80 ../inc/actions/edit.php:83 323 msgid "Alignment" 324 msgstr "" 325 326 #: ../inc/actions/add.php:91 ../inc/actions/edit.php:94 327 msgid "Status" 328 msgstr "" 329 330 #: ../inc/actions/add.php:100 331 msgid "Add" 332 msgstr "" 333 334 #: ../inc/actions/edit.php:22 ../inc/actions/edit.php:51 ../inc/actions/delete. 335 #: php:11 ../inc/actions/status.php:17 ../inc/actions/alignment.php:17 336 msgid "Modifying of the ID is not allowed" 337 msgstr "" 338 339 #: ../inc/actions/edit.php:30 340 msgid "The Code must be filled in" 341 msgstr "" 342 343 #: ../inc/actions/edit.php:61 344 msgid "Edit Code" 345 msgstr "" 346 347 #: ../inc/actions/status.php:23 348 msgid "Modifying of the Status to something else than 1 or 2 is not allowed" 349 msgstr "" 350 351 #: ../inc/actions/alignment.php:23 352 msgid "Modifying the Alignment to something else than 0, 1, 2 or 3 is not allowed" 353 msgstr "" 219 #: ../inc/error.php:2 ../inc/error.php:7 ../inc/system.php:30 ../inc/system.php:60 220 #: ../inc/system.php:73 ../inc/system.php:86 ../inc/system.php:115 221 #: ../inc/system.php:125 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:150 234 msgid "Code to Display:" 235 msgstr "" 236 237 #: ../inc/functions.php:152 238 msgid "Please select a Code" 239 msgstr "" 240 241 #: ../inc/settings.php:15 242 msgid "The Option \"Codes per Page\" must be filled in" 243 msgstr "" 244 245 #: ../inc/settings.php:23 246 msgid "The Value for the Option \"Codes per Page\" must be numeric" 247 msgstr "" 248 249 #: ../inc/settings.php:54 ../inc/system.php:14 ../inc/system.php:105 250 #: ../inc/system.php:145 251 msgid "Value" 252 msgstr "" 253 254 #: ../inc/settings.php:59 255 msgid "Who can manage this Plugin?" 256 msgstr "" 257 258 #: ../inc/settings.php:66 259 msgid "Adminstrators and higher" 260 msgstr "" 261 262 #: ../inc/settings.php:67 263 msgid "Editors and higher" 264 msgstr "" 265 266 #: ../inc/settings.php:68 267 msgid "Authors and higher" 268 msgstr "" 269 270 #: ../inc/settings.php:69 271 msgid "Contributors and higher" 272 msgstr "" 273 274 #: ../inc/settings.php:74 ../inc/system.php:81 275 msgid "Codes per Page" 276 msgstr "" 277 278 #: ../inc/system.php:5 279 msgid "General" 280 msgstr "" 281 282 #: ../inc/system.php:19 283 msgid "PHP Version" 284 msgstr "" 285 286 #: ../inc/system.php:23 287 msgid "MySQL Version" 288 msgstr "" 289 290 #: ../inc/system.php:36 291 msgid "WordPress Version" 292 msgstr "" 293 294 #: ../inc/system.php:40 295 msgid "WordPress Network Page" 296 msgstr "" 297 298 #: ../inc/system.php:43 299 msgid "Yes" 300 msgstr "" 301 302 #: ../inc/system.php:45 303 msgid "No" 304 msgstr "" 305 306 #: ../inc/system.php:51 307 msgid "Plugin Version (File)" 308 msgstr "" 309 310 #: ../inc/system.php:55 311 msgid "Plugin Version (Database)" 312 msgstr "" 313 314 #: ../inc/system.php:68 315 msgid "Role" 316 msgstr "" 317 318 #: ../inc/system.php:96 319 msgid "Configuration" 320 msgstr "" 321 322 #: ../inc/system.php:110 323 msgid "PHP max. execution time" 324 msgstr "" 325 326 #: ../inc/system.php:120 327 msgid "PHP memory limit" 328 msgstr "" 329 330 #: ../inc/system.php:130 331 msgid "WordPress memory limit" 332 msgstr "" 333 334 #: ../inc/system.php:136 335 msgid "Paths" 336 msgstr "" 337 338 #: ../inc/system.php:150 339 msgid "Home URL" 340 msgstr "" 341 342 #: ../inc/system.php:154 343 msgid "Site URL" 344 msgstr "" 345 346 #: ../inc/system.php:158 347 msgid "Plugin URL" 348 msgstr "" -
easy-code-placement/trunk/readme.txt
r1501662 r1506547 2 2 Contributors: wassereimer 3 3 Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=2X2EH5MYGPLL4 4 Tags: ad, add, addthis, ads, adsense, adsense plugin, advertising, affilimatch, affilinet, align, alignment, a mazon 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, widget5 Requires at least: 3.0.14 Tags: ad, add, addthis, ads, adsense, adsense plugin, advertising, affilimatch, affilinet, align, alignment, all in one seo pack, amazon associates, any, audio, clicksor, code, codes, css, easy, flash, google, google adsense, html, infolinks, insert, java, javascript, multisite, network, offline, online, page, pages, php, place, placement, plugin, post, posts, seo, shortcode, shortcodes, snippet, snippets, text, video, widget, yoast, yoast seo 5 Requires at least: 4.0 6 6 Tested up to: 4.6.1 7 Stable tag: 3.2.17 Stable tag: 4.0 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 17 17 ATTENTION! CSS, Javascript and Flash Codes does have Problems at the moment. It will be fixed in the future! 18 18 19 = Which Codes? = 19 = Which Codes? = 20 20 21 21 * Text 22 22 * PHP 23 23 * HTML 24 * CSS25 24 * AdSense or other Ads 26 * Flash27 25 * Video & Audio 28 * Javascript29 26 * Everything you want 30 27 31 = Features = 28 = Where? = 29 30 * Widget Area 31 * Title of Posts and Pages 32 * Content of Posts and Pages 33 * Menu (In Link-Text and Url must be "#") 34 * All in One SEO Pack (Title, Description, Keywords) 35 * Yoast SEO (Title, Description, Keywords) 36 * Tags 37 * Excerpts 38 39 = Features = 32 40 33 41 * Save unlimited Codes on options page … … 35 43 * Set the alignment for the Codes 36 44 * Place a Code with a Shortcode 45 * Place a Code with the own Widget 37 46 * Place a Code with the standard WordPress Text-Widget 38 47 * Choose who can manage the Plugin (Admin/Editor/Author/Contributor) … … 77 86 2. Add new Code 78 87 3. Edit existing Code 79 4. Widget with Shortcode 80 5. Settings 81 6. System Informations 88 4. Text-Widget with Shortcode inside 89 5. Own Widget with Shortcode-Selection 90 6. Settings 91 7. System Informations 82 92 83 93 == Changelog == 94 95 = 4.0 = 96 * 01.10.2016 97 * Added own Widget to easily select a Code from a List 98 * Added support for All in One SEO Pack Plugin fields 99 * Added support for Yoast SEO Plugin fields 100 * Codes now also work in Post/Page Titles, Tags and Widget Titles 101 * Removed the double filtering for shortcode and PHP Code and combined them 102 * Removed the global Output Buffering - now only used for allowing PHP Code in a closed function that will have no effect on other Plugins or Functions 103 * Updated the German translation 104 * Changed the required WordPress Version to 4.0 84 105 85 106 = 3.2.1 =
Note: See TracChangeset
for help on using the changeset viewer.