Changeset 1594425
- Timestamp:
- 02/12/2017 08:33:47 PM (9 years ago)
- Location:
- runpress/tags/1.4.2
- Files:
-
- 6 edited
- 1 copied
-
. (copied) (copied from runpress/trunk)
-
README.txt (modified) (2 diffs)
-
inc/widget/runpress-widget.php (modified) (9 diffs)
-
languages/runpress-de_DE.mo (modified) (previous)
-
languages/runpress-de_DE.po (modified) (20 diffs)
-
languages/runpress.pot (modified) (16 diffs)
-
runpress.php (modified) (7 diffs)
Legend:
- Unmodified
- Added
- Removed
-
runpress/tags/1.4.2/README.txt
r1589565 r1594425 1 1 === RunPress === 2 2 Contributors: markusfrenzel 3 Tags: runpress,runtastic,running,nordicwalking,cycling,mountainbiking,racecycling,hiking,treadmill,ergometer,tracking,sport,sports,gps,import runtastic,database,import,run 3 Tags: runpress,runtastic,running,nordicwalking,cycling,mountainbiking,racecycling,hiking,treadmill,ergometer,tracking,sport,sports,gps,import runtastic,database,import,run,export,export runtastic, 4 4 Donate link: http://markusfrenzel.de/wordpress/?page_id=2336 5 5 Requires at least: 3.3.1 6 6 Tested up to: 4.7 7 Stable tag: trunk7 Stable tag: 1.4.2 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html 10 10 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.11 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. 12 12 13 13 == Description == 14 14 Do you ever want to display your sports activities from Runtastic.com on your own Website? This is no problem any longer. 15 15 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.16 RunPress 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. 17 17 18 18 You 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. … … 68 68 The table is labeled with your MySQL table prefix of your wordpress installation (default: wp_) plus "runpress_db" 69 69 70 == Importable Activities == 71 The 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 70 97 == 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 71 104 72 105 = 1.4.1 = -
runpress/tags/1.4.2/inc/widget/runpress-widget.php
r1317565 r1594425 6 6 * Plugin URI: http://markusfrenzel.de/wordpress/?page_id=2247 7 7 * 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. 9 9 * 10 10 * Version: same as runpress.php … … 24 24 25 25 /* 26 * Copyright (C) 2014, 2015 Markus Frenzel26 * Copyright (C) 2014, 2015, 2016, 2017 Markus Frenzel 27 27 * 28 28 * This program is free software; you can redistribute it and/or … … 73 73 $s = !empty( $instance['showtable'] ) ? '1' : '0'; 74 74 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 } 83 81 84 82 echo $args['before_widget']; … … 90 88 } 91 89 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 ) ) { 93 99 $onlyshow = ""; 94 100 } … … 100 106 $build_onlyshow = array(); 101 107 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 } 110 113 111 114 if( count( $build_onlyshow ) >= 1 ) { … … 138 141 else 139 142 { 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 />"; 141 144 } 142 145 echo "<table>"; … … 239 242 $onlyhighscores = isset( $instance[ 'onlyhighscores' ] ) ? (bool) $instance[ 'onlyhighscores'] : false; 240 243 $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 } 249 250 ?> 250 251 <p><label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e( 'Title:' , 'runpress'); ?></label> … … 263 264 <p> 264 265 <?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 ?> 281 276 </p> 282 283 277 <?php 284 278 } … … 300 294 $instance[ 'onlyhighscores' ] = !empty( $new_instance[ 'onlyhighscores' ] ) ? 1 : 0; 301 295 $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 } 311 302 return $instance; 312 303 } -
runpress/tags/1.4.2/languages/runpress-de_DE.po
r1589549 r1594425 1 1 msgid "" 2 2 msgstr "" 3 "PO-Revision-Date: 2017-02- 03 22:02+0000\n"3 "PO-Revision-Date: 2017-02-12 20:29+0000\n" 4 4 "MIME-Version: 1.0\n" 5 5 "Content-Type: text/plain; charset=UTF-8\n" … … 10 10 "Project-Id-Version: Plugins - RunPress - Development (trunk)\n" 11 11 "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" 14 14 "Language-Team: German" 15 15 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 18 msgid "" 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." 22 msgstr "" 23 "Importiert Deine Sportaktivitäten (schau in die Readme für Details)" 24 " von der Runtastic Webseite. Zeigt die Daten per Shortcode in Deiner " 25 "Webseite an. Widget inkludiert." 35 26 36 27 #: runpress.php:101 … … 94 85 msgstr "Strand" 95 86 96 #: runpress.php:119 runpress.php:1885 runpress.php:1899 97 #: inc/widget/runpress-widget.php:266 87 #: runpress.php:119 98 88 msgid "running" 99 89 msgstr "Laufen" 100 90 101 #: runpress.php:120 runpress.php:1890 runpress.php:1904 102 #: inc/widget/runpress-widget.php:276 91 #: runpress.php:120 103 92 msgid "hiking" 104 93 msgstr "Wandern" 105 94 106 #: runpress.php:121 runpress.php:1889 runpress.php:1903 107 #: inc/widget/runpress-widget.php:274 95 #: runpress.php:121 108 96 msgid "racecycling" 109 97 msgstr "Rennradfahren" 110 98 111 #: runpress.php:122 runpress.php:1888 runpress.php:1902 112 #: inc/widget/runpress-widget.php:272 99 #: runpress.php:122 113 100 msgid "mountainbiking" 114 101 msgstr "Mountainbiken" 115 102 116 #: runpress.php:123 runpress.php:1887 runpress.php:1901 117 #: inc/widget/runpress-widget.php:270 103 #: runpress.php:123 118 104 msgid "cycling" 119 105 msgstr "Radfahren" 120 106 121 #: runpress.php:124 runpress.php:1886 runpress.php:1900 122 #: inc/widget/runpress-widget.php:268 107 #: runpress.php:124 123 108 msgid "nordicwalking" 124 109 msgstr "Nordic Walking" 125 110 126 #: runpress.php:125 runpress.php:1892 runpress.php:1906 127 #: inc/widget/runpress-widget.php:280 111 #: runpress.php:125 128 112 msgid "ergometer" 129 113 msgstr "Ergometer" 130 114 131 #: runpress.php:126 runpress.php:1891 runpress.php:1905 132 #: inc/widget/runpress-widget.php:278 115 #: runpress.php:126 133 116 msgid "treadmill" 134 117 msgstr "Laufband" 135 118 136 #. #-#-#-#-# tmp-runpress.pot (RunPress 1.4.0) #-#-#-#-#137 #. Description of the plugin/theme138 119 #: 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 120 msgid "elliptical" 121 msgstr "Ellipsentrainer" 122 123 #: runpress.php:129 124 msgid "spinning" 125 msgstr "Spinning" 126 127 #: runpress.php:130 128 msgid "handbike" 129 msgstr "Handbiking" 130 131 #: runpress.php:131 132 msgid "skating" 133 msgstr "Inlineskaten" 134 135 #: runpress.php:132 136 msgid "skateboarding" 137 msgstr "Skateboarden" 138 139 #: runpress.php:133 140 msgid "rowing" 141 msgstr "Rudern" 142 143 #: runpress.php:134 144 msgid "swimming" 145 msgstr "Schwimmen" 146 147 #: runpress.php:135 148 msgid "crosscountryskiing" 149 msgstr "Langlaufen" 150 151 #: runpress.php:136 152 msgid "skiing" 153 msgstr "Skifahren" 154 155 #: runpress.php:137 156 msgid "snowboarding" 157 msgstr "Snowboarden" 158 159 #: runpress.php:138 160 msgid "backcountryskiing" 161 msgstr "Skitouren gehen" 162 163 #: runpress.php:139 164 msgid "sledding" 165 msgstr "Schlittenfahren" 166 167 #: runpress.php:140 168 msgid "motorbiking" 169 msgstr "Motorradfahren" 170 171 #: runpress.php:141 172 msgid "walking" 173 msgstr "Gehen" 174 175 #: runpress.php:142 176 msgid "riding" 177 msgstr "Reiten" 178 179 #: runpress.php:409 151 180 msgid "RunPress Statistics" 152 181 msgstr "RunPress Statistiken" 153 182 154 #: runpress.php:4 11183 #: runpress.php:427 155 184 msgid "Your latest " 156 185 msgstr "Deine letzte " 157 186 158 #: runpress.php:4 11187 #: runpress.php:427 159 188 msgid " activity was " 160 189 msgstr " Aktivität war " 161 190 162 #: runpress.php:4 13191 #: runpress.php:429 163 192 msgid "Nothing to show here yet.<br /><br />" 164 193 msgstr "Hier ist noch nichts anzeigbar.<br /><br />" 165 194 166 #: runpress.php:4 21 runpress.php:422195 #: runpress.php:437 runpress.php:438 167 196 msgid "Overall Statistics" 168 197 msgstr "Gesamtstatistik" 169 198 170 #: runpress.php:4 21 runpress.php:422199 #: runpress.php:437 runpress.php:438 171 200 msgid "Period: " 172 201 msgstr "Zeitraum: " 173 202 174 #: runpress.php:4 21 runpress.php:422 runpress.php:456203 #: runpress.php:437 runpress.php:438 runpress.php:472 175 204 msgid "Show" 176 205 msgstr "Show" 177 206 178 #: runpress.php:4 27 runpress.php:462207 #: runpress.php:443 runpress.php:478 179 208 msgid "Activity" 180 209 msgstr "Aktivität" 181 210 182 #: runpress.php:4 30 runpress.php:465211 #: runpress.php:446 runpress.php:481 183 212 msgid "Count" 184 213 msgstr "Zählen" 185 214 186 #: runpress.php:4 56 runpress.php:457215 #: runpress.php:472 runpress.php:473 187 216 msgid "Statistics" 188 217 msgstr "Statistik" 189 218 190 #: runpress.php:4 57219 #: runpress.php:473 191 220 msgid "Hide" 192 221 msgstr "Ausblenden" 193 222 194 #: runpress.php: 488223 #: runpress.php:504 195 224 msgid "Donate here" 196 225 msgstr "Spende hier" 197 226 198 #: runpress.php: 490227 #: runpress.php:506 199 228 msgid "" 200 229 "Please consider a donation to keep the further development of RunPress up " … … 204 233 "Weiterentwicklung aktiv zu fördern." 205 234 206 #: runpress.php:5 70 runpress.php:886235 #: runpress.php:586 runpress.php:902 207 236 msgid "RunPress Local DB" 208 237 msgstr "RunPress Lokale DB" 209 238 210 #: runpress.php:5 70239 #: runpress.php:586 211 240 msgid "Local DB" 212 241 msgstr "Lokale DB" 213 242 214 #: runpress.php:5 71243 #: runpress.php:587 215 244 msgid "RunPress Sync" 216 245 msgstr "RunPress Abgleich" 217 246 218 #: runpress.php:5 71247 #: runpress.php:587 219 248 msgid "Sync" 220 249 msgstr "Abgleich" 221 250 222 #: runpress.php:5 72 runpress.php:1668251 #: runpress.php:588 runpress.php:1822 223 252 msgid "RunPress Shortcode Generator" 224 253 msgstr "RunPress Shortcode Generator" 225 254 226 #: runpress.php:5 72255 #: runpress.php:588 227 256 msgid "Shortcode Generator" 228 257 msgstr "Shortcode Generierer" 229 258 230 #: runpress.php:5 79 runpress.php:1634259 #: runpress.php:595 runpress.php:1747 231 260 msgid "RunPress Donation" 232 261 msgstr "RunPress Spende" 233 262 234 #: runpress.php:5 79263 #: runpress.php:595 235 264 msgid "Donate!" 236 265 msgstr "Spenden!" 237 266 238 #: runpress.php:5 81 runpress.php:2093267 #: runpress.php:597 runpress.php:2283 239 268 msgid "RunPress Donations Leaderboard" 240 269 msgstr "RunPress Spenden Rangliste" 241 270 242 #: runpress.php:5 81271 #: runpress.php:597 243 272 msgid "Donations Leaderbord" 244 273 msgstr "Spenden Rangliste" 245 274 246 #: runpress.php: 597275 #: runpress.php:613 247 276 msgid "Start configuration." 248 277 msgstr "Starte Konfiguration." 249 278 250 #: runpress.php: 598279 #: runpress.php:614 251 280 msgid "RunPress is not configured yet. Please do it now." 252 281 msgstr "RunPress ist noch nicht konfiguriert. Bitte erledige dies jetzt." 253 282 254 #: runpress.php:6 26 runpress.php:2006283 #: runpress.php:642 runpress.php:2196 255 284 msgid "Settings" 256 285 msgstr "Einstellungen" 257 286 258 #: runpress.php:6 27287 #: runpress.php:643 259 288 msgid "" 260 289 "<br />Add your Runtastic Username and Password here. The Plugin will store " 261 290 "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." 298 msgstr "" 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äten sind anzeigbar mit RunPress. Möglicherweise " 303 "werden andere Sportaktivitäten hinzugefügt in kommenden Updates." 304 "<br /><br />Wähle die gewünschten Einheiten aus. Du kannst wä" 305 "hlen zwischen metrischen (Europa) und imperialen (Großbritannien / USA)" 306 " Einheiten.<br /><br />Wenn Du die letzte Option selektierst, werden alle " 307 "Optionen und die lokale Datenbank Deiner Sportaktivitäten gelöscht," 308 " bei Deaktivierung des Plugins.<br /><br />Dies ändert aber absolut " 309 "nichts an der Runtastic Datenbank." 310 311 #: runpress.php:647 284 312 msgid "Info" 285 313 msgstr "Info" 286 314 287 #: runpress.php:6 32315 #: runpress.php:648 288 316 msgid "" 289 317 "<br /><h2>RunPress - A Wordpress Plugin to display your Runtastic Activities." … … 300 328 "hier</a>" 301 329 302 #: runpress.php:6 76330 #: runpress.php:692 303 331 msgid "Your Runtastic Username: " 304 332 msgstr "Dein Runtastic Benutzername: " 305 333 306 #: runpress.php: 689334 #: runpress.php:705 307 335 msgid "This is not a correct email address!" 308 336 msgstr "Dies ist keine korrekte E-Mail Adresse!" 309 337 310 #: runpress.php: 699338 #: runpress.php:715 311 339 msgid "Password must be set!" 312 340 msgstr "Passwort muß gesetzt sein!" 313 341 314 #: runpress.php:7 02342 #: runpress.php:718 315 343 msgid "Password must be shorter than 50 character!" 316 344 msgstr "Passwort muß kürzer wie 50 Zeichen sein!" 317 345 318 #: runpress.php:7 18 runpress.php:731 runpress.php:742346 #: runpress.php:734 runpress.php:747 runpress.php:758 319 347 msgid "Value was set to the default value!" 320 348 msgstr "Wert wurde auf den Standardwert gesetzt!" 321 349 322 #: runpress.php:7 55350 #: runpress.php:771 323 351 msgid "Settings saved." 324 352 msgstr "Einstellungen gesichert." 325 353 326 #: runpress.php:7 63354 #: runpress.php:779 327 355 msgid "An error occurred. Please check your user credentials and try again!" 328 356 msgstr "" … … 330 358 "versuche es erneut!" 331 359 332 #: runpress.php:7 70360 #: runpress.php:786 333 361 msgid "RunPress Plugin Settings" 334 362 msgstr "RunPress Plugin Einstellungen" 335 363 336 #: runpress.php:7 75364 #: runpress.php:791 337 365 msgid "Runtastic E-Mail Address:" 338 366 msgstr "Runtastic E-Mail Adresse:" 339 367 340 #: runpress.php:7 80368 #: runpress.php:796 341 369 msgid "Runtastic Password:" 342 370 msgstr "Runtastic Passwort:" 343 371 344 #: runpress.php: 787372 #: runpress.php:803 345 373 msgid "Unit Type:" 346 374 msgstr "Einheiten:" 347 375 348 #: runpress.php: 788376 #: runpress.php:804 349 377 msgid "Metric Units" 350 378 msgstr "Metrisch" 351 379 352 #: runpress.php: 788380 #: runpress.php:804 353 381 msgid "Imperial Units" 354 382 msgstr "Imperial" 355 383 356 #: runpress.php: 795384 #: runpress.php:811 357 385 msgid "Delete Options:" 358 386 msgstr "Lösche Optionen:" 359 387 360 #: runpress.php: 796388 #: runpress.php:812 361 389 msgid "Deletes all options on deactivation of the plugin." 362 390 msgstr "Löscht alle Optionen bei Deaktivierung des Plugins" 363 391 364 #: runpress.php:8 03392 #: runpress.php:819 365 393 msgid "Donations:" 366 394 msgstr "Spenden:" 367 395 368 #: runpress.php:8 04396 #: runpress.php:820 369 397 msgid "" 370 398 "Don't bother me about sending a donation! I've already donated or I don't " … … 374 402 "möchte nicht spenden." 375 403 376 #: runpress.php:8 09404 #: runpress.php:825 377 405 msgid "Save Changes" 378 406 msgstr "Speichere Änderungen" 379 407 380 #: runpress.php: 888408 #: runpress.php:904 381 409 msgid "Entries in local database:" 382 410 msgstr "Einträge in lokaler Datenbank:" 383 411 384 #: runpress.php: 893 runpress.php:903 runpress.php:1192 runpress.php:1273385 #: runpress.php:1 285 runpress.php:1883 runpress.php:1897386 #: inc/widget/runpress-widget.php:14 3412 #: 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 387 415 msgid "Type" 388 416 msgstr "Typ" 389 417 390 #: runpress.php: 894 runpress.php:904 runpress.php:1194 runpress.php:1274391 #: runpress.php:1 286 inc/widget/runpress-widget.php:144392 #: inc/widget/runpress-widget.php:1 89418 #: 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 393 421 msgid "Date" 394 422 msgstr "Datum" 395 423 396 #: runpress.php: 895 runpress.php:905 runpress.php:1275 runpress.php:1287424 #: runpress.php:911 runpress.php:921 runpress.php:1347 runpress.php:1359 397 425 msgid "Start" 398 426 msgstr "Start" 399 427 400 #: runpress.php: 896 runpress.php:906 runpress.php:1276 runpress.php:1288401 #: inc/widget/runpress-widget.php:14 6 inc/widget/runpress-widget.php:191428 #: 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 402 430 msgid "Duration" 403 431 msgstr "Dauer" 404 432 405 #: runpress.php: 897 runpress.php:907 runpress.php:1193 runpress.php:1277406 #: runpress.php:1 289 runpress.php:1411 runpress.php:1436407 #: inc/widget/runpress-widget.php:14 5 inc/widget/runpress-widget.php:190433 #: 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 408 436 msgid "Distance" 409 437 msgstr "Distanz" 410 438 411 #: runpress.php: 898 runpress.php:908 runpress.php:1278 runpress.php:1290412 #: inc/widget/runpress-widget.php:1 47 inc/widget/runpress-widget.php:192439 #: 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 413 441 msgid "Pace" 414 442 msgstr "Tempo" 415 443 416 #: runpress.php: 899 runpress.php:909 runpress.php:1279 runpress.php:1291444 #: runpress.php:915 runpress.php:925 runpress.php:1351 runpress.php:1363 417 445 msgid "Speed" 418 446 msgstr "Geschwindigkeit" 419 447 420 #: runpress.php:9 23 runpress.php:1307448 #: runpress.php:939 runpress.php:1379 421 449 msgid "Format: DD.MM.YYYY" 422 450 msgstr "Format: TT.MM.JJJJ" 423 451 424 #: runpress.php:9 23 runpress.php:1307452 #: runpress.php:939 runpress.php:1379 425 453 msgid "Format: YYYY/MM/DD" 426 454 msgstr "Format: JJJJ/MM/TT" 427 455 428 #: runpress.php:9 24 runpress.php:925 runpress.php:1308 runpress.php:1309429 #: inc/widget/runpress-widget.php:20 6 inc/widget/runpress-widget.php:206456 #: 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 430 458 msgid "Format: hh:mm:ss" 431 459 msgstr "Format: hh:mm:ss" 432 460 433 #: runpress.php:9 57 runpress.php:1547461 #: runpress.php:973 runpress.php:1619 434 462 msgid "" 435 463 "Please click the following button once to synchronize your local wordpress " … … 439 467 "Datenbank mit den Einträgen bei Runtastic zu füllen." 440 468 441 #: runpress.php:9 59 runpress.php:1549469 #: runpress.php:975 runpress.php:1621 442 470 msgid "Read Entries from Runtastic" 443 471 msgstr "Lese Einträge von Runtastic" 444 472 445 #: runpress.php:9 66 runpress.php:1557473 #: runpress.php:982 runpress.php:1629 446 474 msgid "" 447 475 "If you want to delete the entries in your local db, click the following " … … 453 481 "Die Einträge in der Runtastic DB sind davon nicht betroffen!" 454 482 455 #: runpress.php:9 68483 #: runpress.php:984 456 484 msgid "Delete all entries in local DB" 457 485 msgstr "Lösche alle Einträge in der lokalen DB" 458 486 459 #: runpress.php:1 073487 #: runpress.php:1145 460 488 msgid "DB sync successful." 461 489 msgstr "DB Abgleich erfolgreich." 462 490 463 #: runpress.php:1 082491 #: runpress.php:1154 464 492 msgid "DB sync failed! Please check the error message (if any) or try again." 465 493 msgstr "" … … 467 495 "oder versuch es erneut." 468 496 469 #: runpress.php:11 01497 #: runpress.php:1173 470 498 msgid "DB successfully truncated." 471 499 msgstr "DB erfolgreich geleert." 472 500 473 #: runpress.php:11 07501 #: runpress.php:1179 474 502 msgid "DB was not successfully truncated. Please try again." 475 503 msgstr "DB wurde nicht erfolgreich geleert. Bitte erneut versuchen." 476 504 477 #: runpress.php:1 195505 #: runpress.php:1267 478 506 msgid "Avg. Pace" 479 507 msgstr "Schnitt Pace" 480 508 481 #: runpress.php:1 196509 #: runpress.php:1268 482 510 msgid "Elevation" 483 511 msgstr "Steigung" 484 512 485 #: runpress.php:12 12 inc/widget/runpress-widget.php:136513 #: runpress.php:1284 inc/widget/runpress-widget.php:139 486 514 msgid "No map found!" 487 515 msgstr "Keine Karte gefunden!" 488 516 489 #: runpress.php:12 23517 #: runpress.php:1295 490 518 msgid "Calories" 491 519 msgstr "Kalorien" 492 520 493 #: runpress.php:12 24521 #: runpress.php:1296 494 522 msgid "Heartrate" 495 523 msgstr "Puls" 496 524 497 #: runpress.php:12 25525 #: runpress.php:1297 498 526 msgid "Weather" 499 527 msgstr "Wetter" 500 528 501 #: runpress.php:12 26529 #: runpress.php:1298 502 530 msgid "Surface" 503 531 msgstr "Strecke" 504 532 505 #: runpress.php:12 27 inc/widget/runpress-widget.php:148533 #: runpress.php:1299 inc/widget/runpress-widget.php:151 506 534 msgid "Feeling" 507 535 msgstr "Empfinden" 508 536 509 #: runpress.php:1 231537 #: runpress.php:1303 510 538 msgid "Avg." 511 539 msgstr "Schnitt" 512 540 513 #: runpress.php:1 231541 #: runpress.php:1303 514 542 msgid "Max." 515 543 msgstr "Max." 516 544 517 #: runpress.php:1 243 runpress.php:1452 inc/widget/runpress-widget.php:154518 #: inc/widget/runpress-widget.php:17 4 inc/widget/runpress-widget.php:216545 #: 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 519 547 msgid "Sorry, no data found!" 520 548 msgstr "Entschuldigung, keine Daten gefunden!" 521 549 522 #: runpress.php:14 11 runpress.php:1435550 #: runpress.php:1483 runpress.php:1507 523 551 msgid "Month" 524 552 msgstr "Monat" 525 553 526 #: runpress.php:1 428554 #: runpress.php:1500 527 555 msgid "Results" 528 556 msgstr "Ergebnisse" 529 557 530 #: runpress.php:15 26558 #: runpress.php:1598 531 559 msgid "Cronjob scheduled." 532 560 msgstr "Cronjob geplant." 533 561 534 #: runpress.php:1 535562 #: runpress.php:1607 535 563 msgid "Cronjob deleted." 536 564 msgstr "Cronjob gelöscht." 537 565 538 #: runpress.php:1 539566 #: runpress.php:1611 539 567 msgid "RunPress Sync Settings" 540 568 msgstr "RunPress Abgleich Einstellungen" 541 569 542 #: runpress.php:1 541570 #: runpress.php:1613 543 571 msgid "Entries in local database: " 544 572 msgstr "Einträge in lokaler Datenbank:" 545 573 546 #: runpress.php:1 544574 #: runpress.php:1616 547 575 msgid "Manual sync of the local DB" 548 576 msgstr "Manueller Abgleich der lokalen DB" 549 577 550 #: runpress.php:1 554578 #: runpress.php:1626 551 579 msgid "Delete all entries from the local DB" 552 580 msgstr "Lösche alle Einträge der lokalen DB" 553 581 554 #: runpress.php:1 559582 #: runpress.php:1631 555 583 msgid "Delete all entries in local db" 556 584 msgstr "Lösche alle Einträge in lokaler DB" 557 585 558 #: runpress.php:1 564586 #: runpress.php:1636 559 587 msgid "Schedule a Wordpress Cron Job" 560 588 msgstr "Plane einen Wordpress Cron Job ein" 561 589 562 #: runpress.php:1 569590 #: runpress.php:1641 563 591 msgid "Your have scheduled a WP Cron job to run at the following basis " 564 592 msgstr "Du hast einen WP Cron Job geplant auf folgender Basis " 565 593 566 #: runpress.php:1 573594 #: runpress.php:1645 567 595 msgid "Define a WP Cron job to start the sync of your local db automatically." 568 596 msgstr "" … … 570 598 "automatisch durchzuführen." 571 599 572 #: runpress.php:1 578600 #: runpress.php:1650 573 601 msgid "Interval:" 574 602 msgstr "Interval:" 575 603 576 #: runpress.php:1 580604 #: runpress.php:1652 577 605 msgid "Hourly" 578 606 msgstr "Stündlich" 579 607 580 #: runpress.php:1 581608 #: runpress.php:1653 581 609 msgid "every 6 hours" 582 610 msgstr "alle 6 Stunden" 583 611 584 #: runpress.php:1 582612 #: runpress.php:1654 585 613 msgid "every 12 hours" 586 614 msgstr "alle 12 Stunden" 587 615 588 #: runpress.php:1 583616 #: runpress.php:1655 589 617 msgid "once a day" 590 618 msgstr "einmal am Tag" 591 619 592 #: runpress.php:1 584620 #: runpress.php:1656 593 621 msgid "once a week" 594 622 msgstr "einmal pro Woche" 595 623 596 #: runpress.php:1 592624 #: runpress.php:1664 597 625 msgid "Change scheduled Cron job" 598 626 msgstr "Ändere geplanten Cron Job" 599 627 600 #: runpress.php:16 00628 #: runpress.php:1672 601 629 msgid "Schedule Cron job" 602 630 msgstr "Plane Cron Job" 603 631 604 #: runpress.php:16 11632 #: runpress.php:1683 605 633 msgid "Delete the scheduled Wordpress Cron job" 606 634 msgstr "Lösche den geplanten Cron Job" 607 635 608 #: runpress.php:16 14636 #: runpress.php:1686 609 637 msgid "Click here to delete the scheduled Wordpress Cron job for RunPress." 610 638 msgstr "" 611 639 "Klicke hier um den geplanten Wordpress Cron Job für Runpress zu löschen." 612 640 613 #: runpress.php:16 16641 #: runpress.php:1688 614 642 msgid "Delete Cron Job" 615 643 msgstr "Lösche Cron Job" 616 644 617 #: runpress.php:1 635645 #: runpress.php:1748 618 646 msgid "Motivate the developer of this plugin" 619 647 msgstr "Motiviere den Entwickler dieses Plugins" 620 648 621 #: runpress.php:1 636649 #: runpress.php:1749 622 650 msgid "" 623 651 "Please consider a small (or even a big) donation to the developer of the " … … 636 664 "sicherstellt.<br /><br />" 637 665 638 #: runpress.php:1 637666 #: runpress.php:1750 639 667 msgid "" 640 668 "German speaking RunPress user may use this icon to donate via paypal:<br />" … … 644 672 "Paypal zu spenden:<br /><br />" 645 673 646 #: runpress.php:1 645674 #: runpress.php:1758 647 675 msgid "" 648 676 "English speaking RunPress User may use this icon to donate via paypal:<br />" … … 652 680 "Paypal zu spenden:<br /><br />" 653 681 654 #: runpress.php:1 669682 #: runpress.php:1823 655 683 msgid "General Shortcode usage" 656 684 msgstr "Generelle Shortcode Benutzung" 657 685 658 #: runpress.php:1 671686 #: runpress.php:1825 659 687 msgid "" 660 688 "You can choose between 4 possibilities to display your runtastic activities: " … … 712 740 "aktiviert hast." 713 741 714 #: runpress.php:1 674742 #: runpress.php:1828 715 743 msgid "Runpress Shortcode Generator" 716 744 msgstr "RunPress Shortcode Generierer" 717 745 718 #: runpress.php:1 802746 #: runpress.php:1956 719 747 msgid "Reset" 720 748 msgstr "Zurücksetzen" 721 749 722 #: runpress.php:1 807750 #: runpress.php:1961 723 751 msgid "Display:" 724 752 msgstr "Anzeige:" 725 753 726 #: runpress.php:1 809754 #: runpress.php:1963 727 755 msgid "Table" 728 756 msgstr "Tabelle" 729 757 730 #: runpress.php:1 811758 #: runpress.php:1965 731 759 msgid "Chart" 732 760 msgstr "Diagramm" 733 761 734 #: runpress.php:1 812762 #: runpress.php:1966 735 763 msgid "Single" 736 764 msgstr "Einzel" 737 765 738 #: runpress.php:1 813 runpress.php:1828 runpress.php:1870766 #: runpress.php:1967 runpress.php:1982 runpress.php:2024 739 767 msgid "empty" 740 768 msgstr "leer" 741 769 742 #: runpress.php:1 817770 #: runpress.php:1971 743 771 msgid "<i>If \"empty\" the default value (table) will be used.</i>" 744 772 msgstr "<i>Wenn \"leer\" wird der Standard Wert (Tabelle) verwendet.</i>" 745 773 746 #: runpress.php:1 821 runpress.php:1844774 #: runpress.php:1975 runpress.php:1998 747 775 msgid "Year:" 748 776 msgstr "Jahr:" 749 777 750 #: runpress.php:1 832778 #: runpress.php:1986 751 779 msgid "<i>If \"empty\" the default value (the actual year) will be used.</i>" 752 780 msgstr "" 753 781 "<i>Wenn \"leer\" wird der Standard Wert (das aktuelle Jahr) verwendet.</i>" 754 782 755 #: runpress.php:1 836783 #: runpress.php:1990 756 784 msgid "Entry:" 757 785 msgstr "Eintrag:" 758 786 759 #: runpress.php:1 838787 #: runpress.php:1992 760 788 msgid "latest" 761 789 msgstr "letzte" 762 790 763 #: runpress.php: 1858791 #: runpress.php:2012 764 792 msgid "" 765 793 "<i>Just choose the activity from the dropdown list or use the entry <b>" … … 769 797 "Eintrag <b>letzte</b> für Deine letzte Aktivität.</i>" 770 798 771 #: runpress.php: 1861799 #: runpress.php:2015 772 800 msgid "Mapwidth / Mapheight:" 773 801 msgstr "Kartenbreite- / -höhe:" 774 802 775 #: runpress.php: 1863803 #: runpress.php:2017 776 804 msgid "" 777 805 "<i>Specifies the width and the height of the map which is shown in your post " … … 781 809 "Seite ausgegeben wird.</i>" 782 810 783 #: runpress.php: 1866811 #: runpress.php:2020 784 812 msgid "Sortorder:" 785 813 msgstr "Sortierreihenfolge:" 786 814 787 #: runpress.php: 1868815 #: runpress.php:2022 788 816 msgid "Descending" 789 817 msgstr "Absteigend" 790 818 791 #: runpress.php: 1869819 #: runpress.php:2023 792 820 msgid "Ascending" 793 821 msgstr "Aufsteigend" 794 822 795 #: runpress.php: 1874823 #: runpress.php:2028 796 824 msgid "<i>If \"empty\" the default value (descending) will be used.</i>" 797 825 msgstr "<i>Wenn \"leer\" wird der Standard Wert (Absteigend) verwendet.</i>" 798 826 799 #: runpress.php: 1878827 #: runpress.php:2032 800 828 msgid " Title:" 801 829 msgstr "Titel:" 802 830 803 #: runpress.php: 1880831 #: runpress.php:2034 804 832 msgid "<i>Leave the text field blank to show no title.</i>" 805 833 msgstr "<i>Textfeld leer lassen um keinen Titel anzuzeigen.</i>" 806 834 807 #: runpress.php: 1894835 #: runpress.php:2046 808 836 msgid "<i>Leave the type field blank to show all activity types.</i>" 809 837 msgstr "<i>Typfeld leer lassen um alle Aktivitätstypen zu zeigen.</i>" 810 838 811 #: runpress.php: 1915839 #: runpress.php:2064 812 840 msgid "Generate Shortcode" 813 841 msgstr "Generiere Shortcode" 814 842 815 #: runpress.php: 1918843 #: runpress.php:2067 816 844 msgid "" 817 845 "<i>After clicking this button the shortcode will be generated and displayed " … … 829 857 "ein.</i>" 830 858 831 #: runpress.php: 1936859 #: runpress.php:2126 832 860 msgid "four time daily" 833 861 msgstr "viermal täglich" 834 862 835 #: runpress.php: 1940863 #: runpress.php:2130 836 864 msgid "weekly" 837 865 msgstr "wöchentlich" 838 866 839 #: runpress.php:2047 867 #: runpress.php:2231 runpress.php:2231 868 msgid "Save your RunTastic credentials" 869 msgstr "Speichere Deine Runtastic Benutzerdaten" 870 871 #: runpress.php:2232 runpress.php:2232 872 msgid "Sync your entries from RunTastic to your local database" 873 msgstr "" 874 "Synchronisiere Deine Einträge bei Runtastic mit Deiner lokalen Datenbank" 875 876 #: runpress.php:2233 runpress.php:2233 877 msgid "Build a shortcode to implement your activities into your Posts or Pages" 878 msgstr "" 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 883 msgid "Think about a donation to keep the plugin author motivated" 884 msgstr "" 885 "Denke bitte über eine Spende nach um den Plugin Autor weiterhin zu motivieren" 886 887 #: runpress.php:2237 840 888 msgid "Need help? Check the tutorial!" 841 889 msgstr "Benötigst Du Hilfe? Nutz das Tutorial!" 842 890 843 #: runpress.php:2 094891 #: runpress.php:2284 844 892 msgid "Is your country still on top?" 845 893 msgstr "Ist Dein Land immer noch an der Spitze?" 846 894 847 #: runpress.php:2 096895 #: runpress.php:2286 848 896 msgid "" 849 897 "I really appreciate donations by the users of RunPress because they are " … … 861 909 "Wille allein zählt!" 862 910 863 #: runpress.php:2 098911 #: runpress.php:2288 864 912 msgid "Leaderboard since the last update of RunPress:" 865 913 msgstr "Rangliste seit dem letzten Update von RunPress:" 866 914 867 #: runpress.php:2 102915 #: runpress.php:2292 868 916 msgid "1st. Place" 869 917 msgstr "1. Platz" 870 918 871 #: runpress.php:2 102 runpress.php:2102919 #: runpress.php:2292 runpress.php:2292 872 920 msgid "Denmark" 873 921 msgstr "Dänemark" 874 922 875 #: runpress.php:2 103923 #: runpress.php:2293 876 924 msgid "2nd. Place" 877 925 msgstr "2. Platz" 878 926 879 #: runpress.php:2 103 runpress.php:2103927 #: runpress.php:2293 runpress.php:2293 880 928 msgid "Germany" 881 929 msgstr "Deutschland" 882 930 883 #: runpress.php:2 104931 #: runpress.php:2294 884 932 msgid "3rd. Place" 885 933 msgstr "3. Platz" 886 934 887 #: runpress.php:2 104 runpress.php:2104935 #: runpress.php:2294 runpress.php:2294 888 936 msgid "Brazil" 889 937 msgstr "Brasilien" … … 902 950 "DB." 903 951 904 #: inc/widget/runpress-widget.php:8 9952 #: inc/widget/runpress-widget.php:87 905 953 msgid "No data selected!" 906 954 msgstr "Keine Daten ausgewählt!" 907 955 908 #: inc/widget/runpress-widget.php:16 6956 #: inc/widget/runpress-widget.php:169 909 957 msgid "Longest Distance" 910 958 msgstr "Längste Distanz" 911 959 912 #: inc/widget/runpress-widget.php:1 67960 #: inc/widget/runpress-widget.php:170 913 961 msgid "Longest Duration" 914 962 msgstr "Längste Dauer" 915 963 916 #: inc/widget/runpress-widget.php:1 68964 #: inc/widget/runpress-widget.php:171 917 965 msgid "Fastest Pace" 918 966 msgstr "Schnellstes Tempo" 919 967 920 #: inc/widget/runpress-widget.php:20 4968 #: inc/widget/runpress-widget.php:207 921 969 msgid "Format: DD.MM." 922 970 msgstr "Format: TT.MM." 923 971 924 #: inc/widget/runpress-widget.php:20 4972 #: inc/widget/runpress-widget.php:207 925 973 msgid "Format: MM/DD" 926 974 msgstr "Format: MM/DD" 927 975 928 #: inc/widget/runpress-widget.php:23 6976 #: inc/widget/runpress-widget.php:239 929 977 msgid "RunPress Widget" 930 978 msgstr "RunPress Widget" 931 979 932 #: inc/widget/runpress-widget.php:25 0980 #: inc/widget/runpress-widget.php:251 933 981 msgid "Title:" 934 982 msgstr "Titel:" 935 983 936 #: inc/widget/runpress-widget.php:25 4984 #: inc/widget/runpress-widget.php:255 937 985 msgid "Show last activity" 938 986 msgstr "Zeige letzte Aktivität" 939 987 940 #: inc/widget/runpress-widget.php:25 7988 #: inc/widget/runpress-widget.php:258 941 989 msgid "Show highscores" 942 990 msgstr "Zeige Bestwerte" 943 991 944 #: inc/widget/runpress-widget.php:26 0992 #: inc/widget/runpress-widget.php:261 945 993 msgid "Show last 5 entries" 946 994 msgstr "Zeige letzte 5 Einträge" 947 995 948 #: inc/widget/runpress-widget.php:26 4996 #: inc/widget/runpress-widget.php:265 949 997 msgid "Show activity types:" 950 998 msgstr "Zeige Aktivitätstypen:" -
runpress/tags/1.4.2/languages/runpress.pot
r1589549 r1594425 4 4 "Project-Id-Version: RunPress\n" 5 5 "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" 7 7 "POT-Revision-Date: Mon Feb 29 2016 11:53:23 GMT+0100\n" 8 8 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" … … 84 84 msgstr "" 85 85 86 #: runpress.php:119 runpress.php:1885 runpress.php:1899 87 #: inc/widget/runpress-widget.php:266 86 #: runpress.php:119 88 87 msgid "running" 89 88 msgstr "" 90 89 91 #: runpress.php:120 runpress.php:1890 runpress.php:1904 92 #: inc/widget/runpress-widget.php:276 90 #: runpress.php:120 93 91 msgid "hiking" 94 92 msgstr "" 95 93 96 #: runpress.php:121 runpress.php:1889 runpress.php:1903 97 #: inc/widget/runpress-widget.php:274 94 #: runpress.php:121 98 95 msgid "racecycling" 99 96 msgstr "" 100 97 101 #: runpress.php:122 runpress.php:1888 runpress.php:1902 102 #: inc/widget/runpress-widget.php:272 98 #: runpress.php:122 103 99 msgid "mountainbiking" 104 100 msgstr "" 105 101 106 #: runpress.php:123 runpress.php:1887 runpress.php:1901 107 #: inc/widget/runpress-widget.php:270 102 #: runpress.php:123 108 103 msgid "cycling" 109 104 msgstr "" 110 105 111 #: runpress.php:124 runpress.php:1886 runpress.php:1900 112 #: inc/widget/runpress-widget.php:268 106 #: runpress.php:124 113 107 msgid "nordicwalking" 114 108 msgstr "" 115 109 116 #: runpress.php:125 runpress.php:1892 runpress.php:1906 117 #: inc/widget/runpress-widget.php:280 110 #: runpress.php:125 118 111 msgid "ergometer" 119 112 msgstr "" 120 113 121 #: runpress.php:126 runpress.php:1891 runpress.php:1905 122 #: inc/widget/runpress-widget.php:278 114 #: runpress.php:126 123 115 msgid "treadmill" 124 116 msgstr "" 125 117 118 #: runpress.php:128 119 msgid "elliptical" 120 msgstr "" 121 122 #: runpress.php:129 123 msgid "spinning" 124 msgstr "" 125 126 #: runpress.php:130 127 msgid "handbike" 128 msgstr "" 129 130 #: runpress.php:131 131 msgid "skating" 132 msgstr "" 133 134 #: runpress.php:132 135 msgid "skateboarding" 136 msgstr "" 137 138 #: runpress.php:133 139 msgid "rowing" 140 msgstr "" 141 142 #: runpress.php:134 143 msgid "swimming" 144 msgstr "" 145 146 #: runpress.php:135 147 msgid "crosscountryskiing" 148 msgstr "" 149 150 #: runpress.php:136 151 msgid "skiing" 152 msgstr "" 153 154 #: runpress.php:137 155 msgid "snowboarding" 156 msgstr "" 157 158 #: runpress.php:138 159 msgid "backcountryskiing" 160 msgstr "" 161 162 #: runpress.php:139 163 msgid "sledding" 164 msgstr "" 165 166 #: runpress.php:140 167 msgid "motorbiking" 168 msgstr "" 169 170 #: runpress.php:141 171 msgid "walking" 172 msgstr "" 173 174 #: runpress.php:142 175 msgid "riding" 176 msgstr "" 177 126 178 #. 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 180 msgid "" 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." 184 msgstr "" 185 186 #: runpress.php:409 136 187 msgid "RunPress Statistics" 137 188 msgstr "" 138 189 139 #: runpress.php:4 11190 #: runpress.php:427 140 191 msgid "Your latest " 141 192 msgstr "" 142 193 143 #: runpress.php:4 11194 #: runpress.php:427 144 195 msgid " activity was " 145 196 msgstr "" 146 197 147 #: runpress.php:4 13198 #: runpress.php:429 148 199 msgid "Nothing to show here yet.<br /><br />" 149 200 msgstr "" 150 201 151 #: runpress.php:4 21 runpress.php:422202 #: runpress.php:437 runpress.php:438 152 203 msgid "Overall Statistics" 153 204 msgstr "" 154 205 155 #: runpress.php:4 21 runpress.php:422206 #: runpress.php:437 runpress.php:438 156 207 msgid "Period: " 157 208 msgstr "" 158 209 159 #: runpress.php:4 21 runpress.php:422 runpress.php:456210 #: runpress.php:437 runpress.php:438 runpress.php:472 160 211 msgid "Show" 161 212 msgstr "" 162 213 163 #: runpress.php:4 27 runpress.php:462214 #: runpress.php:443 runpress.php:478 164 215 msgid "Activity" 165 216 msgstr "" 166 217 167 #: runpress.php:4 30 runpress.php:465218 #: runpress.php:446 runpress.php:481 168 219 msgid "Count" 169 220 msgstr "" 170 221 171 #: runpress.php:4 56 runpress.php:457222 #: runpress.php:472 runpress.php:473 172 223 msgid "Statistics" 173 224 msgstr "" 174 225 175 #: runpress.php:4 57226 #: runpress.php:473 176 227 msgid "Hide" 177 228 msgstr "" 178 229 179 #: runpress.php: 488230 #: runpress.php:504 180 231 msgid "Donate here" 181 232 msgstr "" 182 233 183 #: runpress.php: 490234 #: runpress.php:506 184 235 msgid "" 185 236 "Please consider a donation to keep the further development of RunPress up " … … 187 238 msgstr "" 188 239 189 #: runpress.php:5 70 runpress.php:886240 #: runpress.php:586 runpress.php:902 190 241 msgid "RunPress Local DB" 191 242 msgstr "" 192 243 193 #: runpress.php:5 70244 #: runpress.php:586 194 245 msgid "Local DB" 195 246 msgstr "" 196 247 197 #: runpress.php:5 71248 #: runpress.php:587 198 249 msgid "RunPress Sync" 199 250 msgstr "" 200 251 201 #: runpress.php:5 71252 #: runpress.php:587 202 253 msgid "Sync" 203 254 msgstr "" 204 255 205 #: runpress.php:5 72 runpress.php:1668256 #: runpress.php:588 runpress.php:1822 206 257 msgid "RunPress Shortcode Generator" 207 258 msgstr "" 208 259 209 #: runpress.php:5 72260 #: runpress.php:588 210 261 msgid "Shortcode Generator" 211 262 msgstr "" 212 263 213 #: runpress.php:5 79 runpress.php:1634264 #: runpress.php:595 runpress.php:1747 214 265 msgid "RunPress Donation" 215 266 msgstr "" 216 267 217 #: runpress.php:5 79268 #: runpress.php:595 218 269 msgid "Donate!" 219 270 msgstr "" 220 271 221 #: runpress.php:5 81 runpress.php:2093272 #: runpress.php:597 runpress.php:2283 222 273 msgid "RunPress Donations Leaderboard" 223 274 msgstr "" 224 275 225 #: runpress.php:5 81276 #: runpress.php:597 226 277 msgid "Donations Leaderbord" 227 278 msgstr "" 228 279 229 #: runpress.php: 597280 #: runpress.php:613 230 281 msgid "Start configuration." 231 282 msgstr "" 232 283 233 #: runpress.php: 598284 #: runpress.php:614 234 285 msgid "RunPress is not configured yet. Please do it now." 235 286 msgstr "" 236 287 237 #: runpress.php:6 26 runpress.php:2006288 #: runpress.php:642 runpress.php:2196 238 289 msgid "Settings" 239 290 msgstr "" 240 291 241 #: runpress.php:6 27292 #: runpress.php:643 242 293 msgid "" 243 294 "<br />Add your Runtastic Username and Password here. The Plugin will store " 244 295 "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." 303 msgstr "" 304 305 #: runpress.php:647 256 306 msgid "Info" 257 307 msgstr "" 258 308 259 #: runpress.php:6 32309 #: runpress.php:648 260 310 msgid "" 261 311 "<br /><h2>RunPress - A Wordpress Plugin to display your Runtastic Activities." … … 265 315 msgstr "" 266 316 267 #: runpress.php:6 76317 #: runpress.php:692 268 318 msgid "Your Runtastic Username: " 269 319 msgstr "" 270 320 271 #: runpress.php: 689321 #: runpress.php:705 272 322 msgid "This is not a correct email address!" 273 323 msgstr "" 274 324 275 #: runpress.php: 699325 #: runpress.php:715 276 326 msgid "Password must be set!" 277 327 msgstr "" 278 328 279 #: runpress.php:7 02329 #: runpress.php:718 280 330 msgid "Password must be shorter than 50 character!" 281 331 msgstr "" 282 332 283 #: runpress.php:7 18 runpress.php:731 runpress.php:742333 #: runpress.php:734 runpress.php:747 runpress.php:758 284 334 msgid "Value was set to the default value!" 285 335 msgstr "" 286 336 287 #: runpress.php:7 55337 #: runpress.php:771 288 338 msgid "Settings saved." 289 339 msgstr "" 290 340 291 #: runpress.php:7 63341 #: runpress.php:779 292 342 msgid "An error occurred. Please check your user credentials and try again!" 293 343 msgstr "" 294 344 295 #: runpress.php:7 70345 #: runpress.php:786 296 346 msgid "RunPress Plugin Settings" 297 347 msgstr "" 298 348 299 #: runpress.php:7 75349 #: runpress.php:791 300 350 msgid "Runtastic E-Mail Address:" 301 351 msgstr "" 302 352 303 #: runpress.php:7 80353 #: runpress.php:796 304 354 msgid "Runtastic Password:" 305 355 msgstr "" 306 356 307 #: runpress.php: 787357 #: runpress.php:803 308 358 msgid "Unit Type:" 309 359 msgstr "" 310 360 311 #: runpress.php: 788361 #: runpress.php:804 312 362 msgid "Metric Units" 313 363 msgstr "" 314 364 315 #: runpress.php: 788365 #: runpress.php:804 316 366 msgid "Imperial Units" 317 367 msgstr "" 318 368 319 #: runpress.php: 795369 #: runpress.php:811 320 370 msgid "Delete Options:" 321 371 msgstr "" 322 372 323 #: runpress.php: 796373 #: runpress.php:812 324 374 msgid "Deletes all options on deactivation of the plugin." 325 375 msgstr "" 326 376 327 #: runpress.php:8 03377 #: runpress.php:819 328 378 msgid "Donations:" 329 379 msgstr "" 330 380 331 #: runpress.php:8 04381 #: runpress.php:820 332 382 msgid "" 333 383 "Don't bother me about sending a donation! I've already donated or I don't " … … 335 385 msgstr "" 336 386 337 #: runpress.php:8 09387 #: runpress.php:825 338 388 msgid "Save Changes" 339 389 msgstr "" 340 390 341 #: runpress.php: 888391 #: runpress.php:904 342 392 msgid "Entries in local database:" 343 393 msgstr "" 344 394 345 #: runpress.php: 893 runpress.php:903 runpress.php:1192 runpress.php:1273346 #: runpress.php:1 285 runpress.php:1883 runpress.php:1897347 #: inc/widget/runpress-widget.php:14 3395 #: 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 348 398 msgid "Type" 349 399 msgstr "" 350 400 351 #: runpress.php: 894 runpress.php:904 runpress.php:1194 runpress.php:1274352 #: runpress.php:1 286 inc/widget/runpress-widget.php:144353 #: inc/widget/runpress-widget.php:1 89401 #: 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 354 404 msgid "Date" 355 405 msgstr "" 356 406 357 #: runpress.php: 895 runpress.php:905 runpress.php:1275 runpress.php:1287407 #: runpress.php:911 runpress.php:921 runpress.php:1347 runpress.php:1359 358 408 msgid "Start" 359 409 msgstr "" 360 410 361 #: runpress.php: 896 runpress.php:906 runpress.php:1276 runpress.php:1288362 #: inc/widget/runpress-widget.php:14 6 inc/widget/runpress-widget.php:191411 #: 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 363 413 msgid "Duration" 364 414 msgstr "" 365 415 366 #: runpress.php: 897 runpress.php:907 runpress.php:1193 runpress.php:1277367 #: runpress.php:1 289 runpress.php:1411 runpress.php:1436368 #: inc/widget/runpress-widget.php:14 5 inc/widget/runpress-widget.php:190416 #: 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 369 419 msgid "Distance" 370 420 msgstr "" 371 421 372 #: runpress.php: 898 runpress.php:908 runpress.php:1278 runpress.php:1290373 #: inc/widget/runpress-widget.php:1 47 inc/widget/runpress-widget.php:192422 #: 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 374 424 msgid "Pace" 375 425 msgstr "" 376 426 377 #: runpress.php: 899 runpress.php:909 runpress.php:1279 runpress.php:1291427 #: runpress.php:915 runpress.php:925 runpress.php:1351 runpress.php:1363 378 428 msgid "Speed" 379 429 msgstr "" 380 430 381 #: runpress.php:9 23 runpress.php:1307431 #: runpress.php:939 runpress.php:1379 382 432 msgid "Format: DD.MM.YYYY" 383 433 msgstr "" 384 434 385 #: runpress.php:9 23 runpress.php:1307435 #: runpress.php:939 runpress.php:1379 386 436 msgid "Format: YYYY/MM/DD" 387 437 msgstr "" 388 438 389 #: runpress.php:9 24 runpress.php:925 runpress.php:1308 runpress.php:1309390 #: inc/widget/runpress-widget.php:20 6 inc/widget/runpress-widget.php:206439 #: 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 391 441 msgid "Format: hh:mm:ss" 392 442 msgstr "" 393 443 394 #: runpress.php:9 57 runpress.php:1547444 #: runpress.php:973 runpress.php:1619 395 445 msgid "" 396 446 "Please click the following button once to synchronize your local wordpress " … … 398 448 msgstr "" 399 449 400 #: runpress.php:9 59 runpress.php:1549450 #: runpress.php:975 runpress.php:1621 401 451 msgid "Read Entries from Runtastic" 402 452 msgstr "" 403 453 404 #: runpress.php:9 66 runpress.php:1557454 #: runpress.php:982 runpress.php:1629 405 455 msgid "" 406 456 "If you want to delete the entries in your local db, click the following " … … 409 459 msgstr "" 410 460 411 #: runpress.php:9 68461 #: runpress.php:984 412 462 msgid "Delete all entries in local DB" 413 463 msgstr "" 414 464 415 #: runpress.php:1 073465 #: runpress.php:1145 416 466 msgid "DB sync successful." 417 467 msgstr "" 418 468 419 #: runpress.php:1 082469 #: runpress.php:1154 420 470 msgid "DB sync failed! Please check the error message (if any) or try again." 421 471 msgstr "" 422 472 423 #: runpress.php:11 01473 #: runpress.php:1173 424 474 msgid "DB successfully truncated." 425 475 msgstr "" 426 476 427 #: runpress.php:11 07477 #: runpress.php:1179 428 478 msgid "DB was not successfully truncated. Please try again." 429 479 msgstr "" 430 480 431 #: runpress.php:1 195481 #: runpress.php:1267 432 482 msgid "Avg. Pace" 433 483 msgstr "" 434 484 435 #: runpress.php:1 196485 #: runpress.php:1268 436 486 msgid "Elevation" 437 487 msgstr "" 438 488 439 #: runpress.php:12 12 inc/widget/runpress-widget.php:136489 #: runpress.php:1284 inc/widget/runpress-widget.php:139 440 490 msgid "No map found!" 441 491 msgstr "" 442 492 443 #: runpress.php:12 23493 #: runpress.php:1295 444 494 msgid "Calories" 445 495 msgstr "" 446 496 447 #: runpress.php:12 24497 #: runpress.php:1296 448 498 msgid "Heartrate" 449 499 msgstr "" 450 500 451 #: runpress.php:12 25501 #: runpress.php:1297 452 502 msgid "Weather" 453 503 msgstr "" 454 504 455 #: runpress.php:12 26505 #: runpress.php:1298 456 506 msgid "Surface" 457 507 msgstr "" 458 508 459 #: runpress.php:12 27 inc/widget/runpress-widget.php:148509 #: runpress.php:1299 inc/widget/runpress-widget.php:151 460 510 msgid "Feeling" 461 511 msgstr "" 462 512 463 #: runpress.php:1 231513 #: runpress.php:1303 464 514 msgid "Avg." 465 515 msgstr "" 466 516 467 #: runpress.php:1 231517 #: runpress.php:1303 468 518 msgid "Max." 469 519 msgstr "" 470 520 471 #: runpress.php:1 243 runpress.php:1452 inc/widget/runpress-widget.php:154472 #: inc/widget/runpress-widget.php:17 4 inc/widget/runpress-widget.php:216521 #: 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 473 523 msgid "Sorry, no data found!" 474 524 msgstr "" 475 525 476 #: runpress.php:14 11 runpress.php:1435526 #: runpress.php:1483 runpress.php:1507 477 527 msgid "Month" 478 528 msgstr "" 479 529 480 #: runpress.php:1 428530 #: runpress.php:1500 481 531 msgid "Results" 482 532 msgstr "" 483 533 484 #: runpress.php:15 26534 #: runpress.php:1598 485 535 msgid "Cronjob scheduled." 486 536 msgstr "" 487 537 488 #: runpress.php:1 535538 #: runpress.php:1607 489 539 msgid "Cronjob deleted." 490 540 msgstr "" 491 541 492 #: runpress.php:1 539542 #: runpress.php:1611 493 543 msgid "RunPress Sync Settings" 494 544 msgstr "" 495 545 496 #: runpress.php:1 541546 #: runpress.php:1613 497 547 msgid "Entries in local database: " 498 548 msgstr "" 499 549 500 #: runpress.php:1 544550 #: runpress.php:1616 501 551 msgid "Manual sync of the local DB" 502 552 msgstr "" 503 553 504 #: runpress.php:1 554554 #: runpress.php:1626 505 555 msgid "Delete all entries from the local DB" 506 556 msgstr "" 507 557 508 #: runpress.php:1 559558 #: runpress.php:1631 509 559 msgid "Delete all entries in local db" 510 560 msgstr "" 511 561 512 #: runpress.php:1 564562 #: runpress.php:1636 513 563 msgid "Schedule a Wordpress Cron Job" 514 564 msgstr "" 515 565 516 #: runpress.php:1 569566 #: runpress.php:1641 517 567 msgid "Your have scheduled a WP Cron job to run at the following basis " 518 568 msgstr "" 519 569 520 #: runpress.php:1 573570 #: runpress.php:1645 521 571 msgid "Define a WP Cron job to start the sync of your local db automatically." 522 572 msgstr "" 523 573 524 #: runpress.php:1 578574 #: runpress.php:1650 525 575 msgid "Interval:" 526 576 msgstr "" 527 577 528 #: runpress.php:1 580578 #: runpress.php:1652 529 579 msgid "Hourly" 530 580 msgstr "" 531 581 532 #: runpress.php:1 581582 #: runpress.php:1653 533 583 msgid "every 6 hours" 534 584 msgstr "" 535 585 536 #: runpress.php:1 582586 #: runpress.php:1654 537 587 msgid "every 12 hours" 538 588 msgstr "" 539 589 540 #: runpress.php:1 583590 #: runpress.php:1655 541 591 msgid "once a day" 542 592 msgstr "" 543 593 544 #: runpress.php:1 584594 #: runpress.php:1656 545 595 msgid "once a week" 546 596 msgstr "" 547 597 548 #: runpress.php:1 592598 #: runpress.php:1664 549 599 msgid "Change scheduled Cron job" 550 600 msgstr "" 551 601 552 #: runpress.php:16 00602 #: runpress.php:1672 553 603 msgid "Schedule Cron job" 554 604 msgstr "" 555 605 556 #: runpress.php:16 11606 #: runpress.php:1683 557 607 msgid "Delete the scheduled Wordpress Cron job" 558 608 msgstr "" 559 609 560 #: runpress.php:16 14610 #: runpress.php:1686 561 611 msgid "Click here to delete the scheduled Wordpress Cron job for RunPress." 562 612 msgstr "" 563 613 564 #: runpress.php:16 16614 #: runpress.php:1688 565 615 msgid "Delete Cron Job" 566 616 msgstr "" 567 617 568 #: runpress.php:1 635618 #: runpress.php:1748 569 619 msgid "Motivate the developer of this plugin" 570 620 msgstr "" 571 621 572 #: runpress.php:1 636622 #: runpress.php:1749 573 623 msgid "" 574 624 "Please consider a small (or even a big) donation to the developer of the " … … 580 630 msgstr "" 581 631 582 #: runpress.php:1 637632 #: runpress.php:1750 583 633 msgid "" 584 634 "German speaking RunPress user may use this icon to donate via paypal:<br />" … … 586 636 msgstr "" 587 637 588 #: runpress.php:1 645638 #: runpress.php:1758 589 639 msgid "" 590 640 "English speaking RunPress User may use this icon to donate via paypal:<br />" … … 592 642 msgstr "" 593 643 594 #: runpress.php:1 669644 #: runpress.php:1823 595 645 msgid "General Shortcode usage" 596 646 msgstr "" 597 647 598 #: runpress.php:1 671648 #: runpress.php:1825 599 649 msgid "" 600 650 "You can choose between 4 possibilities to display your runtastic activities: " … … 624 674 msgstr "" 625 675 626 #: runpress.php:1 674676 #: runpress.php:1828 627 677 msgid "Runpress Shortcode Generator" 628 678 msgstr "" 629 679 630 #: runpress.php:1 802680 #: runpress.php:1956 631 681 msgid "Reset" 632 682 msgstr "" 633 683 634 #: runpress.php:1 807684 #: runpress.php:1961 635 685 msgid "Display:" 636 686 msgstr "" 637 687 638 #: runpress.php:1 809688 #: runpress.php:1963 639 689 msgid "Table" 640 690 msgstr "" 641 691 642 #: runpress.php:1 811692 #: runpress.php:1965 643 693 msgid "Chart" 644 694 msgstr "" 645 695 646 #: runpress.php:1 812696 #: runpress.php:1966 647 697 msgid "Single" 648 698 msgstr "" 649 699 650 #: runpress.php:1 813 runpress.php:1828 runpress.php:1870700 #: runpress.php:1967 runpress.php:1982 runpress.php:2024 651 701 msgid "empty" 652 702 msgstr "" 653 703 654 #: runpress.php:1 817704 #: runpress.php:1971 655 705 msgid "<i>If \"empty\" the default value (table) will be used.</i>" 656 706 msgstr "" 657 707 658 #: runpress.php:1 821 runpress.php:1844708 #: runpress.php:1975 runpress.php:1998 659 709 msgid "Year:" 660 710 msgstr "" 661 711 662 #: runpress.php:1 832712 #: runpress.php:1986 663 713 msgid "<i>If \"empty\" the default value (the actual year) will be used.</i>" 664 714 msgstr "" 665 715 666 #: runpress.php:1 836716 #: runpress.php:1990 667 717 msgid "Entry:" 668 718 msgstr "" 669 719 670 #: runpress.php:1 838720 #: runpress.php:1992 671 721 msgid "latest" 672 722 msgstr "" 673 723 674 #: runpress.php: 1858724 #: runpress.php:2012 675 725 msgid "" 676 726 "<i>Just choose the activity from the dropdown list or use the entry <b>" … … 678 728 msgstr "" 679 729 680 #: runpress.php: 1861730 #: runpress.php:2015 681 731 msgid "Mapwidth / Mapheight:" 682 732 msgstr "" 683 733 684 #: runpress.php: 1863734 #: runpress.php:2017 685 735 msgid "" 686 736 "<i>Specifies the width and the height of the map which is shown in your post " … … 688 738 msgstr "" 689 739 690 #: runpress.php: 1866740 #: runpress.php:2020 691 741 msgid "Sortorder:" 692 742 msgstr "" 693 743 694 #: runpress.php: 1868744 #: runpress.php:2022 695 745 msgid "Descending" 696 746 msgstr "" 697 747 698 #: runpress.php: 1869748 #: runpress.php:2023 699 749 msgid "Ascending" 700 750 msgstr "" 701 751 702 #: runpress.php: 1874752 #: runpress.php:2028 703 753 msgid "<i>If \"empty\" the default value (descending) will be used.</i>" 704 754 msgstr "" 705 755 706 #: runpress.php: 1878756 #: runpress.php:2032 707 757 msgid " Title:" 708 758 msgstr "" 709 759 710 #: runpress.php: 1880760 #: runpress.php:2034 711 761 msgid "<i>Leave the text field blank to show no title.</i>" 712 762 msgstr "" 713 763 714 #: runpress.php: 1894764 #: runpress.php:2046 715 765 msgid "<i>Leave the type field blank to show all activity types.</i>" 716 766 msgstr "" 717 767 718 #: runpress.php: 1915768 #: runpress.php:2064 719 769 msgid "Generate Shortcode" 720 770 msgstr "" 721 771 722 #: runpress.php: 1918772 #: runpress.php:2067 723 773 msgid "" 724 774 "<i>After clicking this button the shortcode will be generated and displayed " … … 729 779 msgstr "" 730 780 731 #: runpress.php: 1936781 #: runpress.php:2126 732 782 msgid "four time daily" 733 783 msgstr "" 734 784 735 #: runpress.php: 1940785 #: runpress.php:2130 736 786 msgid "weekly" 737 787 msgstr "" 738 788 739 #: runpress.php:2 041789 #: runpress.php:2231 runpress.php:2231 740 790 msgid "Save your RunTastic credentials" 741 791 msgstr "" 742 792 743 #: runpress.php:2 042793 #: runpress.php:2232 runpress.php:2232 744 794 msgid "Sync your entries from RunTastic to your local database" 745 795 msgstr "" 746 796 747 #: runpress.php:2 043797 #: runpress.php:2233 runpress.php:2233 748 798 msgid "Build a shortcode to implement your activities into your Posts or Pages" 749 799 msgstr "" 750 800 751 #: runpress.php:2 044801 #: runpress.php:2234 runpress.php:2234 752 802 msgid "Think about a donation to keep the plugin author motivated" 753 803 msgstr "" 754 804 755 #: runpress.php:2 047805 #: runpress.php:2237 756 806 msgid "Need help? Check the tutorial!" 757 807 msgstr "" 758 808 759 #: runpress.php:2 094809 #: runpress.php:2284 760 810 msgid "Is your country still on top?" 761 811 msgstr "" 762 812 763 #: runpress.php:2 096813 #: runpress.php:2286 764 814 msgid "" 765 815 "I really appreciate donations by the users of RunPress because they are " … … 771 821 msgstr "" 772 822 773 #: runpress.php:2 098823 #: runpress.php:2288 774 824 msgid "Leaderboard since the last update of RunPress:" 775 825 msgstr "" 776 826 777 #: runpress.php:2 102827 #: runpress.php:2292 778 828 msgid "1st. Place" 779 829 msgstr "" 780 830 781 #: runpress.php:2 102 runpress.php:2102831 #: runpress.php:2292 runpress.php:2292 782 832 msgid "Denmark" 783 833 msgstr "" 784 834 785 #: runpress.php:2 103835 #: runpress.php:2293 786 836 msgid "2nd. Place" 787 837 msgstr "" 788 838 789 #: runpress.php:2 103 runpress.php:2103839 #: runpress.php:2293 runpress.php:2293 790 840 msgid "Germany" 791 841 msgstr "" 792 842 793 #: runpress.php:2 104843 #: runpress.php:2294 794 844 msgid "3rd. Place" 795 845 msgstr "" 796 846 797 #: runpress.php:2 104 runpress.php:2104847 #: runpress.php:2294 runpress.php:2294 798 848 msgid "Brazil" 799 849 msgstr "" … … 810 860 msgstr "" 811 861 812 #: inc/widget/runpress-widget.php:8 9862 #: inc/widget/runpress-widget.php:87 813 863 msgid "No data selected!" 814 864 msgstr "" 815 865 816 #: inc/widget/runpress-widget.php:16 6866 #: inc/widget/runpress-widget.php:169 817 867 msgid "Longest Distance" 818 868 msgstr "" 819 869 820 #: inc/widget/runpress-widget.php:1 67870 #: inc/widget/runpress-widget.php:170 821 871 msgid "Longest Duration" 822 872 msgstr "" 823 873 824 #: inc/widget/runpress-widget.php:1 68874 #: inc/widget/runpress-widget.php:171 825 875 msgid "Fastest Pace" 826 876 msgstr "" 827 877 828 #: inc/widget/runpress-widget.php:20 4878 #: inc/widget/runpress-widget.php:207 829 879 msgid "Format: DD.MM." 830 880 msgstr "" 831 881 832 #: inc/widget/runpress-widget.php:20 4882 #: inc/widget/runpress-widget.php:207 833 883 msgid "Format: MM/DD" 834 884 msgstr "" 835 885 836 #: inc/widget/runpress-widget.php:23 6886 #: inc/widget/runpress-widget.php:239 837 887 msgid "RunPress Widget" 838 888 msgstr "" 839 889 840 #: inc/widget/runpress-widget.php:25 0890 #: inc/widget/runpress-widget.php:251 841 891 msgid "Title:" 842 892 msgstr "" 843 893 844 #: inc/widget/runpress-widget.php:25 4894 #: inc/widget/runpress-widget.php:255 845 895 msgid "Show last activity" 846 896 msgstr "" 847 897 848 #: inc/widget/runpress-widget.php:25 7898 #: inc/widget/runpress-widget.php:258 849 899 msgid "Show highscores" 850 900 msgstr "" 851 901 852 #: inc/widget/runpress-widget.php:26 0902 #: inc/widget/runpress-widget.php:261 853 903 msgid "Show last 5 entries" 854 904 msgstr "" 855 905 856 #: inc/widget/runpress-widget.php:26 4906 #: inc/widget/runpress-widget.php:265 857 907 msgid "Show activity types:" 858 908 msgstr "" -
runpress/tags/1.4.2/runpress.php
r1589549 r1594425 6 6 * Plugin URI: http://runpress.markusfrenzel.de 7 7 * 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. 18 * 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 11 11 * 12 12 * Author: Markus Frenzel … … 125 125 $runpress_ergometer = __( 'ergometer', 'runpress' ); 126 126 $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' ); 127 143 /* 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' ); 129 145 130 146 /********************* … … 625 641 'id' => '1', 626 642 '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 ergometeractivities 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' ) 628 644 ) ); 629 645 $screen->add_help_tab( array( … … 1043 1059 case "ergometer": 1044 1060 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": 1045 1076 $wpdb->replace( 1046 1077 $runpress_db_name, … … 1255 1286 else 1256 1287 { 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 ) . "'>"; 1258 1289 } 1259 1290 $body .= "</td> … … 2006 2037 <td halign="left" valign="top"><?php _e( 'Type', 'runpress' ) . ': '; ?></td> 2007 2038 <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 ?> 2016 2045 </td> 2017 2046 <td halign="left" valign="top"><?php _e( '<i>Leave the type field blank to show all activity types.</i>', 'runpress' ); ?></td> … … 2020 2049 <td halign="left" valign="top"><?php _e( 'Type', 'runpress' ). ': '; ?></td> 2021 2050 <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 ?> 2030 2056 </td> 2031 2057 </tr>
Note: See TracChangeset
for help on using the changeset viewer.