Plugin Directory

Changeset 652530


Ignore:
Timestamp:
01/14/2013 04:08:55 PM (13 years ago)
Author:
DerWebschmied
Message:

Release 3.0

Location:
google-routeplaner
Files:
54 added
11 edited

Legend:

Unmodified
Added
Removed
  • google-routeplaner/trunk/google-routeplaner-add-route.php

    r643415 r652530  
    133133                       
    134134                        <p><span class="formbold"><?php _e('Auto-Detect users location', 'google_routeplaner'); ?></span><br />
    135                         <input type="radio" name="google_routeplaner_autofill" id="google_routeplaner_autofill_yes" value="1" />
    136                         <label for="google_routeplaner_autofill_yes"><?php _e('Yes', 'google_routeplaner'); ?></label><br />
     135                        <input type="radio" name="google_routeplaner_autofill" id="google_routeplaner_autofill_coords" value="1" />
     136                        <label for="google_routeplaner_autofill_coords"><?php _e('Get coordinates', 'google_routeplaner'); ?></label><br />
     137                        <input type="radio" name="google_routeplaner_autofill" id="google_routeplaner_autofill_city" value="2" />
     138                        <label for="google_routeplaner_autofill_city"><?php _e('Get address', 'google_routeplaner'); ?></label><br />
    137139                        <input type="radio" name="google_routeplaner_autofill" id="google_routeplaner_autofill_no" value="0" checked="checked" />
    138                         <label for="google_routeplaner_autofill_no"><?php _e('No', 'google_routeplaner'); ?></label><br />
     140                        <label for="google_routeplaner_autofill_no"><?php _e('No detection', 'google_routeplaner'); ?></label><br />
    139141                        <i><?php _e('This is based on HTML5 and will work best with mobile devices.', 'google_routeplaner'); ?></i></p>
    140142                       
  • google-routeplaner/trunk/google-routeplaner-edit-route.php

    r643415 r652530  
    141141                       
    142142                        <p><span class="formbold"><?php _e('Auto-Detect users location', 'google_routeplaner'); ?></span><br />
    143                         <input type="radio" name="google_routeplaner_autofill" id="google_routeplaner_autofill_yes" value="1"<?php if(1 == intval($planer['planer_autofill'])) { echo ' checked=""'; } ?> />
    144                         <label for="google_routeplaner_autofill_yes"><?php _e('Yes', 'google_routeplaner'); ?></label><br />
     143                        <input type="radio" name="google_routeplaner_autofill" id="google_routeplaner_autofill_coords" value="1"<?php if(1 == intval($planer['planer_autofill'])) { echo ' checked=""'; } ?> />
     144                        <label for="google_routeplaner_autofill_coords"><?php _e('Get coordinates', 'google_routeplaner'); ?></label><br />
     145                       
     146                        <input type="radio" name="google_routeplaner_autofill" id="google_routeplaner_autofill_city" value="2"<?php if(2 == intval($planer['planer_autofill'])) { echo ' checked=""'; } ?> />
     147                        <label for="google_routeplaner_autofill_city"><?php _e('Get address', 'google_routeplaner'); ?></label><br />
     148                       
    145149                        <input type="radio" name="google_routeplaner_autofill" id="google_routeplaner_autofill_no" value="0"<?php if(0 == intval($planer['planer_autofill'])) { echo ' checked=""'; } ?> />
    146                         <label for="google_routeplaner_autofill_no"><?php _e('No', 'google_routeplaner'); ?></label><br />
     150                        <label for="google_routeplaner_autofill_no"><?php _e('No detection', 'google_routeplaner'); ?></label><br />
    147151                        <i><?php _e('This is based on HTML5 and will work best with mobile devices.', 'google_routeplaner'); ?></i></p>
    148152                       
  • google-routeplaner/trunk/google-routeplaner-js.php

    r643415 r652530  
    1313    echo 'function setUserPos(position) {
    1414        document.getElementById(\'fromAddress' . $_GET['planer_id'] . '\').value = position.coords.latitude + \', \' + position.coords.longitude;
    15         //alert(position.coords.latitude);
    16         //alert(position.coords.longitude);
     15    }
     16   
     17    navigator.geolocation.getCurrentPosition(setUserPos);';
     18}
     19
     20if(2 == intval($_GET['autofill'])) {
     21
     22    echo 'function setUserPos(position) {
     23        var getcity = new google.maps.Geocoder();
     24       
     25        var latlng = new google.maps.LatLng(position.coords.latitude, position.coords.longitude);
     26       
     27        getcity.geocode({\'latLng\': latlng}, function(results, status) {
     28          if (status == google.maps.GeocoderStatus.OK) {
     29            if (results[1]) {
     30             document.getElementById(\'fromAddress' . $_GET['planer_id'] . '\').value = results[1].formatted_address;
     31            }
     32          } else {
     33            alert("Geocoder failed due to: " + status);
     34          }
     35        });
     36   
     37       
    1738    }
    1839   
  • google-routeplaner/trunk/google-routeplaner-main-page.php

    r643448 r652530  
    55            <h3><?php _e('Changelog', 'google_routeplaner'); ?></h3>
    66            <div class="inside" style="height: 300px; overflow: auto; overflow-y: scroll;">
     7                <h5>Version 3.0</h5>
     8                    <ul>
     9                        <li>Donation settings have been changed. Link can be removed without donating</li>
     10                        <li>Viewport can now be disabled</li>
     11                        <li>Small graphical tweaks</li>
     12                        <li>Troubleshooting page added</li>
     13                        <li>Autodetection can now give longitude and latitude or country, city and street</li>
     14                    </ul>
    715                <h5>Version 2.6</h5>
    816                    <ul>
     
    95103                <h3><?php _e('Support &amp; Feedback', 'google_routeplaner'); ?></h3>
    96104                <div class="inside">
    97                     <?php
    98                     if('personal_link' == get_option('google_routeplaner_donate') || 'personal_paypal' == get_option('google_routeplaner_donate') || 'commercial_paypal' == get_option('google_routeplaner_donate')) {
    99                     ?>
    100105                    <p><?php _e('If you have trouble using this plugin, submit your ideas for future development or simply want to let me know what you think please use my Help Desk.', 'google_routeplaner'); ?></p>
    101106                    <p style="text-align: center;"><a href="http://support.deformed-design.de"><img src="<?php echo WP_PLUGIN_URL; ?>/google-routeplaner/images/support.png" alt="<?php _e('Support &amp; Feedback', 'google_routeplaner'); ?>" /></a></p>
    102                     <?php
    103                     } else {
    104                     ?>
    105                     <p><?php _e('Developing this plugin and helping those who have trouble with it costs a lot of time. Please consider a small donation using PayPal or Amazon.', 'google_routeplaner'); ?></p>
    106                     <p><?php _e('Support is currently not available for you.', 'google_routeplaner'); ?></p>
    107                     <?php
    108                     }
    109                     ?>
    110                 </div>
     107                    </div>
    111108            </div>
    112109        </div>
  • google-routeplaner/trunk/google-routeplaner-pages.php

    r643415 r652530  
    9999 * Documentation Page
    100100 */
    101 function google_routeplaner_doc_page($route_id) {
     101function google_routeplaner_doc_page() {
    102102    include 'google-routeplaner-doc-page.php';
     103}
     104
     105/*
     106 * Troubleshooting Page
     107 */
     108function google_routeplaner_trouble_page() {
     109    include 'google-routeplaner-trouble-page.php';
    103110}
    104111
     
    110117    add_option("google_routeplaner_donate","personal_link");   
    111118    add_option("google_routeplaner_language","en");
    112     add_option("google_routeplaner_version","2.5");
     119    add_option("google_routeplaner_version","3.0");
     120    add_option("google_routeplaner_viewport","yes");   
    113121   
    114122    add_action( 'admin_menu' , 'admin_menu_new_items' );
     
    119127    add_submenu_page('google-routeplaner.php', __('Settings', 'google_routeplaner'), __('Settings', 'google_routeplaner'), 8, 'google_routeplaner_settings', 'google_routeplaner_option_page');
    120128    add_submenu_page('google-routeplaner.php', __('Documentation', 'google_routeplaner'), __('Documentation', 'google_routeplaner'), 8, 'google_routeplaner_doc', 'google_routeplaner_doc_page');
    121     if('personal_link' == get_option('google_routeplaner_donate') || 'personal_paypal' == get_option('google_routeplaner_donate') || 'commercial_paypal' == get_option('google_routeplaner_donate')) {
    122         $submenu['google-routeplaner.php'][500] = array( 'Support', 'read' , 'http://support.derwebschmied.de' );
    123     }
     129    add_submenu_page('google-routeplaner.php', __('Troubleshooting', 'google_routeplaner'), __('Troubleshooting', 'google_routeplaner'), 8, 'google_routeplaner_trouble', 'google_routeplaner_trouble_page');
     130    $submenu['google-routeplaner.php'][500] = array( 'Support', 'read' , 'http://support.derwebschmied.de' );
    124131}
    125132
  • google-routeplaner/trunk/google-routeplaner-settings-page.php

    r643415 r652530  
    99        update_option("google_routeplaner_language", $_POST['google_routeplaner_language']);
    1010        update_option("google_routeplaner_donate", $_POST['google_routeplaner_donate']);
     11        update_option("google_routeplaner_viewport", $_POST['google_routeplaner_viewport']);
    1112        echo '<p class="success">' . __('Settings saved!', 'google_routeplaner') . '</p>';
    1213    }
    1314    ?>
    14    
     15    <script>
     16    jQuery(document).ready(function(){
     17        jQuery("#google_routeplaner_donate_no_link").click(function() {
     18            jQuery("#donate_note").slideDown('slow', function() {
     19            });
     20        });
     21    });
     22    </script>
    1523    <div id="poststuff">
    1624    <form method="post" action="">
    17         <div class="postbox" style="width: 48%; float: right;">
    18             <h3><?php _e('Donation settings', 'google_routeplaner'); ?></h3>
    19             <div class="inside">
    20                 <p><?php _e('Developing this plugin and helping those who have trouble with it costs a lot of time. Please consider a small donation using PayPal or Amazon.', 'google_routeplaner'); ?></p>
    21                 <p><strong><?php _e('Personal use', 'google_routeplaner'); ?></strong><br />
    22                 <input type="radio" name="google_routeplaner_donate" id="google_routeplaner_donate_personal_link" value="personal_link"<?php if('personal_link' == get_option("google_routeplaner_donate")) { echo ' checked="checked"'; } ?> />
    23                 <label for="google_routeplaner_donate_personal_link"><?php _e('Show <em>Powered-by</em> below maps (Support available)', 'google_routeplaner'); ?></label><br />
    24                
    25                 <input type="radio" name="google_routeplaner_donate" id="google_routeplaner_donate_personal_no_link" value="personal_no_link"<?php if('personal_no_link' == get_option("google_routeplaner_donate")) { echo ' checked="checked"'; } ?> />
    26                 <label for="google_routeplaner_donate_personal_no_link"><?php _e('Remove <em>Powered-by</em> (Support NOT available)', 'google_routeplaner'); ?></label><br />
    27                
    28                 <input type="radio" name="google_routeplaner_donate" id="google_routeplaner_donate_personal_paypal" value="personal_paypal"<?php if('personal_paypal' == get_option("google_routeplaner_donate")) { echo ' checked="checked"'; } ?> />
    29                 <label for="google_routeplaner_donate_personal_paypal"><?php _e('I donated with PayPal or Amazon, remove <em>Powered-by</em> (Support available)', 'google_routeplaner'); ?></label></p>
    30                
    31                 <p><strong><?php _e('Commercial use', 'google_routeplaner'); ?></strong><br />
    32                 <input type="radio" name="google_routeplaner_donate" id="google_routeplaner_donate_commercial_link" value="commercial_link"<?php if('commercial_link' == get_option("google_routeplaner_donate")) { echo ' checked="checked"'; } ?> />
    33                 <label for="google_routeplaner_donate_commercial_link"><?php _e('Show <em>Powered-by</em> below maps (Support NOT available)', 'google_routeplaner'); ?></label><br />
    34                
    35                 <input type="radio" name="google_routeplaner_donate" id="google_routeplaner_donate_commercial_paypal" value="commercial_paypal"<?php if('commercial_paypal' == get_option("google_routeplaner_donate")) { echo ' checked="checked"'; } ?> />
    36                 <label for="google_routeplaner_donate_commercial_paypal"><?php _e('I donated with PayPal or Amazon, remove <em>Powered-by</em> (Support available)', 'google_routeplaner'); ?></label></p>
     25        <div style="width: 48%; float: right;">
     26            <div class="postbox">
     27                <h3><?php _e('Donation settings', 'google_routeplaner'); ?></h3>
     28                <div class="inside">
     29                    <p><?php _e('Developing this plugin and helping those who have trouble with it costs a lot of time. Please consider a small donation using PayPal or Amazon.', 'google_routeplaner'); ?></p>
     30                    <p><input type="radio" name="google_routeplaner_donate" id="google_routeplaner_donate_link" value="show_link"<?php if('show_link' == get_option("google_routeplaner_donate")) { echo ' checked="checked"'; } ?> />
     31                    <label for="google_routeplaner_donate_link"><?php _e('Show <em>Powered-by</em> below maps to support the developer.', 'google_routeplaner'); ?></label><br />
     32                   
     33                    <input type="radio" name="google_routeplaner_donate" id="google_routeplaner_donate_no_link" value="no_link"<?php if('no_link' == get_option("google_routeplaner_donate")) { echo ' checked="checked"'; } ?> />
     34                    <label for="google_routeplaner_donate_no_link"><?php _e('No <em>Powered-by</em> below maps, please consider another way to support the developer.', 'google_routeplaner'); ?></label></p>
     35                   
     36                    <div id="donate_note"<?php if('show_link' == get_option("google_routeplaner_donate")) { echo ' style="display: none;"'; } ?> class="gr_notice">
     37                        <p><?php _e('Developing this plugin is a lot of work and completly free for you. You can also get free support if you need help.', 'google_routeplaner'); ?></p>
     38                        <p><?php _e('Please consider a small donation for my work.', 'google_routeplaner'); ?></p>
     39                        <ul style="list-style-type: none;">
     40                            <li><img src="<?php echo WP_PLUGIN_URL; ?>/google-routeplaner/images/icon_paypal.png" alt="" /> <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&amp;hosted_button_id=VAFAKGCDQ2GHU"> <?php _e('Donate using PayPal', 'google_routeplaner'); ?></a></li>
     41                            <li><img src="<?php echo WP_PLUGIN_URL; ?>/google-routeplaner/images/icon_amazon.png" alt="" /> <a href="http://www.amazon.de/registry/wishlist/2ZWBSTFQJ9PDU"> <?php _e('Take a look at my Amazon wishlist', 'google_routeplaner'); ?></a></li>
     42                        </ul>
     43                    </div>
     44                </div>
     45            </div>
     46       
     47            <div class="postbox">
     48                <h3><?php _e('Viewport settings', 'google_routeplaner'); ?></h3>
     49                <div class="inside">
     50                    <p><?php _e('If you have set your viewport with another plugin you can disable the viewport output from this plugin.', 'google_routeplaner'); ?></p>
     51                    <p><input type="radio" name="google_routeplaner_viewport" id="google_routeplaner_viewport_yes" value="yes"<?php if('yes' == get_option("google_routeplaner_viewport")) { echo ' checked="checked"'; } ?> />
     52                    <label for="google_routeplaner_viewport_yes"><?php _e('Yes, use viewport.'); ?></label><br />
     53                   
     54                    <input type="radio" name="google_routeplaner_viewport" id="google_routeplaner_viewport_no" value="no"<?php if('no' == get_option("google_routeplaner_viewport")) { echo ' checked="checked"'; } ?> />
     55                    <label for="google_routeplaner_viewport_no"><?php _e('No, do NOT use viewport.', 'google_routeplaner'); ?></label></p>
     56                </div>
    3757            </div>
    3858        </div>
  • google-routeplaner/trunk/google-routeplaner.css

    r594932 r652530  
    55
    66.google_routeplaner .success {
    7     background-color: #c3ff88;
    8     border-color: #8dff1c;
    9     padding: 5px;
     7    color: #4f8a10;
     8    background: #dff2bf url(images/success.png) no-repeat;
     9    border: 1px solid #4f8a10;
     10    padding:15px 10px 15px 50px;
     11    background-position: 10px center;
     12    font-weight: bold;
    1013}
    1114
    1215.google_routeplaner .error {
    13     background-color: #ff8888;
    14     border-color: #ff1c1c;
    15     padding: 5px;
     16    color: #d8000c;
     17    background: #ffbaba url(images/error.png) no-repeat;
     18    border: 1px solid #d8000c;
     19    padding:15px 10px 15px 50px;
     20    background-position: 10px center;
     21    font-weight: bold;
     22}
     23
     24.google_routeplaner .gr_notice {
     25    color: #9f6000;
     26    background: #feefb3;
     27    border: 1px solid #9f6000;
     28    padding: 10px;
     29    background-position: 10px center;
     30    font-weight: bold;
    1631}
    1732
  • google-routeplaner/trunk/google-routeplaner.php

    r643448 r652530  
    44Plugin URI: http://support.derwebschmied.de
    55Description: Allows you to add one or more route planners based on Google Maps to help your users to find a specific place.
    6 Version: 2.6
     6Version: 3.0
    77Author: DerWebschmied
    88Author URI: http://support.derwebschmied.de
     
    9393    global $wpdb;
    9494
    95     /*
    96      * Update old information in the database for version 2
    97      */
    98     $wpdb->query('ALTER TABLE  `' . $wpdb->prefix . 'google_routeplaner` ADD  `planer_zoom` INT NOT NULL DEFAULT  \'8\' AFTER  `planer_height`');
     95    $gr_version = get_option("google_routeplaner_version");
     96   
     97    if(floatval($gr_version) < 2.5) {
     98        /*
     99         * Update old information in the database for version 2
     100         */
     101        $wpdb->query('ALTER TABLE  `' . $wpdb->prefix . 'google_routeplaner` ADD  `planer_zoom` INT NOT NULL DEFAULT  \'8\' AFTER  `planer_height`');
     102           
     103        /*
     104         * Update old information in the database for version 2.2
     105         */
     106        $cur_donate = get_option('google_routeplaner_donate');
     107        if('link' == $cur_donate) {
     108            update_option("google_routeplaner_donate", 'personal_link');
     109        } elseif('articel' == $cur_donate) {
     110            update_option("google_routeplaner_donate", 'personal_no_link');
     111        } elseif('paypal' == $cur_donate) {
     112            update_option("google_routeplaner_donate", 'commercial_paypal');
     113        } elseif('none' == $cur_donate) {
     114            update_option("google_routeplaner_donate", 'personal_no_link');
     115        }
    99116       
    100     /*
    101      * Update old information in the database for version 2.2
    102      */
    103     $cur_donate = get_option('google_routeplaner_donate');
    104     if('link' == $cur_donate) {
    105         update_option("google_routeplaner_donate", 'personal_link');
    106     } elseif('articel' == $cur_donate) {
    107         update_option("google_routeplaner_donate", 'personal_no_link');
    108     } elseif('paypal' == $cur_donate) {
    109         update_option("google_routeplaner_donate", 'commercial_paypal');
    110     } elseif('none' == $cur_donate) {
    111         update_option("google_routeplaner_donate", 'personal_no_link');
    112     }
    113    
    114     /*
    115      * Update old information in the database for version 2.5
    116      */
    117     $wpdb->query('ALTER TABLE  `' . $wpdb->prefix . 'google_routeplaner` ADD  `planer_width_unit` VARCHAR( 5 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT  \'px\' AFTER  `planer_width`');
    118     $wpdb->query('ALTER TABLE  `' . $wpdb->prefix . 'google_routeplaner` ADD  `planer_height_unit` VARCHAR( 5 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT  \'px\' AFTER  `planer_height`');
    119     $wpdb->query('ALTER TABLE  `' . $wpdb->prefix . 'google_routeplaner` ADD  `planer_autofill` INT NOT NULL DEFAULT  \'0\' AFTER  `planer_type_control`');
    120 
     117        /*
     118         * Update old information in the database for version 2.5
     119         */
     120        $wpdb->query('ALTER TABLE  `' . $wpdb->prefix . 'google_routeplaner` ADD  `planer_width_unit` VARCHAR( 5 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT  \'px\' AFTER  `planer_width`');
     121        $wpdb->query('ALTER TABLE  `' . $wpdb->prefix . 'google_routeplaner` ADD  `planer_height_unit` VARCHAR( 5 ) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT  \'px\' AFTER  `planer_height`');
     122        $wpdb->query('ALTER TABLE  `' . $wpdb->prefix . 'google_routeplaner` ADD  `planer_autofill` INT NOT NULL DEFAULT  \'0\' AFTER  `planer_type_control`');
     123    }
     124   
     125    if(floatval($gr_version) < 3.0) {
     126        /*
     127         * Update old information in the database for version 3.0
     128         */
     129        $old_donate_option = get_option("google_routeplaner_donate");
     130        if('personal_link' == $old_donate_option || 'commercial_link' == $old_donate_option) {
     131            update_option("google_routeplaner_donate", 'show_link');
     132        } elseif('personal_no_link' == $old_donate_option || 'personal_paypal' == $old_donate_option || 'commercial_paypal' == $old_donate_option) {
     133            update_option("google_routeplaner_donate", 'no_link');
     134        }
     135    }
     136    update_option("google_routeplaner_version", '3.0');
    121137}
    122138
     
    205221
    206222    $map = '
    207     <!-- Start Google Routeplaner Plugin Output -->' . "\n";
     223    <!-- Start Google Routeplanner Plugin Output -->' . "\n";
    208224   
    209225    if(2 == strlen($planer['planer_language'])) {
     
    224240    $map .= '<script type="text/javascript" src="' . WP_PLUGIN_URL . '/google-routeplaner/google-routeplaner-js.php?planer_id=' . $planer['planer_id'] . '&autofill=' . $planer['planer_autofill'] . '"></script>';
    225241   
    226     if('personal_link' == get_option("google_routeplaner_donate") || 'commercial_link' == get_option("google_routeplaner_donate")) {
    227         $map .= '<div style="clear: both; margin-top: 10px;">Powered by <a href="http://wordpress.org/extend/plugins/google-routeplaner/">Google Routeplaner</a>,
     242    if('show_link' == get_option("google_routeplaner_donate")) {
     243        $map .= '<div style="clear: both; margin-top: 10px;">Powered by <a href="http://wordpress.org/extend/plugins/google-routeplaner/">Google Routeplanner</a>,
    228244        brought to you by <a href="http://derwebschmied.de">DerWebschmied</a></div>' . "\n";
    229245    }
    230     $map .= '<!-- End Google Routeplaner Plugin Output --><p>' . "\n";
     246    $map .= '<!-- End Google Routeplanner Plugin Output --><p>' . "\n";
    231247
    232248    return $map;
     
    243259
    244260function google_routeplaner_admin_head() {
    245     echo '<meta name="viewport" content="initial-scale=1.0, user-scalable=yes" />
     261    if('yes' == get_option("google_routeplaner_viewport")) {
     262        echo '<meta name="viewport" content="initial-scale=1.0, user-scalable=yes" />';
     263    }   
     264    echo '
    246265    <style type="text/css" media="screen">
    247266    @import url("' . WP_PLUGIN_URL . '/google-routeplaner/google-routeplaner.css");
     
    251270
    252271function google_routeplaner_head() {
    253     echo '<meta name="viewport" content="initial-scale=1.0, user-scalable=yes" />';
     272    if('yes' == get_option("google_routeplaner_viewport")) {
     273        echo '<meta name="viewport" content="initial-scale=1.0, user-scalable=yes" />';
     274    }
    254275}
    255276add_action('wp_head', 'google_routeplaner_head');
  • google-routeplaner/trunk/languages/google_routeplaner-de_DE.po

    r643415 r652530  
    33"Project-Id-Version: Google Routeplaner\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2012-12-22 15:51+0100\n"
     5"POT-Creation-Date: 2013-01-14 16:32+0100\n"
    66"PO-Revision-Date: \n"
    77"Last-Translator: Thomas Probach <[email protected]>\n"
     
    2828#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-pages.php:76
    2929#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:2
     30#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-trouble-page.php:2
    3031msgid "Google Routeplanner"
    3132msgstr "Google Routeplanner"
     
    197198#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:136
    198199#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:144
    199 msgid "Yes"
    200 msgstr "Ja"
     200msgid "Get coordinates"
     201msgstr "Koordinaten abrufen"
    201202
    202203#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:138
    203 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:146
    204 msgid "No"
    205 msgstr "Nein"
    206 
    207 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:139
    208204#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:147
     205msgid "Get address"
     206msgstr "Adresse abrufen"
     207
     208#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:140
     209#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:150
     210msgid "No detection"
     211msgstr "Keine autom. Erkennung"
     212
     213#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:141
     214#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:151
    209215msgid "This is based on HTML5 and will work best with mobile devices."
    210216msgstr "Dies basiert auf HTML5 und funktioniert mit mobilen Geräten am besten."
    211217
    212 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:141
    213 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:149
    214 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:41
     218#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:143
     219#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:153
     220#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:61
    215221msgid "Language"
    216222msgstr "Sprache"
    217223
    218 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:143
    219 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:151
     224#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:145
     225#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:155
    220226msgid "Default"
    221227msgstr "Standard"
    222228
    223 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:144
    224 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:152
    225 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:45
     229#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:146
     230#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:156
     231#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:65
    226232msgid "English"
    227233msgstr "Englisch"
    228234
    229 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:145
    230 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:153
    231 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:46
     235#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:147
     236#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:157
     237#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:66
    232238msgid "German"
    233239msgstr "Deutsch"
    234240
    235 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:146
    236 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:154
    237 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:47
     241#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:148
     242#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:158
     243#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:67
    238244msgid "French"
    239245msgstr "Französisch"
    240246
    241 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:147
    242 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:155
    243 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:48
     247#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:149
     248#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:159
     249#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:68
    244250msgid "Spanish"
    245251msgstr "Spanisch"
    246252
    247 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:148
    248 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:156
    249 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:49
     253#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:150
     254#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:160
     255#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:69
    250256msgid "Dutch"
    251257msgstr "Holländisch"
    252258
    253 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:149
    254 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:157
    255 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:50
     259#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:151
     260#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:161
     261#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:70
    256262msgid "Italian"
    257263msgstr "Italienisch"
    258264
    259 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:150
    260 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:158
    261 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:51
     265#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:152
     266#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:162
     267#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:71
    262268msgid "Polish"
    263269msgstr "Polnisch"
    264270
    265 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:151
    266 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:159
    267 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:52
     271#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:153
     272#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:163
     273#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:72
    268274msgid "Catalan"
    269275msgstr "Katalanisch"
    270276
    271 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:152
    272 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:160
    273 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:53
     277#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:154
     278#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:164
     279#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:73
    274280msgid "Euskara"
    275281msgstr "Euskaraisch"
    276282
    277 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:153
    278 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:161
    279 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:54
     283#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:155
     284#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:165
     285#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:74
    280286msgid "Russian"
    281287msgstr "Russisch"
    282288
    283 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:154
    284 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:162
    285 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:55
     289#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:156
     290#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:166
     291#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:75
    286292msgid "Japanese"
    287293msgstr "Japanisch"
    288294
    289 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:156
    290 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:164
     295#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:158
     296#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:168
    291297msgid "This only effects the route output, not the interface!"
    292298msgstr "Wirkt sich nur auf die Ausgabe der Route aus, nicht auf das Interface!"
    293299
    294 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:160
     300#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-add-route.php:162
    295301msgid "Save route"
    296302msgstr "Route speichern"
    297303
    298304#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-doc-page.php:2
    299 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-pages.php:120
     305#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-pages.php:128
    300306msgid "Documentation"
    301307msgstr "Dokumentation"
     
    370376msgstr "CSS Hooks"
    371377
    372 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:168
     378#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-edit-route.php:172
    373379msgid "Save changes"
    374380msgstr "Änderungen speichern"
     
    379385
    380386#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-list-routes.php:19
    381 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-pages.php:118
     387#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-pages.php:126
    382388msgid "Routes"
    383389msgstr "Routen"
     
    419425
    420426#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-main-page.php:2
    421 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-pages.php:117
     427#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-pages.php:125
    422428msgid "Overview"
    423429msgstr "Übersicht"
     
    427433msgstr "Letzte Änderungen"
    428434
    429 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-main-page.php:82
     435#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-main-page.php:94
    430436msgid "The Plugin"
    431437msgstr "Das Plugin"
    432438
    433 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-main-page.php:84
     439#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-main-page.php:96
    434440msgid "Google Routeplanner generates a routeplanner based on the <a href=\"http://code.google.com/apis/maps/\">Google Maps API</a>."
    435441msgstr "Google Routeplanner erstellt einen Routenplaner auf Basis der <a href=\"http://code.google.com/apis/maps/\">Google Maps API</a>."
    436442
    437 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-main-page.php:85
     443#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-main-page.php:97
    438444msgid "We suggest adding a printer friendly stylesheet to your Wordpress design to allow your users to print the route without the need to print design elements. A tutorial how to do this can be found <a href=\"http://codex.wordpress.org/Styling_for_Print\">here</a>."
    439445msgstr "Wer empfehlen das hinzufügen eines druckfreundlichen Stylesheets zu Ihrem Wordpress-Design. Dies erlaubt es Ihren Besuchern die Route ohne unnötige Designelemente auszudrucken. Ein (englisches) Tutorial wie Sie dies anstellen finden Sie <a href=\"http://codex.wordpress.org/Styling_for_Print\">hier</a>."
    440446
    441 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-main-page.php:86
     447#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-main-page.php:98
    442448msgid "Plugin developed by <a href=\"http://deformed-design.de\">Deformed Design</a>."
    443449msgstr "Plugin entwickelt von <a href=\"http://deformed-design.de\">Deformed Design</a>."
    444450
    445 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-main-page.php:91
    446 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-main-page.php:97
     451#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-main-page.php:103
     452#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-main-page.php:106
    447453msgid "Support &amp; Feedback"
    448454msgstr "Support &amp; Feedback"
    449455
    450 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-main-page.php:96
     456#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-main-page.php:105
    451457msgid "If you have trouble using this plugin, submit your ideas for future development or simply want to let me know what you think please use my Help Desk."
    452458msgstr "Wenn Sie bei der Verwendung des Plugins Probleme haben, Ihre Ideen für die künftige Weiterentwicklung weitergeben möchten oder schlicht Ihre Meinung zum Plugin abgeben möchten verwenden Sie bitte meine Help Desk Software."
    453459
    454 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-main-page.php:101
    455 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:20
    456 msgid "Developing this plugin and helping those who have trouble with it costs a lot of time. Please consider a small donation using PayPal or Amazon."
    457 msgstr "Die Entwicklung dieses Plugins und die Supportarbeit kosten eine Menge Zeit. Bitte ziehen Sie eine kleine Spende via PayPal oder Amazon in Erwägung."
    458 
    459 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-main-page.php:102
    460 msgid "Support is currently not available for you."
    461 msgstr "Support ist für Sie momentan nicht verfügbar."
    462 
    463 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-main-page.php:111
     460#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-main-page.php:112
    464461msgid "Enjoy the plugin?"
    465462msgstr "Gefällt Ihnen das Plugin?"
    466463
    467 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-main-page.php:113
     464#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-main-page.php:114
    468465msgid "If you like the plugin you can support my work in different ways:"
    469466msgstr "Wenn Sie das Plugin mögen können Sie es auf verschiedene Arten unterstützen:"
    470467
    471 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-main-page.php:115
     468#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-main-page.php:116
    472469msgid "Rate it on WordPress.org"
    473470msgstr "Bewerte das Plugin auf WordPress.org"
    474471
    475 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-main-page.php:116
     472#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-main-page.php:117
     473#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:40
    476474msgid "Donate using PayPal"
    477475msgstr "Via PayPal spenden"
    478476
    479 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-main-page.php:117
     477#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-main-page.php:118
     478#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:41
    480479msgid "Take a look at my Amazon wishlist"
    481480msgstr "Schauen Sie auf meine Amazon-Wunschliste"
     
    493492msgstr "Vorschau der Route"
    494493
    495 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-pages.php:117
     494#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-pages.php:125
    496495msgid "Routeplaner"
    497496msgstr "Routenplaner"
    498497
    499 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-pages.php:119
     498#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-pages.php:127
    500499#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:2
    501500msgid "Settings"
    502501msgstr "Einstellungen"
    503502
    504 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:11
     503#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-pages.php:129
     504#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-trouble-page.php:2
     505msgid "Troubleshooting"
     506msgstr "Fehlerbehebung"
     507
     508#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:12
    505509msgid "Settings saved!"
    506510msgstr "Einstellungen gespeichert!"
    507511
    508 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:18
     512#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:27
    509513msgid "Donation settings"
    510514msgstr "Spender-Einstellungen"
    511515
    512 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:21
    513 msgid "Personal use"
    514 msgstr "Private Nutzung"
    515 
    516 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:23
    517 msgid "Show <em>Powered-by</em> below maps (Support available)"
    518 msgstr "Zeige <em>Powered-by</em> unter Karten (Support verfügbar)"
    519 
    520 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:26
    521 msgid "Remove <em>Powered-by</em> (Support NOT available)"
    522 msgstr "<em>Powered-by</em> entfernen (Support NICHT verfügbar)"
    523 
    524516#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:29
    525 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:36
    526 msgid "I donated with PayPal or Amazon, remove <em>Powered-by</em> (Support available)"
    527 msgstr "Ich habe via PayPal oder Amazon gespendet, <em>Powered-by</em> entfernen (Support verfügbar)"
     517msgid "Developing this plugin and helping those who have trouble with it costs a lot of time. Please consider a small donation using PayPal or Amazon."
     518msgstr "Die Entwicklung dieses Plugins und die Supportarbeit kosten eine Menge Zeit. Bitte ziehen Sie eine kleine Spende via PayPal oder Amazon in Erwägung."
    528519
    529520#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:31
    530 msgid "Commercial use"
    531 msgstr "Kommerzielle Nutzung"
    532 
    533 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:33
    534 msgid "Show <em>Powered-by</em> below maps (Support NOT available)"
    535 msgstr "Zeige <em>Powered-by</em> unter Karten (Support NICHT verfügbar)"
    536 
    537 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:43
     521msgid "Show <em>Powered-by</em> below maps to support the developer."
     522msgstr "Zeige <em>Powered-by</em> unter Karten um den Entwickler zu unterstützen."
     523
     524#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:34
     525msgid "No <em>Powered-by</em> below maps, please consider another way to support the developer."
     526msgstr "Kein  <em>Powered-by</em> unter Karten, bitte ziehen Sie eine andere Form der Unterstützung in Erwägung."
     527
     528#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:37
     529msgid "Developing this plugin is a lot of work and completly free for you. You can also get free support if you need help."
     530msgstr "Die Entwicklung dieses Plugins ist viel Arbeit und für Sie komplett kostenlos. Zudem erhalten Sie kostenlosen Support wenn Sie Hilfe benötigen."
     531
     532#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:38
     533msgid "Please consider a small donation for my work."
     534msgstr "Über eine kleine Spende für meine Arbeit würde ich mich freuen."
     535
     536#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:48
     537msgid "Viewport settings"
     538msgstr "Viewport Einstellungen"
     539
     540#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:50
     541msgid "If you have set your viewport with another plugin you can disable the viewport output from this plugin."
     542msgstr "Wenn Sie den Viewport mittels eines anderen Plugins bereits gesetzt haben können Sie die Vieport-Ausgabe des Routenplaners deaktivieren."
     543
     544#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:52
     545msgid "Yes, use viewport."
     546msgstr "Ja, Viewport verwenden."
     547
     548#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:55
     549msgid "No, do NOT use viewport."
     550msgstr "Nein, Viewport nicht verwenden."
     551
     552#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:63
    538553msgid "You can set the language for the Google driving directions for all maps. You can overwrite this setting for every map."
    539554msgstr "Sie können die Sprache für die Fahranweisungen von Google für alle Karten einstellen. Sie können diese Einstellung für jede Karte überschreiben."
    540555
    541 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:57
     556#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:77
    542557msgid "Set language for driving information, this does not effect the interface."
    543558msgstr "Sprache für die Wegbeschreibung festlegen, dies wirkt sich nicht auf das Interface aus."
    544559
    545 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:61
     560#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-settings-page.php:81
    546561msgid "Save settings"
    547562msgstr "Einstellungen speichern"
    548563
    549 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner.php:218
     564#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-trouble-page.php:5
     565msgid "Display errors"
     566msgstr "Anzeigefehler"
     567
     568#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-trouble-page.php:7
     569msgid "Some people had display error with the map like missing markers or seams between parts of the map."
     570msgstr "Eine Nutzer haben Anzeigefehler auf der Karte, wie etwa fehlende Markierungen oder Ränder zwischen Teilen der Karte."
     571
     572#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-trouble-page.php:8
     573msgid "This is most of the time caused by your theme and sadly this is also the case with the <em>Twenty Eleven</em>."
     574msgstr "In den meisten Fällen wird dieses Problem vom Theme verursacht, leider betrifft dies auch <em>Twenty Eleven</em>."
     575
     576#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-trouble-page.php:9
     577msgid "Please switch to the <em>Twenty Ten</em> to see if the theme is your problem."
     578msgstr "Bitte wechseln sie für einen Test auf <em>Twenty Ten</em> um zu sehen, ob ihr Theme das Problem verursacht."
     579
     580#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-trouble-page.php:10
     581msgid "If that is the case, you need to look into your themes CSS and try to find the troublemaker there."
     582msgstr "Wenn dies er Problem löst sollten Sie einen Blick in das CSS Ihres Themes werfen und dort die Quelle des Problems suchen."
     583
     584#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-trouble-page.php:11
     585msgid "I can not give free support and fix your theme!"
     586msgstr "Leider kann ich keinen kostenlosen Support anbieten, wenn Ihr Theme die Ursache das Problems ist."
     587
     588#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-trouble-page.php:12
     589msgid "Trouble with Twenty Eleven"
     590msgstr "Probleme mit Twenty Eleven"
     591
     592#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-trouble-page.php:13
     593msgid "As you can see, the zoom slider is broken and there are seams between map parts with <em>Twenty Eleven</em>."
     594msgstr "Wie Sie sehen ist die Zoom-Kontrolle defekt und der Übergang zwischen den einzelnen Kartenteilen ist unter <em>Twenty Eleven</em> nicht korrekt."
     595
     596#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-trouble-page.php:14
     597msgid "No trouble with Twenty Ten"
     598msgstr "Keine Probleme mit Twenty Ten"
     599
     600#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner-trouble-page.php:15
     601msgid "Zoom slider is working and there and working and the map parts are seamless with <em>Twenty Ten</em>."
     602msgstr "Unter <em>Twenty Ten</em> wird die Zoom-Kontrolle korrekt angezeigt und der Übergang zwischen den Kartenteilen ist korrekt."
     603
     604#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner.php:235
    550605msgid "Your location"
    551606msgstr "Ihr Standort"
    552607
    553 #: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner.php:218
     608#: C:\Users\Thomas\Wordpress-Plugins\Routeplaner\trunk/google-routeplaner.php:235
    554609msgid "Create route"
    555610msgstr "Route erstellen"
     611
     612#~ msgid "Yes"
     613#~ msgstr "Ja"
     614
     615#~ msgid "No"
     616#~ msgstr "Nein"
     617
     618#~ msgid "Support is currently not available for you."
     619#~ msgstr "Support ist für Sie momentan nicht verfügbar."
     620
     621#~ msgid "Personal use"
     622#~ msgstr "Private Nutzung"
     623
     624#~ msgid "Remove <em>Powered-by</em> (Support NOT available)"
     625#~ msgstr "<em>Powered-by</em> entfernen (Support NICHT verfügbar)"
     626
     627#~ msgid ""
     628#~ "I donated with PayPal or Amazon, remove <em>Powered-by</em> (Support "
     629#~ "available)"
     630#~ msgstr ""
     631#~ "Ich habe via PayPal oder Amazon gespendet, <em>Powered-by</em> entfernen "
     632#~ "(Support verfügbar)"
     633
     634#~ msgid "Commercial use"
     635#~ msgstr "Kommerzielle Nutzung"
     636
     637#~ msgid "Show <em>Powered-by</em> below maps (Support NOT available)"
     638#~ msgstr "Zeige <em>Powered-by</em> unter Karten (Support NICHT verfügbar)"
    556639
    557640#~ msgid "Uninstall"
  • google-routeplaner/trunk/readme.txt

    r643459 r652530  
    55Requires at least: 3.0
    66Tested up to: 3.4.2
    7 Stable tag: 2.6
     7Stable tag: 3.0
    88License: Feel free to edit for personal use
    99
     
    5252
    5353== Changelog ==
     54
     55= 3.0 =
     56* Donation settings have been changed. Link can be removed without donating
     57* Viewport can now be disabled
     58* Small graphical tweaks
     59* Troubleshooting page added
     60* Autodetection can now give longitude and latitude or country, city and street
    5461
    5562= 2.6 =
Note: See TracChangeset for help on using the changeset viewer.