Plugin Directory

Changeset 1594425


Ignore:
Timestamp:
02/12/2017 08:33:47 PM (9 years ago)
Author:
markusfrenzel
Message:

Tagging version 1.4.2 Have a look at the readme to notice the latest changes

Location:
runpress/tags/1.4.2
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • runpress/tags/1.4.2/README.txt

    r1589565 r1594425  
    11=== RunPress ===
    22Contributors: markusfrenzel
    3 Tags: runpress,runtastic,running,nordicwalking,cycling,mountainbiking,racecycling,hiking,treadmill,ergometer,tracking,sport,sports,gps,import runtastic,database,import,run
     3Tags: runpress,runtastic,running,nordicwalking,cycling,mountainbiking,racecycling,hiking,treadmill,ergometer,tracking,sport,sports,gps,import runtastic,database,import,run,export,export runtastic,
    44Donate link: http://markusfrenzel.de/wordpress/?page_id=2336
    55Requires at least: 3.3.1
    66Tested up to: 4.7
    7 Stable tag: trunk
     7Stable tag: 1.4.2
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html
    1010
    11 Imports your sports activities (running, nordicwalking, cycling, mountainbiking, racecycling, hiking, treadmill, ergometer) from the Runtastic website. Displays the data via shortcodes on your webpage. Widget included.
     11Imports your sports activities (have a look at the readme for details) from the Runtastic website. Displays the data via shortcodes on your webpage. Widget included.
    1212
    1313== Description ==
    1414Do you ever want to display your sports activities from Runtastic.com on your own Website? This is no problem any longer.
    1515
    16 RunPress gives you the opportunity to query the Runtastic website by using your Runtastic username and password. It imports your Runtastic sports activities (running, nordicwalking, cycling, mountainbiking, racecycling, hiking, treadmill, ergometer) into a table of your wordpress installation.
     16RunPress gives you the opportunity to query the Runtastic website by using your Runtastic username and password. It imports your Runtastic sports activities into a table of your wordpress installation.
    1717
    1818You will be capable of viewing your runtastic sports activities in the admin backend. By the use of shortcodes you're able to show your activities on non-admin pages of your site like posts and pages. Use the shortcode generator to easily create the needed shortcodes without any programming knowledge.
     
    6868The table is labeled with your MySQL table prefix of your wordpress installation (default: wp_) plus "runpress_db"
    6969
     70== Importable Activities ==
     71The following Activities are importable from the Runtastic Website to your local Wordpress Database
     72
     73* running
     74* nordicwalking
     75* cycling
     76* mountainbiking
     77* racecycling
     78* hiking
     79* treadmill
     80* ergometer
     81* elliptical
     82* spinning
     83* handbike
     84* skating
     85* skateboarding
     86* rowing
     87* swimming
     88* crosscountryskiing
     89* skiing
     90* snowboarding
     91* backcountryskiing
     92* sledding
     93* motorbiking
     94* walking
     95* riding
     96
    7097== Changelog ==
     98
     99= 1.4.2 =
     100* switched back to the correct versioning for the plugin
     101* maps are now implemented via https (thanks to daniel for the idea)
     102* added a few more activity types to use with the plugin
     103* updated the translation
    71104
    72105= 1.4.1 =
  • runpress/tags/1.4.2/inc/widget/runpress-widget.php

    r1317565 r1594425  
    66 * Plugin URI:      http://markusfrenzel.de/wordpress/?page_id=2247
    77 *
    8  * Description:     Imports your sports activities (running, nordicwalking, cycling, mountainbiking, racecycling, hiking, treadmill, ergometer) from the Runtastic website. Displays the data via shortcodes on your webpage. Widget included.
     8 * Description:     Imports your sports activities (have a look at the readme for details) from the Runtastic website. Displays the data via shortcodes on your webpage. Widget included.
    99 *
    1010 * Version:         same as runpress.php
     
    2424
    2525/*
    26  * Copyright (C) 2014, 2015 Markus Frenzel
     26 * Copyright (C) 2014, 2015, 2016, 2017 Markus Frenzel
    2727 *
    2828 * This program is free software; you can redistribute it and/or
     
    7373        $s = !empty( $instance['showtable'] ) ? '1' : '0';
    7474       
    75         $opt1 = !empty( $instance['opt_running'] ) ? '1' : '0';
    76         $opt2 = !empty( $instance['opt_nordicwalking'] ) ? '1' : '0';
    77         $opt3 = !empty( $instance['opt_cycling'] ) ? '1' : '0';
    78         $opt4 = !empty( $instance['opt_mountainbiking'] ) ? '1' : '0';
    79         $opt5 = !empty( $instance['opt_racecycling'] ) ? '1' : '0';
    80         $opt6 = !empty( $instance['opt_hiking'] ) ? '1' : '0';
    81         $opt7 = !empty( $instance['opt_treadmill'] ) ? '1' : '0';
    82         $opt8 = !empty( $instance['opt_ergometer'] ) ? '1' : '0';
     75        $runpress_sport_activities = array( "running", "nordicwalking", "cycling", "mountainbiking", "racecycling", "hiking", "treadmill", "ergometer", "elliptical", "spinning", "handbike", "skating", "skateboarding", "rowing", "swimming", "crosscountryskiing", "skiing", "snowboarding", "backcountryskiing", "sledding", "motorbiking", "walking", "riding" );
     76        $count_activity = 0;
     77        foreach( $runpress_sport_activities as $actual_activity ) {
     78            $count_activity++;
     79            ${ 'opt' . $count_activity } = !empty( $instance['opt_' . $actual_activity] ) ? '1' : '0';
     80        }
    8381
    8482        echo $args['before_widget'];
     
    9088        }
    9189       
    92         if(( !$opt1 ) && ( !$opt2 ) && ( !$opt3 ) && ( !$opt4 ) && ( !$opt5 ) && ( !$opt6 ) && ( !$opt7 ) && ( !$opt8 )) {
     90        $runpress_widget_opts_array = array();
     91        $count_opts_array = 0;
     92        for( $i = 1; $i <= $count_activity; $i++ ) {
     93            $runpress_widget_opts_array[] = ${ 'opt' . $i };
     94        }
     95        $i--;
     96       
     97        $opt_filter = array_filter( $runpress_widget_opts_array );
     98        if( empty( $opt_filter ) ) {
    9399            $onlyshow = "";
    94100        }
     
    100106        $build_onlyshow = array();
    101107       
    102         if( $opt1 ) { $build_onlyshow[] = "running"; }
    103         if( $opt2 ) { $build_onlyshow[] = "nordicwalking"; }
    104         if( $opt3 ) { $build_onlyshow[] = "cycling"; }
    105         if( $opt4 ) { $build_onlyshow[] = "mountainbiking"; }
    106         if( $opt5 ) { $build_onlyshow[] = "racecycling"; }
    107         if( $opt6 ) { $build_onlyshow[] = "hiking"; }
    108         if( $opt7 ) { $build_onlyshow[] = "treadmill"; }
    109         if( $opt8 ) { $build_onlyshow[] = "ergometer"; }
     108        for( $j = 1; $j <= $i; $j++ ) {
     109            if( ${ 'opt' . $j } ) {
     110                $build_onlyshow[] = $runpress_sport_activities[$j-1];
     111            }
     112        }
    110113       
    111114        if( count( $build_onlyshow ) >= 1 ) {
     
    138141                else
    139142                {
    140                     echo "<img src='http:" . str_replace( 'width=50&height=70', 'width=200&height=280', $query->map_url ) . "'><br />";
     143                    echo "<img src='https:" . str_replace( 'width=50&height=70', 'width=200&height=280', $query->map_url ) . "'><br />";
    141144                }
    142145                echo "<table>";
     
    239242        $onlyhighscores = isset( $instance[ 'onlyhighscores' ] ) ? (bool) $instance[ 'onlyhighscores'] : false;
    240243        $showtable = isset( $instance[ 'showtable' ] ) ? (booL) $instance[ 'showtable' ] : false;
    241         $opt_running = isset( $instance[ 'opt_running' ] ) ? (bool) $instance[ 'opt_running' ] : false;
    242         $opt_nordicwalking = isset( $instance[ 'opt_nordicwalking' ] ) ? (bool) $instance[ 'opt_nordicwalking' ] : false;
    243         $opt_cycling = isset( $instance[ 'opt_cycling' ] ) ? (bool) $instance[ 'opt_cycling' ] : false;
    244         $opt_mountainbiking = isset( $instance[ 'opt_mountainbiking' ] ) ? (bool) $instance[ 'opt_mountainbiking' ] : false;
    245         $opt_racecycling = isset( $instance[ 'opt_racecycling' ] ) ? (bool) $instance[ 'opt_racecycling' ] : false;
    246         $opt_hiking = isset( $instance[ 'opt_hiking' ] ) ? (bool) $instance[ 'opt_hiking' ] : false;
    247         $opt_treadmill = isset( $instance[ 'opt_treadmill' ] ) ? (bool) $instance[ 'opt_treadmill' ] : false;
    248         $opt_ergometer = isset( $instance[ 'opt_ergometer' ] ) ? (bool) $instance[ 'opt_ergometer' ] : false;
     244        $runpress_sport_activities = array( "running", "nordicwalking", "cycling", "mountainbiking", "racecycling", "hiking", "treadmill", "ergometer", "elliptical", "spinning", "handbike", "skating", "skateboarding", "rowing", "swimming", "crosscountryskiing", "skiing", "snowboarding", "backcountryskiing", "sledding", "motorbiking", "walking", "riding" );
     245        $count_activity = 0;
     246        foreach( $runpress_sport_activities as $actual_activity ) {
     247            $count_activity++;
     248            ${ 'opt_' . $actual_activity } = isset( $instance[ 'opt_' . $actual_activity ] ) ? (bool) $instance[ 'opt_' . $actual_activity ] : false;
     249        }
    249250        ?>
    250251        <p><label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' , 'runpress'); ?></label>
     
    263264        <p>
    264265        <?php _e( 'Show activity types:', 'runpress' ); ?><br />
    265         <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id( 'opt_running' ); ?>" name="<?php echo $this->get_field_name('opt_running' ); ?>"<?php checked( $opt_running ); ?> />
    266         <label for="<?php echo $this->get_field_id( 'opt_running' ); ?>"><?php _e( 'running', 'runpress' ); ?></label><br />
    267         <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id( 'opt_nordicwalking' ); ?>" name="<?php echo $this->get_field_name( 'opt_nordicwalking' ); ?>"<?php checked( $opt_nordicwalking ); ?> />
    268         <label for="<?php echo $this->get_field_id( 'opt_nordicwalking' ); ?>"><?php _e( 'nordicwalking', 'runpress' ); ?></label><br />
    269         <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id( 'opt_cycling' ); ?>" name="<?php echo $this->get_field_name( 'opt_cycling' ); ?>"<?php checked( $opt_cycling ); ?> />
    270         <label for="<?php echo $this->get_field_id( 'opt_cycling' ); ?>"><?php _e( 'cycling', 'runpress' ); ?></label><br />
    271         <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id( 'opt_running' ); ?>" name="<?php echo $this->get_field_name('opt_running' ); ?>"<?php checked( $opt_mountainbiking ); ?> />
    272         <label for="<?php echo $this->get_field_id( 'opt_running' ); ?>"><?php _e( 'mountainbiking', 'runpress' ); ?></label><br />
    273         <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id( 'opt_racecycling' ); ?>" name="<?php echo $this->get_field_name('opt_racecycling' ); ?>"<?php checked( $opt_racecycling ); ?> />
    274         <label for="<?php echo $this->get_field_id( 'opt_racecycling' ); ?>"><?php _e( 'racecycling', 'runpress' ); ?></label><br />
    275         <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id( 'opt_hiking' ); ?>" name="<?php echo $this->get_field_name('opt_hiking' ); ?>"<?php checked( $opt_hiking ); ?> />
    276         <label for="<?php echo $this->get_field_id( 'opt_hiking' ); ?>"><?php _e( 'hiking', 'runpress' ); ?></label><br />
    277         <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id( 'opt_treadmill' ); ?>" name="<?php echo $this->get_field_name('opt_treadmill' ); ?>"<?php checked( $opt_treadmill ); ?> />
    278         <label for="<?php echo $this->get_field_id( 'opt_treadmill' ); ?>"><?php _e( 'treadmill', 'runpress' ); ?></label><br />
    279         <input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id( 'opt_ergometer' ); ?>" name="<?php echo $this->get_field_name('opt_ergometer' ); ?>"<?php checked( $opt_ergometer ); ?> />
    280         <label for="<?php echo $this->get_field_id( 'opt_ergometer' ); ?>"><?php _e( 'ergometer', 'runpress' ); ?></label><br />
     266        <?php
     267        $count_activity = 0;
     268        foreach( $runpress_sport_activities as $actual_activity ) {
     269            $count_activity++;
     270?>
     271<input type="checkbox" class="checkbox" id="<?php echo $this->get_field_id( 'opt_' . $actual_activity ); ?>" name="<?php echo $this->get_field_name( 'opt_' . $actual_activity ); ?>"<?php checked( ${ 'opt_' . $actual_activity } ); ?> />
     272<label for="<?php echo $this->get_field_id( 'opt_' . $actual_activity ); ?>"><?php _e( $actual_activity, 'runpress' ); ?></label><br />
     273<?php
     274        }
     275        ?>
    281276        </p>
    282 
    283277        <?php
    284278    }
     
    300294        $instance[ 'onlyhighscores' ] = !empty( $new_instance[ 'onlyhighscores' ] ) ? 1 : 0;
    301295        $instance[ 'showtable' ] = !empty( $new_instance[ 'showtable' ] ) ? 1 : 0;
    302         $instance[ 'opt_running' ] = !empty( $new_instance[ 'opt_running' ] ) ? 1 : 0;
    303         $instance[ 'opt_nordicwalking' ] = !empty( $new_instance[ 'opt_nordicwalking' ] ) ? 1 : 0;
    304         $instance[ 'opt_cycling' ] = !empty( $new_instance[ 'opt_cycling' ] ) ? 1 : 0;
    305         $instance[ 'opt_mountainbiking' ] = !empty( $new_instance[ 'opt_mountainbiking' ] ) ? 1 : 0;
    306         $instance[ 'opt_racecycling' ] = !empty( $new_instance[ 'opt_racecycling' ] ) ? 1 : 0;
    307         $instance[ 'opt_hiking' ] = !empty( $new_instance[ 'opt_hiking' ] ) ? 1 : 0;
    308         $instance[ 'opt_treadmill' ] = !empty( $new_instance[ 'opt_treadmill' ] ) ? 1 : 0;
    309         $instance[ 'opt_ergometer' ] = !empty( $new_instance[ 'opt_ergometer' ] ) ? 1 : 0;
    310 
     296        $runpress_sport_activities = array( "running", "nordicwalking", "cycling", "mountainbiking", "racecycling", "hiking", "treadmill", "ergometer", "elliptical", "spinning", "handbike", "skating", "skateboarding", "rowing", "swimming", "crosscountryskiing", "skiing", "snowboarding", "backcountryskiing", "sledding", "motorbiking", "walking", "riding" );
     297        $count_activity = 0;
     298        foreach( $runpress_sport_activities as $actual_activity ) {
     299            $count_activity++;
     300            $instance[ 'opt_' . $actual_activity ] = !empty( $new_instance[ 'opt_' . $actual_activity ] ) ? 1 : 0;
     301        }
    311302        return $instance;
    312303    }
  • runpress/tags/1.4.2/languages/runpress-de_DE.po

    r1589549 r1594425  
    11msgid ""
    22msgstr ""
    3 "PO-Revision-Date: 2017-02-03 22:02+0000\n"
     3"PO-Revision-Date: 2017-02-12 20:29+0000\n"
    44"MIME-Version: 1.0\n"
    55"Content-Type: text/plain; charset=UTF-8\n"
     
    1010"Project-Id-Version: Plugins - RunPress - Development (trunk)\n"
    1111"Report-Msgid-Bugs-To: \n"
    12 "POT-Creation-Date: 2017-02-03 22:00+0000\n"
    13 "Last-Translator: root <testumgebung@markusfrenzel.de>\n"
     12"POT-Creation-Date: 2017-02-12 20:28+0000\n"
     13"Last-Translator: Markus Frenzel <runpress@markusfrenzel.de>\n"
    1414"Language-Team: German"
    1515
    16 #: runpress.php:2041
    17 msgid "Save your RunTastic credentials"
    18 msgstr "Speichere Deine Runtastic Benutzerdaten"
    19 
    20 #: runpress.php:2042
    21 msgid "Sync your entries from RunTastic to your local database"
    22 msgstr ""
    23 "Synchronisiere Deine Einträge bei Runtastic mit Deiner lokalen Datenbank"
    24 
    25 #: runpress.php:2043
    26 msgid "Build a shortcode to implement your activities into your Posts or Pages"
    27 msgstr ""
    28 "Baue einen sog. Shortcode um Deine Aktivitäten in Seiten und / oder Beiträge "
    29 "einfügen zu können"
    30 
    31 #: runpress.php:2044
    32 msgid "Think about a donation to keep the plugin author motivated"
    33 msgstr ""
    34 "Denke bitte über eine Spende nach um den Plugin Autor weiterhin zu motivieren"
     16#. Description of the plugin
     17#: runpress.php:144
     18msgid ""
     19"Imports your sports activities (have a look at the readme for details) from "
     20"the Runtastic website. Displays the data via shortcodes on your webpage. "
     21"Widget included."
     22msgstr ""
     23"Importiert Deine Sportaktivit&auml;ten (schau in die Readme f&uuml;r Details)"
     24" von der Runtastic Webseite. Zeigt die Daten per Shortcode in Deiner "
     25"Webseite an. Widget inkludiert."
    3526
    3627#: runpress.php:101
     
    9485msgstr "Strand"
    9586
    96 #: runpress.php:119 runpress.php:1885 runpress.php:1899
    97 #: inc/widget/runpress-widget.php:266
     87#: runpress.php:119
    9888msgid "running"
    9989msgstr "Laufen"
    10090
    101 #: runpress.php:120 runpress.php:1890 runpress.php:1904
    102 #: inc/widget/runpress-widget.php:276
     91#: runpress.php:120
    10392msgid "hiking"
    10493msgstr "Wandern"
    10594
    106 #: runpress.php:121 runpress.php:1889 runpress.php:1903
    107 #: inc/widget/runpress-widget.php:274
     95#: runpress.php:121
    10896msgid "racecycling"
    10997msgstr "Rennradfahren"
    11098
    111 #: runpress.php:122 runpress.php:1888 runpress.php:1902
    112 #: inc/widget/runpress-widget.php:272
     99#: runpress.php:122
    113100msgid "mountainbiking"
    114101msgstr "Mountainbiken"
    115102
    116 #: runpress.php:123 runpress.php:1887 runpress.php:1901
    117 #: inc/widget/runpress-widget.php:270
     103#: runpress.php:123
    118104msgid "cycling"
    119105msgstr "Radfahren"
    120106
    121 #: runpress.php:124 runpress.php:1886 runpress.php:1900
    122 #: inc/widget/runpress-widget.php:268
     107#: runpress.php:124
    123108msgid "nordicwalking"
    124109msgstr "Nordic Walking"
    125110
    126 #: runpress.php:125 runpress.php:1892 runpress.php:1906
    127 #: inc/widget/runpress-widget.php:280
     111#: runpress.php:125
    128112msgid "ergometer"
    129113msgstr "Ergometer"
    130114
    131 #: runpress.php:126 runpress.php:1891 runpress.php:1905
    132 #: inc/widget/runpress-widget.php:278
     115#: runpress.php:126
    133116msgid "treadmill"
    134117msgstr "Laufband"
    135118
    136 #. #-#-#-#-#  tmp-runpress.pot (RunPress 1.4.0)  #-#-#-#-#
    137 #. Description of the plugin/theme
    138119#: runpress.php:128
    139 msgid ""
    140 "Imports your sports activities (running, nordicwalking, cycling, "
    141 "mountainbiking, racecycling, hiking, treadmill, ergometer) from the "
    142 "Runtastic website. Displays the data via shortcodes on your webpage. Widget "
    143 "included."
    144 msgstr ""
    145 "Importiert Deine Sport-Aktivitäten (Laufen, Nordic Walking, Radfahren, "
    146 "Mountainbiken, Rennradfahren, Wandern, Laufband, Ergometer) von der "
    147 "Runtastic Webseite. Zeigt die Daten per Shortcode auf Deiner Webseite. "
    148 "Widget inklusive."
    149 
    150 #: runpress.php:393
     120msgid "elliptical"
     121msgstr "Ellipsentrainer"
     122
     123#: runpress.php:129
     124msgid "spinning"
     125msgstr "Spinning"
     126
     127#: runpress.php:130
     128msgid "handbike"
     129msgstr "Handbiking"
     130
     131#: runpress.php:131
     132msgid "skating"
     133msgstr "Inlineskaten"
     134
     135#: runpress.php:132
     136msgid "skateboarding"
     137msgstr "Skateboarden"
     138
     139#: runpress.php:133
     140msgid "rowing"
     141msgstr "Rudern"
     142
     143#: runpress.php:134
     144msgid "swimming"
     145msgstr "Schwimmen"
     146
     147#: runpress.php:135
     148msgid "crosscountryskiing"
     149msgstr "Langlaufen"
     150
     151#: runpress.php:136
     152msgid "skiing"
     153msgstr "Skifahren"
     154
     155#: runpress.php:137
     156msgid "snowboarding"
     157msgstr "Snowboarden"
     158
     159#: runpress.php:138
     160msgid "backcountryskiing"
     161msgstr "Skitouren gehen"
     162
     163#: runpress.php:139
     164msgid "sledding"
     165msgstr "Schlittenfahren"
     166
     167#: runpress.php:140
     168msgid "motorbiking"
     169msgstr "Motorradfahren"
     170
     171#: runpress.php:141
     172msgid "walking"
     173msgstr "Gehen"
     174
     175#: runpress.php:142
     176msgid "riding"
     177msgstr "Reiten"
     178
     179#: runpress.php:409
    151180msgid "RunPress Statistics"
    152181msgstr "RunPress Statistiken"
    153182
    154 #: runpress.php:411
     183#: runpress.php:427
    155184msgid "Your latest "
    156185msgstr "Deine letzte "
    157186
    158 #: runpress.php:411
     187#: runpress.php:427
    159188msgid " activity was "
    160189msgstr " Aktivität war "
    161190
    162 #: runpress.php:413
     191#: runpress.php:429
    163192msgid "Nothing to show here yet.<br /><br />"
    164193msgstr "Hier ist noch nichts anzeigbar.<br /><br />"
    165194
    166 #: runpress.php:421 runpress.php:422
     195#: runpress.php:437 runpress.php:438
    167196msgid "Overall Statistics"
    168197msgstr "Gesamtstatistik"
    169198
    170 #: runpress.php:421 runpress.php:422
     199#: runpress.php:437 runpress.php:438
    171200msgid "Period: "
    172201msgstr "Zeitraum: "
    173202
    174 #: runpress.php:421 runpress.php:422 runpress.php:456
     203#: runpress.php:437 runpress.php:438 runpress.php:472
    175204msgid "Show"
    176205msgstr "Show"
    177206
    178 #: runpress.php:427 runpress.php:462
     207#: runpress.php:443 runpress.php:478
    179208msgid "Activity"
    180209msgstr "Aktivität"
    181210
    182 #: runpress.php:430 runpress.php:465
     211#: runpress.php:446 runpress.php:481
    183212msgid "Count"
    184213msgstr "Zählen"
    185214
    186 #: runpress.php:456 runpress.php:457
     215#: runpress.php:472 runpress.php:473
    187216msgid "Statistics"
    188217msgstr "Statistik"
    189218
    190 #: runpress.php:457
     219#: runpress.php:473
    191220msgid "Hide"
    192221msgstr "Ausblenden"
    193222
    194 #: runpress.php:488
     223#: runpress.php:504
    195224msgid "Donate here"
    196225msgstr "Spende hier"
    197226
    198 #: runpress.php:490
     227#: runpress.php:506
    199228msgid ""
    200229"Please consider a donation to keep the further development of RunPress up "
     
    204233"Weiterentwicklung aktiv zu fördern."
    205234
    206 #: runpress.php:570 runpress.php:886
     235#: runpress.php:586 runpress.php:902
    207236msgid "RunPress Local DB"
    208237msgstr "RunPress Lokale DB"
    209238
    210 #: runpress.php:570
     239#: runpress.php:586
    211240msgid "Local DB"
    212241msgstr "Lokale DB"
    213242
    214 #: runpress.php:571
     243#: runpress.php:587
    215244msgid "RunPress Sync"
    216245msgstr "RunPress Abgleich"
    217246
    218 #: runpress.php:571
     247#: runpress.php:587
    219248msgid "Sync"
    220249msgstr "Abgleich"
    221250
    222 #: runpress.php:572 runpress.php:1668
     251#: runpress.php:588 runpress.php:1822
    223252msgid "RunPress Shortcode Generator"
    224253msgstr "RunPress Shortcode Generator"
    225254
    226 #: runpress.php:572
     255#: runpress.php:588
    227256msgid "Shortcode Generator"
    228257msgstr "Shortcode Generierer"
    229258
    230 #: runpress.php:579 runpress.php:1634
     259#: runpress.php:595 runpress.php:1747
    231260msgid "RunPress Donation"
    232261msgstr "RunPress Spende"
    233262
    234 #: runpress.php:579
     263#: runpress.php:595
    235264msgid "Donate!"
    236265msgstr "Spenden!"
    237266
    238 #: runpress.php:581 runpress.php:2093
     267#: runpress.php:597 runpress.php:2283
    239268msgid "RunPress Donations Leaderboard"
    240269msgstr "RunPress Spenden Rangliste"
    241270
    242 #: runpress.php:581
     271#: runpress.php:597
    243272msgid "Donations Leaderbord"
    244273msgstr "Spenden Rangliste"
    245274
    246 #: runpress.php:597
     275#: runpress.php:613
    247276msgid "Start configuration."
    248277msgstr "Starte Konfiguration."
    249278
    250 #: runpress.php:598
     279#: runpress.php:614
    251280msgid "RunPress is not configured yet. Please do it now."
    252281msgstr "RunPress ist noch nicht konfiguriert. Bitte erledige dies jetzt."
    253282
    254 #: runpress.php:626 runpress.php:2006
     283#: runpress.php:642 runpress.php:2196
    255284msgid "Settings"
    256285msgstr "Einstellungen"
    257286
    258 #: runpress.php:627
     287#: runpress.php:643
    259288msgid ""
    260289"<br />Add your Runtastic Username and Password here. The Plugin will store "
    261290"your password into the wordpress database. Please make sure that your "
    262 "database is secure!<br /><br />Only running, nordicwalking, cycling, "
    263 "mountainbiking, racecycling, hiking, treadmill and ergometer activities are "
    264 "displayable via RunPress. Maybe other activities will get available in "
    265 "future updates.<br /><br />Select the unit types to show. You can choose "
    266 "beween Metric (European) and Imperial (UK and US) unit types.<br /><br />If "
    267 "you select the last option, all options and the local database will be "
    268 "deleted in case of deactivation of the plugin.<br /><br />This does not "
    269 "change anything in your Runtastic database."
    270 msgstr ""
    271 "<br />Gebe hier Deinen Runtastic Benutzernamen und Dein Kennwort ein. Das "
    272 "Plugin wird Dein Kennwort in der Datenbank ablegen. Bitte stell sicher, dass "
    273 "Deine Datenbank abgesichert ist!<br /><br />Nur Laufen, Nordic Walking, "
    274 "Radfahren, Mountainbiken, Rennradfahren, Wandern, Laufband und Ergometer "
    275 "Aktivitäten sind anzeigbar mit RunPress. Vielleicht werden andere "
    276 "Aktivitäten in zukünftigen Aktualisierungen berücksichtigt.<br /><br />Wähle "
    277 "die Einheiten die angezeigt werden sollen aus. Du kannst wählen zwischen "
    278 "Metrisch (Europa) und Imperial (GB und USA) Einheiten.<br /><br />Wenn Du "
    279 "die letzten Option anwählst, werden alle Optionen sowie die lokalen "
    280 "Datenbank gelöscht in dem Fall, daß das Plugin deaktiviert wird.<br /><br />"
    281 "Dies ändert allerdings nichts an der Runtastic Datenbank."
    282 
    283 #: runpress.php:631
     291"database is secure!<br /><br />Only a few sports activities are displayable "
     292"via RunPress. Maybe other activities will get available in future updates."
     293"<br /><br />Select the unit types to show. You can choose beween Metric "
     294"(European) and Imperial (UK and US) unit types.<br /><br />If you select the "
     295"last option, all options and the local database will be deleted in case of "
     296"deactivation of the plugin.<br /><br />This does not change anything in your "
     297"Runtastic database."
     298msgstr ""
     299"<br />Gebe hier Deinen Runtastic Benutzernamen und Passwort ein. Das Plugin "
     300"wird Dein Passwort in der Wordpress Datenbank speichern. Bitte stelle sicher,"
     301" dass Deine Datenbank gesichert ist!<br /><br />Nur ein paar "
     302"Sportaktivit&auml;ten sind anzeigbar mit RunPress. M&ouml;glicherweise "
     303"werden andere Sportaktivit&auml;ten hinzugef&uuml;gt in kommenden Updates."
     304"<br /><br />W&auml;hle die gew&uuml;nschten Einheiten aus. Du kannst w&auml;"
     305"hlen zwischen metrischen (Europa) und imperialen (Gro&szlig;britannien / USA)"
     306" Einheiten.<br /><br />Wenn Du die letzte Option selektierst, werden alle "
     307"Optionen und die lokale Datenbank Deiner Sportaktivit&auml;ten gel&ouml;scht,"
     308" bei Deaktivierung des Plugins.<br /><br />Dies &auml;ndert aber absolut "
     309"nichts an der Runtastic Datenbank."
     310
     311#: runpress.php:647
    284312msgid "Info"
    285313msgstr "Info"
    286314
    287 #: runpress.php:632
     315#: runpress.php:648
    288316msgid ""
    289317"<br /><h2>RunPress - A Wordpress Plugin to display your Runtastic Activities."
     
    300328"hier</a>"
    301329
    302 #: runpress.php:676
     330#: runpress.php:692
    303331msgid "Your Runtastic Username: "
    304332msgstr "Dein Runtastic Benutzername: "
    305333
    306 #: runpress.php:689
     334#: runpress.php:705
    307335msgid "This is not a correct email address!"
    308336msgstr "Dies ist keine korrekte E-Mail Adresse!"
    309337
    310 #: runpress.php:699
     338#: runpress.php:715
    311339msgid "Password must be set!"
    312340msgstr "Passwort muß gesetzt sein!"
    313341
    314 #: runpress.php:702
     342#: runpress.php:718
    315343msgid "Password must be shorter than 50 character!"
    316344msgstr "Passwort muß kürzer wie 50 Zeichen sein!"
    317345
    318 #: runpress.php:718 runpress.php:731 runpress.php:742
     346#: runpress.php:734 runpress.php:747 runpress.php:758
    319347msgid "Value was set to the default value!"
    320348msgstr "Wert wurde auf den Standardwert gesetzt!"
    321349
    322 #: runpress.php:755
     350#: runpress.php:771
    323351msgid "Settings saved."
    324352msgstr "Einstellungen gesichert."
    325353
    326 #: runpress.php:763
     354#: runpress.php:779
    327355msgid "An error occurred. Please check your user credentials and try again!"
    328356msgstr ""
     
    330358"versuche es erneut!"
    331359
    332 #: runpress.php:770
     360#: runpress.php:786
    333361msgid "RunPress Plugin Settings"
    334362msgstr "RunPress Plugin Einstellungen"
    335363
    336 #: runpress.php:775
     364#: runpress.php:791
    337365msgid "Runtastic E-Mail Address:"
    338366msgstr "Runtastic E-Mail Adresse:"
    339367
    340 #: runpress.php:780
     368#: runpress.php:796
    341369msgid "Runtastic Password:"
    342370msgstr "Runtastic Passwort:"
    343371
    344 #: runpress.php:787
     372#: runpress.php:803
    345373msgid "Unit Type:"
    346374msgstr "Einheiten:"
    347375
    348 #: runpress.php:788
     376#: runpress.php:804
    349377msgid "Metric Units"
    350378msgstr "Metrisch"
    351379
    352 #: runpress.php:788
     380#: runpress.php:804
    353381msgid "Imperial Units"
    354382msgstr "Imperial"
    355383
    356 #: runpress.php:795
     384#: runpress.php:811
    357385msgid "Delete Options:"
    358386msgstr "Lösche Optionen:"
    359387
    360 #: runpress.php:796
     388#: runpress.php:812
    361389msgid "Deletes all options on deactivation of the plugin."
    362390msgstr "Löscht alle Optionen bei Deaktivierung des Plugins"
    363391
    364 #: runpress.php:803
     392#: runpress.php:819
    365393msgid "Donations:"
    366394msgstr "Spenden:"
    367395
    368 #: runpress.php:804
     396#: runpress.php:820
    369397msgid ""
    370398"Don't bother me about sending a donation! I've already donated or I don't "
     
    374402"möchte nicht spenden."
    375403
    376 #: runpress.php:809
     404#: runpress.php:825
    377405msgid "Save Changes"
    378406msgstr "Speichere Änderungen"
    379407
    380 #: runpress.php:888
     408#: runpress.php:904
    381409msgid "Entries in local database:"
    382410msgstr "Einträge in lokaler Datenbank:"
    383411
    384 #: runpress.php:893 runpress.php:903 runpress.php:1192 runpress.php:1273
    385 #: runpress.php:1285 runpress.php:1883 runpress.php:1897
    386 #: inc/widget/runpress-widget.php:143
     412#: runpress.php:909 runpress.php:919 runpress.php:1264 runpress.php:1345
     413#: runpress.php:1357 runpress.php:2037 runpress.php:2049
     414#: inc/widget/runpress-widget.php:146
    387415msgid "Type"
    388416msgstr "Typ"
    389417
    390 #: runpress.php:894 runpress.php:904 runpress.php:1194 runpress.php:1274
    391 #: runpress.php:1286 inc/widget/runpress-widget.php:144
    392 #: inc/widget/runpress-widget.php:189
     418#: runpress.php:910 runpress.php:920 runpress.php:1266 runpress.php:1346
     419#: runpress.php:1358 inc/widget/runpress-widget.php:147
     420#: inc/widget/runpress-widget.php:192
    393421msgid "Date"
    394422msgstr "Datum"
    395423
    396 #: runpress.php:895 runpress.php:905 runpress.php:1275 runpress.php:1287
     424#: runpress.php:911 runpress.php:921 runpress.php:1347 runpress.php:1359
    397425msgid "Start"
    398426msgstr "Start"
    399427
    400 #: runpress.php:896 runpress.php:906 runpress.php:1276 runpress.php:1288
    401 #: inc/widget/runpress-widget.php:146 inc/widget/runpress-widget.php:191
     428#: runpress.php:912 runpress.php:922 runpress.php:1348 runpress.php:1360
     429#: inc/widget/runpress-widget.php:149 inc/widget/runpress-widget.php:194
    402430msgid "Duration"
    403431msgstr "Dauer"
    404432
    405 #: runpress.php:897 runpress.php:907 runpress.php:1193 runpress.php:1277
    406 #: runpress.php:1289 runpress.php:1411 runpress.php:1436
    407 #: inc/widget/runpress-widget.php:145 inc/widget/runpress-widget.php:190
     433#: runpress.php:913 runpress.php:923 runpress.php:1265 runpress.php:1349
     434#: runpress.php:1361 runpress.php:1483 runpress.php:1508
     435#: inc/widget/runpress-widget.php:148 inc/widget/runpress-widget.php:193
    408436msgid "Distance"
    409437msgstr "Distanz"
    410438
    411 #: runpress.php:898 runpress.php:908 runpress.php:1278 runpress.php:1290
    412 #: inc/widget/runpress-widget.php:147 inc/widget/runpress-widget.php:192
     439#: runpress.php:914 runpress.php:924 runpress.php:1350 runpress.php:1362
     440#: inc/widget/runpress-widget.php:150 inc/widget/runpress-widget.php:195
    413441msgid "Pace"
    414442msgstr "Tempo"
    415443
    416 #: runpress.php:899 runpress.php:909 runpress.php:1279 runpress.php:1291
     444#: runpress.php:915 runpress.php:925 runpress.php:1351 runpress.php:1363
    417445msgid "Speed"
    418446msgstr "Geschwindigkeit"
    419447
    420 #: runpress.php:923 runpress.php:1307
     448#: runpress.php:939 runpress.php:1379
    421449msgid "Format: DD.MM.YYYY"
    422450msgstr "Format: TT.MM.JJJJ"
    423451
    424 #: runpress.php:923 runpress.php:1307
     452#: runpress.php:939 runpress.php:1379
    425453msgid "Format: YYYY/MM/DD"
    426454msgstr "Format: JJJJ/MM/TT"
    427455
    428 #: runpress.php:924 runpress.php:925 runpress.php:1308 runpress.php:1309
    429 #: inc/widget/runpress-widget.php:206 inc/widget/runpress-widget.php:206
     456#: runpress.php:940 runpress.php:941 runpress.php:1380 runpress.php:1381
     457#: inc/widget/runpress-widget.php:209 inc/widget/runpress-widget.php:209
    430458msgid "Format: hh:mm:ss"
    431459msgstr "Format: hh:mm:ss"
    432460
    433 #: runpress.php:957 runpress.php:1547
     461#: runpress.php:973 runpress.php:1619
    434462msgid ""
    435463"Please click the following button once to synchronize your local wordpress "
     
    439467"Datenbank mit den Einträgen bei Runtastic zu füllen."
    440468
    441 #: runpress.php:959 runpress.php:1549
     469#: runpress.php:975 runpress.php:1621
    442470msgid "Read Entries from Runtastic"
    443471msgstr "Lese Einträge von Runtastic"
    444472
    445 #: runpress.php:966 runpress.php:1557
     473#: runpress.php:982 runpress.php:1629
    446474msgid ""
    447475"If you want to delete the entries in your local db, click the following "
     
    453481"Die Einträge in der Runtastic DB sind davon nicht betroffen!"
    454482
    455 #: runpress.php:968
     483#: runpress.php:984
    456484msgid "Delete all entries in local DB"
    457485msgstr "Lösche alle Einträge in der lokalen DB"
    458486
    459 #: runpress.php:1073
     487#: runpress.php:1145
    460488msgid "DB sync successful."
    461489msgstr "DB Abgleich erfolgreich."
    462490
    463 #: runpress.php:1082
     491#: runpress.php:1154
    464492msgid "DB sync failed! Please check the error message (if any) or try again."
    465493msgstr ""
     
    467495"oder versuch es erneut."
    468496
    469 #: runpress.php:1101
     497#: runpress.php:1173
    470498msgid "DB successfully truncated."
    471499msgstr "DB erfolgreich geleert."
    472500
    473 #: runpress.php:1107
     501#: runpress.php:1179
    474502msgid "DB was not successfully truncated. Please try again."
    475503msgstr "DB wurde nicht erfolgreich geleert. Bitte erneut versuchen."
    476504
    477 #: runpress.php:1195
     505#: runpress.php:1267
    478506msgid "Avg. Pace"
    479507msgstr "Schnitt Pace"
    480508
    481 #: runpress.php:1196
     509#: runpress.php:1268
    482510msgid "Elevation"
    483511msgstr "Steigung"
    484512
    485 #: runpress.php:1212 inc/widget/runpress-widget.php:136
     513#: runpress.php:1284 inc/widget/runpress-widget.php:139
    486514msgid "No map found!"
    487515msgstr "Keine Karte gefunden!"
    488516
    489 #: runpress.php:1223
     517#: runpress.php:1295
    490518msgid "Calories"
    491519msgstr "Kalorien"
    492520
    493 #: runpress.php:1224
     521#: runpress.php:1296
    494522msgid "Heartrate"
    495523msgstr "Puls"
    496524
    497 #: runpress.php:1225
     525#: runpress.php:1297
    498526msgid "Weather"
    499527msgstr "Wetter"
    500528
    501 #: runpress.php:1226
     529#: runpress.php:1298
    502530msgid "Surface"
    503531msgstr "Strecke"
    504532
    505 #: runpress.php:1227 inc/widget/runpress-widget.php:148
     533#: runpress.php:1299 inc/widget/runpress-widget.php:151
    506534msgid "Feeling"
    507535msgstr "Empfinden"
    508536
    509 #: runpress.php:1231
     537#: runpress.php:1303
    510538msgid "Avg."
    511539msgstr "Schnitt"
    512540
    513 #: runpress.php:1231
     541#: runpress.php:1303
    514542msgid "Max."
    515543msgstr "Max."
    516544
    517 #: runpress.php:1243 runpress.php:1452 inc/widget/runpress-widget.php:154
    518 #: inc/widget/runpress-widget.php:174 inc/widget/runpress-widget.php:216
     545#: runpress.php:1315 runpress.php:1524 inc/widget/runpress-widget.php:157
     546#: inc/widget/runpress-widget.php:177 inc/widget/runpress-widget.php:219
    519547msgid "Sorry, no data found!"
    520548msgstr "Entschuldigung, keine Daten gefunden!"
    521549
    522 #: runpress.php:1411 runpress.php:1435
     550#: runpress.php:1483 runpress.php:1507
    523551msgid "Month"
    524552msgstr "Monat"
    525553
    526 #: runpress.php:1428
     554#: runpress.php:1500
    527555msgid "Results"
    528556msgstr "Ergebnisse"
    529557
    530 #: runpress.php:1526
     558#: runpress.php:1598
    531559msgid "Cronjob scheduled."
    532560msgstr "Cronjob geplant."
    533561
    534 #: runpress.php:1535
     562#: runpress.php:1607
    535563msgid "Cronjob deleted."
    536564msgstr "Cronjob gelöscht."
    537565
    538 #: runpress.php:1539
     566#: runpress.php:1611
    539567msgid "RunPress Sync Settings"
    540568msgstr "RunPress Abgleich Einstellungen"
    541569
    542 #: runpress.php:1541
     570#: runpress.php:1613
    543571msgid "Entries in local database: "
    544572msgstr "Einträge in lokaler Datenbank:"
    545573
    546 #: runpress.php:1544
     574#: runpress.php:1616
    547575msgid "Manual sync of the local DB"
    548576msgstr "Manueller Abgleich der lokalen DB"
    549577
    550 #: runpress.php:1554
     578#: runpress.php:1626
    551579msgid "Delete all entries from the local DB"
    552580msgstr "Lösche alle Einträge der lokalen DB"
    553581
    554 #: runpress.php:1559
     582#: runpress.php:1631
    555583msgid "Delete all entries in local db"
    556584msgstr "Lösche alle Einträge in lokaler DB"
    557585
    558 #: runpress.php:1564
     586#: runpress.php:1636
    559587msgid "Schedule a Wordpress Cron Job"
    560588msgstr "Plane einen Wordpress Cron Job ein"
    561589
    562 #: runpress.php:1569
     590#: runpress.php:1641
    563591msgid "Your have scheduled a WP Cron job to run at the following basis "
    564592msgstr "Du hast einen WP Cron Job geplant auf folgender Basis "
    565593
    566 #: runpress.php:1573
     594#: runpress.php:1645
    567595msgid "Define a WP Cron job to start the sync of your local db automatically."
    568596msgstr ""
     
    570598"automatisch durchzuführen."
    571599
    572 #: runpress.php:1578
     600#: runpress.php:1650
    573601msgid "Interval:"
    574602msgstr "Interval:"
    575603
    576 #: runpress.php:1580
     604#: runpress.php:1652
    577605msgid "Hourly"
    578606msgstr "Stündlich"
    579607
    580 #: runpress.php:1581
     608#: runpress.php:1653
    581609msgid "every 6 hours"
    582610msgstr "alle 6 Stunden"
    583611
    584 #: runpress.php:1582
     612#: runpress.php:1654
    585613msgid "every 12 hours"
    586614msgstr "alle 12 Stunden"
    587615
    588 #: runpress.php:1583
     616#: runpress.php:1655
    589617msgid "once a day"
    590618msgstr "einmal am Tag"
    591619
    592 #: runpress.php:1584
     620#: runpress.php:1656
    593621msgid "once a week"
    594622msgstr "einmal pro Woche"
    595623
    596 #: runpress.php:1592
     624#: runpress.php:1664
    597625msgid "Change scheduled Cron job"
    598626msgstr "Ändere geplanten Cron Job"
    599627
    600 #: runpress.php:1600
     628#: runpress.php:1672
    601629msgid "Schedule Cron job"
    602630msgstr "Plane Cron Job"
    603631
    604 #: runpress.php:1611
     632#: runpress.php:1683
    605633msgid "Delete the scheduled Wordpress Cron job"
    606634msgstr "Lösche den geplanten Cron Job"
    607635
    608 #: runpress.php:1614
     636#: runpress.php:1686
    609637msgid "Click here to delete the scheduled Wordpress Cron job for RunPress."
    610638msgstr ""
    611639"Klicke hier um den geplanten Wordpress Cron Job für Runpress zu löschen."
    612640
    613 #: runpress.php:1616
     641#: runpress.php:1688
    614642msgid "Delete Cron Job"
    615643msgstr "Lösche Cron Job"
    616644
    617 #: runpress.php:1635
     645#: runpress.php:1748
    618646msgid "Motivate the developer of this plugin"
    619647msgstr "Motiviere den Entwickler dieses Plugins"
    620648
    621 #: runpress.php:1636
     649#: runpress.php:1749
    622650msgid ""
    623651"Please consider a small (or even a big) donation to the developer of the "
     
    636664"sicherstellt.<br /><br />"
    637665
    638 #: runpress.php:1637
     666#: runpress.php:1750
    639667msgid ""
    640668"German speaking RunPress user may use this icon to donate via paypal:<br />"
     
    644672"Paypal zu spenden:<br /><br />"
    645673
    646 #: runpress.php:1645
     674#: runpress.php:1758
    647675msgid ""
    648676"English speaking RunPress User may use this icon to donate via paypal:<br />"
     
    652680"Paypal zu spenden:<br /><br />"
    653681
    654 #: runpress.php:1669
     682#: runpress.php:1823
    655683msgid "General Shortcode usage"
    656684msgstr "Generelle Shortcode Benutzung"
    657685
    658 #: runpress.php:1671
     686#: runpress.php:1825
    659687msgid ""
    660688"You can choose between 4 possibilities to display your runtastic activities: "
     
    712740"aktiviert hast."
    713741
    714 #: runpress.php:1674
     742#: runpress.php:1828
    715743msgid "Runpress Shortcode Generator"
    716744msgstr "RunPress Shortcode Generierer"
    717745
    718 #: runpress.php:1802
     746#: runpress.php:1956
    719747msgid "Reset"
    720748msgstr "Zurücksetzen"
    721749
    722 #: runpress.php:1807
     750#: runpress.php:1961
    723751msgid "Display:"
    724752msgstr "Anzeige:"
    725753
    726 #: runpress.php:1809
     754#: runpress.php:1963
    727755msgid "Table"
    728756msgstr "Tabelle"
    729757
    730 #: runpress.php:1811
     758#: runpress.php:1965
    731759msgid "Chart"
    732760msgstr "Diagramm"
    733761
    734 #: runpress.php:1812
     762#: runpress.php:1966
    735763msgid "Single"
    736764msgstr "Einzel"
    737765
    738 #: runpress.php:1813 runpress.php:1828 runpress.php:1870
     766#: runpress.php:1967 runpress.php:1982 runpress.php:2024
    739767msgid "empty"
    740768msgstr "leer"
    741769
    742 #: runpress.php:1817
     770#: runpress.php:1971
    743771msgid "<i>If \"empty\" the default value (table) will be used.</i>"
    744772msgstr "<i>Wenn \"leer\" wird der Standard Wert (Tabelle) verwendet.</i>"
    745773
    746 #: runpress.php:1821 runpress.php:1844
     774#: runpress.php:1975 runpress.php:1998
    747775msgid "Year:"
    748776msgstr "Jahr:"
    749777
    750 #: runpress.php:1832
     778#: runpress.php:1986
    751779msgid "<i>If \"empty\" the default value (the actual year) will be used.</i>"
    752780msgstr ""
    753781"<i>Wenn \"leer\" wird der Standard Wert (das aktuelle Jahr) verwendet.</i>"
    754782
    755 #: runpress.php:1836
     783#: runpress.php:1990
    756784msgid "Entry:"
    757785msgstr "Eintrag:"
    758786
    759 #: runpress.php:1838
     787#: runpress.php:1992
    760788msgid "latest"
    761789msgstr "letzte"
    762790
    763 #: runpress.php:1858
     791#: runpress.php:2012
    764792msgid ""
    765793"<i>Just choose the activity from the dropdown list or use the entry <b>"
     
    769797"Eintrag <b>letzte</b> f&uuml;r Deine letzte Aktivit&auml;t.</i>"
    770798
    771 #: runpress.php:1861
     799#: runpress.php:2015
    772800msgid "Mapwidth / Mapheight:"
    773801msgstr "Kartenbreite- / -höhe:"
    774802
    775 #: runpress.php:1863
     803#: runpress.php:2017
    776804msgid ""
    777805"<i>Specifies the width and the height of the map which is shown in your post "
     
    781809"Seite ausgegeben wird.</i>"
    782810
    783 #: runpress.php:1866
     811#: runpress.php:2020
    784812msgid "Sortorder:"
    785813msgstr "Sortierreihenfolge:"
    786814
    787 #: runpress.php:1868
     815#: runpress.php:2022
    788816msgid "Descending"
    789817msgstr "Absteigend"
    790818
    791 #: runpress.php:1869
     819#: runpress.php:2023
    792820msgid "Ascending"
    793821msgstr "Aufsteigend"
    794822
    795 #: runpress.php:1874
     823#: runpress.php:2028
    796824msgid "<i>If \"empty\" the default value (descending) will be used.</i>"
    797825msgstr "<i>Wenn \"leer\" wird der Standard Wert (Absteigend) verwendet.</i>"
    798826
    799 #: runpress.php:1878
     827#: runpress.php:2032
    800828msgid " Title:"
    801829msgstr "Titel:"
    802830
    803 #: runpress.php:1880
     831#: runpress.php:2034
    804832msgid "<i>Leave the text field blank to show no title.</i>"
    805833msgstr "<i>Textfeld leer lassen um keinen Titel anzuzeigen.</i>"
    806834
    807 #: runpress.php:1894
     835#: runpress.php:2046
    808836msgid "<i>Leave the type field blank to show all activity types.</i>"
    809837msgstr "<i>Typfeld leer lassen um alle Aktivitätstypen zu zeigen.</i>"
    810838
    811 #: runpress.php:1915
     839#: runpress.php:2064
    812840msgid "Generate Shortcode"
    813841msgstr "Generiere Shortcode"
    814842
    815 #: runpress.php:1918
     843#: runpress.php:2067
    816844msgid ""
    817845"<i>After clicking this button the shortcode will be generated and displayed "
     
    829857"ein.</i>"
    830858
    831 #: runpress.php:1936
     859#: runpress.php:2126
    832860msgid "four time daily"
    833861msgstr "viermal täglich"
    834862
    835 #: runpress.php:1940
     863#: runpress.php:2130
    836864msgid "weekly"
    837865msgstr "wöchentlich"
    838866
    839 #: runpress.php:2047
     867#: runpress.php:2231 runpress.php:2231
     868msgid "Save your RunTastic credentials"
     869msgstr "Speichere Deine Runtastic Benutzerdaten"
     870
     871#: runpress.php:2232 runpress.php:2232
     872msgid "Sync your entries from RunTastic to your local database"
     873msgstr ""
     874"Synchronisiere Deine Einträge bei Runtastic mit Deiner lokalen Datenbank"
     875
     876#: runpress.php:2233 runpress.php:2233
     877msgid "Build a shortcode to implement your activities into your Posts or Pages"
     878msgstr ""
     879"Baue einen sog. Shortcode um Deine Aktivitäten in Seiten und / oder Beiträge "
     880"einfügen zu können"
     881
     882#: runpress.php:2234 runpress.php:2234
     883msgid "Think about a donation to keep the plugin author motivated"
     884msgstr ""
     885"Denke bitte über eine Spende nach um den Plugin Autor weiterhin zu motivieren"
     886
     887#: runpress.php:2237
    840888msgid "Need help? Check the tutorial!"
    841889msgstr "Ben&ouml;tigst Du Hilfe? Nutz das Tutorial!"
    842890
    843 #: runpress.php:2094
     891#: runpress.php:2284
    844892msgid "Is your country still on top?"
    845893msgstr "Ist Dein Land immer noch an der Spitze?"
    846894
    847 #: runpress.php:2096
     895#: runpress.php:2286
    848896msgid ""
    849897"I really appreciate donations by the users of RunPress because they are "
     
    861909"Wille allein z&auml;hlt!"
    862910
    863 #: runpress.php:2098
     911#: runpress.php:2288
    864912msgid "Leaderboard since the last update of RunPress:"
    865913msgstr "Rangliste seit dem letzten Update von RunPress:"
    866914
    867 #: runpress.php:2102
     915#: runpress.php:2292
    868916msgid "1st. Place"
    869917msgstr "1. Platz"
    870918
    871 #: runpress.php:2102 runpress.php:2102
     919#: runpress.php:2292 runpress.php:2292
    872920msgid "Denmark"
    873921msgstr "D&auml;nemark"
    874922
    875 #: runpress.php:2103
     923#: runpress.php:2293
    876924msgid "2nd. Place"
    877925msgstr "2. Platz"
    878926
    879 #: runpress.php:2103 runpress.php:2103
     927#: runpress.php:2293 runpress.php:2293
    880928msgid "Germany"
    881929msgstr "Deutschland"
    882930
    883 #: runpress.php:2104
     931#: runpress.php:2294
    884932msgid "3rd. Place"
    885933msgstr "3. Platz"
    886934
    887 #: runpress.php:2104 runpress.php:2104
     935#: runpress.php:2294 runpress.php:2294
    888936msgid "Brazil"
    889937msgstr "Brasilien"
     
    902950"DB."
    903951
    904 #: inc/widget/runpress-widget.php:89
     952#: inc/widget/runpress-widget.php:87
    905953msgid "No data selected!"
    906954msgstr "Keine Daten ausgewählt!"
    907955
    908 #: inc/widget/runpress-widget.php:166
     956#: inc/widget/runpress-widget.php:169
    909957msgid "Longest Distance"
    910958msgstr "Längste Distanz"
    911959
    912 #: inc/widget/runpress-widget.php:167
     960#: inc/widget/runpress-widget.php:170
    913961msgid "Longest Duration"
    914962msgstr "Längste Dauer"
    915963
    916 #: inc/widget/runpress-widget.php:168
     964#: inc/widget/runpress-widget.php:171
    917965msgid "Fastest Pace"
    918966msgstr "Schnellstes Tempo"
    919967
    920 #: inc/widget/runpress-widget.php:204
     968#: inc/widget/runpress-widget.php:207
    921969msgid "Format: DD.MM."
    922970msgstr "Format: TT.MM."
    923971
    924 #: inc/widget/runpress-widget.php:204
     972#: inc/widget/runpress-widget.php:207
    925973msgid "Format: MM/DD"
    926974msgstr "Format: MM/DD"
    927975
    928 #: inc/widget/runpress-widget.php:236
     976#: inc/widget/runpress-widget.php:239
    929977msgid "RunPress Widget"
    930978msgstr "RunPress Widget"
    931979
    932 #: inc/widget/runpress-widget.php:250
     980#: inc/widget/runpress-widget.php:251
    933981msgid "Title:"
    934982msgstr "Titel:"
    935983
    936 #: inc/widget/runpress-widget.php:254
     984#: inc/widget/runpress-widget.php:255
    937985msgid "Show last activity"
    938986msgstr "Zeige letzte Aktivität"
    939987
    940 #: inc/widget/runpress-widget.php:257
     988#: inc/widget/runpress-widget.php:258
    941989msgid "Show highscores"
    942990msgstr "Zeige Bestwerte"
    943991
    944 #: inc/widget/runpress-widget.php:260
     992#: inc/widget/runpress-widget.php:261
    945993msgid "Show last 5 entries"
    946994msgstr "Zeige letzte 5 Einträge"
    947995
    948 #: inc/widget/runpress-widget.php:264
     996#: inc/widget/runpress-widget.php:265
    949997msgid "Show activity types:"
    950998msgstr "Zeige Aktivitätstypen:"
  • runpress/tags/1.4.2/languages/runpress.pot

    r1589549 r1594425  
    44"Project-Id-Version: RunPress\n"
    55"Report-Msgid-Bugs-To: \n"
    6 "POT-Creation-Date: 2017-02-03 21:59+0000\n"
     6"POT-Creation-Date: 2017-02-12 20:28+0000\n"
    77"POT-Revision-Date: Mon Feb 29 2016 11:53:23 GMT+0100\n"
    88"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
     
    8484msgstr ""
    8585
    86 #: runpress.php:119 runpress.php:1885 runpress.php:1899
    87 #: inc/widget/runpress-widget.php:266
     86#: runpress.php:119
    8887msgid "running"
    8988msgstr ""
    9089
    91 #: runpress.php:120 runpress.php:1890 runpress.php:1904
    92 #: inc/widget/runpress-widget.php:276
     90#: runpress.php:120
    9391msgid "hiking"
    9492msgstr ""
    9593
    96 #: runpress.php:121 runpress.php:1889 runpress.php:1903
    97 #: inc/widget/runpress-widget.php:274
     94#: runpress.php:121
    9895msgid "racecycling"
    9996msgstr ""
    10097
    101 #: runpress.php:122 runpress.php:1888 runpress.php:1902
    102 #: inc/widget/runpress-widget.php:272
     98#: runpress.php:122
    10399msgid "mountainbiking"
    104100msgstr ""
    105101
    106 #: runpress.php:123 runpress.php:1887 runpress.php:1901
    107 #: inc/widget/runpress-widget.php:270
     102#: runpress.php:123
    108103msgid "cycling"
    109104msgstr ""
    110105
    111 #: runpress.php:124 runpress.php:1886 runpress.php:1900
    112 #: inc/widget/runpress-widget.php:268
     106#: runpress.php:124
    113107msgid "nordicwalking"
    114108msgstr ""
    115109
    116 #: runpress.php:125 runpress.php:1892 runpress.php:1906
    117 #: inc/widget/runpress-widget.php:280
     110#: runpress.php:125
    118111msgid "ergometer"
    119112msgstr ""
    120113
    121 #: runpress.php:126 runpress.php:1891 runpress.php:1905
    122 #: inc/widget/runpress-widget.php:278
     114#: runpress.php:126
    123115msgid "treadmill"
    124116msgstr ""
    125117
     118#: runpress.php:128
     119msgid "elliptical"
     120msgstr ""
     121
     122#: runpress.php:129
     123msgid "spinning"
     124msgstr ""
     125
     126#: runpress.php:130
     127msgid "handbike"
     128msgstr ""
     129
     130#: runpress.php:131
     131msgid "skating"
     132msgstr ""
     133
     134#: runpress.php:132
     135msgid "skateboarding"
     136msgstr ""
     137
     138#: runpress.php:133
     139msgid "rowing"
     140msgstr ""
     141
     142#: runpress.php:134
     143msgid "swimming"
     144msgstr ""
     145
     146#: runpress.php:135
     147msgid "crosscountryskiing"
     148msgstr ""
     149
     150#: runpress.php:136
     151msgid "skiing"
     152msgstr ""
     153
     154#: runpress.php:137
     155msgid "snowboarding"
     156msgstr ""
     157
     158#: runpress.php:138
     159msgid "backcountryskiing"
     160msgstr ""
     161
     162#: runpress.php:139
     163msgid "sledding"
     164msgstr ""
     165
     166#: runpress.php:140
     167msgid "motorbiking"
     168msgstr ""
     169
     170#: runpress.php:141
     171msgid "walking"
     172msgstr ""
     173
     174#: runpress.php:142
     175msgid "riding"
     176msgstr ""
     177
    126178#. Description of the plugin
    127 #: runpress.php:128
    128 msgid ""
    129 "Imports your sports activities (running, nordicwalking, cycling, "
    130 "mountainbiking, racecycling, hiking, treadmill, ergometer) from the "
    131 "Runtastic website. Displays the data via shortcodes on your webpage. Widget "
    132 "included."
    133 msgstr ""
    134 
    135 #: runpress.php:393
     179#: runpress.php:144
     180msgid ""
     181"Imports your sports activities (have a look at the readme for details) from "
     182"the Runtastic website. Displays the data via shortcodes on your webpage. "
     183"Widget included."
     184msgstr ""
     185
     186#: runpress.php:409
    136187msgid "RunPress Statistics"
    137188msgstr ""
    138189
    139 #: runpress.php:411
     190#: runpress.php:427
    140191msgid "Your latest "
    141192msgstr ""
    142193
    143 #: runpress.php:411
     194#: runpress.php:427
    144195msgid " activity was "
    145196msgstr ""
    146197
    147 #: runpress.php:413
     198#: runpress.php:429
    148199msgid "Nothing to show here yet.<br /><br />"
    149200msgstr ""
    150201
    151 #: runpress.php:421 runpress.php:422
     202#: runpress.php:437 runpress.php:438
    152203msgid "Overall Statistics"
    153204msgstr ""
    154205
    155 #: runpress.php:421 runpress.php:422
     206#: runpress.php:437 runpress.php:438
    156207msgid "Period: "
    157208msgstr ""
    158209
    159 #: runpress.php:421 runpress.php:422 runpress.php:456
     210#: runpress.php:437 runpress.php:438 runpress.php:472
    160211msgid "Show"
    161212msgstr ""
    162213
    163 #: runpress.php:427 runpress.php:462
     214#: runpress.php:443 runpress.php:478
    164215msgid "Activity"
    165216msgstr ""
    166217
    167 #: runpress.php:430 runpress.php:465
     218#: runpress.php:446 runpress.php:481
    168219msgid "Count"
    169220msgstr ""
    170221
    171 #: runpress.php:456 runpress.php:457
     222#: runpress.php:472 runpress.php:473
    172223msgid "Statistics"
    173224msgstr ""
    174225
    175 #: runpress.php:457
     226#: runpress.php:473
    176227msgid "Hide"
    177228msgstr ""
    178229
    179 #: runpress.php:488
     230#: runpress.php:504
    180231msgid "Donate here"
    181232msgstr ""
    182233
    183 #: runpress.php:490
     234#: runpress.php:506
    184235msgid ""
    185236"Please consider a donation to keep the further development of RunPress up "
     
    187238msgstr ""
    188239
    189 #: runpress.php:570 runpress.php:886
     240#: runpress.php:586 runpress.php:902
    190241msgid "RunPress Local DB"
    191242msgstr ""
    192243
    193 #: runpress.php:570
     244#: runpress.php:586
    194245msgid "Local DB"
    195246msgstr ""
    196247
    197 #: runpress.php:571
     248#: runpress.php:587
    198249msgid "RunPress Sync"
    199250msgstr ""
    200251
    201 #: runpress.php:571
     252#: runpress.php:587
    202253msgid "Sync"
    203254msgstr ""
    204255
    205 #: runpress.php:572 runpress.php:1668
     256#: runpress.php:588 runpress.php:1822
    206257msgid "RunPress Shortcode Generator"
    207258msgstr ""
    208259
    209 #: runpress.php:572
     260#: runpress.php:588
    210261msgid "Shortcode Generator"
    211262msgstr ""
    212263
    213 #: runpress.php:579 runpress.php:1634
     264#: runpress.php:595 runpress.php:1747
    214265msgid "RunPress Donation"
    215266msgstr ""
    216267
    217 #: runpress.php:579
     268#: runpress.php:595
    218269msgid "Donate!"
    219270msgstr ""
    220271
    221 #: runpress.php:581 runpress.php:2093
     272#: runpress.php:597 runpress.php:2283
    222273msgid "RunPress Donations Leaderboard"
    223274msgstr ""
    224275
    225 #: runpress.php:581
     276#: runpress.php:597
    226277msgid "Donations Leaderbord"
    227278msgstr ""
    228279
    229 #: runpress.php:597
     280#: runpress.php:613
    230281msgid "Start configuration."
    231282msgstr ""
    232283
    233 #: runpress.php:598
     284#: runpress.php:614
    234285msgid "RunPress is not configured yet. Please do it now."
    235286msgstr ""
    236287
    237 #: runpress.php:626 runpress.php:2006
     288#: runpress.php:642 runpress.php:2196
    238289msgid "Settings"
    239290msgstr ""
    240291
    241 #: runpress.php:627
     292#: runpress.php:643
    242293msgid ""
    243294"<br />Add your Runtastic Username and Password here. The Plugin will store "
    244295"your password into the wordpress database. Please make sure that your "
    245 "database is secure!<br /><br />Only running, nordicwalking, cycling, "
    246 "mountainbiking, racecycling, hiking, treadmill and ergometer activities are "
    247 "displayable via RunPress. Maybe other activities will get available in "
    248 "future updates.<br /><br />Select the unit types to show. You can choose "
    249 "beween Metric (European) and Imperial (UK and US) unit types.<br /><br />If "
    250 "you select the last option, all options and the local database will be "
    251 "deleted in case of deactivation of the plugin.<br /><br />This does not "
    252 "change anything in your Runtastic database."
    253 msgstr ""
    254 
    255 #: runpress.php:631
     296"database is secure!<br /><br />Only a few sports activities are displayable "
     297"via RunPress. Maybe other activities will get available in future updates."
     298"<br /><br />Select the unit types to show. You can choose beween Metric "
     299"(European) and Imperial (UK and US) unit types.<br /><br />If you select the "
     300"last option, all options and the local database will be deleted in case of "
     301"deactivation of the plugin.<br /><br />This does not change anything in your "
     302"Runtastic database."
     303msgstr ""
     304
     305#: runpress.php:647
    256306msgid "Info"
    257307msgstr ""
    258308
    259 #: runpress.php:632
     309#: runpress.php:648
    260310msgid ""
    261311"<br /><h2>RunPress - A Wordpress Plugin to display your Runtastic Activities."
     
    265315msgstr ""
    266316
    267 #: runpress.php:676
     317#: runpress.php:692
    268318msgid "Your Runtastic Username: "
    269319msgstr ""
    270320
    271 #: runpress.php:689
     321#: runpress.php:705
    272322msgid "This is not a correct email address!"
    273323msgstr ""
    274324
    275 #: runpress.php:699
     325#: runpress.php:715
    276326msgid "Password must be set!"
    277327msgstr ""
    278328
    279 #: runpress.php:702
     329#: runpress.php:718
    280330msgid "Password must be shorter than 50 character!"
    281331msgstr ""
    282332
    283 #: runpress.php:718 runpress.php:731 runpress.php:742
     333#: runpress.php:734 runpress.php:747 runpress.php:758
    284334msgid "Value was set to the default value!"
    285335msgstr ""
    286336
    287 #: runpress.php:755
     337#: runpress.php:771
    288338msgid "Settings saved."
    289339msgstr ""
    290340
    291 #: runpress.php:763
     341#: runpress.php:779
    292342msgid "An error occurred. Please check your user credentials and try again!"
    293343msgstr ""
    294344
    295 #: runpress.php:770
     345#: runpress.php:786
    296346msgid "RunPress Plugin Settings"
    297347msgstr ""
    298348
    299 #: runpress.php:775
     349#: runpress.php:791
    300350msgid "Runtastic E-Mail Address:"
    301351msgstr ""
    302352
    303 #: runpress.php:780
     353#: runpress.php:796
    304354msgid "Runtastic Password:"
    305355msgstr ""
    306356
    307 #: runpress.php:787
     357#: runpress.php:803
    308358msgid "Unit Type:"
    309359msgstr ""
    310360
    311 #: runpress.php:788
     361#: runpress.php:804
    312362msgid "Metric Units"
    313363msgstr ""
    314364
    315 #: runpress.php:788
     365#: runpress.php:804
    316366msgid "Imperial Units"
    317367msgstr ""
    318368
    319 #: runpress.php:795
     369#: runpress.php:811
    320370msgid "Delete Options:"
    321371msgstr ""
    322372
    323 #: runpress.php:796
     373#: runpress.php:812
    324374msgid "Deletes all options on deactivation of the plugin."
    325375msgstr ""
    326376
    327 #: runpress.php:803
     377#: runpress.php:819
    328378msgid "Donations:"
    329379msgstr ""
    330380
    331 #: runpress.php:804
     381#: runpress.php:820
    332382msgid ""
    333383"Don't bother me about sending a donation! I've already donated or I don't "
     
    335385msgstr ""
    336386
    337 #: runpress.php:809
     387#: runpress.php:825
    338388msgid "Save Changes"
    339389msgstr ""
    340390
    341 #: runpress.php:888
     391#: runpress.php:904
    342392msgid "Entries in local database:"
    343393msgstr ""
    344394
    345 #: runpress.php:893 runpress.php:903 runpress.php:1192 runpress.php:1273
    346 #: runpress.php:1285 runpress.php:1883 runpress.php:1897
    347 #: inc/widget/runpress-widget.php:143
     395#: runpress.php:909 runpress.php:919 runpress.php:1264 runpress.php:1345
     396#: runpress.php:1357 runpress.php:2037 runpress.php:2049
     397#: inc/widget/runpress-widget.php:146
    348398msgid "Type"
    349399msgstr ""
    350400
    351 #: runpress.php:894 runpress.php:904 runpress.php:1194 runpress.php:1274
    352 #: runpress.php:1286 inc/widget/runpress-widget.php:144
    353 #: inc/widget/runpress-widget.php:189
     401#: runpress.php:910 runpress.php:920 runpress.php:1266 runpress.php:1346
     402#: runpress.php:1358 inc/widget/runpress-widget.php:147
     403#: inc/widget/runpress-widget.php:192
    354404msgid "Date"
    355405msgstr ""
    356406
    357 #: runpress.php:895 runpress.php:905 runpress.php:1275 runpress.php:1287
     407#: runpress.php:911 runpress.php:921 runpress.php:1347 runpress.php:1359
    358408msgid "Start"
    359409msgstr ""
    360410
    361 #: runpress.php:896 runpress.php:906 runpress.php:1276 runpress.php:1288
    362 #: inc/widget/runpress-widget.php:146 inc/widget/runpress-widget.php:191
     411#: runpress.php:912 runpress.php:922 runpress.php:1348 runpress.php:1360
     412#: inc/widget/runpress-widget.php:149 inc/widget/runpress-widget.php:194
    363413msgid "Duration"
    364414msgstr ""
    365415
    366 #: runpress.php:897 runpress.php:907 runpress.php:1193 runpress.php:1277
    367 #: runpress.php:1289 runpress.php:1411 runpress.php:1436
    368 #: inc/widget/runpress-widget.php:145 inc/widget/runpress-widget.php:190
     416#: runpress.php:913 runpress.php:923 runpress.php:1265 runpress.php:1349
     417#: runpress.php:1361 runpress.php:1483 runpress.php:1508
     418#: inc/widget/runpress-widget.php:148 inc/widget/runpress-widget.php:193
    369419msgid "Distance"
    370420msgstr ""
    371421
    372 #: runpress.php:898 runpress.php:908 runpress.php:1278 runpress.php:1290
    373 #: inc/widget/runpress-widget.php:147 inc/widget/runpress-widget.php:192
     422#: runpress.php:914 runpress.php:924 runpress.php:1350 runpress.php:1362
     423#: inc/widget/runpress-widget.php:150 inc/widget/runpress-widget.php:195
    374424msgid "Pace"
    375425msgstr ""
    376426
    377 #: runpress.php:899 runpress.php:909 runpress.php:1279 runpress.php:1291
     427#: runpress.php:915 runpress.php:925 runpress.php:1351 runpress.php:1363
    378428msgid "Speed"
    379429msgstr ""
    380430
    381 #: runpress.php:923 runpress.php:1307
     431#: runpress.php:939 runpress.php:1379
    382432msgid "Format: DD.MM.YYYY"
    383433msgstr ""
    384434
    385 #: runpress.php:923 runpress.php:1307
     435#: runpress.php:939 runpress.php:1379
    386436msgid "Format: YYYY/MM/DD"
    387437msgstr ""
    388438
    389 #: runpress.php:924 runpress.php:925 runpress.php:1308 runpress.php:1309
    390 #: inc/widget/runpress-widget.php:206 inc/widget/runpress-widget.php:206
     439#: runpress.php:940 runpress.php:941 runpress.php:1380 runpress.php:1381
     440#: inc/widget/runpress-widget.php:209 inc/widget/runpress-widget.php:209
    391441msgid "Format: hh:mm:ss"
    392442msgstr ""
    393443
    394 #: runpress.php:957 runpress.php:1547
     444#: runpress.php:973 runpress.php:1619
    395445msgid ""
    396446"Please click the following button once to synchronize your local wordpress "
     
    398448msgstr ""
    399449
    400 #: runpress.php:959 runpress.php:1549
     450#: runpress.php:975 runpress.php:1621
    401451msgid "Read Entries from Runtastic"
    402452msgstr ""
    403453
    404 #: runpress.php:966 runpress.php:1557
     454#: runpress.php:982 runpress.php:1629
    405455msgid ""
    406456"If you want to delete the entries in your local db, click the following "
     
    409459msgstr ""
    410460
    411 #: runpress.php:968
     461#: runpress.php:984
    412462msgid "Delete all entries in local DB"
    413463msgstr ""
    414464
    415 #: runpress.php:1073
     465#: runpress.php:1145
    416466msgid "DB sync successful."
    417467msgstr ""
    418468
    419 #: runpress.php:1082
     469#: runpress.php:1154
    420470msgid "DB sync failed! Please check the error message (if any) or try again."
    421471msgstr ""
    422472
    423 #: runpress.php:1101
     473#: runpress.php:1173
    424474msgid "DB successfully truncated."
    425475msgstr ""
    426476
    427 #: runpress.php:1107
     477#: runpress.php:1179
    428478msgid "DB was not successfully truncated. Please try again."
    429479msgstr ""
    430480
    431 #: runpress.php:1195
     481#: runpress.php:1267
    432482msgid "Avg. Pace"
    433483msgstr ""
    434484
    435 #: runpress.php:1196
     485#: runpress.php:1268
    436486msgid "Elevation"
    437487msgstr ""
    438488
    439 #: runpress.php:1212 inc/widget/runpress-widget.php:136
     489#: runpress.php:1284 inc/widget/runpress-widget.php:139
    440490msgid "No map found!"
    441491msgstr ""
    442492
    443 #: runpress.php:1223
     493#: runpress.php:1295
    444494msgid "Calories"
    445495msgstr ""
    446496
    447 #: runpress.php:1224
     497#: runpress.php:1296
    448498msgid "Heartrate"
    449499msgstr ""
    450500
    451 #: runpress.php:1225
     501#: runpress.php:1297
    452502msgid "Weather"
    453503msgstr ""
    454504
    455 #: runpress.php:1226
     505#: runpress.php:1298
    456506msgid "Surface"
    457507msgstr ""
    458508
    459 #: runpress.php:1227 inc/widget/runpress-widget.php:148
     509#: runpress.php:1299 inc/widget/runpress-widget.php:151
    460510msgid "Feeling"
    461511msgstr ""
    462512
    463 #: runpress.php:1231
     513#: runpress.php:1303
    464514msgid "Avg."
    465515msgstr ""
    466516
    467 #: runpress.php:1231
     517#: runpress.php:1303
    468518msgid "Max."
    469519msgstr ""
    470520
    471 #: runpress.php:1243 runpress.php:1452 inc/widget/runpress-widget.php:154
    472 #: inc/widget/runpress-widget.php:174 inc/widget/runpress-widget.php:216
     521#: runpress.php:1315 runpress.php:1524 inc/widget/runpress-widget.php:157
     522#: inc/widget/runpress-widget.php:177 inc/widget/runpress-widget.php:219
    473523msgid "Sorry, no data found!"
    474524msgstr ""
    475525
    476 #: runpress.php:1411 runpress.php:1435
     526#: runpress.php:1483 runpress.php:1507
    477527msgid "Month"
    478528msgstr ""
    479529
    480 #: runpress.php:1428
     530#: runpress.php:1500
    481531msgid "Results"
    482532msgstr ""
    483533
    484 #: runpress.php:1526
     534#: runpress.php:1598
    485535msgid "Cronjob scheduled."
    486536msgstr ""
    487537
    488 #: runpress.php:1535
     538#: runpress.php:1607
    489539msgid "Cronjob deleted."
    490540msgstr ""
    491541
    492 #: runpress.php:1539
     542#: runpress.php:1611
    493543msgid "RunPress Sync Settings"
    494544msgstr ""
    495545
    496 #: runpress.php:1541
     546#: runpress.php:1613
    497547msgid "Entries in local database: "
    498548msgstr ""
    499549
    500 #: runpress.php:1544
     550#: runpress.php:1616
    501551msgid "Manual sync of the local DB"
    502552msgstr ""
    503553
    504 #: runpress.php:1554
     554#: runpress.php:1626
    505555msgid "Delete all entries from the local DB"
    506556msgstr ""
    507557
    508 #: runpress.php:1559
     558#: runpress.php:1631
    509559msgid "Delete all entries in local db"
    510560msgstr ""
    511561
    512 #: runpress.php:1564
     562#: runpress.php:1636
    513563msgid "Schedule a Wordpress Cron Job"
    514564msgstr ""
    515565
    516 #: runpress.php:1569
     566#: runpress.php:1641
    517567msgid "Your have scheduled a WP Cron job to run at the following basis "
    518568msgstr ""
    519569
    520 #: runpress.php:1573
     570#: runpress.php:1645
    521571msgid "Define a WP Cron job to start the sync of your local db automatically."
    522572msgstr ""
    523573
    524 #: runpress.php:1578
     574#: runpress.php:1650
    525575msgid "Interval:"
    526576msgstr ""
    527577
    528 #: runpress.php:1580
     578#: runpress.php:1652
    529579msgid "Hourly"
    530580msgstr ""
    531581
    532 #: runpress.php:1581
     582#: runpress.php:1653
    533583msgid "every 6 hours"
    534584msgstr ""
    535585
    536 #: runpress.php:1582
     586#: runpress.php:1654
    537587msgid "every 12 hours"
    538588msgstr ""
    539589
    540 #: runpress.php:1583
     590#: runpress.php:1655
    541591msgid "once a day"
    542592msgstr ""
    543593
    544 #: runpress.php:1584
     594#: runpress.php:1656
    545595msgid "once a week"
    546596msgstr ""
    547597
    548 #: runpress.php:1592
     598#: runpress.php:1664
    549599msgid "Change scheduled Cron job"
    550600msgstr ""
    551601
    552 #: runpress.php:1600
     602#: runpress.php:1672
    553603msgid "Schedule Cron job"
    554604msgstr ""
    555605
    556 #: runpress.php:1611
     606#: runpress.php:1683
    557607msgid "Delete the scheduled Wordpress Cron job"
    558608msgstr ""
    559609
    560 #: runpress.php:1614
     610#: runpress.php:1686
    561611msgid "Click here to delete the scheduled Wordpress Cron job for RunPress."
    562612msgstr ""
    563613
    564 #: runpress.php:1616
     614#: runpress.php:1688
    565615msgid "Delete Cron Job"
    566616msgstr ""
    567617
    568 #: runpress.php:1635
     618#: runpress.php:1748
    569619msgid "Motivate the developer of this plugin"
    570620msgstr ""
    571621
    572 #: runpress.php:1636
     622#: runpress.php:1749
    573623msgid ""
    574624"Please consider a small (or even a big) donation to the developer of the "
     
    580630msgstr ""
    581631
    582 #: runpress.php:1637
     632#: runpress.php:1750
    583633msgid ""
    584634"German speaking RunPress user may use this icon to donate via paypal:<br />"
     
    586636msgstr ""
    587637
    588 #: runpress.php:1645
     638#: runpress.php:1758
    589639msgid ""
    590640"English speaking RunPress User may use this icon to donate via paypal:<br />"
     
    592642msgstr ""
    593643
    594 #: runpress.php:1669
     644#: runpress.php:1823
    595645msgid "General Shortcode usage"
    596646msgstr ""
    597647
    598 #: runpress.php:1671
     648#: runpress.php:1825
    599649msgid ""
    600650"You can choose between 4 possibilities to display your runtastic activities: "
     
    624674msgstr ""
    625675
    626 #: runpress.php:1674
     676#: runpress.php:1828
    627677msgid "Runpress Shortcode Generator"
    628678msgstr ""
    629679
    630 #: runpress.php:1802
     680#: runpress.php:1956
    631681msgid "Reset"
    632682msgstr ""
    633683
    634 #: runpress.php:1807
     684#: runpress.php:1961
    635685msgid "Display:"
    636686msgstr ""
    637687
    638 #: runpress.php:1809
     688#: runpress.php:1963
    639689msgid "Table"
    640690msgstr ""
    641691
    642 #: runpress.php:1811
     692#: runpress.php:1965
    643693msgid "Chart"
    644694msgstr ""
    645695
    646 #: runpress.php:1812
     696#: runpress.php:1966
    647697msgid "Single"
    648698msgstr ""
    649699
    650 #: runpress.php:1813 runpress.php:1828 runpress.php:1870
     700#: runpress.php:1967 runpress.php:1982 runpress.php:2024
    651701msgid "empty"
    652702msgstr ""
    653703
    654 #: runpress.php:1817
     704#: runpress.php:1971
    655705msgid "<i>If \"empty\" the default value (table) will be used.</i>"
    656706msgstr ""
    657707
    658 #: runpress.php:1821 runpress.php:1844
     708#: runpress.php:1975 runpress.php:1998
    659709msgid "Year:"
    660710msgstr ""
    661711
    662 #: runpress.php:1832
     712#: runpress.php:1986
    663713msgid "<i>If \"empty\" the default value (the actual year) will be used.</i>"
    664714msgstr ""
    665715
    666 #: runpress.php:1836
     716#: runpress.php:1990
    667717msgid "Entry:"
    668718msgstr ""
    669719
    670 #: runpress.php:1838
     720#: runpress.php:1992
    671721msgid "latest"
    672722msgstr ""
    673723
    674 #: runpress.php:1858
     724#: runpress.php:2012
    675725msgid ""
    676726"<i>Just choose the activity from the dropdown list or use the entry <b>"
     
    678728msgstr ""
    679729
    680 #: runpress.php:1861
     730#: runpress.php:2015
    681731msgid "Mapwidth / Mapheight:"
    682732msgstr ""
    683733
    684 #: runpress.php:1863
     734#: runpress.php:2017
    685735msgid ""
    686736"<i>Specifies the width and the height of the map which is shown in your post "
     
    688738msgstr ""
    689739
    690 #: runpress.php:1866
     740#: runpress.php:2020
    691741msgid "Sortorder:"
    692742msgstr ""
    693743
    694 #: runpress.php:1868
     744#: runpress.php:2022
    695745msgid "Descending"
    696746msgstr ""
    697747
    698 #: runpress.php:1869
     748#: runpress.php:2023
    699749msgid "Ascending"
    700750msgstr ""
    701751
    702 #: runpress.php:1874
     752#: runpress.php:2028
    703753msgid "<i>If \"empty\" the default value (descending) will be used.</i>"
    704754msgstr ""
    705755
    706 #: runpress.php:1878
     756#: runpress.php:2032
    707757msgid " Title:"
    708758msgstr ""
    709759
    710 #: runpress.php:1880
     760#: runpress.php:2034
    711761msgid "<i>Leave the text field blank to show no title.</i>"
    712762msgstr ""
    713763
    714 #: runpress.php:1894
     764#: runpress.php:2046
    715765msgid "<i>Leave the type field blank to show all activity types.</i>"
    716766msgstr ""
    717767
    718 #: runpress.php:1915
     768#: runpress.php:2064
    719769msgid "Generate Shortcode"
    720770msgstr ""
    721771
    722 #: runpress.php:1918
     772#: runpress.php:2067
    723773msgid ""
    724774"<i>After clicking this button the shortcode will be generated and displayed "
     
    729779msgstr ""
    730780
    731 #: runpress.php:1936
     781#: runpress.php:2126
    732782msgid "four time daily"
    733783msgstr ""
    734784
    735 #: runpress.php:1940
     785#: runpress.php:2130
    736786msgid "weekly"
    737787msgstr ""
    738788
    739 #: runpress.php:2041
     789#: runpress.php:2231 runpress.php:2231
    740790msgid "Save your RunTastic credentials"
    741791msgstr ""
    742792
    743 #: runpress.php:2042
     793#: runpress.php:2232 runpress.php:2232
    744794msgid "Sync your entries from RunTastic to your local database"
    745795msgstr ""
    746796
    747 #: runpress.php:2043
     797#: runpress.php:2233 runpress.php:2233
    748798msgid "Build a shortcode to implement your activities into your Posts or Pages"
    749799msgstr ""
    750800
    751 #: runpress.php:2044
     801#: runpress.php:2234 runpress.php:2234
    752802msgid "Think about a donation to keep the plugin author motivated"
    753803msgstr ""
    754804
    755 #: runpress.php:2047
     805#: runpress.php:2237
    756806msgid "Need help? Check the tutorial!"
    757807msgstr ""
    758808
    759 #: runpress.php:2094
     809#: runpress.php:2284
    760810msgid "Is your country still on top?"
    761811msgstr ""
    762812
    763 #: runpress.php:2096
     813#: runpress.php:2286
    764814msgid ""
    765815"I really appreciate donations by the users of RunPress because they are "
     
    771821msgstr ""
    772822
    773 #: runpress.php:2098
     823#: runpress.php:2288
    774824msgid "Leaderboard since the last update of RunPress:"
    775825msgstr ""
    776826
    777 #: runpress.php:2102
     827#: runpress.php:2292
    778828msgid "1st. Place"
    779829msgstr ""
    780830
    781 #: runpress.php:2102 runpress.php:2102
     831#: runpress.php:2292 runpress.php:2292
    782832msgid "Denmark"
    783833msgstr ""
    784834
    785 #: runpress.php:2103
     835#: runpress.php:2293
    786836msgid "2nd. Place"
    787837msgstr ""
    788838
    789 #: runpress.php:2103 runpress.php:2103
     839#: runpress.php:2293 runpress.php:2293
    790840msgid "Germany"
    791841msgstr ""
    792842
    793 #: runpress.php:2104
     843#: runpress.php:2294
    794844msgid "3rd. Place"
    795845msgstr ""
    796846
    797 #: runpress.php:2104 runpress.php:2104
     847#: runpress.php:2294 runpress.php:2294
    798848msgid "Brazil"
    799849msgstr ""
     
    810860msgstr ""
    811861
    812 #: inc/widget/runpress-widget.php:89
     862#: inc/widget/runpress-widget.php:87
    813863msgid "No data selected!"
    814864msgstr ""
    815865
    816 #: inc/widget/runpress-widget.php:166
     866#: inc/widget/runpress-widget.php:169
    817867msgid "Longest Distance"
    818868msgstr ""
    819869
    820 #: inc/widget/runpress-widget.php:167
     870#: inc/widget/runpress-widget.php:170
    821871msgid "Longest Duration"
    822872msgstr ""
    823873
    824 #: inc/widget/runpress-widget.php:168
     874#: inc/widget/runpress-widget.php:171
    825875msgid "Fastest Pace"
    826876msgstr ""
    827877
    828 #: inc/widget/runpress-widget.php:204
     878#: inc/widget/runpress-widget.php:207
    829879msgid "Format: DD.MM."
    830880msgstr ""
    831881
    832 #: inc/widget/runpress-widget.php:204
     882#: inc/widget/runpress-widget.php:207
    833883msgid "Format: MM/DD"
    834884msgstr ""
    835885
    836 #: inc/widget/runpress-widget.php:236
     886#: inc/widget/runpress-widget.php:239
    837887msgid "RunPress Widget"
    838888msgstr ""
    839889
    840 #: inc/widget/runpress-widget.php:250
     890#: inc/widget/runpress-widget.php:251
    841891msgid "Title:"
    842892msgstr ""
    843893
    844 #: inc/widget/runpress-widget.php:254
     894#: inc/widget/runpress-widget.php:255
    845895msgid "Show last activity"
    846896msgstr ""
    847897
    848 #: inc/widget/runpress-widget.php:257
     898#: inc/widget/runpress-widget.php:258
    849899msgid "Show highscores"
    850900msgstr ""
    851901
    852 #: inc/widget/runpress-widget.php:260
     902#: inc/widget/runpress-widget.php:261
    853903msgid "Show last 5 entries"
    854904msgstr ""
    855905
    856 #: inc/widget/runpress-widget.php:264
     906#: inc/widget/runpress-widget.php:265
    857907msgid "Show activity types:"
    858908msgstr ""
  • runpress/tags/1.4.2/runpress.php

    r1589549 r1594425  
    66 * Plugin URI:      http://runpress.markusfrenzel.de
    77 *
    8  * Description:     Imports your sports activities (running, nordicwalking, cycling, mountainbiking, racecycling, hiking, treadmill, ergometer) from the Runtastic website. Displays the data via shortcodes on your webpage. Widget included.
    9  *
    10  * Version:         1.4.1
     8 * Description:     Imports your sports activities (have a look at the readme for details) from the Runtastic website. Displays the data via shortcodes on your webpage. Widget included.
     9 *
     10 * Version:         1.4.2
    1111 *
    1212 * Author:          Markus Frenzel
     
    125125$runpress_ergometer = __( 'ergometer', 'runpress' );
    126126$runpress_treadmill = __( 'treadmill', 'runpress' );
     127/* @since 1.4.2 */
     128$runpress_elliptical = __( 'elliptical', 'runpress' );
     129$runpress_spinning = __( 'spinning', 'runpress' );
     130$runpress_handbike = __( 'handbike', 'runpress' );
     131$runpress_skating = __( 'skating', 'runpress' );
     132$runpress_skateboarding = __( 'skateboarding', 'runpress' );
     133$runpress_rowing = __( 'rowing', 'runpress' );
     134$runpress_swimming = __( 'swimming', 'runpress' );
     135$runpress_crosscountryskiing = __( 'crosscountryskiing', 'runpress' );
     136$runpress_skiing = __( 'skiing', 'runpress' );
     137$runpress_snowboarding = __( 'snowboarding', 'runpress' );
     138$runpress_backcountryskiing = __( 'backcountryskiing', 'runpress' );
     139$runpress_sledding = __( 'sledding', 'runpress' );
     140$runpress_motorbiking = __( 'motorbiking', 'runpress' );
     141$runpress_walking = __( 'walking', 'runpress' );
     142$runpress_riding = __( 'riding', 'runpress' );
    127143/* plugin description */
    128 $runpress_plugin_description = __( 'Imports your sports activities (running, nordicwalking, cycling, mountainbiking, racecycling, hiking, treadmill, ergometer) from the Runtastic website. Displays the data via shortcodes on your webpage. Widget included.', 'runpress' );
     144$runpress_plugin_description = __( 'Imports your sports activities (have a look at the readme for details) from the Runtastic website. Displays the data via shortcodes on your webpage. Widget included.', 'runpress' );
    129145
    130146/*********************
     
    625641        'id' => '1',                                                           
    626642        'title' => __( 'Settings', 'runpress' ),                                                   
    627         'content' => __( '<br />Add your Runtastic Username and Password here. The Plugin will store your password into the wordpress database. Please make sure that your database is secure!<br /><br />Only running, nordicwalking, cycling, mountainbiking, racecycling, hiking, treadmill and ergometer activities are displayable via RunPress. Maybe other activities will get available in future updates.<br /><br />Select the unit types to show. You can choose beween Metric (European) and Imperial (UK and US) unit types.<br /><br />If you select the last option, all options and the local database will be deleted in case of deactivation of the plugin.<br /><br />This does not change anything in your Runtastic database.', 'runpress' )
     643        'content' => __( '<br />Add your Runtastic Username and Password here. The Plugin will store your password into the wordpress database. Please make sure that your database is secure!<br /><br />Only a few sports activities are displayable via RunPress. Maybe other activities will get available in future updates.<br /><br />Select the unit types to show. You can choose beween Metric (European) and Imperial (UK and US) unit types.<br /><br />If you select the last option, all options and the local database will be deleted in case of deactivation of the plugin.<br /><br />This does not change anything in your Runtastic database.', 'runpress' )
    628644    ) );
    629645    $screen->add_help_tab( array(
     
    10431059                case "ergometer":
    10441060                case "treadmill":
     1061                case "elliptical":
     1062                case "spinning":
     1063                case "handbike":
     1064                case "skating":
     1065                case "skateboarding":
     1066                case "rowing":
     1067                case "swimming":
     1068                case "crosscountryskiing":
     1069                case "skiing":
     1070                case "snowboarding":
     1071                case "backcountryskiing":
     1072                case "sledding":
     1073                case "motorbiking":
     1074                case "walking":
     1075                case "riding":
    10451076                $wpdb->replace(
    10461077                $runpress_db_name,
     
    12551286            else
    12561287            {
    1257                 $body .= "<img src='http:" . str_replace( 'width=50&height=70', 'width=' . $a[ 'mapwidth' ] . '&height=' . $a[ 'mapheight' ], $query->map_url ) . "'>";
     1288                $body .= "<img src='https:" . str_replace( 'width=50&height=70', 'width=' . $a[ 'mapwidth' ] . '&height=' . $a[ 'mapheight' ], $query->map_url ) . "'>";
    12581289            }
    12591290            $body .= "</td>
     
    20062037        <td halign="left" valign="top"><?php _e( 'Type', 'runpress' ) . ': '; ?></td>
    20072038        <td>
    2008             <input type="checkbox" name="showtype" value="running" id="type_running"> <?php _e( 'running', 'runpress' ); ?><br />
    2009             <input type="checkbox" name="showtype" value="nordicwalking" id="type_nordicwalking"> <?php _e( 'nordicwalking', 'runpress' ); ?><br />
    2010             <input type="checkbox" name="showtype" value="cycling" id="type_cycling"> <?php _e( 'cycling', 'runpress' ); ?><br />
    2011             <input type="checkbox" name="showtype" value="mountainbiking" id="type_mountainbiking"> <?php _e( 'mountainbiking', 'runpress' ); ?><br />
    2012             <input type="checkbox" name="showtype" value="racecycling" id="type_racecycling"> <?php _e( 'racecycling', 'runpress' ); ?><br />
    2013             <input type="checkbox" name="showtype" value="hiking" id="type_hiking"> <?php _e( 'hiking', 'runpress' ); ?><br />
    2014             <input type="checkbox" name="showtype" value="treadmill" id="type_treadmill"> <?php _e( 'treadmill', 'runpress' ); ?><br />
    2015             <input type="checkbox" name="showtype" value="ergometer" id="type_ergometer"> <?php _e( 'ergometer', 'runpress' ); ?><br />
     2039            <?php
     2040            $runpress_sport_activities = array( "running", "nordicwalking", "cycling", "mountainbiking", "racecycling", "hiking", "treadmill", "ergometer", "elliptical", "spinning", "handbike", "skating", "skateboarding", "rowing", "swimming", "crosscountryskiing", "skiing", "snowboarding", "backcountryskiing", "sledding", "motorbiking", "walking", "riding" );
     2041            foreach( $runpress_sport_activities as $actual_activity ) {
     2042                echo '<input type="checkbox" name="showtype" value="$actual_activity" id="type_$actual_activity"> ' . __( $actual_activity, 'runpress' ) . '<br />';
     2043            }
     2044            ?>
    20162045        </td>
    20172046        <td halign="left" valign="top"><?php _e( '<i>Leave the type field blank to show all activity types.</i>', 'runpress' ); ?></td>
     
    20202049        <td halign="left" valign="top"><?php _e( 'Type', 'runpress' ). ': '; ?></td>
    20212050        <td>
    2022             <input type="radio" id="type_running" name="showtype" value="running"><label for="type_running"> <?php _e( 'running', 'runpress' ); ?></label><br />
    2023             <input type="radio" id="type_nordicwalking" name="showtype" value="nordicwalking"> <label for="type_nordicwalking"><?php _e( 'nordicwalking', 'runpress' ); ?></label><br />
    2024             <input type="radio" id="type_cycling" name="showtype" value="cycling"> <label for="type_cycling"><?php _e( 'cycling', 'runpress' ); ?></label><br />
    2025             <input type="radio" id="type_mountainbiking" name="showtype" value="mountainbiking"> <label for="type_mountainbiking"><?php _e( 'mountainbiking', 'runpress' ); ?></label><br />
    2026             <input type="radio" id="type_racecycling" name="showtype" value="racecycling"> <label for="type_racecycling"><?php _e( 'racecycling', 'runpress' ); ?></label><br />
    2027             <input type="radio" id="type_hiking" name="showtype" value="hiking"> <label for="type_hiking"><?php _e( 'hiking', 'runpress' ); ?></label><br />
    2028             <input type="radio" id="type_treadmill" name="showtype" value="treadmill"> <label for="type_treadmill"><?php _e( 'treadmill', 'runpress' ); ?></label><br />
    2029             <input type="radio" id="type_ergometer" name="showtype" value="ergometer"> <label for="type_ergometer"><?php _e( 'ergometer', 'runpress' ); ?></label><br />
     2051            <?php
     2052            foreach( $runpress_sport_activities as $actual_activity ) {
     2053                echo '<input type="radio" id="type_$actual_activity name="showtype" value="$actual_activity"><label for="type_$actual_activity"> ' . __( $actual_activity, 'runpress' ) . '</label><br />';
     2054            }
     2055            ?>
    20302056        </td>
    20312057    </tr>
Note: See TracChangeset for help on using the changeset viewer.