Changeset 1923931
- Timestamp:
- 08/13/2018 08:55:43 AM (8 years ago)
- Location:
- laterpay
- Files:
-
- 22 edited
- 1 copied
-
tags/0.12.0 (copied) (copied from laterpay/trunk)
-
tags/0.12.0/README.txt (modified) (3 diffs)
-
tags/0.12.0/application/Controller/Frontend/Post.php (modified) (2 diffs)
-
tags/0.12.0/application/Core/Bootstrap.php (modified) (1 diff)
-
tags/0.12.0/application/Helper/Config.php (modified) (2 diffs)
-
tags/0.12.0/application/Module/TimePasses.php (modified) (1 diff)
-
tags/0.12.0/asset_sources/scss/laterpay-admin.scss (modified) (1 diff)
-
tags/0.12.0/built_assets/css/laterpay-admin.css (modified) (1 diff)
-
tags/0.12.0/languages/laterpay-de_DE.mo (modified) (previous)
-
tags/0.12.0/languages/laterpay-de_DE.po (modified) (46 diffs)
-
tags/0.12.0/laterpay.php (modified) (1 diff)
-
tags/0.12.0/views/backend/pricing.php (modified) (1 diff)
-
trunk/README.txt (modified) (3 diffs)
-
trunk/application/Controller/Frontend/Post.php (modified) (2 diffs)
-
trunk/application/Core/Bootstrap.php (modified) (1 diff)
-
trunk/application/Helper/Config.php (modified) (2 diffs)
-
trunk/application/Module/TimePasses.php (modified) (1 diff)
-
trunk/asset_sources/scss/laterpay-admin.scss (modified) (1 diff)
-
trunk/built_assets/css/laterpay-admin.css (modified) (1 diff)
-
trunk/languages/laterpay-de_DE.mo (modified) (previous)
-
trunk/languages/laterpay-de_DE.po (modified) (46 diffs)
-
trunk/laterpay.php (modified) (1 diff)
-
trunk/views/backend/pricing.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
laterpay/tags/0.12.0/README.txt
r1915145 r1923931 6 6 Requires at least: 4.6 7 7 Tested up to: 4.9.6 8 Stable tag: 0.1 1.08 Stable tag: 0.12.0 9 9 Author URI: https://laterpay.net 10 10 Plugin URI: https://github.com/laterpay/laterpay-wordpress-plugin … … 186 186 187 187 == Changelog == 188 = 0.12.0 (August 13, 2018): Bugfix Release (v1.0 RC32) = 189 * Fix issue with post purchase display. 190 * Fix translation issues. 191 * Add notice on WPEngine environment to bypass page cache. 192 * Update token cookie name to avoid conflicts. 193 * Remove Subscription Notice for pre June 2017 merchants. 194 188 195 = 0.11.0 (July 26, 2018): Bugfix Release (v1.0 RC31) = 189 196 * Fix teaser content display issue. … … 625 632 == Upgrade notice == 626 633 627 = 0. 9.14 ( April 7, 2016 ): Bugfix Release (v1.0 RC7) =628 Fixed various bugs with laterpay functional .634 = 0.12.0 ( August 13, 2018 ): Bugfix Release (v1.0 RC32) = 635 Fixed various bugs with laterpay functionality. 629 636 630 637 == Arbitrary section == -
laterpay/tags/0.12.0/application/Controller/Frontend/Post.php
r1915145 r1923931 379 379 $content = $event->get_result(); 380 380 381 // Get the value of purchase type ( individual / timepass ) 382 $only_timepass = (bool) get_option( 'laterpay_only_time_pass_purchases_allowed' ); 383 381 384 if ( $event->has_argument( 'post' ) ) { 382 385 $post = $event->get_argument( 'post' ); … … 404 407 if ($user_has_unlimited_access && ! $preview_post_as_visitor ) { 405 408 $access = true; 409 } 410 411 // Check if no individual post type is allowed. 412 if ( $only_timepass ) { 413 414 // Getting list of timepass by post id. 415 $time_passes_list = LaterPay_Helper_TimePass::get_time_passes_list_by_post_id( $post->ID, null, true ); 416 417 // Getting list of subscription by post id. 418 $subscriptions_list = LaterPay_Helper_Subscription::get_subscriptions_list_by_post_id( $post->ID, null, true ); 419 420 // Check if no timepass/subscription exists. 421 if ( ( 0 === count( $time_passes_list ) ) && ( 0 === count( $subscriptions_list ) ) ) { 422 423 // Give access to post. 424 $access = true; 425 } 406 426 } 407 427 -
laterpay/tags/0.12.0/application/Core/Bootstrap.php
r1898231 r1923931 142 142 // plugin backend 143 143 $controller = self::get_controller( 'Admin_Pricing' ); 144 laterpay_event_dispatcher()->add_subscriber( $controller ); 145 146 $controller = self::get_controller( 'Admin_Notice' ); 144 147 laterpay_event_dispatcher()->add_subscriber( $controller ); 145 148 -
laterpay/tags/0.12.0/application/Helper/Config.php
r1898231 r1923931 19 19 'live_dialog_api_url' => 'https://web.laterpay.net', 20 20 'merchant_backend_url' => 'https://merchant.laterpay.net/', 21 'token_name' => ' token',21 'token_name' => 'laterpay_token', 22 22 'sandbox_merchant_id' => '984df2b86250447793241a', 23 23 'sandbox_api_key' => '57791c777baa4cea94c4ec074184e06d', … … 63 63 'live_dialog_api_url' => 'https://web.uselaterpay.com', 64 64 'merchant_backend_url' => 'https://web.uselaterpay.com/merchant', 65 'token_name' => ' token',65 'token_name' => 'laterpay_token', 66 66 'sandbox_merchant_id' => 'xswcBCpR6Vk6jTPw8si7KN', 67 67 'sandbox_api_key' => '22627fa7cbce45d394a8718fd9727731', -
laterpay/tags/0.12.0/application/Module/TimePasses.php
r1898231 r1923931 298 298 299 299 if ( $only_time_passes_allowed ) { 300 $content .= esc_html__( 'Buy a time pass to read the full content.', 'laterpay' ); 301 } 300 301 // Getting list of timepass by post id. 302 $time_passes_list = LaterPay_Helper_TimePass::get_time_passes_list_by_post_id( $post->ID, null, true ); 303 304 // Show message only if any timepass exists 305 if ( 0 !== count( $time_passes_list ) ) { 306 $content .= esc_html__('Buy a time pass to read the full content.', 'laterpay'); 307 } 308 } 309 302 310 $time_pass_event = new LaterPay_Core_Event(); 303 311 $time_pass_event->set_echo( false ); -
laterpay/tags/0.12.0/asset_sources/scss/laterpay-admin.scss
r1898231 r1923931 37 37 } 38 38 } 39 40 // sytle for wpengine notice button 41 .lp_wpengn_nbtn { 42 background: #1a766d; 43 border: none; 44 color: #fff; 45 padding: 5px; 46 border-radius: 3px; 47 cursor: pointer; 48 display: block; 49 width: 60px; 50 text-align: center; 51 margin-top: 7px; 52 } 53 54 .lp_wpengn_nbtn:link,.lp_wpengn_nbtn:hover,.lp_wpengn_nbtn:hover { 55 color:#fff; 56 } -
laterpay/tags/0.12.0/built_assets/css/laterpay-admin.css
r1915145 r1923931 1 @font-face{font-family:laterpay-wordpress-icons;font-style:normal;font-weight:400;src:url(../fonts/laterpay-wordpress-icons_v099.eot);src:url(../fonts/laterpay-wordpress-icons_v099.eot?#iefix) format("embedded-opentype"),url(../fonts/laterpay-wordpress-icons_v099.woff) format("woff"),url(../fonts/laterpay-wordpress-icons_v099.ttf) format("truetype"),url(../fonts/laterpay-wordpress-icons_v099.svg#laterpay-wordpress-icons) format("svg")}.lp_vectorIcon,[data-icon]:before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;content:attr(data-icon);font-family:laterpay-wordpress-icons!important;font-style:normal!important;font-variant:normal!important;font-weight:400!important;line-height:1;padding-right:.25em;position:relative;speak:none;text-transform:none!important;top:.1em}#adminmenu div.wp-menu-image.dashicons-laterpay-logo:before{content:'b'!important;font-family:laterpay-wordpress-icons!important;font-size:33px!important;font-weight:400!important;line-height:.6!important;left:-5px!important;position:relative!important}.lp_region_notice[data-icon]:before{color:red}dfn.lp_region_notice{color:#444}.column-post_price{text-align:right;width:75px}.column-post_price span{color:#ababab} 1 @font-face{font-family:laterpay-wordpress-icons;font-style:normal;font-weight:400;src:url(../fonts/laterpay-wordpress-icons_v099.eot);src:url(../fonts/laterpay-wordpress-icons_v099.eot?#iefix) format("embedded-opentype"),url(../fonts/laterpay-wordpress-icons_v099.woff) format("woff"),url(../fonts/laterpay-wordpress-icons_v099.ttf) format("truetype"),url(../fonts/laterpay-wordpress-icons_v099.svg#laterpay-wordpress-icons) format("svg")}.lp_vectorIcon,[data-icon]:before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;content:attr(data-icon);font-family:laterpay-wordpress-icons!important;font-style:normal!important;font-variant:normal!important;font-weight:400!important;line-height:1;padding-right:.25em;position:relative;speak:none;text-transform:none!important;top:.1em}#adminmenu div.wp-menu-image.dashicons-laterpay-logo:before{content:'b'!important;font-family:laterpay-wordpress-icons!important;font-size:33px!important;font-weight:400!important;line-height:.6!important;left:-5px!important;position:relative!important}.lp_region_notice[data-icon]:before{color:red}dfn.lp_region_notice{color:#444}.column-post_price{text-align:right;width:75px}.column-post_price span{color:#ababab}.lp_wpengn_nbtn{background:#1a766d;border:none;color:#fff;padding:5px;border-radius:3px;cursor:pointer;display:block;width:60px;text-align:center;margin-top:7px}.lp_wpengn_nbtn:hover,.lp_wpengn_nbtn:link{color:#fff} -
laterpay/tags/0.12.0/languages/laterpay-de_DE.po
r1774185 r1923931 3 3 "Project-Id-Version: LaterPay 0.9.6\n" 4 4 "Report-Msgid-Bugs-To: http://wordpress.org/tag/laterpay\n" 5 "POT-Creation-Date: 201 7-11-23 12:43+0000\n"6 "PO-Revision-Date: 201 7-11-23 12:58+0000\n"5 "POT-Creation-Date: 2018-08-01 15:37+0530\n" 6 "PO-Revision-Date: 2018-08-01 15:51+0530\n" 7 7 "Last-Translator: lpadmin <twoldrich@laterpay.net>\n" 8 8 "Language-Team: German\n" 9 "Language: de-DE\n" 10 "Plural-Forms: nplurals=2; plural=n != 1\n" 9 "Language: de_DE\n" 11 10 "MIME-Version: 1.0\n" 12 11 "Content-Type: text/plain; charset=UTF-8\n" 13 12 "Content-Transfer-Encoding: 8bit\n" 13 "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 14 "X-Poedit-SourceCharset: UTF-8\n" 15 "X-Generator: Loco - https://localise.biz/\n"15 "X-Generator: Poedit 1.8.7.1\n" 16 16 "X-Poedit-Basepath: ..\n" 17 17 "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;" … … 20 20 "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;" 21 21 "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n" 22 "X-Loco-Target-Locale: de_DE\n" 22 23 "X-Poedit-SearchPath-0: .\n" 23 "X-Loco-Target-Locale: de_DE" 24 25 #: views/backend/appearance.php:352 26 msgid "Hide Free Posts" 27 msgstr "" 28 29 #: views/backend/appearance.php:354 30 msgid "Hide free posts from homepage feature is" 31 msgstr "" 32 33 #: application/Controller/Admin.php:274 24 25 #: built_assets/js/vendor/velocity.min.js:3 26 msgid "translateX" 27 msgstr "" 28 29 #: built_assets/js/vendor/velocity.min.js:3 30 msgid "translateY" 31 msgstr "" 32 33 #: built_assets/js/vendor/velocity.min.js:3 34 msgid "skewX" 35 msgstr "" 36 37 #: built_assets/js/vendor/velocity.min.js:3 38 msgid "skewY" 39 msgstr "" 40 41 #: built_assets/js/vendor/velocity.min.js:3 42 msgid "scale" 43 msgstr "" 44 45 #: built_assets/js/vendor/velocity.min.js:3 46 msgid "scaleX" 47 msgstr "" 48 49 #: built_assets/js/vendor/velocity.min.js:3 50 msgid "scaleY" 51 msgstr "" 52 53 #: built_assets/js/vendor/velocity.min.js:3 54 msgid "rotateZ" 55 msgstr "" 56 57 #: application/Compatibility/Migrate.php:54 58 msgid "Your laterpay data needs to be migrated. Click" 59 msgstr "" 60 61 #: application/Compatibility/Migrate.php:55 62 msgid "here" 63 msgstr "" 64 65 #: application/Compatibility/Migrate.php:56 66 msgid "to migrate data." 67 msgstr "" 68 69 #: application/Compatibility/Migrate.php:77 70 msgid "Migrating Data" 71 msgstr "" 72 73 #: application/Compatibility/Migrate.php:78 74 msgid "Migrating Subscriptions" 75 msgstr "" 76 77 #: application/Compatibility/Migrate.php:79 78 msgid "Migrating Timepasses." 79 msgstr "" 80 81 #: application/Compatibility/Migrate.php:80 82 msgid "Migrating Category Prices." 83 msgstr "" 84 85 #: application/Compatibility/Migrate.php:81 86 msgid "Migration Completed." 87 msgstr "" 88 89 #: application/Controller/Admin.php:69 application/Controller/Admin.php:83 90 #: application/Controller/Admin.php:93 91 msgid "LaterPay Plugin Settings" 92 msgstr "LaterPay-Plugin-Einstellungen" 93 94 #: application/Controller/Admin.php:267 95 msgid "LaterPay" 96 msgstr "LaterPay" 97 98 #: application/Controller/Admin.php:268 34 99 msgid "" 35 100 "\n" … … 49 114 "adjust prices automatically over time.<br>\n" 50 115 " <br>\n" 51 " For example, you could sell a \"breaking news\" post for 0."52 " 49 (high interest within the first 24 hours)\n"53 " and automatically reduce the price to 0.05 on the second day."54 " \n"116 " For example, you could sell a \"breaking news\" post for " 117 "0.49 (high interest within the first 24 hours)\n" 118 " and automatically reduce the price to 0.05 on the second " 119 "day.\n" 55 120 " </p>\n" 56 121 " <p>\n" … … 68 133 " <p>\n" 69 134 " <strong>Pay Later</strong><br>\n" 70 " If you choose to sell your content as <strong>Pay "71 " Later</strong>, a user pays the purchased content <strong>later</strong>."72 " The purchase is added to his LaterPay invoice and he has to log in to"73 " LaterPayand pay, once his invoice has reached 5.00 (EUR or USD).<br>\n"135 " If you choose to sell your content as <strong>Pay Later</" 136 "strong>, a user pays the purchased content <strong>later</strong>. The " 137 "purchase is added to his LaterPay invoice and he has to log in to LaterPay " 138 "and pay, once his invoice has reached 5.00 (EUR or USD).<br>\n" 74 139 " LaterPay <strong>recommends</strong> Pay Later for all " 75 "prices up to 5.00 as they deliver the <strong>best purchase "76 " experience</strong> for your users.<br>\n"77 " PPU is possible for prices between (including) <strong>0. "78 " 05</strong> and (including) <strong>5.00</strong>.\n"140 "prices up to 5.00 as they deliver the <strong>best purchase experience</" 141 "strong> for your users.<br>\n" 142 " PPU is possible for prices between (including) <strong>0.05</" 143 "strong> and (including) <strong>5.00</strong>.\n" 79 144 " </p>\n" 80 145 " <p>\n" … … 83 148 "has to <strong>log in</strong> to LaterPay and <strong>pay</strong> for your " 84 149 "content <strong>immediately</strong>.<br>\n" 85 " Pay Now are especially suitable for higher-value content and"86 " / or content that immediately occasions costs (e. g. license fees for a "150 " Pay Now are especially suitable for higher-value content " 151 "and / or content that immediately occasions costs (e. g. license fees for a " 87 152 "video stream).<br>\n" 88 " Pay Now are possible for prices between (including) <strong>"89 " 1.49 € (in Europe) / $ 1.99 (in the U.S.)</strong> and (including) <strong>"90 " 149.99</strong>.\n"153 " Pay Now are possible for prices between (including) " 154 "<strong>1.49 € (in Europe) / $ 1.99 (in the U.S.)</strong> and (including) " 155 "<strong>149.99</strong>.\n" 91 156 " </p>" 92 157 msgstr "" 93 158 94 #: application/Controller/Admin.php:323 159 #: application/Controller/Admin.php:316 views/backend/pricing.php:58 160 msgid "Global Default Price" 161 msgstr "Allgemeiner Standardpreis" 162 163 #: application/Controller/Admin.php:317 95 164 msgid "" 96 165 "\n" … … 98 167 " The global default price is used for all posts, for which " 99 168 "no\n" 100 " category default price or individual price has been set. <br>"101 " \n"169 " category default price or individual price has been set." 170 "<br>\n" 102 171 " Accordingly, setting the global default price to 0.00 makes\n" 103 172 " all articles free, for which no category default price or\n" … … 106 175 msgstr "" 107 176 108 #: application/Controller/Admin.php:336 177 #: application/Controller/Admin.php:329 views/backend/pricing.php:141 178 msgid "Category Default Prices" 179 msgstr "Kategoriespezifische Standardpreise" 180 181 #: application/Controller/Admin.php:330 109 182 msgid "" 110 183 "\n" … … 118 191 "should\n" 119 192 " be effective.<br>\n" 120 " For example, if you have set a global default price of 0.15,"121 " \n"193 " For example, if you have set a global default price of " 194 "0.15,\n" 122 195 " but a post belongs to a category with a category default " 123 196 "price\n" … … 126 199 msgstr "" 127 200 128 #: application/Controller/Admin.php:353 201 #: application/Controller/Admin.php:346 202 msgid "Currency" 203 msgstr "Währung" 204 205 #: application/Controller/Admin.php:347 129 206 msgid "" 130 207 "\n" … … 142 219 msgstr "" 143 220 144 #: application/Controller/Admin.php:366 221 #: application/Controller/Admin.php:359 views/backend/pricing.php:354 222 msgid "Time Passes" 223 msgstr "Zeitpässe" 224 225 #: application/Controller/Admin.php:360 145 226 msgid "" 146 227 "\n" … … 160 241 " <p>\n" 161 242 " The <strong>validity period</strong> of a time pass starts " 162 "with the <strong>purchase</strong> and is defined for a <strong> "163 " continuous</strong> use – i.e. it doesn't matter, if a user is on your"164 " website during the entire validity period. After a time pass has expired,"165 " the access to the covered content is automatically refused. Please note:"166 " Access to pages which are <strong>still open</strong> when a pass expires"167 " will be refused only after <strong>reloading</strong> the respective page."168 " <strong>Any files</strong> (images, documents, presentations...), that were"169 " downloaded during the validity period, can still be used after the access"170 " has expired – but the user will <strong>not</strong> be able to <strong>"171 " download them </strong> without purchasing again.\n"243 "with the <strong>purchase</strong> and is defined for a <strong>continuous</" 244 "strong> use – i.e. it doesn't matter, if a user is on your website during " 245 "the entire validity period. After a time pass has expired, the access to the " 246 "covered content is automatically refused. Please note: Access to pages which " 247 "are <strong>still open</strong> when a pass expires will be refused only " 248 "after <strong>reloading</strong> the respective page. <strong>Any files</" 249 "strong> (images, documents, presentations...), that were downloaded during " 250 "the validity period, can still be used after the access has expired – but " 251 "the user will <strong>not</strong> be able to <strong>download them </" 252 "strong> without purchasing again.\n" 172 253 " </p>\n" 173 254 " <p>\n" … … 194 275 msgstr "" 195 276 196 #: application/Controller/Admin.php:3 92277 #: application/Controller/Admin.php:386 197 278 msgid "Time Pass Vouchers" 198 279 msgstr "" 199 280 200 #: application/Controller/Admin.php:3 93281 #: application/Controller/Admin.php:387 201 282 msgid "" 202 283 "\n" … … 204 285 " You can create any number of voucher codes for each time " 205 286 "pass. A voucher code allows one (or multiple) user(s) to purchase a time " 206 "pass for a reduced price. A user can enter a voucher code right <strong>"207 " below the time passes</strong> by clicking <strong>\"I have a"208 " voucher\"</strong>. If the entered code is a valid voucher code, the price "209 " of therespective time pass will be reduced.<br>\n"210 " A voucher code can be used <strong>any number of "211 " times</strong> and is <strong>not linked</strong> to a specific user. If you"212 " wantto invalidate a time pass voucher code, you can simply delete it.<br>\n"287 "pass for a reduced price. A user can enter a voucher code right " 288 "<strong>below the time passes</strong> by clicking <strong>\"I have a voucher" 289 "\"</strong>. If the entered code is a valid voucher code, the price of the " 290 "respective time pass will be reduced.<br>\n" 291 " A voucher code can be used <strong>any number of times</" 292 "strong> and is <strong>not linked</strong> to a specific user. If you want " 293 "to invalidate a time pass voucher code, you can simply delete it.<br>\n" 213 294 " <strong>Deleting</strong> a voucher code will <strong>not " 214 295 "affect</strong> the validity of time passes which have already been " … … 225 306 "purchase the respective time pass for 0.00.<br>\n" 226 307 " If you enter a price of e.g. '0.20', entering this " 227 "voucher code will change the price of the respective time pass to 0.20.</ li>"228 " \n"308 "voucher code will change the price of the respective time pass to 0.20.</" 309 "li>\n" 229 310 " <li>Click the 'Save' button.</li>\n" 230 311 " </ul>" 231 312 msgstr "" 232 313 233 #: application/Controller/Admin.php:422 314 #: application/Controller/Admin.php:415 315 msgid "Preview Mode" 316 msgstr "Vorschau für" 317 318 #: application/Controller/Admin.php:416 234 319 msgid "" 235 320 "\n" … … 259 344 msgstr "" 260 345 261 #: application/Controller/Admin.php:446 346 #: application/Controller/Admin.php:439 347 msgid "Purchase Button Position" 348 msgstr "Position des LaterPay Buttons" 349 350 #: application/Controller/Admin.php:440 262 351 msgid "" 263 352 "\n" … … 279 368 msgstr "" 280 369 281 #: application/Controller/Admin.php:463 370 #: application/Controller/Admin.php:456 371 msgid "Time Pass Position" 372 msgstr "Positionierung von Zeitpässen" 373 374 #: application/Controller/Admin.php:457 282 375 msgid "" 283 376 "\n" … … 301 394 msgstr "" 302 395 303 #: application/Controller/Admin.php:490 396 #: application/Controller/Admin.php:483 397 msgid "API Credentials" 398 msgstr "API Zugangsdaten" 399 400 #: application/Controller/Admin.php:484 304 401 msgid "" 305 402 "\n" … … 354 451 " Due to legal reasons, we can email you those credentials " 355 452 "only\n" 356 " once we have received a <strong>signed merchant "357 " contract</strong>\n"358 " including <strong>all necessary identification "359 " documents</strong>.<br>\n"453 " once we have received a <strong>signed merchant contract</" 454 "strong>\n" 455 " including <strong>all necessary identification documents</" 456 "strong>.<br>\n" 360 457 " <a href=\"https://www.laterpay.net/how-to-become-a-content-" 361 458 "provider\" target=\"blank\">Visit our website to read more about how to " … … 364 461 msgstr "" 365 462 366 #: application/Controller/Admin.php:538 463 #: application/Controller/Admin.php:531 464 msgid "Plugin Mode" 465 msgstr "Plugin-Modus" 466 467 #: application/Controller/Admin.php:532 367 468 msgid "" 368 469 "\n" … … 376 477 "are\n" 377 478 " only simulated and not actually processed.<br>\n" 378 " The plugin will <em>only</em> be visible to admin users,"379 " \n"479 " The plugin will <em>only</em> be visible to admin " 480 "users,\n" 380 481 " not to visitors.<br>\n" 381 482 " This is the <strong>default</strong> setting after " … … 408 509 msgstr "" 409 510 410 #: application/Controller/Admin/Appearance.php:284 411 #: application/Controller/Admin/Appearance.php:293 412 msgid "Free posts with premium content now hided from the homepage." 413 msgstr "" 414 415 #: application/Core/Logger/Handler/WordPress.php:143 416 #, php-format 417 msgid "Plugin Hooks<span class=\"lp_badge\">%s</span>" 418 msgstr "" 419 420 #. Description of the plugin 421 msgid "" 422 "Sell digital content with LaterPay. It allows super easy and fast payments " 423 "from as little as 5 cent up to 149.99 Euro at a 15% fee and no fixed costs." 424 msgstr "" 425 426 #. URI of the plugin 427 msgid "https://github.com/laterpay/laterpay-wordpress-plugin" 428 msgstr "" 429 430 #. Author of the plugin 431 msgid "LaterPay GmbH, Mihail Turalenka and Aliaksandr Vahura" 432 msgstr "" 433 434 #: views/backend/appearance.php:43 435 msgid "Teaser + Purchase Link" 436 msgstr "Teaser + Kauflink" 437 438 #: laterpay.php:39 439 msgid "Unexpected error during plugin init" 440 msgstr "Unerwarteter Fehler während Plugin-Initialisierung" 441 442 #: views/backend/options.php:10 443 msgid "You don't have sufficient permissions to manage options for this site." 444 msgstr "" 445 "Sie haben nicht die notwendigen Berechtigungen, um die Einstellungen für " 446 "diese Seite zu verwalten." 447 448 #: views/backend/account.php:21 views/backend/pricing.php:19 449 #: views/backend/appearance.php:19 450 msgid "Test mode" 451 msgstr "Test-Modus" 452 453 #: views/backend/account.php:22 views/backend/pricing.php:20 454 #: views/backend/appearance.php:20 455 msgid "Earn money in <i>live mode</i>" 456 msgstr "Verdienen Sie Geld im <i>Live-Modus</i>" 457 458 #: views/backend/account.php:32 459 msgid "The LaterPay plugin is in" 460 msgstr "Das LaterPay Plugin ist im" 461 462 #: views/backend/account.php:48 463 msgid "mode." 464 msgstr "Modus." 465 466 #: views/backend/account.php:52 467 msgid "It is invisible" 468 msgstr "Es ist für Besucher nicht sichtbar" 469 470 #: views/backend/account.php:69 471 msgid "visible to visitors." 472 msgstr "sichtbar." 473 474 #: views/backend/account.php:77 475 msgid "Sandbox Environment" 476 msgstr "Sandbox" 477 478 #: views/backend/account.php:80 479 msgid "for testing with simulated payments" 480 msgstr "zu Testzwecken mit simulierten Zahlungen" 481 482 #: views/backend/account.php:99 483 msgid "Paste Sandbox Merchant ID here" 484 msgstr "Sandbox Merchant ID hier einfügen" 485 486 #: views/backend/account.php:100 views/backend/account.php:156 487 msgid "Merchant ID" 488 msgstr "Merchant ID" 489 490 #: views/backend/account.php:119 491 msgid "Paste Sandbox API Key here" 492 msgstr "Sandbox API Key hier einfügen" 493 494 #: views/backend/account.php:120 views/backend/account.php:176 495 msgid "API Key" 496 msgstr "API Key" 497 498 #: views/backend/account.php:133 499 msgid "Live Environment" 500 msgstr "Live" 501 502 #: views/backend/account.php:136 503 msgid "for processing real financial transactions" 504 msgstr "Produktivumgebung für echte Käufe und Zahlungen" 505 506 #: views/backend/account.php:155 507 msgid "Paste Live Merchant ID here" 508 msgstr "Live Merchant ID hier einfügen" 509 510 #: views/backend/account.php:175 511 msgid "Paste Live API Key here" 512 msgstr "Live API Key hier einfügen" 513 514 #: views/backend/account.php:185 515 msgid "Request Live API Credentials" 516 msgstr "Live API Zugangsdaten anfordern" 517 518 #: views/backend/account.php:195 519 msgid "Region and Currency" 520 msgstr "Ländergruppe und Währung" 521 522 #: views/backend/account.php:197 523 msgid "Select the region for your LaterPay merchant account" 524 msgstr "Wählen Sie die Ländergruppe Ihres LaterPay Händlerkontos aus" 525 526 #: views/backend/account.php:201 527 msgid "" 528 "Is the selling company or person based in Europe or in the United States?<br>" 529 "\n" 530 " If you select 'Europe', all prices will be displayed " 531 "and charged in Euro (EUR), and the plugin will connect to the LaterPay " 532 "Europe platform.<br>\n" 533 " If you select 'United States', all prices will be " 534 "displayed and charged in U.S. Dollar (USD), and the plugin will connect to " 535 "the LaterPay U.S. platform. \n" 536 " " 537 msgstr "" 538 "Hat das verkaufende Unternehmen seinen Sitz in Europa oder in den USA?<br>\n" 539 "Wenn Sie \"Europa\" auswählen, werden alle Preise in Euro (EUR) angezeigt " 540 "und das Plugin verwendet die LaterPay-Europa-Plattform.\n" 541 "Wenn Sie \"USA\" auswählen, werden alle Preise in Dollar (USD) angezeigt und " 542 "das Plugin verwendet die LaterPay-USA-Plattform." 543 544 #: views/backend/account.php:213 545 msgid "Europe (EUR)" 546 msgstr "Europa (EUR)" 547 548 #: views/backend/account.php:214 549 msgid "United States (USD)" 550 msgstr "USA (USD)" 551 552 #: views/backend/account.php:220 553 msgid "" 554 "<b>Important:</b> The minimum value for \"Pay Now\" prices in the U.S. " 555 "region is <b>$1.99</b>.<br>\n" 556 " If you have already set \"Pay Now\" prices lower " 557 "than 1.99, make sure to change them before you switch to the U.S. region.<br>" 558 "\n" 559 " If you haven't done any configuration yet, you can " 560 "safely switch the region without further adjustments. \n" 561 " " 562 msgstr "" 563 "<b>Wichtig:</b> Der Mindestpreis für \"Sofort Zahlen\"-Käufe für die USA " 564 "beträgt <b>$1,99</b>.<br>\n" 565 "Wenn Sie bereits \"Sofort Zahlen\"-Preise kleiner als 1,99 gesetzt haben, " 566 "ändern Sie diese bitte, bevor Sie zur Region USA wechseln.<br>\n" 567 "Wenn Sie noch keine Konfiguration vorgenommen haben, können Sie ohne weitere " 568 "Schritte die Region wechseln." 569 570 #: views/backend/pricing.php:28 571 msgid "Posts can" 572 msgstr "Beiträge können" 573 574 #: views/backend/pricing.php:45 575 msgid "cannot be purchased individually." 576 msgstr "können nicht einzeln gekauft werden." 577 578 #: views/backend/pricing.php:50 application/Controller/Admin.php:322 579 msgid "Global Default Price" 580 msgstr "Allgemeiner Standardpreis" 581 582 #: views/backend/pricing.php:59 583 msgid "Every post costs" 584 msgstr "Jeder Artikel kostet" 585 586 #: views/backend/pricing.php:79 587 msgid "Edit Global Default Price" 588 msgstr "Allgemeinen Standardpreis bearbeiten" 589 590 #: views/backend/pricing.php:86 views/backend/pricing.php:192 591 #: views/backend/pricing.php:294 views/backend/partials/subscription.php:63 592 #: views/backend/partials/time-pass.php:63 593 #: application/Controller/Admin/Post/Column.php:42 594 msgid "Price" 595 msgstr "Preis" 596 597 #: views/backend/pricing.php:100 views/backend/pricing.php:205 598 #: views/backend/pricing.php:307 599 msgid "Revenue Model" 600 msgstr "Erlösmodell" 601 602 #: views/backend/pricing.php:107 603 msgid "Pay Later" 604 msgstr "Später zahlen" 605 606 #: views/backend/pricing.php:112 views/backend/pricing.php:217 607 #: views/backend/pricing.php:319 views/backend/pricing.php:471 608 #: application/Helper/Pricing.php:1007 609 #: views/backend/partials/post-pricing-form.php:41 610 #: application/Controller/Admin/Post/Column.php:87 611 msgid "Pay Now" 612 msgstr "Sofort zahlen" 613 614 #: views/backend/pricing.php:122 views/backend/pricing.php:227 615 #: views/backend/pricing.php:329 views/backend/pricing.php:361 616 #: views/backend/pricing.php:519 views/backend/pricing.php:560 617 #: views/backend/pricing.php:659 views/backend/pricing.php:691 618 #: views/backend/pricing.php:763 views/backend/appearance.php:184 619 msgid "Save" 620 msgstr "Speichern" 621 622 #: views/backend/pricing.php:123 views/backend/pricing.php:228 623 #: views/backend/pricing.php:330 views/backend/pricing.php:362 624 #: views/backend/pricing.php:520 views/backend/pricing.php:561 625 #: views/backend/pricing.php:660 views/backend/appearance.php:185 626 #: views/frontend/partials/widget/purchase-overlay.php:133 627 msgid "Cancel" 628 msgstr "Abbrechen" 629 630 #: views/backend/pricing.php:133 application/Controller/Admin.php:335 631 msgid "Category Default Prices" 632 msgstr "Kategoriespezifische Standardpreise" 633 634 #: views/backend/pricing.php:135 views/backend/pricing.php:345 635 #: views/backend/pricing.php:544 636 msgid "Create" 637 msgstr "Erstellen" 638 639 #: views/backend/pricing.php:152 views/backend/pricing.php:257 640 msgid "Every post in" 641 msgstr "Jeder Beitrag in" 642 643 #: views/backend/pricing.php:156 views/backend/pricing.php:260 644 msgid "costs" 645 msgstr "kostet" 646 647 #: views/backend/pricing.php:177 648 msgid "Edit Category Default Price" 649 msgstr "Kategoriespezifischen Standardpreis bearbeiten" 650 651 #: views/backend/pricing.php:184 views/backend/pricing.php:286 652 msgid "Category" 653 msgstr "Kategorie" 654 655 #: views/backend/pricing.php:212 views/backend/pricing.php:314 656 #: views/backend/pricing.php:466 application/Module/Purchase.php:294 657 #: application/Helper/Pricing.php:1010 658 #: views/backend/partials/post-pricing-form.php:28 659 #: application/Controller/Admin/Post/Column.php:88 660 msgid "Pay Later" 661 msgstr "Später zahlen" 662 663 #: views/backend/pricing.php:239 664 msgid "Set prices by category" 665 msgstr "Kategoriespezifische Standardpreise setzen" 666 667 #: views/backend/pricing.php:242 668 msgid "" 669 "Category default prices are convenient for selling different categories of " 670 "content at different standard prices.<br>Individual prices can be set when " 671 "editing a post." 672 msgstr "" 673 "Mit kategoriespezifischen Standardpreisen können Sie einen Preis für alle " 674 "Artikel einer Kategorie vergeben. Individuelle Preise können Sie vergeben, " 675 "wenn Sie einen Beitrag bearbeiten oder erstellen." 676 677 #: views/backend/pricing.php:245 678 msgid "Click the \"Create\" button to set a default price for a category." 679 msgstr "" 680 "Klicken Sie auf den \"Erstellen\" Button, um einen Standardpreis für eine " 681 "Kategorie zu setzen." 682 683 #: views/backend/pricing.php:279 684 msgid "Add a Category Default Price" 685 msgstr "Kategoriespezifischen Standardpreis hinzufügen" 686 687 #: views/backend/pricing.php:343 application/Controller/Admin.php:365 688 msgid "Time Passes" 689 msgstr "Zeitpässe" 690 691 #: views/backend/pricing.php:352 views/backend/pricing.php:400 692 msgid "Pass" 693 msgstr "Pass" 694 695 #: views/backend/pricing.php:376 application/Controller/Admin/Pricing.php:71 696 msgid "reduces the price to" 697 msgstr "reduziert den Preis auf" 698 699 #: views/backend/pricing.php:386 application/Controller/Admin/Pricing.php:72 700 msgid "times redeemed." 701 msgstr "Mal eingelöst." 702 703 #: views/backend/pricing.php:418 704 msgid "The pass is valid for " 705 msgstr "Dieser Pass gilt für " 706 707 #: views/backend/pricing.php:427 708 msgid "and grants" 709 msgstr "und gibt" 710 711 #: views/backend/pricing.php:432 views/backend/pricing.php:603 712 #: application/Helper/TimePass.php:174 application/Helper/Subscription.php:67 713 msgid "access to" 714 msgstr "Zugriff auf" 715 716 #: views/backend/pricing.php:449 717 msgid "This pass costs" 718 msgstr "Dieser Pass kostet" 719 720 #: views/backend/pricing.php:457 721 msgid "and the user has to" 722 msgstr "und Nutzer müssen" 723 724 #: views/backend/pricing.php:478 views/backend/pricing.php:634 725 msgid "Title" 726 msgstr "Titel" 727 728 #: views/backend/pricing.php:489 views/backend/pricing.php:645 729 msgid "Description" 730 msgstr "Beschreibung" 731 732 #: views/backend/pricing.php:502 733 msgid "Offer this time pass at a reduced price of" 734 msgstr "Diesen Zeitpass zu einem reduzierten Preis anbieten:" 735 736 #: views/backend/pricing.php:510 737 msgid "Generate voucher code" 738 msgstr "Gutschein-Code erstellen" 739 740 #: views/backend/pricing.php:530 741 msgid "Sell bundles of content" 742 msgstr "Zeitpässe verkaufen" 743 744 #: views/backend/pricing.php:533 745 msgid "" 746 "With Time Passes you can sell time-limited access to a category or your " 747 "entire site. Time Passes do not renew automatically." 748 msgstr "" 749 "Mit Zeitpässen können Sie einen zeitlich begrenzten Zugang zu Kategorien " 750 "oder der gesamten Seite verkaufen. Zeitpässe verlängern sich nicht " 751 "automatisch." 752 753 #: views/backend/pricing.php:536 754 msgid "Click the \"Create\" button to add a Time Pass." 755 msgstr "" 756 "Klicken Sie auf den \"Erstellen\" Button, um einen Zeitpass hinzuzufügen." 757 758 #: views/backend/pricing.php:542 759 msgid "Subscriptions" 760 msgstr "Abos" 761 762 #: views/backend/pricing.php:551 views/backend/pricing.php:571 763 msgid "Sub" 764 msgstr "Abo" 765 766 #: views/backend/pricing.php:589 767 msgid "The subscription costs" 768 msgstr "Das Abo kostet" 769 770 #: views/backend/pricing.php:598 771 msgid ", grants " 772 msgstr ", gibt" 773 774 #: views/backend/pricing.php:621 775 msgid "and renews every" 776 msgstr "und verlängert sich nach" 777 778 #: views/backend/pricing.php:668 779 msgid "Sell subscriptions" 780 msgstr "Abos verkaufen" 781 782 #: views/backend/pricing.php:671 783 msgid "" 784 "Subscriptions work exactly like time passes, with a simple difference: They " 785 "renew automatically." 786 msgstr "" 787 "Abos funktionieren genau wie Zeitpässe, mit einem einfachen Unterschied: Sie " 788 "verlängern sich automatisch." 789 790 #: views/backend/pricing.php:674 791 msgid "Click the \"Create\" button to add a Subscription." 792 msgstr "Klicken Sie auf den \"Erstellen\" Button, um ein Abo hinzuzufügen." 793 794 #: views/backend/pricing.php:677 795 msgid "" 796 "Important: if your LaterPay merchant account has been created before June " 797 "2017, please contact sales@laterpay.net to check, if subscriptions are " 798 "enabled for your account." 799 msgstr "" 800 "Wichtig: Wenn Ihr LaterPay Händlerkonto vor Juni 2017 erstellt wurde, " 801 "kontaktieren Sie bitte sales@laterpay.net um zu prüfen, ob Abos für Ihr " 802 "Konto aktiviert sind." 803 804 #: views/backend/pricing.php:689 805 msgid "Forward users to this URL after they have redeemed a gift card:" 806 msgstr "" 807 "Leiten Sie Nutzer nach dem Einlösen eines Geschenkgutscheins zu dieser URL " 808 "weiter:" 809 810 #: views/backend/pricing.php:696 811 msgid "Bulk Price Editor" 812 msgstr "Bulk Price Editor" 813 814 #: views/backend/pricing.php:745 application/Controller/Admin/Pricing.php:62 815 #: application/Controller/Admin/Pricing.php:567 816 #: application/Controller/Admin/Pricing.php:598 817 msgid "to" 818 msgstr "auf" 819 820 #: views/backend/pricing.php:751 821 #: views/backend/partials/post-pricing-form.php:50 822 msgid "0.00" 823 msgstr "0,00" 824 825 #: views/backend/pricing.php:761 views/backend/pricing.php:771 826 #: application/Controller/Admin/Pricing.php:66 827 msgid "Update Prices" 828 msgstr "Preise aktualisieren" 829 830 #: views/backend/pricing.php:770 application/Controller/Admin/Pricing.php:67 831 msgid "Delete" 832 msgstr "Löschen" 833 834 #: views/backend/appearance.php:29 835 msgid "Content Preview for Paid Posts" 836 msgstr "Vorschau für Bezahlinhalte" 837 838 #: views/backend/appearance.php:52 839 msgid "Teaser + Explanatory Overlay" 840 msgstr "Teaser + erklärendes Overlay" 841 842 #: views/backend/appearance.php:61 843 msgid "Teaser + Purchase Overlay" 844 msgstr "Teaser + Kauf-Overlay" 845 846 #: views/backend/appearance.php:73 847 msgid "Header" 848 msgstr "Header" 849 850 #: views/backend/appearance.php:78 851 msgid "Header background color" 852 msgstr "Hintergrundfarbe Header" 853 854 #: views/backend/appearance.php:86 855 msgid "Header title" 856 msgstr "Überschrift" 857 858 #: views/backend/appearance.php:94 859 msgid "Purchase Options" 860 msgstr "Kaufoptionen" 861 862 #: views/backend/appearance.php:99 863 msgid "Background color" 864 msgstr "Hintergrundfarbe" 865 866 #: views/backend/appearance.php:107 867 msgid "Main text color" 868 msgstr "Schriftfarbe Text" 869 870 #: views/backend/appearance.php:115 871 msgid "Description color text" 872 msgstr "Schriftfarbe Beschreibungen" 873 874 #: views/backend/appearance.php:123 875 msgid "Purchase button background color" 876 msgstr "Hintergrundfarbe Kaufbutton" 877 878 #: views/backend/appearance.php:131 879 msgid "Purchase button text color" 880 msgstr "Schriftfarbe Kaufbutton" 881 882 #: views/backend/appearance.php:139 883 msgid "Link main color" 884 msgstr "Schriftfarbe Links" 885 886 #: views/backend/appearance.php:147 887 msgid "Link hover color" 888 msgstr "Hover-Schriftfarbe Links" 889 890 #: views/backend/appearance.php:155 891 msgid "Footer" 892 msgstr "Footer" 893 894 #: views/backend/appearance.php:160 895 msgid "Show footer" 896 msgstr "Footer anzeigen" 897 898 #: views/backend/appearance.php:168 899 msgid "Footer background color" 900 msgstr "Hintergrundfarbe Footer" 901 902 #: views/backend/appearance.php:178 903 msgid "Preview" 904 msgstr "Vorschau" 905 906 #: views/backend/appearance.php:188 907 msgid "Restore Default Values" 908 msgstr "Standardwerte wiederherstellen" 909 910 #: views/backend/appearance.php:196 911 msgid "Position of the LaterPay Purchase Button" 912 msgstr "Position des LaterPay Buttons" 913 914 #: views/backend/appearance.php:210 views/backend/appearance.php:247 915 msgid "Standard position" 916 msgstr "Standardposition" 917 918 #: views/backend/appearance.php:219 views/backend/appearance.php:256 919 msgid "Custom position" 920 msgstr "Benutzerdefinierte Position" 921 922 #: views/backend/appearance.php:224 923 msgid "" 924 "Call action 'laterpay_purchase_button' in your theme to render the LaterPay " 925 "purchase button at that position." 926 msgstr "" 927 "Rufen Sie die Action 'laterpay_purchase_button' in Ihrem Theme auf, um den " 928 "LaterPay Button an einer Position Ihrer Wahl anzuzeigen." 929 930 #: views/backend/appearance.php:233 931 msgid "Display of LaterPay Time Passes" 932 msgstr "Position der LaterPay Zeitpässe" 933 934 #: views/backend/appearance.php:261 935 msgid "" 936 "Call action 'laterpay_time_passes' in your theme or use the shortcode " 937 "'[laterpay_time_passes]' to show your users the available time passes." 938 msgstr "" 939 "Rufen Sie die Action 'laterpay_time_passes' in Ihrem Theme auf oder " 940 "verwenden Sie den Shortcode '[laterpay_time_passes]', um Ihren Nutzern die " 941 "verfügbaren Zeitpässe anzuzeigen." 942 943 #: views/backend/appearance.php:289 944 msgid "Display of LaterPay Invoice Balance" 945 msgstr "Einbinden der LaterPay Rechnungsanzeige" 946 947 #: views/backend/appearance.php:291 948 msgid "" 949 "Call action 'laterpay_invoice_indicator' in your theme to show your users " 950 "their LaterPay invoice balance." 951 msgstr "" 952 "Rufen Sie die Action 'laterpay_invoice_indicator' in Ihrem Theme auf, um " 953 "Ihren Nutzern deren aktuelle LaterPay Rechnungssumme anzuzeigen." 954 955 #: views/backend/appearance.php:292 956 msgid "" 957 "The LaterPay invoice indicator is served by LaterPay. Its styling can not be " 958 "changed." 959 msgstr "" 960 "Die LaterPay Rechnungsanzeige wird von LaterPay geladen. Ihr Aussehen kann " 961 "nicht verändert werden." 962 963 #: views/backend/appearance.php:302 964 msgid "Display of LaterPay Login / Logout Links" 965 msgstr "Anzeigen von Links zum Ein- und Ausloggen bei LaterPay" 966 967 #: views/backend/appearance.php:304 968 msgid "" 969 "Call action 'laterpay_account_links' in your theme or use the shortcode " 970 "'[laterpay_account_links]' to embed a LaterPay login / logout link in your " 971 "page." 972 msgstr "" 973 "Rufen Sie die Action 'laterpay_account_links' in Ihrem Theme auf oder " 974 "verwenden Sie den Shortcode '[laterpay_account_links]', um einen Link zum " 975 "Ein- und Ausloggen bei LaterPay in Ihre Seite einzubinden." 976 977 #: views/backend/appearance.php:305 978 msgid "" 979 "These links have minimal default styling. Apply own styling by passing " 980 "parameter 'css' the URL of a CSS file with your styles." 981 msgstr "" 982 "Standardmäßig wird der Link nahezu unformatiert angezeigt. Sie können die " 983 "Darstellung des Links ändern, indem Sie im Parameter 'css' den vollständigen " 984 "Pfad zu einer eigenen CSS Datei übergeben." 985 986 #: views/backend/appearance.php:312 987 msgid "Basic Example" 988 msgstr "Einfaches Beispiel" 989 990 #: views/backend/appearance.php:316 991 msgid "Advanced Example" 992 msgstr "Erweitertes Beispiel" 993 994 #: views/backend/appearance.php:323 995 msgid "Rating of Purchased Content" 996 msgstr "Bewertung gekaufter Inhalte" 997 998 #: views/backend/appearance.php:326 999 msgid "Content rating is" 1000 msgstr "Inhaltebewertung ist" 1001 1002 #: views/backend/appearance.php:337 views/backend/appearance.php:365 1003 msgid "on" 1004 msgstr "an" 1005 1006 #: views/backend/appearance.php:337 views/backend/appearance.php:365 1007 msgid "off" 1008 msgstr "aus" 1009 1010 #: views/backend/appearance.php:344 1011 msgid "The opinion of others has a strong influence on buying decisions." 1012 msgstr "" 1013 "Die Meinung anderer Käufer hat einen großen Einfluss auf die " 1014 "Kaufentscheidung." 1015 1016 #: views/backend/appearance.php:345 1017 msgid "" 1018 "Content rating lets users rate your content on a five star scale after " 1019 "purchasing." 1020 msgstr "" 1021 "Mit der Inhaltebewertung können Nutzer Ihre Inhalte nach dem Kauf auf einer " 1022 "Fünf-Sterne-Skala bewerten. " 1023 1024 #: views/backend/appearance.php:346 1025 msgid "" 1026 "These ratings will be displayed to users who have not purchased that content " 1027 "yet as a quality indicator." 1028 msgstr "" 1029 "Diese Bewertungen werden Nutzern, die den Inhalt noch nicht gekauft haben, " 1030 "als Qualitätsindikator angezeigt." 1031 1032 #: views/backend/appearance.php:375 1033 msgid "Offering of Gift Cards for Time Passes" 1034 msgstr "Anbieten von Geschenkgutscheinen für Zeitpässe" 1035 1036 #: views/backend/appearance.php:377 1037 msgid "" 1038 "Please follow these two steps to offer gift cards for time passes. A user " 1039 "will be able to purchase a voucher for a time pass, which he can give away " 1040 "as a present. The receiver can then redeem this voucher code and will get " 1041 "access to the purchased time pass." 1042 msgstr "" 1043 "Bitte folgen Sie diesen beiden Schritten, um Geschenkgutscheine für " 1044 "Zeitpässe anzuzeigen. Ein Nutzer kann dann einen Gutschein für einen " 1045 "Zeitpass kaufen, den er verschenken kann. Der Empfänger kann diesen " 1046 "Gutschein dann einlösen und erhält Zugriff auf den gekauften Zeitpass." 1047 1048 #: views/backend/appearance.php:382 1049 msgid "Step 1: Display Gift Cards" 1050 msgstr "Schritt 1: Anzeigen von Geschenkgutscheinen" 1051 1052 #: views/backend/appearance.php:385 1053 msgid "Use the shortcode '[laterpay_gift_card]' to render a gift card." 1054 msgstr "" 1055 "Verwenden Sie den Shortcode '[laterpay_gift_card]', um Geschenkgutscheine " 1056 "anzuzeigen." 1057 1058 #: views/backend/appearance.php:386 1059 msgid "" 1060 "If you add the parameter 'id', you can offer a gift card for a specific time " 1061 "pass. If you don't provide an id, gift cards for all time passes are " 1062 "rendered." 1063 msgstr "" 1064 "Wenn Sie zusätzlich den Parameter 'id' angeben, können Sie einen " 1065 "Geschenkgutschein für einen bestimmten Zeitpass anzeigen. <br>\n" 1066 "Wenn Sie keine ID angeben, werden Geschenkgutscheine für alle vorhandenen " 1067 "Zeitpässe angezeigt." 1068 1069 #: views/backend/appearance.php:387 1070 msgid "" 1071 "You can find the id of each time pass in the <a href=\"admin.php?" 1072 "page=laterpay-pricing-tab#lp_time-passes\">pricing tab</a> next to the " 1073 "respective time pass." 1074 msgstr "" 1075 "Sie finden die ID jedes Zeitpasses im \n" 1076 "<a href=\"admin.php?page=laterpay-pricing-tab#lp_time-passes\">Tab Preise</a>" 1077 " neben dem jeweiligen Zeitpass." 1078 1079 #: views/backend/appearance.php:392 1080 msgid "or" 1081 msgstr "oder" 1082 1083 #: views/backend/appearance.php:400 1084 msgid "Step 2: Add Option to Redeem Vouchers" 1085 msgstr "Schritt 2: Einlösen von Gutschein-Codes ermöglichen" 1086 1087 #: views/backend/appearance.php:403 1088 msgid "" 1089 "You can render a form where your users can enter a voucher code with the " 1090 "shortcode '[laterpay_redeem_voucher]'." 1091 msgstr "" 1092 "Mit dem Shortcode '[laterpay_redeem_voucher]' können Sie ein Formular " 1093 "anzeigen, mit dem Nutzer Gutschein-Codes einlösen können." 1094 1095 #: views/backend/appearance.php:415 1096 msgid "Offer of Paid Content within (Free) Posts" 1097 msgstr "Anbieten von Bezahlinhalten in (kostenlosen) Beiträgen" 1098 1099 #: views/backend/appearance.php:416 1100 msgid "Offer of Additional Paid Content" 1101 msgstr "Anbieten zusätzlicher Bezahlinhalte" 1102 1103 #: views/backend/appearance.php:418 1104 msgid "" 1105 "Insert shortcode [laterpay_premium_download] into a post to render a box for " 1106 "selling additional paid content." 1107 msgstr "" 1108 "Fügen Sie den Shortcode [laterpay_premium_download] in einen Beitrag ein, um " 1109 "dort eine Box zum Verkaufen zusätzlicher Bezahlinhalte anzuzeigen." 1110 1111 #: views/backend/appearance.php:422 1112 msgid "" 1113 "[laterpay_premium_download target_post_id=\"<dfn>127</dfn>\" " 1114 "target_post_title=\"<dfn>Event video footage</dfn>\" content_type=\"<dfn>" 1115 "video</dfn>\" teaser_image_path=\"<dfn>/uploads/images/concert-video-still." 1116 "jpg</dfn>\" heading_text=\"<dfn>Video footage of concert</dfn>\" " 1117 "description_text=\"<dfn>Full HD video of the entire concert, including " 1118 "behind the scenes action.</dfn>\"]" 1119 msgstr "" 1120 "[laterpay_premium_download target_post_id=\"<dfn>127</dfn>\" " 1121 "target_post_title=\"<dfn>Event video footage</dfn>\" content_type=\"<dfn>" 1122 "video</dfn>\" teaser_image_path=\"<dfn>/uploads/images/concert-video-still." 1123 "jpg</dfn>\" heading_text=\"<dfn>Video footage of concert</dfn>\" " 1124 "description_text=\"<dfn>Full HD video of the entire concert, including " 1125 "behind the scenes action.</dfn>\"]" 1126 1127 #: views/backend/appearance.php:436 1128 msgid "The ID of the post that contains the paid content." 1129 msgstr "Die ID des Beitrags, der den Bezahlinhalt enthält." 1130 1131 #: views/backend/appearance.php:437 1132 msgid "" 1133 "Page IDs are unique within a WordPress blog and should thus be used instead " 1134 "of the target_post_title.<br> If both target_post_id and target_post_title " 1135 "are provided, the target_post_title will be ignored." 1136 msgstr "" 1137 "Jede Page ID kommt innerhalb eines WordPress Blogs nur einmal vor. Daher " 1138 "sollte target_post_id anstelle von target_post_title verwendet werden.<br> " 1139 "Wenn sowohl target_post_id als auch target_post_title angegeben werden, wird " 1140 "target_post_title ignoriert." 1141 1142 #: views/backend/appearance.php:445 1143 msgid "The title of the post that contains the paid content." 1144 msgstr "Der Titel des Beitrags, der den Bezahlinhalt enthält." 1145 1146 #: views/backend/appearance.php:446 1147 msgid "" 1148 "Changing the title of the linked post requires updating the shortcode " 1149 "accordingly." 1150 msgstr "" 1151 "Wenn Sie den Titel eines verknüpften Beitrags ändern, müssen Sie auch den " 1152 "Shortcode aktualisieren." 1153 1154 #: views/backend/appearance.php:454 1155 msgid "Content type of the linked content." 1156 msgstr "Art des verknüpften Inhaltes." 1157 1158 #: views/backend/appearance.php:455 1159 msgid "" 1160 "Choose between 'audio', 'video', 'text', 'gallery', and 'file' to display " 1161 "the corresponding default teaser image provided by the plugin." 1162 msgstr "" 1163 "Wählen Sie zwischen 'audio', 'video', 'text', 'gallery' und 'file', um das " 1164 "entsprechende Standard-Vorschaubild anzuzeigen." 1165 1166 #: views/backend/appearance.php:463 1167 msgid "" 1168 "Path to a 300 x 300 px image that should be used instead of the default " 1169 "LaterPay teaser image." 1170 msgstr "" 1171 "Pfad zu einem Bild der Größe 300 x 300 px, das anstelle des Standard-" 1172 "Vorschaubildes verwendet werden soll." 1173 1174 #: views/backend/appearance.php:471 1175 msgid "" 1176 "Text that should be displayed as heading in the box rendered by the " 1177 "shortcode. The heading is limited to one line." 1178 msgstr "" 1179 "Text, der als Überschrift in der Shortcode-Box angezeigt werden soll. Die " 1180 "Überschrift ist auf eine Zeile begrenzt." 1181 1182 #: views/backend/appearance.php:479 1183 msgid "Text that provides additional information on the paid content." 1184 msgstr "Text, der den Bezahlinhalt näher beschreibt." 1185 1186 #: views/backend/appearance.php:489 1187 msgid "Alignment of Additional Paid Content Boxes" 1188 msgstr "Ausrichtung mehrerer Shortcode-Boxen" 1189 1190 #: views/backend/appearance.php:491 1191 msgid "" 1192 "Enclose multiple [laterpay_premium_download] shortcodes in a " 1193 "[laterpay_box_wrapper] shortcode to align them in a three-column layout." 1194 msgstr "" 1195 "Wenn Sie mehrere [laterpay_premium_download]-Shortcodes zwischen " 1196 "[laterpay_box_wrapper] und [/laterpay_box_wrapper] einschließen, werden die " 1197 "Shortcode-Boxen in einem Drei-Spalten-Layout ausgerichtet." 1198 1199 #: views/backend/appearance.php:496 1200 msgid "" 1201 "[laterpay_box_wrapper]<dfn>[laterpay_premium_download …]" 1202 "[laterpay_premium_download …]</dfn>[/laterpay_box_wrapper]" 1203 msgstr "" 1204 "[laterpay_box_wrapper]<dfn>[laterpay_premium_download …]" 1205 "[laterpay_premium_download …]</dfn>[/laterpay_box_wrapper]" 1206 1207 #: application/Core/Bootstrap.php:56 1208 #, php-format 1209 msgid "%s: <code>%s</code> not found" 1210 msgstr "%s: <code>%s</code> nicht gefunden" 1211 1212 #: application/Core/View.php:82 application/Core/View.php:122 1213 #, php-format 1214 msgid "%s : <code>%s</code> not found" 1215 msgstr "%s : <code>%s</code> nicht gefunden" 1216 1217 #: application/Controller/Admin.php:74 application/Controller/Admin.php:88 1218 #: application/Controller/Admin.php:98 1219 msgid "LaterPay Plugin Settings" 1220 msgstr "LaterPay-Plugin-Einstellungen" 1221 1222 #: application/Controller/Admin.php:273 1223 msgid "LaterPay" 1224 msgstr "LaterPay" 1225 1226 #: application/Controller/Admin.php:352 1227 msgid "Currency" 1228 msgstr "Währung" 1229 1230 #: application/Controller/Admin.php:421 1231 msgid "Preview Mode" 1232 msgstr "Vorschau für" 1233 1234 #: application/Controller/Admin.php:445 1235 msgid "Purchase Button Position" 1236 msgstr "Position des LaterPay Buttons" 1237 1238 #: application/Controller/Admin.php:462 1239 msgid "Time Pass Position" 1240 msgstr "Positionierung von Zeitpässen" 1241 1242 #: application/Controller/Admin.php:489 1243 msgid "API Credentials" 1244 msgstr "API Zugangsdaten" 1245 1246 #: application/Controller/Admin.php:537 1247 msgid "Plugin Mode" 1248 msgstr "Plugin-Modus" 1249 1250 #: application/Controller/Admin.php:712 511 #: application/Controller/Admin.php:683 1251 512 msgid "Pricing" 1252 513 msgstr "Preise" 1253 514 1254 #: application/Controller/Admin.php: 718515 #: application/Controller/Admin.php:689 1255 516 msgid "Appearance" 1256 517 msgstr "Darstellung" 1257 518 1258 #: application/Controller/Admin.php: 724519 #: application/Controller/Admin.php:695 1259 520 msgid "Account" 1260 521 msgstr "Konto" 1261 522 1262 #: application/Controller/Install.php:71 1263 #, php-format 1264 msgid "" 1265 "<p>LaterPay: Your server <strong>does not</strong> meet the minimum " 1266 "requirement of %s version %s or higher. You are running %s version %s.</p>" 1267 msgstr "" 1268 "<p>LaterPay: Ihr Server <strong>erfüllt nicht die Mindestanforderung</strong>" 1269 " von %s-Version %s oder neuer. Sie verwenden %s-Version %s.</p>" 1270 1271 #: application/Controller/Install.php:88 1272 msgid "" 1273 "The LaterPay plugin could not be installed. Please fix the reported issues " 1274 "and try again." 1275 msgstr "" 1276 "Das LaterPay Plugin konnte nicht installiert werden. Bitte beheben Sie die " 1277 "genannten Probleme und versuchen Sie es erneut." 1278 1279 #: application/Module/Appearance.php:203 1280 #: application/Controller/Frontend/PreviewMode.php:245 1281 msgid "You don't have sufficient user capabilities to do this." 1282 msgstr "Sie haben nicht die erforderlichen Berechtigungen für diese Aktion." 1283 1284 #: application/Module/Purchase.php:110 application/Module/Purchase.php:198 1285 #: views/backend/partials/purchase-overlay.php:74 1286 msgid "I already bought this" 1287 msgstr "Bereits gekauft?" 1288 1289 #: application/Module/Purchase.php:172 application/Module/Purchase.php:271 1290 #: application/Module/Purchase.php:284 1291 #: application/Controller/Frontend/Post.php:781 1292 msgid "Buy Now" 1293 msgstr "Jetzt kaufen" 1294 1295 #: application/Module/Purchase.php:176 1296 #: application/Controller/Frontend/Post.php:780 1297 msgid "Buy Now, Pay Later" 1298 msgstr "Jetzt kaufen, später zahlen" 1299 1300 #: application/Module/Purchase.php:260 application/Module/TimePasses.php:443 1301 msgid "Read Now" 1302 msgstr "Jetzt lesen" 1303 1304 #: application/Module/Purchase.php:262 1305 msgid "Read Now, Pay Later" 1306 msgstr "Jetzt lesen, später zahlen" 1307 1308 #: application/Module/Purchase.php:272 1309 msgid "" 1310 "Buy this post now with LaterPay and <br>pay with a payment method you trust." 1311 msgstr "" 1312 "Kaufen Sie diesen Beitrag jetzt mit LaterPay und <br>bezahlen Sie mit einer " 1313 "Zahlungsmethode Ihres Vertrauens." 1314 1315 #: application/Module/Purchase.php:276 application/Module/Purchase.php:289 1316 #: application/Module/TimePasses.php:451 1317 msgid "Read Immediately" 1318 msgstr "Sofort lesen" 1319 1320 #: application/Module/Purchase.php:277 1321 msgid "" 1322 "Immediately access your purchase. <br>You only buy this post. No " 1323 "subscription, no fees." 1324 msgstr "" 1325 "Greifen Sie sofort auf Ihren Kauf zu.<br>Sie kaufen nur diesen Beitrag. Kein " 1326 "Abo, keine Gebühren." 1327 1328 #: application/Module/Purchase.php:285 1329 msgid "Just agree to pay later.<br> No upfront registration and payment." 1330 msgstr "" 1331 "Stimmen Sie einfach zu, später zu zahlen.<br> Keine Vorabregistrierung. " 1332 "Keine Vorauszahlung." 1333 1334 #: application/Module/Purchase.php:290 1335 msgid "" 1336 "Access your purchase immediately.<br> You are only buying this article, not " 1337 "a subscription." 1338 msgstr "" 1339 "Greifen Sie sofort auf Ihren Kauf zu.<br>Sie kaufen nur diesen Beitrag. Kein " 1340 "Abo, keine Gebühren." 1341 1342 #: application/Module/Purchase.php:295 1343 #, php-format 1344 msgid "" 1345 "Buy with LaterPay until you reach a total of %s %s.<br> Only then do you " 1346 "have to register and pay." 1347 msgstr "" 1348 "Kaufen Sie mit LaterPay, bis Sie %s %s erreicht haben. Erst dann müssen Sie " 1349 "sich registrieren und bezahlen." 1350 1351 #: application/Module/TimePasses.php:375 1352 msgid "Buy a time pass to read the full content." 1353 msgstr "Kaufen Sie einen Zeitpass, um den gesamten Inhalt anzuzeigen." 1354 1355 #: application/Module/TimePasses.php:415 1356 #: application/Controller/Frontend/Shortcode.php:499 1357 msgid "Wrong time pass id or no time passes specified." 1358 msgstr "Ungültige Zeitpass-ID oder keine Zeitpässe vorhanden." 1359 1360 #: application/Module/TimePasses.php:446 1361 msgid "Buy Time Pass" 1362 msgstr "Zeitpass kaufen" 1363 1364 #: application/Module/TimePasses.php:447 1365 msgid "Buy a LaterPay time pass and pay with a payment method you trust." 1366 msgstr "" 1367 "Kaufen Sie einen LaterPay Zeitpass und zahlen Sie mit einer Zahlungsmethode " 1368 "Ihres Vertrauens." 1369 1370 #: application/Module/TimePasses.php:452 1371 msgid "" 1372 "Immediately access your content. <br>A time pass is not a subscription, it " 1373 "expires automatically." 1374 msgstr "" 1375 "Greifen Sie sofort auf Ihre Inhalte zu.<br>\n" 1376 "Ein Zeitpass ist kein Abo, denn er läuft automatisch aus." 1377 1378 #: application/Helper/TimePass.php:32 1379 msgid "24-Hour Pass" 1380 msgstr "24-Stunden-Pass" 1381 1382 #: application/Helper/TimePass.php:33 1383 msgid "24 hours access to all content on this website" 1384 msgstr "24 Stunden Zugang zu allen Inhalten dieser Website" 1385 1386 #: application/Helper/TimePass.php:80 1387 msgid "Hour" 1388 msgstr "Stunde" 1389 1390 #: application/Helper/TimePass.php:81 1391 msgid "Day" 1392 msgstr "Tag" 1393 1394 #: application/Helper/TimePass.php:82 1395 msgid "Week" 1396 msgstr "Woche" 1397 1398 #: application/Helper/TimePass.php:83 1399 msgid "Month" 1400 msgstr "Monat" 1401 1402 #: application/Helper/TimePass.php:84 1403 msgid "Year" 1404 msgstr "Jahr" 1405 1406 #: application/Helper/TimePass.php:89 1407 msgid "Hours" 1408 msgstr "Stunden" 1409 1410 #: application/Helper/TimePass.php:90 1411 msgid "Days" 1412 msgstr "Tage" 1413 1414 #: application/Helper/TimePass.php:91 1415 msgid "Weeks" 1416 msgstr "Wochen" 1417 1418 #: application/Helper/TimePass.php:92 1419 msgid "Months" 1420 msgstr "Monate" 1421 1422 #: application/Helper/TimePass.php:93 1423 msgid "Years" 1424 msgstr "Jahre" 1425 1426 #: application/Helper/TimePass.php:116 1427 msgid "later" 1428 msgstr "später" 1429 1430 #: application/Helper/TimePass.php:117 1431 msgid "immediately" 1432 msgstr "sofort" 1433 1434 #: application/Helper/TimePass.php:138 1435 msgid "All content" 1436 msgstr "Alle Inhalte" 1437 1438 #: application/Helper/TimePass.php:139 1439 msgid "All content except for category" 1440 msgstr "Alle Inhalte außer in Kategorie" 1441 1442 #: application/Helper/TimePass.php:140 1443 msgid "All content in category" 1444 msgstr "Alle Inhalte in Kategorie" 1445 1446 #: application/Helper/TimePass.php:184 application/Helper/Subscription.php:77 1447 msgid "for" 1448 msgstr "für" 1449 1450 #: application/Helper/Appearance.php:22 application/Helper/Appearance.php:52 1451 msgid "Read now, pay later" 1452 msgstr "Jetzt lesen, später zahlen" 1453 1454 #: application/Helper/View.php:216 1455 msgid "k" 1456 msgstr "t" 1457 1458 #: application/Helper/View.php:249 1459 #: application/Controller/Frontend/Shortcode.php:186 1460 #: application/Controller/Frontend/Shortcode.php:206 1461 msgid "Problem with inserted shortcode:" 1462 msgstr "Es gibt ein Problem mit dem eingefügten Shortcode:" 1463 1464 #: application/Helper/Subscription.php:32 1465 msgid "1 Month Subscription" 1466 msgstr "Monatsabo" 1467 1468 #: application/Helper/Subscription.php:33 1469 msgid "1 month access to all content on this website (cancellable anytime)" 1470 msgstr "1 Monat Zugriff auf alle Inhalte dieser Website (jederzeit kündbar)" 1471 1472 #: views/backend/logger/wordpress-handler-records.php:11 1473 #, php-format 1474 msgid "%s Memory Usage" 1475 msgstr "%s Speicherverbrauch" 1476 1477 #: views/backend/logger/wordpress-handler-records.php:12 1478 msgid "Debugger" 1479 msgstr "Debugger" 1480 1481 #: views/backend/logger/wordpress-handler-records.php:17 1482 #, php-format 1483 msgid "Messages<span class=\"lp_badge\">%s</span>" 1484 msgstr "Meldungen<span class=\"lp_badge\">%s</span>" 1485 1486 #: views/backend/partials/pointer-scripts.php:11 1487 msgid "Welcome to LaterPay" 1488 msgstr "Willkommen bei LaterPay" 1489 1490 #: views/backend/partials/pointer-scripts.php:12 1491 msgid "Set the most appropriate settings for you." 1492 msgstr "Passen Sie das LaterPay Plugin Ihren Bedürfnissen an." 1493 1494 #: views/backend/partials/pointer-scripts.php:39 1495 msgid "Set a Price for this Post" 1496 msgstr "Preis für den Beitrag setzen" 1497 1498 #: views/backend/partials/pointer-scripts.php:40 1499 msgid "" 1500 "Set an <strong>individual price</strong> for this post here.<br>You can also " 1501 "apply <strong>advanced pricing</strong> by defining how the price changes " 1502 "over time." 1503 msgstr "" 1504 "Setzen Sie hier einen <strong>individuellen Preis</strong> für diesen " 1505 "Beitrag.<br>Sie können auch <strong>dynamische Preise</strong> setzen und " 1506 "festlegen, wie Preise sich über die Zeit verändern sollen." 1507 1508 #: views/backend/partials/pointer-scripts.php:67 1509 msgid "Add Teaser Content" 1510 msgstr "Teaser zum Beitrag hinzufügen" 1511 1512 #: views/backend/partials/pointer-scripts.php:68 1513 msgid "" 1514 "You´ll give your users a better impression of what they´ll buy, if you " 1515 "preview some text, images, or video from the actual post." 1516 msgstr "" 1517 "Um Ihren Nutzern eine bessere Vorstellung davon zu geben, was sie kaufen, " 1518 "sollten Sie Text, Bilder oder Videos aus dem Beitrag als Teaser anzeigen." 1519 1520 #: views/backend/partials/subscription.php:23 1521 #: views/backend/partials/time-pass.php:23 1522 #: views/frontend/partials/post/gift/gift-pass.php:25 1523 msgid "on this website" 1524 msgstr "dieser Website" 1525 1526 #: views/backend/partials/subscription.php:36 1527 #: views/backend/partials/time-pass.php:36 1528 #: views/frontend/partials/widget/purchase-button.php:18 1529 #: views/frontend/partials/widget/purchase-link.php:14 1530 #: views/frontend/partials/post/gift/gift-actions.php:25 1531 msgid "Buy now with LaterPay" 1532 msgstr "Jetzt mit LaterPay kaufen" 1533 1534 #: views/backend/partials/subscription.php:36 1535 #: views/backend/partials/time-pass.php:36 1536 msgid "Terms" 1537 msgstr "Details" 1538 1539 #: views/backend/partials/subscription.php:41 1540 #: views/backend/partials/time-pass.php:41 1541 msgid "Back" 1542 msgstr "Zurück" 1543 1544 #: views/backend/partials/subscription.php:45 1545 #: views/backend/partials/time-pass.php:45 1546 #: views/frontend/partials/post/gift/gift-pass.php:37 1547 msgid "Validity" 1548 msgstr "Gültigkeit" 1549 1550 #: views/backend/partials/subscription.php:51 1551 #: views/backend/partials/time-pass.php:51 1552 #: views/frontend/partials/post/gift/gift-pass.php:43 1553 msgid "Access to" 1554 msgstr "Zugriff auf" 1555 1556 #: views/backend/partials/subscription.php:57 1557 #: views/backend/partials/time-pass.php:57 1558 #: views/frontend/partials/post/gift/gift-pass.php:49 1559 msgid "Renewal" 1560 msgstr "Verlängert sich" 1561 1562 #: views/backend/partials/subscription.php:59 1563 #: application/Controller/Admin/Pricing.php:59 1564 msgid "After" 1565 msgstr "Nach" 1566 1567 #: views/backend/partials/subscription.php:69 1568 msgid "Cancellation" 1569 msgstr "Kündigung" 1570 1571 #: views/backend/partials/subscription.php:71 1572 msgid "Cancellable anytime" 1573 msgstr "Jederzeit kündbar" 1574 1575 #: views/backend/partials/time-pass.php:59 1576 #: views/frontend/partials/post/gift/gift-pass.php:51 1577 msgid "No automatic renewal" 1578 msgstr "Keine automatische Verlängerung" 1579 1580 #: views/backend/partials/post-pricing-form.php:24 1581 msgid "Pay Later: users pay purchased content later" 1582 msgstr "Später zahlen: Nutzer bezahlen gekaufte Inhalte später." 1583 1584 #: views/backend/partials/post-pricing-form.php:37 1585 msgid "Pay Now: users pay purchased content immediately" 1586 msgstr "Sofort zahlen: Nutzer bezahlen gekaufte Inhalte sofort." 1587 1588 #: views/backend/partials/post-pricing-form.php:67 1589 msgid "Individual Price" 1590 msgstr "Individueller Preis" 1591 1592 #: views/backend/partials/post-pricing-form.php:72 1593 msgid "Category Default Price" 1594 msgstr "Kategorie- preis" 1595 1596 #: views/backend/partials/post-pricing-form.php:79 1597 msgid "Global <br> Default Price" 1598 msgstr "Standard-<br>preis" 1599 1600 #: views/backend/partials/post-pricing-form.php:117 1601 msgid "" 1602 "The dynamic pricing will <strong>start</strong>, once you have <strong>" 1603 "published</strong> this post." 1604 msgstr "" 1605 "Die dynamische Preissetzung <strong>started</strong>, sobald Sie diesen " 1606 "Beitrag <strong>veröffentlicht</strong> haben." 1607 1608 #: views/backend/partials/post-pricing-form.php:122 1609 msgid "Restart dynamic pricing" 1610 msgstr "Dynamische Preissetzung neu starten" 1611 1612 #: views/backend/partials/post-pricing-form.php:128 1613 #: application/Controller/Admin/Post/Metabox.php:141 1614 msgid "Remove dynamic pricing" 1615 msgstr "Dynamische Preissetzung entfernen" 1616 1617 #: views/backend/partials/post-pricing-form.php:135 1618 #: application/Controller/Admin/Post/Metabox.php:140 1619 msgid "Add dynamic pricing" 1620 msgstr "Dynamische Preissetzung hinzufügen" 1621 1622 #: views/backend/partials/purchase-overlay.php:23 1623 #: views/frontend/partials/widget/purchase-overlay.php:39 1624 msgid "This article" 1625 msgstr "Diesen Artikel" 1626 1627 #: views/backend/partials/purchase-overlay.php:26 1628 msgid "\"An Amazing Article\"" 1629 msgstr "Mein bester Post" 1630 1631 #: views/backend/partials/purchase-overlay.php:41 1632 msgid "Week Pass" 1633 msgstr "Wochenpass" 1634 1635 #: views/backend/partials/purchase-overlay.php:44 1636 msgid "7 days access to all paid content on this website (no subscription)" 1637 msgstr "7 Tage Zugriff auf alle Inhalte dieser Website (kein Abo)" 1638 1639 #: views/backend/partials/purchase-overlay.php:59 1640 msgid "Month subscription" 1641 msgstr "Monatsabo" 1642 1643 #: views/backend/partials/purchase-overlay.php:62 1644 msgid "30 days access to all paid content (cancellable anytime)" 1645 msgstr "1 Monat Zugriff auf alle Inhalte dieser Website (jederzeit kündbar)" 1646 1647 #: views/backend/partials/purchase-overlay.php:72 1648 msgid "Buy now, pay later" 1649 msgstr "Jetzt kaufen, später zahlen" 1650 1651 #: views/backend/partials/purchase-overlay.php:74 1652 #: views/frontend/partials/widget/purchase-overlay.php:130 1653 msgid "Redeem voucher" 1654 msgstr "Gutschein einlösen" 1655 1656 #: views/backend/partials/purchase-overlay.php:89 1657 #: views/frontend/partials/widget/purchase-overlay.php:149 1658 msgid "Powered by" 1659 msgstr "Powered by" 1660 1661 #: application/Core/Exception/PostNotFound.php:14 1662 #, php-format 1663 msgid "Post with id \"%s\" not exist" 1664 msgstr "Es existiert kein Beitrag mit der ID \"%s\"." 1665 1666 #: application/Core/Exception/FormValidation.php:18 1667 #, php-format 1668 msgid "Form \"%s\" validation failed." 1669 msgstr "Formatvalidierung \"%s\" fehlgeschlagen." 1670 1671 #: application/Core/Exception/InvalidIncomingData.php:14 1672 #, php-format 1673 msgid "\"%s\" param missed or has incorrect value" 1674 msgstr "Der Parameter \"%s\" fehlt oder hat einen ungültigen Wert." 1675 1676 #: application/Controller/Frontend/Shortcode.php:109 1677 msgid "Additional Premium Content" 1678 msgstr "Zusätzlicher Premium-Inhalt" 1679 1680 #: application/Controller/Frontend/Shortcode.php:118 1681 #, php-format 1682 msgid "" 1683 "<code>%1$s</code> is deprecated, please use <code>%2$s</code>. <code>" 1684 "%1$s</code> will be removed in the next release." 1685 msgstr "" 1686 "<code>%1$s</code> ist veraltet, bitte verwenden Sie <code>%2$s</code>. <code>" 1687 "%1$s</code> wird mit dem nächsten Release entfernt." 1688 1689 #: application/Controller/Frontend/Shortcode.php:170 1690 #, php-format 1691 msgid "We couldn't find a page for target_post_id=\"%s\" on this site." 1692 msgstr "" 1693 "Wir konnten keine Seite für target_post_id=\"%s\" auf dieser Webseite finden." 1694 1695 #: application/Controller/Frontend/Shortcode.php:180 1696 #, php-format 1697 msgid "We couldn't find a page for target_post_title=\"%s\" on this site." 1698 msgstr "" 1699 "Wir konnten keine Seite für target_post_title=\"%s\" auf dieser Webseite " 1700 "finden." 1701 1702 #: application/Controller/Frontend/Shortcode.php:203 1703 msgid "LaterPay has been disabled for the post type of the target page." 1704 msgstr "LaterPay wurde für den Post-Type der Zielseite deaktiviert." 1705 1706 #: application/Controller/Frontend/Shortcode.php:392 1707 msgid "Download now" 1708 msgstr "Jetzt herunterladen" 1709 1710 #: application/Controller/Frontend/Shortcode.php:397 1711 msgid "Watch now" 1712 msgstr "Jetzt ansehen" 1713 1714 #: application/Controller/Frontend/Shortcode.php:402 1715 msgid "Listen now" 1716 msgstr "Jetzt anhören" 1717 1718 #: application/Controller/Frontend/Shortcode.php:406 1719 msgid "Read now" 1720 msgstr "Jetzt lesen" 1721 1722 #: application/Controller/Frontend/Shortcode.php:538 1723 msgid "Wrong time pass id." 1724 msgstr "Ungültige Zeitpass-ID." 1725 1726 #: application/Controller/Frontend/Shortcode.php:672 1727 msgid "Buy another gift card" 1728 msgstr "Einen weiteren Gutschein kaufen." 1729 1730 #: application/Controller/Frontend/PreviewMode.php:147 1731 #: application/Controller/Admin/Account.php:88 1732 #: application/Controller/Admin/Appearance.php:108 1733 #: application/Controller/Admin/Pricing.php:181 1734 #: application/Controller/Admin/Pricing.php:380 1735 #: application/Controller/Admin/Pricing.php:453 1736 #: application/Controller/Admin/Pricing.php:534 1737 #: application/Controller/Admin/Pricing.php:778 1738 #: application/Controller/Admin/Pricing.php:814 523 #: application/Controller/Admin/Account.php:45 524 msgid "The API key you entered is not a valid LaterPay API key!" 525 msgstr "Der eingegebene API Key ist kein gültiger LaterPay API Key!" 526 527 #: application/Controller/Admin/Account.php:46 528 msgid "The Merchant ID you entered is not a valid LaterPay Merchant ID!" 529 msgstr "Die eingegebene Merchant ID ist keine gültige LaterPay Merchant ID!" 530 531 #: application/Controller/Admin/Account.php:47 532 msgid "LaterPay does not work properly with invalid API credentials." 533 msgstr "LaterPay funktioniert nicht ohne gültige API Zugangsdaten." 534 535 #: application/Controller/Admin/Account.php:89 536 #: application/Controller/Admin/Appearance.php:105 537 #: application/Controller/Admin/Pricing.php:177 538 #: application/Controller/Admin/Pricing.php:364 539 #: application/Controller/Admin/Pricing.php:438 540 #: application/Controller/Frontend/PreviewMode.php:115 1739 541 msgid "An error occurred when trying to save your settings. Please try again." 1740 542 msgstr "" … … 1742 544 "erneut." 1743 545 1744 #: application/Controller/Frontend/PreviewMode.php:188 1745 #: application/Controller/Frontend/PreviewMode.php:271 1746 msgid "Updated." 1747 msgstr "Aktualisiert." 1748 1749 #: application/Controller/Frontend/Post.php:194 1750 msgid "Thank you very much for rating!" 1751 msgstr "Vielen Dank für Ihre Bewertung!" 1752 1753 #: application/Controller/Frontend/Post.php:774 1754 msgid "In Live mode, your visitors would now see the LaterPay purchase dialog." 1755 msgstr "" 1756 "Im Live-Modus würden Ihre Besucher jetzt den LaterPay Kaufdialog sehen." 1757 1758 #: application/Controller/Frontend/Post.php:775 1759 msgid "Voucher code accepted." 1760 msgstr "Gutschein-Code akzeptiert." 1761 1762 #: application/Controller/Frontend/Post.php:776 1763 msgid " is not a valid voucher code!" 1764 msgstr " ist kein gültiger Gutschein-Code!" 1765 1766 #: application/Controller/Frontend/Post.php:777 1767 msgid "Please enter a six-digit voucher code." 1768 msgstr "Bitte geben Sie einen sechsstelligen Gutschein-Code ein." 1769 1770 #: application/Controller/Frontend/Post.php:778 1771 msgid "An error occurred. Please try again." 1772 msgstr "Ein Fehler ist aufgetreten. Bitte versuchen Sie es erneut." 1773 1774 #: application/Controller/Frontend/Post.php:782 1775 msgid "Subscribe Now" 1776 msgstr "Jetzt abonnieren" 1777 1778 #: application/Controller/Frontend/Post.php:893 1779 msgid "" 1780 "— Visit the post to buy its full content for {price} {currency} —" 1781 " {teaser_content}" 1782 msgstr "" 1783 "— Kaufen Sie den vollständigen Inhalt für {price} {currency} — " 1784 "{teaser_content}" 1785 1786 #: application/Controller/Admin/Account.php:46 1787 msgid "The API key you entered is not a valid LaterPay API key!" 1788 msgstr "Der eingegebene API Key ist kein gültiger LaterPay API Key!" 1789 1790 #: application/Controller/Admin/Account.php:47 1791 msgid "The Merchant ID you entered is not a valid LaterPay Merchant ID!" 1792 msgstr "Die eingegebene Merchant ID ist keine gültige LaterPay Merchant ID!" 1793 1794 #: application/Controller/Admin/Account.php:48 1795 msgid "LaterPay does not work properly with invalid API credentials." 1796 msgstr "LaterPay funktioniert nicht ohne gültige API Zugangsdaten." 1797 1798 #: application/Controller/Admin/Account.php:161 1799 #: application/Controller/Admin/Account.php:219 546 #: application/Controller/Admin/Account.php:163 547 #: application/Controller/Admin/Account.php:221 1800 548 #, php-format 1801 549 msgid "The Merchant ID you entered is not a valid LaterPay %s Merchant ID!" 1802 550 msgstr "Die eingegebene Merchant ID ist keine kültige LaterPay %s Merchant ID!" 1803 551 1804 #: application/Controller/Admin/Account.php:17 5552 #: application/Controller/Admin/Account.php:177 1805 553 #, php-format 1806 554 msgid "The %s Merchant ID has been removed." 1807 555 msgstr "Die %s Merchant ID wurde entfernt." 1808 556 1809 #: application/Controller/Admin/Account.php:1 88557 #: application/Controller/Admin/Account.php:190 1810 558 #, php-format 1811 559 msgid "%s Merchant ID verified and saved." 1812 560 msgstr "%s Merchant ID überprüft und gespeichert." 1813 561 1814 #: application/Controller/Admin/Account.php:23 3562 #: application/Controller/Admin/Account.php:235 1815 563 #, php-format 1816 564 msgid "The %s API key has been removed." 1817 565 msgstr "Der %s API Key wurde entfernt." 1818 566 1819 #: application/Controller/Admin/Account.php:24 6567 #: application/Controller/Admin/Account.php:248 1820 568 #, php-format 1821 569 msgid "Your %s API key is valid. You can now make %s transactions." … … 1823 571 "Ihr %s API-Key ist gültig. Sie können nun %s Transaktionen durchführen." 1824 572 1825 #: application/Controller/Admin/Account.php:26 71826 #: application/Controller/Admin/Account.php:32 2573 #: application/Controller/Admin/Account.php:269 574 #: application/Controller/Admin/Account.php:324 1827 575 msgid "Error occurred. Incorrect data provided." 1828 576 msgstr "Ein Fehler ist aufgetreten. Falsche Daten wurden übergeben." 1829 577 1830 #: application/Controller/Admin/Account.php:28 1578 #: application/Controller/Admin/Account.php:283 1831 579 msgid "" 1832 580 "The LaterPay plugin is in LIVE mode now. All payments are actually booked " … … 1836 584 "tatsächlich gebucht und Ihrem Händlerkonto gutgeschrieben." 1837 585 1838 #: application/Controller/Admin/Account.php:29 0586 #: application/Controller/Admin/Account.php:292 1839 587 msgid "" 1840 588 "The LaterPay plugin is in visible TEST mode now. Payments are only simulated " … … 1844 592 "Zahlungen werden nur simuliert und nicht tatsächlich gebucht." 1845 593 1846 #: application/Controller/Admin/Account.php:30 0594 #: application/Controller/Admin/Account.php:302 1847 595 msgid "" 1848 596 "The LaterPay plugin is in invisible TEST mode now. Payments are only " … … 1852 600 "Zahlungen werden nur simuliert und nicht tatsächlich gebucht." 1853 601 1854 #: application/Controller/Admin/Account.php:31 01855 #: application/Controller/Admin/Account.php:38 0602 #: application/Controller/Admin/Account.php:312 603 #: application/Controller/Admin/Account.php:382 1856 604 msgid "The LaterPay plugin needs valid API credentials to work." 1857 605 msgstr "Das LaterPay Plugin benötigt gültige API Zugangsdaten." 1858 606 1859 #: application/Controller/Admin/Account.php:33 4607 #: application/Controller/Admin/Account.php:336 1860 608 msgid "Failed to change region settings." 1861 609 msgstr "" 1862 610 "Die Einstellungen für Ländergruppe und Währung konnten nicht geändert werden." 1863 611 1864 #: application/Controller/Admin/Account.php:34 4612 #: application/Controller/Admin/Account.php:346 1865 613 msgid "The LaterPay region was changed successfully." 1866 614 msgstr "" … … 1868 616 "geändert." 1869 617 1870 #: application/Controller/Admin/Account.php:36 41871 #: application/Controller/Admin/Pricing.php: 3141872 #: application/Controller/Admin/Pricing.php:3 64618 #: application/Controller/Admin/Account.php:366 619 #: application/Controller/Admin/Pricing.php:299 620 #: application/Controller/Admin/Pricing.php:348 1873 621 msgid "An error occurred. Incorrect data provided." 1874 622 msgstr "Ein Fehler ist aufgetreten: Falsche Daten angegeben." 1875 623 1876 #: application/Controller/Admin/Account.php:3891877 msgid "The plugin is in <strong>visible</strong> test mode now."1878 msgstr ""1879 "Das Plugin ist jetzt im Test-Modus und für Besucher <strong>sichtbar</strong>"1880 "."1881 1882 624 #: application/Controller/Admin/Account.php:391 1883 msgid "The plugin is in <strong>invisible</strong> test mode now." 1884 msgstr "" 1885 "Das Plugin ist jetzt im Test-Modus und für Besucher <strong>nicht " 1886 "sichtbar</strong>." 1887 1888 #: application/Controller/Admin/Appearance.php:135 625 #: application/Controller/Admin/Account.php:393 626 msgid "The plugin is in" 627 msgstr "" 628 629 #: application/Controller/Admin/Account.php:391 630 msgid "visible" 631 msgstr "" 632 633 #: application/Controller/Admin/Account.php:391 634 #: application/Controller/Admin/Account.php:393 635 msgid "test mode now." 636 msgstr "" 637 638 #: application/Controller/Admin/Account.php:393 639 msgid "invisible" 640 msgstr "" 641 642 #: application/Controller/Admin/Appearance.php:134 1889 643 msgid "" 1890 644 "Visitors will now see the teaser content of paid posts plus an excerpt of " … … 1894 648 "einen Auszug des Artikels unter einem Overlay." 1895 649 1896 #: application/Controller/Admin/Appearance.php:13 8650 #: application/Controller/Admin/Appearance.php:137 1897 651 msgid "" 1898 652 "Visitors will now see the teaser content of paid posts plus an excerpt of " … … 1902 656 "dem Volltext unter einem Overlay mit allen Kaufoptionen." 1903 657 1904 #: application/Controller/Admin/Appearance.php:14 1658 #: application/Controller/Admin/Appearance.php:140 1905 659 msgid "Visitors will now see only the teaser content of paid posts." 1906 660 msgstr "" 1907 661 "Besucher sehen ab jetzt nur den Teaser eines kostenpflichtigen Beitrags." 1908 662 1909 #: application/Controller/Admin/Appearance.php:1 73663 #: application/Controller/Admin/Appearance.php:186 1910 664 msgid "Purchase overlay settings saved successfully." 1911 665 msgstr "Kauf-Overlay Einstellungen erfolgreich gespeichert." 1912 666 1913 #: application/Controller/Admin/Appearance.php:194 1914 msgid "Visitors can now rate the posts they have purchased." 1915 msgstr "Besucher können nun gekaufte Beiträge bewerten." 1916 1917 #: application/Controller/Admin/Appearance.php:203 1918 msgid "The rating of posts has been disabled." 1919 msgstr "Die Bewertung gekaufter Beiträge wurde deaktiviert." 1920 1921 #: application/Controller/Admin/Appearance.php:224 667 #: application/Controller/Admin/Appearance.php:206 1922 668 msgid "Purchase buttons are now rendered at a custom position." 1923 669 msgstr "" 1924 670 "Kauf-Buttons werden ab jetzt an einer benutzerdefinierten Position angezeigt." 1925 671 1926 #: application/Controller/Admin/Appearance.php:2 33672 #: application/Controller/Admin/Appearance.php:215 1927 673 msgid "Purchase buttons are now rendered at their default position." 1928 msgstr "" 1929 "Kauf-Buttons werden ab jetzt an ihrer Standard-Position angezeigt.\n" 1930 1931 #: application/Controller/Admin/Appearance.php:254 674 msgstr "Kauf-Buttons werden ab jetzt an ihrer Standard-Position angezeigt." 675 676 #: application/Controller/Admin/Appearance.php:236 1932 677 msgid "Time passes are now rendered at a custom position." 1933 678 msgstr "" 1934 679 "Zeitpässe werden ab jetzt an einer benutzerdefinierten Position angezeigt." 1935 680 1936 #: application/Controller/Admin/Appearance.php:2 63681 #: application/Controller/Admin/Appearance.php:245 1937 682 msgid "Time passes are now rendered at their default position." 1938 msgstr "" 1939 "Zeitpässe werden ab jetzt an ihrer Standard-Position angezeigt.\n" 1940 1941 #: application/Controller/Admin/Pricing.php:60 683 msgstr "Zeitpässe werden ab jetzt an ihrer Standard-Position angezeigt." 684 685 #: application/Controller/Admin/Notice.php:39 686 msgid "Please contact WPEngine customer service to bypass the required cookies" 687 msgstr "" 688 689 #: application/Controller/Admin/Notice.php:40 690 msgid "token, laterpay_purchased_gift_card and laterpay_tracking_code" 691 msgstr "" 692 693 #: application/Controller/Admin/Notice.php:41 694 msgid "in order for the plugin to work properly with page-cache." 695 msgstr "" 696 697 #: application/Controller/Admin/Notice.php:42 698 msgid "Done" 699 msgstr "" 700 701 #: application/Controller/Admin/Notice.php:63 702 msgid "Saving Settings " 703 msgstr "" 704 705 #: application/Controller/Admin/Notice.php:64 706 msgid "Settings Saved " 707 msgstr "" 708 709 #: application/Controller/Admin/Notice.php:65 710 msgid "Error saving data" 711 msgstr "" 712 713 #: application/Controller/Admin/Post/Column.php:42 714 #: views/backend/partials/subscription.php:62 715 #: views/backend/partials/time-pass.php:70 views/backend/pricing.php:94 716 #: views/backend/pricing.php:200 views/backend/pricing.php:305 717 msgid "Price" 718 msgstr "Preis" 719 720 #: application/Controller/Admin/Post/Column.php:43 721 msgid "Price Type" 722 msgstr "Preistyp" 723 724 #: application/Controller/Admin/Post/Column.php:87 725 #: application/Helper/Pricing.php:865 726 #: views/backend/partials/post-pricing-form.php:40 727 #: views/backend/pricing.php:120 views/backend/pricing.php:225 728 #: views/backend/pricing.php:330 views/backend/pricing.php:499 729 msgid "Pay Now" 730 msgstr "Sofort zahlen" 731 732 #: application/Controller/Admin/Post/Column.php:88 733 #: application/Helper/Pricing.php:868 application/Module/Purchase.php:294 734 #: views/backend/partials/post-pricing-form.php:27 735 #: views/backend/pricing.php:220 views/backend/pricing.php:325 736 #: views/backend/pricing.php:494 737 msgid "Pay Later" 738 msgstr "Später zahlen" 739 740 #: application/Controller/Admin/Post/Column.php:89 741 msgid "individual price" 742 msgstr "Individueller Preis" 743 744 #: application/Controller/Admin/Post/Column.php:93 745 msgid "dynamic individual price" 746 msgstr "Individueller Preis (dynamisch)" 747 748 #: application/Controller/Admin/Post/Column.php:97 749 msgid "category default price" 750 msgstr "Kategorie-Standardpreis" 751 752 #: application/Controller/Admin/Post/Column.php:101 753 #: application/Controller/Admin/Post/Column.php:111 754 msgid "global default price" 755 msgstr "Standardpreis" 756 757 #: application/Controller/Admin/Post/Metabox.php:136 758 msgid "" 759 "Paid posts require some teaser content. Please fill in the Teaser Content " 760 "field." 761 msgstr "" 762 "Kostenpflichtige Inhalte benötigen einen Teaser. Bitte geben Sie einen " 763 "Teaser an." 764 765 #: application/Controller/Admin/Post/Metabox.php:137 766 #: views/backend/partials/post-pricing-form.php:133 767 msgid "Add dynamic pricing" 768 msgstr "Dynamische Preissetzung hinzufügen" 769 770 #: application/Controller/Admin/Post/Metabox.php:138 771 #: views/backend/partials/post-pricing-form.php:126 772 msgid "Remove dynamic pricing" 773 msgstr "Dynamische Preissetzung entfernen" 774 775 #: application/Controller/Admin/Post/Metabox.php:147 776 msgid "default price" 777 msgstr "Standardpreis" 778 779 #: application/Controller/Admin/Post/Metabox.php:148 780 msgid "days" 781 msgstr "Tage" 782 783 #: application/Controller/Admin/Post/Metabox.php:149 784 msgid "Today" 785 msgstr "Heute" 786 787 #: application/Controller/Admin/Post/Metabox.php:169 788 msgid "Teaser Content" 789 msgstr "Teaser für den Beitrag" 790 791 #: application/Controller/Admin/Post/Metabox.php:192 792 msgid "Pricing for this Post" 793 msgstr "Preis des Beitrags" 794 795 #: application/Controller/Admin/Post/Metabox.php:235 796 #, php-format 797 msgid "" 798 "Visitors will see the teaser content %s instead of the full content %s " 799 "before purchase." 800 msgstr "" 801 802 #: application/Controller/Admin/Post/Metabox.php:238 803 msgid "" 804 "If you do not enter any teaser content, the plugin will use an excerpt of " 805 "the full content as teaser content." 806 msgstr "" 807 "Wenn Sie keinen Teaser angeben, verwendet das Plugin automatisch einen " 808 "Auszug aus dem Volltext als Teaser." 809 810 #: application/Controller/Admin/Post/Metabox.php:240 811 msgid "" 812 "We do recommend to write dedicated teaser content to increase your sales " 813 "though." 814 msgstr "" 815 "Wir empfehlen jedoch, für jeden Beitrag einen separaten Teaser zu erstellen, " 816 "um die Attraktivität des Beitrags zu steigern." 817 818 #: application/Controller/Admin/Pricing.php:46 views/backend/pricing.php:570 819 msgid "Subscriptions" 820 msgstr "Abos" 821 822 #: application/Controller/Admin/Pricing.php:47 823 msgid "Subscription" 824 msgstr "" 825 826 #: application/Controller/Admin/Pricing.php:79 827 msgid "After" 828 msgstr "Nach" 829 830 #: application/Controller/Admin/Pricing.php:80 1942 831 msgid "Make" 1943 832 msgstr "Mache" 1944 833 1945 #: application/Controller/Admin/Pricing.php: 61834 #: application/Controller/Admin/Pricing.php:81 1946 835 msgid "free" 1947 836 msgstr "kostenlos" 1948 837 1949 #: application/Controller/Admin/Pricing.php:63 1950 #: application/Controller/Admin/Pricing.php:629 838 #: application/Controller/Admin/Pricing.php:82 839 msgid "to" 840 msgstr "auf" 841 842 #: application/Controller/Admin/Pricing.php:83 1951 843 msgid "by" 1952 844 msgstr "um" 1953 845 1954 #: application/Controller/Admin/Pricing.php:64 1955 #: application/Controller/Admin/Pricing.php:652 846 #: application/Controller/Admin/Pricing.php:84 1956 847 msgid "to global default price of" 1957 848 msgstr "auf den allgemeinen Standardpreis" 1958 849 1959 #: application/Controller/Admin/Pricing.php:65 1960 #: application/Controller/Admin/Pricing.php:658 850 #: application/Controller/Admin/Pricing.php:85 1961 851 msgid "to category default price of" 1962 852 msgstr "auf den Kategorie-Standardpreis" 1963 853 1964 #: application/Controller/Admin/Pricing.php:69 854 #: application/Controller/Admin/Pricing.php:86 855 msgid "Update Prices" 856 msgstr "Preise aktualisieren" 857 858 #: application/Controller/Admin/Pricing.php:87 859 msgid "Delete" 860 msgstr "Löschen" 861 862 #: application/Controller/Admin/Pricing.php:89 1965 863 msgid "Are you sure?" 1966 864 msgstr "Sind Sie sicher?" 1967 865 1968 #: application/Controller/Admin/Pricing.php: 70866 #: application/Controller/Admin/Pricing.php:90 1969 867 msgid "" 1970 868 "Do you really want to discontinue this subscription? If you delete it, it " … … 1980 878 "dieses Abo wirklich löschen?" 1981 879 1982 #: application/Controller/Admin/Pricing.php:94 880 #: application/Controller/Admin/Pricing.php:91 views/backend/pricing.php:387 881 msgid "reduces the price to" 882 msgstr "reduziert den Preis auf" 883 884 #: application/Controller/Admin/Pricing.php:92 views/backend/pricing.php:398 885 msgid "times redeemed." 886 msgstr "Mal eingelöst." 887 888 #: application/Controller/Admin/Pricing.php:114 1983 889 msgid "All posts in category" 1984 890 msgstr "aller Beiträge in Kategorie" 1985 891 1986 #: application/Controller/Admin/Pricing.php:129 1987 msgid "Set price of" 1988 msgstr "Setze den Preis" 1989 1990 #: application/Controller/Admin/Pricing.php:130 1991 msgid "Increase price of" 1992 msgstr "Erhöhe den Preis" 1993 1994 #: application/Controller/Admin/Pricing.php:131 1995 msgid "Reduce price of" 1996 msgstr "Reduziere den Preis" 1997 1998 #: application/Controller/Admin/Pricing.php:132 1999 msgid "Make free" 2000 msgstr "Kostenlos-machen" 2001 2002 #: application/Controller/Admin/Pricing.php:133 2003 msgid "Reset" 2004 msgstr "Zurücksetzen" 2005 2006 #: application/Controller/Admin/Pricing.php:137 2007 #: application/Controller/Admin/Pricing.php:641 2008 msgid "All posts" 2009 msgstr "aller Beiträge" 2010 2011 #: application/Controller/Admin/Pricing.php:328 892 #: application/Controller/Admin/Pricing.php:313 2012 893 msgid "All posts are free by default now." 2013 894 msgstr "Alle Beiträge sind nun standardmäßig kostenlos." 2014 895 2015 #: application/Controller/Admin/Pricing.php:3 31896 #: application/Controller/Admin/Pricing.php:316 2016 897 #, php-format 2017 898 msgid "The global default price for all posts is %s %s now." 2018 899 msgstr "Der allgemeine Standardpreis für alle Beiträge ist jetzt %s %s." 2019 900 2020 #: application/Controller/Admin/Pricing.php:3 95901 #: application/Controller/Admin/Pricing.php:379 2021 902 msgid "There is no such category on this website." 2022 903 msgstr "Diese Kategorie existiert nicht." 2023 904 2024 #: application/Controller/Admin/Pricing.php:4 32905 #: application/Controller/Admin/Pricing.php:415 2025 906 #, php-format 2026 907 msgid "All posts in category %s have a default price of %s %s now." 2027 908 msgstr "Alle Beiträge in Kategorie %s haben nun einen Standardpreis von %s %s." 2028 909 2029 #: application/Controller/Admin/Pricing.php:4 98910 #: application/Controller/Admin/Pricing.php:460 2030 911 #, php-format 2031 912 msgid "The default price for category %s was deleted." 2032 913 msgstr "Der Standardpreis für die Kategorie %s wurde entfernt." 2033 914 2034 #: application/Controller/Admin/Pricing.php:563 2035 msgid "The prices of all posts" 2036 msgstr "Die Preise aller Beiträge" 2037 2038 #: application/Controller/Admin/Pricing.php:565 2039 msgid "have been" 2040 msgstr "wurden" 2041 2042 #: application/Controller/Admin/Pricing.php:566 2043 #: application/Controller/Admin/Pricing.php:597 2044 msgid "set" 2045 msgstr "gesetzt" 2046 2047 #: application/Controller/Admin/Pricing.php:582 2048 #, php-format 2049 msgid "%s %s" 2050 msgstr "%s %s" 2051 2052 #: application/Controller/Admin/Pricing.php:628 2053 msgid "decreased" 2054 msgstr "reduziert" 2055 2056 #: application/Controller/Admin/Pricing.php:628 2057 msgid "increased" 2058 msgstr "erhöht" 2059 2060 #: application/Controller/Admin/Pricing.php:642 2061 msgid "made free" 2062 msgstr "kostenlos gemacht" 2063 2064 #: application/Controller/Admin/Pricing.php:647 2065 msgid "reset" 2066 msgstr "zurückgesetzt" 2067 2068 #: application/Controller/Admin/Pricing.php:797 2069 msgid "Bulk operation saved." 2070 msgstr "Bulk Price Operation gespeichert." 2071 2072 #: application/Controller/Admin/Pricing.php:828 2073 msgid "Bulk operation deleted." 2074 msgstr "Bulk Price Operation gelöscht." 2075 2076 #: application/Controller/Admin/Pricing.php:871 915 #: application/Controller/Admin/Pricing.php:518 2077 916 msgid "An error occurred when trying to save the time pass. Please try again." 2078 917 msgstr "" … … 2080 919 "Sie es noch einmal." 2081 920 2082 #: application/Controller/Admin/Pricing.php: 926921 #: application/Controller/Admin/Pricing.php:573 2083 922 msgid "Pass saved." 2084 923 msgstr "Pass gespeichert." 2085 924 2086 #: application/Controller/Admin/Pricing.php: 950925 #: application/Controller/Admin/Pricing.php:598 2087 926 msgid "Time pass deleted." 2088 927 msgstr "Zeitpass gelöscht." 2089 928 2090 #: application/Controller/Admin/Pricing.php: 957929 #: application/Controller/Admin/Pricing.php:605 2091 930 msgid "The selected pass was deleted already." 2092 931 msgstr "Der ausgewählte Pass wurde bereits gelöscht." 2093 932 2094 #: application/Controller/Admin/Pricing.php: 997933 #: application/Controller/Admin/Pricing.php:648 2095 934 msgid "" 2096 935 "An error occurred when trying to save the subscription. Please try again." … … 2099 938 "Sie es erneut." 2100 939 2101 #: application/Controller/Admin/Pricing.php: 1020940 #: application/Controller/Admin/Pricing.php:671 2102 941 msgid "Subscription saved." 2103 942 msgstr "Abo gespeichert." 2104 943 2105 #: application/Controller/Admin/Pricing.php: 1041944 #: application/Controller/Admin/Pricing.php:693 2106 945 msgid "Subscription deleted." 2107 946 msgstr "Abo gelöscht." 2108 947 2109 #: application/Controller/Admin/Pricing.php: 1048948 #: application/Controller/Admin/Pricing.php:700 2110 949 msgid "The selected subscription was deleted already." 2111 950 msgstr "Dieses Abo wurde bereits gelöscht." 2112 951 2113 #: application/Controller/Admin/Pricing.php: 1103952 #: application/Controller/Admin/Pricing.php:755 2114 953 msgid "Incorrect voucher price." 2115 954 msgstr "Ungültiger Gutschein-Preis." 2116 955 2117 #: application/Controller/Admin/Pricing.php:1147 2118 msgid "Landing page saved." 2119 msgstr "Zielseite gespeichert." 2120 2121 #: application/Controller/Admin/Pricing.php:1173 956 #: application/Controller/Admin/Pricing.php:804 2122 957 msgid "" 2123 958 "You have to create a time pass, before you can disable individual purchases." … … 2126 961 "können." 2127 962 2128 #: application/Controller/Admin/Settings.php:55 963 #: application/Controller/Admin/Pricing.php:828 964 msgid "Passes" 965 msgstr "" 966 967 #: application/Controller/Admin/Pricing.php:829 views/backend/pricing.php:363 968 #: views/backend/pricing.php:412 969 msgid "Pass" 970 msgstr "Pass" 971 972 #: application/Controller/Admin/Pricing.php:839 973 msgid "Laterpay Passes Post type Registration issue." 974 msgstr "" 975 976 #: application/Controller/Admin/Settings.php:55 2129 977 #: application/Controller/Admin/Settings.php:72 2130 978 msgid "LaterPay Advanced Settings" 2131 979 msgstr "LaterPay – Erweiterte Einstellungen" 2132 980 2133 #: application/Controller/Admin/Settings.php:10 5981 #: application/Controller/Admin/Settings.php:103 2134 982 msgid "LaterPay Colors" 2135 983 msgstr "LaterPay Farben" 2136 984 2137 #: application/Controller/Admin/Settings.php:11 2985 #: application/Controller/Admin/Settings.php:110 2138 986 msgid "Main Color" 2139 987 msgstr "Hauptfarbe" 2140 988 2141 #: application/Controller/Admin/Settings.php:126 989 #: application/Controller/Admin/Settings.php:115 990 msgid "Main color for clickable elements. (Default: #01a99d)" 991 msgstr "" 992 993 #: application/Controller/Admin/Settings.php:124 2142 994 msgid "Hover Color" 2143 995 msgstr "Hover Farbe" 2144 996 2145 #: application/Controller/Admin/Settings.php:146 997 #: application/Controller/Admin/Settings.php:129 998 msgid "Hover color for clickable elements. (Default: #01766e)" 999 msgstr "" 1000 1001 #: application/Controller/Admin/Settings.php:144 2146 1002 msgid "You can customize the colors of clickable LaterPay elements." 2147 1003 msgstr "Sie können die Farben von klickbaren LaterPay Elementen anpassen." 2148 1004 2149 #: application/Controller/Admin/Settings.php:158 2150 msgid "Debugger Pane" 2151 msgstr "Debugger" 2152 2153 #: application/Controller/Admin/Settings.php:165 2154 #: application/Controller/Admin/Settings.php:181 2155 #: application/Core/Logger/Handler/WordPress.php:45 2156 msgid "LaterPay Debugger" 2157 msgstr "LaterPay Debugger" 2158 2159 #: application/Controller/Admin/Settings.php:173 2160 msgid "I want to view the LaterPay debugger pane" 2161 msgstr "Ich möchte die LaterPay Debugger Leiste sehen" 2162 2163 #: application/Controller/Admin/Settings.php:188 2164 msgid "List of allowed addresses to view debug(Ex.: 127.0.0.1,192.168.1.1)" 2165 msgstr "" 2166 "Liste der erlaubten IP-Adressen, die den Debugger sehen können (z. B. 127.0." 2167 "0.1,192.168.1.1)" 2168 2169 #: application/Controller/Admin/Settings.php:202 2170 msgid "" 2171 "The LaterPay debugger pane contains a lot of helpful plugin- and system-" 2172 "related information\n" 2173 " for debugging the LaterPay plugin and fixing configuration " 2174 "problems.<br>\n" 2175 " When activated, the debugger pane is rendered at the bottom " 2176 "of the screen.<br>\n" 2177 " It is visible both for users from address list<br>\n" 2178 " On a production installation you should switch it off again " 2179 "as soon as you don't need it anymore." 2180 msgstr "" 2181 "Der LaterPay Debugger stellt viele hilfreiche plugin- und systembezogene " 2182 "Informationen bereit.<br>\n" 2183 "Wenn die Debugger-Leiste aktiviert ist, wird sie am unteren Bildschirmrand " 2184 "angezeigt.<br>\n" 2185 "Sie wird für alle Nutzer mit den angegebenen IP-Adressen angezeigt.<br>\n" 2186 "Auf einer Produktivumgebung sollten Sie sie deaktivieren." 2187 2188 #: application/Controller/Admin/Settings.php:218 1005 #: application/Controller/Admin/Settings.php:157 2189 1006 msgid "Caching Compatibility Mode" 2190 1007 msgstr "Caching-Kompatibilitätsmodus" 2191 1008 2192 #: application/Controller/Admin/Settings.php: 2251009 #: application/Controller/Admin/Settings.php:164 2193 1010 msgid "Caching Compatibility" 2194 1011 msgstr "Caching-Kompatibilität" 2195 1012 2196 #: application/Controller/Admin/Settings.php: 2331013 #: application/Controller/Admin/Settings.php:172 2197 1014 msgid "I am using a caching plugin (e.g. WP Super Cache or Cachify)" 2198 1015 msgstr "Ich verwende ein Caching-Plugin (z. B. WP Super Cache oder Cachify)" 2199 1016 2200 #: application/Controller/Admin/Settings.php: 2471017 #: application/Controller/Admin/Settings.php:186 2201 1018 msgid "" 2202 1019 "You MUST enable caching compatiblity mode, if you are using a caching " 2203 "solution that caches\n" 2204 " entire HTML pages.<br>\n" 2205 " In caching compatibility mode the plugin works like this:<br>" 2206 "\n" 2207 " It renders paid posts only with the teaser content. This " 2208 "allows to cache them as static files without\n" 2209 " risking to leak the paid content.<br>\n" 2210 " When someone visits the page, it makes an Ajax request to " 2211 "determine, if the visitor has already bought\n" 2212 " the post and replaces the teaser with the full content, if " 2213 "required." 2214 msgstr "" 2215 "Sie MÜSSEN den Caching-Kompatibilitätsmodus aktivieren, wenn Sie eine " 2216 "Caching-Lösung verwenden, die vollständige HTML-Seiten cached.<br>\n" 2217 "Im Caching-Kompatibilitätsmodus arbeitet das Plugin wie folgt:<br>\n" 2218 "Kostenpflichtige Beiträge werden zunächst nur mit dem Teaser ausgeliefert. " 2219 "So können sie als statische Dateien gecached werden, ohne die " 2220 "kostenpflichtigen Inhalte mitauszuliefern.<br>\n" 2221 "Wenn ein Nutzer einen kostenpflichtigen Beitrag besucht, prüft das Plugin " 2222 "über einen Ajax-Request, ob der Nutzer diesen Artikel bereits gekauft hat. " 2223 "Falls ja, wird der Teaser durch den Volltext ersetzt." 2224 2225 #: application/Controller/Admin/Settings.php:265 1020 "solution\n" 1021 " that caches entire HTML pages." 1022 msgstr "" 1023 1024 #: application/Controller/Admin/Settings.php:189 1025 msgid "" 1026 "In caching compatibility mode the plugin works\n" 1027 " like this:" 1028 msgstr "" 1029 1030 #: application/Controller/Admin/Settings.php:192 1031 msgid "" 1032 "It renders paid posts only with the teaser content. This allows to cache\n" 1033 " them as static files without risking to leak the paid content." 1034 msgstr "" 1035 1036 #: application/Controller/Admin/Settings.php:195 1037 msgid "" 1038 "When someone visits\n" 1039 " the page, it makes an Ajax request to determine, if the visitor " 1040 "has already bought the post\n" 1041 " and replaces the teaser with the full content, if required." 1042 msgstr "" 1043 1044 #: application/Controller/Admin/Settings.php:209 2226 1045 msgid "LaterPay-enabled Post Types" 2227 1046 msgstr "LaterPay Post-Types" 2228 1047 2229 #: application/Controller/Admin/Settings.php:2 721048 #: application/Controller/Admin/Settings.php:216 2230 1049 msgid "Enabled Post Types" 2231 1050 msgstr "Aktivierte Post-Types" 2232 1051 2233 #: application/Controller/Admin/Settings.php:2 881052 #: application/Controller/Admin/Settings.php:232 2234 1053 msgid "" 2235 1054 "Please choose, which standard and custom post types should be sellable with " … … 2239 1058 "verfügbar sein soll." 2240 1059 2241 #: application/Controller/Admin/Settings.php:301 2242 msgid "Offering Time Passes on Free Posts" 2243 msgstr "Anzeigen von Zeitpässen bei kostenlosen Beiträgen" 2244 2245 #: application/Controller/Admin/Settings.php:308 2246 msgid "Time Passes Widget" 2247 msgstr "Zeitpässe" 2248 2249 #: application/Controller/Admin/Settings.php:316 2250 msgid "I want to display the time passes widget on free and paid posts" 2251 msgstr "" 2252 "Ich möchte Zeitpässe sowohl bei kostenpflichtigen als auch bei kostenlosen " 2253 "Beiträgen anzeigen" 2254 2255 #: application/Controller/Admin/Settings.php:330 1060 #: application/Controller/Admin/Settings.php:244 2256 1061 msgid "" 2257 1062 "Please choose, if you want to show the time passes widget on free posts, or " … … 2261 1066 "kostenlosen Beiträgen anzeigen möchten." 2262 1067 2263 #: application/Controller/Admin/Settings.php: 3412264 #: application/Controller/Admin/Settings.php: 3481068 #: application/Controller/Admin/Settings.php:255 1069 #: application/Controller/Admin/Settings.php:262 2265 1070 msgid "Require login" 2266 1071 msgstr "Login erforderlich" 2267 1072 2268 #: application/Controller/Admin/Settings.php: 3561073 #: application/Controller/Admin/Settings.php:270 2269 1074 msgid "Require the user to log in to LaterPay before a \"Pay Later\" purchase." 2270 1075 msgstr "" … … 2272 1077 "einzuloggen." 2273 1078 2274 #: application/Controller/Admin/Settings.php: 3701079 #: application/Controller/Admin/Settings.php:284 2275 1080 msgid "" 2276 1081 "Please choose if you want to require a login for \"Pay Later\" purchases." … … 2279 1084 "sein soll." 2280 1085 2281 #: application/Controller/Admin/Settings.php: 3831086 #: application/Controller/Admin/Settings.php:296 2282 1087 msgid "Gift Codes Limit" 2283 1088 msgstr "Einschränkungen für Geschenkgutscheine" 2284 1089 2285 #: application/Controller/Admin/Settings.php:3 901090 #: application/Controller/Admin/Settings.php:303 2286 1091 msgid "Times Redeemable" 2287 1092 msgstr "Maximal einlösbar" 2288 1093 2289 #: application/Controller/Admin/Settings.php: 4101094 #: application/Controller/Admin/Settings.php:323 2290 1095 msgid "" 2291 1096 "Specify, how many times a gift code can be redeemed for the associated time " … … 2295 1100 "eingelöst werden kann." 2296 1101 2297 #: application/Controller/Admin/Settings.php: 4501102 #: application/Controller/Admin/Settings.php:363 2298 1103 msgid "Automatically Generated Teaser Content" 2299 1104 msgstr "Automatisch erzeugter Teaser" 2300 1105 2301 #: application/Controller/Admin/Settings.php: 4571106 #: application/Controller/Admin/Settings.php:370 2302 1107 msgid "Teaser Content Word Count" 2303 1108 msgstr "Teaser-Länge" 2304 1109 2305 #: application/Controller/Admin/Settings.php: 4641110 #: application/Controller/Admin/Settings.php:377 2306 1111 msgid "Number of words extracted from paid posts as teaser content." 2307 1112 msgstr "Anzahl der Wörter aus dem Volltext, die als Teaser verwendet werden." 2308 1113 2309 #: application/Controller/Admin/Settings.php: 4781114 #: application/Controller/Admin/Settings.php:391 2310 1115 msgid "" 2311 1116 "The LaterPay WordPress plugin automatically generates teaser content for " 2312 1117 "every paid post\n" 2313 " without teaser content.<br>\n" 2314 " While technically possible, setting this parameter to zero " 2315 "is HIGHLY DISCOURAGED.<br>\n" 2316 " If you really, really want to have NO teaser content for a " 2317 "post, enter one space\n" 2318 " into the teaser content editor for that post." 2319 msgstr "" 2320 "Das LaterPay WordPress Plugin erstellt automatisch einen Teaserinhalt für " 2321 "jeden Bezahlinhalt, für den kein Teaser vorhanden ist.<br> Sie können diesen " 2322 "Wert auf 0 setzen, wir raten jedoch dringend davon ab.<br> Wenn Sie wirklich " 2323 "keinen Teaser setzen möchten, fügen Sie bitte ein Leerzeichen in das " 2324 "Teaserfeld des betreffenden Beitrags ein." 2325 2326 #: application/Controller/Admin/Settings.php:494 1118 " without teaser content." 1119 msgstr "" 1120 1121 #: application/Controller/Admin/Settings.php:394 1122 msgid "" 1123 "While technically possible, setting this parameter to zero is\n" 1124 " HIGHLY DISCOURAGED." 1125 msgstr "" 1126 1127 #: application/Controller/Admin/Settings.php:397 1128 msgid "" 1129 "If you really, really want to have NO teaser content for a post,\n" 1130 " enter one space into the teaser content editor for that post." 1131 msgstr "" 1132 1133 #: application/Controller/Admin/Settings.php:410 2327 1134 msgid "Content Preview under Overlay" 2328 1135 msgstr "Beitragsvorschau unter Overlay" 2329 1136 2330 #: application/Controller/Admin/Settings.php: 5011137 #: application/Controller/Admin/Settings.php:417 2331 1138 msgid "Percentage of Post Content" 2332 1139 msgstr "Anteil des Volltextes" 2333 1140 2334 #: application/Controller/Admin/Settings.php: 5081141 #: application/Controller/Admin/Settings.php:424 2335 1142 #, php-format 2336 1143 msgid "" … … 2342 1149 "die ersten 20% des Volltextes unter dem Overlay an.\"" 2343 1150 2344 #: application/Controller/Admin/Settings.php: 5151151 #: application/Controller/Admin/Settings.php:431 2345 1152 msgid "Minimum Number of Words" 2346 1153 msgstr "Mindestanzahl Wörter" 2347 1154 2348 #: application/Controller/Admin/Settings.php: 5221155 #: application/Controller/Admin/Settings.php:438 2349 1156 msgid "" 2350 1157 "Applied if number of words as percentage of the total number of words is " … … 2355 1162 "als dieser Wert." 2356 1163 2357 #: application/Controller/Admin/Settings.php: 5291164 #: application/Controller/Admin/Settings.php:445 2358 1165 msgid "Maximum Number of Words" 2359 1166 msgstr "Höchstanzahl Wörter" 2360 1167 2361 #: application/Controller/Admin/Settings.php: 5361168 #: application/Controller/Admin/Settings.php:452 2362 1169 msgid "" 2363 1170 "Applied if number of words as percentage of the total number of words " … … 2368 1175 "dieser Wert." 2369 1176 2370 #: application/Controller/Admin/Settings.php: 5531177 #: application/Controller/Admin/Settings.php:469 2371 1178 msgid "" 2372 1179 "In the appearance tab, you can choose to preview your paid posts with the " 2373 1180 "teaser content plus\n" 2374 " an excerpt of the full content, covered by a semi-" 2375 "transparent overlay.<br>\n" 2376 " The following three parameters give you fine-grained control " 2377 "over the length of this excerpt.<br>\n" 2378 " These settings do not affect the teaser content in any way." 2379 msgstr "" 2380 "Im Tab \"Darstellung\" können Sie wählen, welche Vorschau Ihre Besucher für " 2381 "Bezahlinhalte sehen: Entweder nur einen Teaser-Text plus Kauflink oder einen " 2382 "Teaser-Text plus einen Auszug unter einem halbtransparenten Overlay.<br>\n" 2383 "Mit den folgenden drei Parametern haben Sie die Möglichkeit, die Länge " 2384 "dieses Auszuges anzupassen.<br>\n" 2385 "Diese Einstellungen beeinflussen nicht die Länge des Teaser-Textes." 2386 2387 #: application/Controller/Admin/Settings.php:603 1181 " an excerpt of the full content, covered by a semi-transparent " 1182 "overlay." 1183 msgstr "" 1184 1185 #: application/Controller/Admin/Settings.php:472 1186 msgid "" 1187 "The following three parameters give you fine-grained control over the length " 1188 "of this excerpt." 1189 msgstr "" 1190 1191 #: application/Controller/Admin/Settings.php:474 1192 msgid "These settings do not affect the teaser content in any way." 1193 msgstr "" 1194 1195 #: application/Controller/Admin/Settings.php:521 2388 1196 msgid "Unlimited Access to Paid Content" 2389 1197 msgstr "Unbegrenzter Zugriff auf Bezahlinhalte" 2390 1198 2391 #: application/Controller/Admin/Settings.php: 6341199 #: application/Controller/Admin/Settings.php:552 2392 1200 msgid "" 2393 1201 "You can give logged-in users unlimited access to specific categories " 2394 "depending on their user\n" 2395 " role.<br>\n" 2396 " This feature can be useful e.g. for giving free access to " 2397 "existing subscribers.<br>\n" 2398 " We recommend the plugin 'User Role Editor' for adding custom " 2399 "roles to WordPress." 2400 msgstr "" 2401 "Sie können eingeloggten Nutzern mit einer bestimmten Rolle unbegrenzten " 2402 "Zugang zu einzelnen Kategorien geben.<br>\n" 2403 "Diese Funktionalität kann z. B. nützlich sein, wenn Sie bestehenden " 2404 "Abonnenten Zugriff auf LaterPay-Inhalte geben möchten.<br>\n" 2405 "Wir empfehlen das Plugin \"User Role Editor\", um Nutzerrollen zu WordPress " 2406 "hinzuzufügen." 2407 2408 #: application/Controller/Admin/Settings.php:644 1202 "depending on their user role." 1203 msgstr "" 1204 1205 #: application/Controller/Admin/Settings.php:554 1206 msgid "" 1207 "This feature can be useful e.g. for giving free access to existing " 1208 "subscribers." 1209 msgstr "" 1210 1211 #: application/Controller/Admin/Settings.php:556 1212 msgid "" 1213 "We recommend the plugin 'User Role Editor' for adding custom roles to " 1214 "WordPress." 1215 msgstr "" 1216 1217 #: application/Controller/Admin/Settings.php:562 2409 1218 msgid "User Role" 2410 1219 msgstr "Nutzerrolle" 2411 1220 2412 #: application/Controller/Admin/Settings.php: 6451221 #: application/Controller/Admin/Settings.php:564 2413 1222 msgid "Unlimited Access to Categories" 2414 1223 msgstr "Unbeschränkter Zugriff auf die Kategorien" 2415 1224 2416 #: application/Controller/Admin/Settings.php: 6501225 #: application/Controller/Admin/Settings.php:569 2417 1226 msgid "Please add a custom role first." 2418 1227 msgstr "Bitte erstellen Sie erst eine eigene Nutzerrolle." 2419 1228 2420 #: application/Controller/Admin/Settings.php: 9441229 #: application/Controller/Admin/Settings.php:864 2421 1230 msgid "LaterPay API Settings" 2422 1231 msgstr "LaterPay API-Einstellungen" 2423 1232 2424 #: application/Controller/Admin/Settings.php: 9531233 #: application/Controller/Admin/Settings.php:873 2425 1234 msgid "Fallback Behavior" 2426 1235 msgstr "Fallback-Verhalten" 2427 1236 2428 #: application/Controller/Admin/Settings.php: 9701237 #: application/Controller/Admin/Settings.php:890 2429 1238 msgid "Enabled on home page" 2430 1239 msgstr "LaterPay auf Startseite aktivieren" 2431 1240 2432 #: application/Controller/Admin/Settings.php: 9781241 #: application/Controller/Admin/Settings.php:898 2433 1242 msgid "I want to enable requests to LaterPay API on home page" 2434 1243 msgstr "Ich möchte LaterPay API Aufrufe auf der Startseite erlauben" 2435 1244 2436 #: application/Controller/Admin/Settings.php:9 921245 #: application/Controller/Admin/Settings.php:912 2437 1246 msgid "" 2438 1247 "Define fallback behavior in case LaterPay API is not responding and option " … … 2443 1252 "soll." 2444 1253 2445 #: application/Controller/Admin/Settings.php: 10051254 #: application/Controller/Admin/Settings.php:925 2446 1255 msgid "Do nothing" 2447 1256 msgstr "Nichts tun" 2448 1257 2449 #: application/Controller/Admin/Settings.php: 10061258 #: application/Controller/Admin/Settings.php:926 2450 1259 msgid "" 2451 1260 "No user can access premium content while the LaterPay API is not responding." … … 2454 1263 "erreichbar ist." 2455 1264 2456 #: application/Controller/Admin/Settings.php: 10101265 #: application/Controller/Admin/Settings.php:930 2457 1266 msgid "Give full access" 2458 1267 msgstr "Vollzugriff gewähren" 2459 1268 2460 #: application/Controller/Admin/Settings.php: 10111269 #: application/Controller/Admin/Settings.php:931 2461 1270 msgid "" 2462 1271 "All users have full access to premium content in order to not disappoint " … … 2466 1275 "bisherige Käufer nicht zu verärgern)." 2467 1276 2468 #: application/Controller/Admin/Settings.php: 10151277 #: application/Controller/Admin/Settings.php:935 2469 1278 msgid "Hide premium content" 2470 1279 msgstr "Bezahlinhalte ausblenden" 2471 1280 2472 #: application/Controller/Admin/Settings.php: 10161281 #: application/Controller/Admin/Settings.php:936 2473 1282 msgid "Premium content is hidden from users. Direct access would be blocked." 2474 1283 msgstr "Bezahlinhalte werden ausgeblendet, der Direktzugriff wird verweigert." 2475 1284 2476 #: application/Controller/Admin/Settings.php: 10292477 #: application/Controller/Admin/Settings.php: 10381285 #: application/Controller/Admin/Settings.php:949 1286 #: application/Controller/Admin/Settings.php:958 2478 1287 msgid "LaterPay Pro Merchant" 2479 1288 msgstr "LaterPay Pro Händlerkonto" 2480 1289 2481 #: application/Controller/Admin/Settings.php: 10341290 #: application/Controller/Admin/Settings.php:954 2482 1291 msgid "" 2483 1292 "Only choose this option, if you have a LaterPay Pro merchant account. " … … 2492 1301 "dass Sie diese Option aktivieren möchten?" 2493 1302 2494 #: application/Controller/Admin/Settings.php: 10461303 #: application/Controller/Admin/Settings.php:966 2495 1304 msgid "I have a LaterPay Pro merchant account." 2496 1305 msgstr "Ich habe ein LaterPay Pro Händlerkonto." 2497 1306 2498 #: application/Controller/Admin/Settings.php: 10611307 #: application/Controller/Admin/Settings.php:981 2499 1308 msgid "Please choose, if you have a LaterPay Pro merchant account." 2500 1309 msgstr "Bitte aktivieren, wenn Sie ein LaterPay Pro Händlerkonto besitzen." 2501 1310 2502 #: views/frontend/partials/widget/time-passes.php:28 1311 #: application/Controller/Frontend/Post.php:553 1312 msgid "In Live mode, your visitors would now see the LaterPay purchase dialog." 1313 msgstr "" 1314 "Im Live-Modus würden Ihre Besucher jetzt den LaterPay Kaufdialog sehen." 1315 1316 #: application/Controller/Frontend/Post.php:554 1317 msgid "Voucher code accepted." 1318 msgstr "Gutschein-Code akzeptiert." 1319 1320 #: application/Controller/Frontend/Post.php:555 1321 msgid " is not a valid voucher code!" 1322 msgstr " ist kein gültiger Gutschein-Code!" 1323 1324 #: application/Controller/Frontend/Post.php:556 1325 msgid "Please enter a six-digit voucher code." 1326 msgstr "Bitte geben Sie einen sechsstelligen Gutschein-Code ein." 1327 1328 #: application/Controller/Frontend/Post.php:557 1329 msgid "An error occurred. Please try again." 1330 msgstr "Ein Fehler ist aufgetreten. Bitte versuchen Sie es erneut." 1331 1332 #: application/Controller/Frontend/Post.php:559 1333 #: application/Module/Purchase.php:176 1334 msgid "Buy Now, Pay Later" 1335 msgstr "Jetzt kaufen, später zahlen" 1336 1337 #: application/Controller/Frontend/Post.php:560 1338 #: application/Module/Purchase.php:172 application/Module/Purchase.php:271 1339 #: application/Module/Purchase.php:284 1340 msgid "Buy Now" 1341 msgstr "Jetzt kaufen" 1342 1343 #: application/Controller/Frontend/Post.php:561 1344 msgid "Subscribe Now" 1345 msgstr "Jetzt abonnieren" 1346 1347 #: application/Controller/Frontend/Post.php:668 1348 msgid "" 1349 "— Visit the post to buy its full content for {price} {currency} " 1350 "— {teaser_content}" 1351 msgstr "" 1352 "— Kaufen Sie den vollständigen Inhalt für {price} {currency} — " 1353 "{teaser_content}" 1354 1355 #: application/Controller/Frontend/PreviewMode.php:156 1356 #: application/Controller/Frontend/PreviewMode.php:240 1357 msgid "Updated." 1358 msgstr "Aktualisiert." 1359 1360 #: application/Controller/Frontend/PreviewMode.php:214 1361 #: application/Module/Appearance.php:191 1362 msgid "You don't have sufficient user capabilities to do this." 1363 msgstr "Sie haben nicht die erforderlichen Berechtigungen für diese Aktion." 1364 1365 #: application/Controller/Frontend/Shortcode.php:91 1366 msgid "Download now" 1367 msgstr "Jetzt herunterladen" 1368 1369 #: application/Controller/Frontend/Shortcode.php:96 1370 msgid "Watch now" 1371 msgstr "Jetzt ansehen" 1372 1373 #: application/Controller/Frontend/Shortcode.php:101 1374 msgid "Listen now" 1375 msgstr "Jetzt anhören" 1376 1377 #: application/Controller/Frontend/Shortcode.php:105 1378 msgid "Read now" 1379 msgstr "Jetzt lesen" 1380 1381 #: application/Controller/Frontend/Shortcode.php:185 1382 msgid "Wrong time pass id." 1383 msgstr "Ungültige Zeitpass-ID." 1384 1385 #: application/Controller/Install.php:76 1386 #, php-format 1387 msgid "" 1388 "<p>LaterPay: Your server <strong>does not</strong> meet the minimum " 1389 "requirement of %s version %s or higher. You are running %s version %s.</p>" 1390 msgstr "" 1391 "<p>LaterPay: Ihr Server <strong>erfüllt nicht die Mindestanforderung</" 1392 "strong> von %s-Version %s oder neuer. Sie verwenden %s-Version %s.</p>" 1393 1394 #: application/Controller/Install.php:93 1395 msgid "" 1396 "The LaterPay plugin could not be installed. Please fix the reported issues " 1397 "and try again." 1398 msgstr "" 1399 "Das LaterPay Plugin konnte nicht installiert werden. Bitte beheben Sie die " 1400 "genannten Probleme und versuchen Sie es erneut." 1401 1402 #: application/Core/Bootstrap.php:56 1403 #, php-format 1404 msgid "%s: <code>%s</code> not found" 1405 msgstr "%s: <code>%s</code> nicht gefunden" 1406 1407 #: application/Core/Exception/FormValidation.php:18 1408 #, php-format 1409 msgid "Form \"%s\" validation failed." 1410 msgstr "Formatvalidierung \"%s\" fehlgeschlagen." 1411 1412 #: application/Core/Exception/InvalidIncomingData.php:14 1413 #, php-format 1414 msgid "\"%s\" param missed or has incorrect value" 1415 msgstr "Der Parameter \"%s\" fehlt oder hat einen ungültigen Wert." 1416 1417 #: application/Core/Exception/PostNotFound.php:14 1418 #, php-format 1419 msgid "Post with id \"%s\" not exist" 1420 msgstr "Es existiert kein Beitrag mit der ID \"%s\"." 1421 1422 #: application/Helper/Appearance.php:22 application/Helper/Appearance.php:52 1423 msgid "Read now, pay later" 1424 msgstr "Jetzt lesen, später zahlen" 1425 1426 #: application/Helper/Post.php:300 1427 msgid "(more…)" 1428 msgstr "" 1429 1430 #: application/Helper/Subscription.php:33 1431 msgid "1 Month Subscription" 1432 msgstr "Monatsabo" 1433 1434 #: application/Helper/Subscription.php:34 1435 msgid "1 month access to all content on this website (cancellable anytime)" 1436 msgstr "1 Monat Zugriff auf alle Inhalte dieser Website (jederzeit kündbar)" 1437 1438 #: application/Helper/Subscription.php:68 application/Helper/TimePass.php:174 1439 #: views/backend/pricing.php:455 views/backend/pricing.php:631 1440 msgid "access to" 1441 msgstr "Zugriff auf" 1442 1443 #: application/Helper/Subscription.php:78 application/Helper/TimePass.php:184 1444 msgid "for" 1445 msgstr "für" 1446 1447 #: application/Helper/TimePass.php:32 1448 msgid "24-Hour Pass" 1449 msgstr "24-Stunden-Pass" 1450 1451 #: application/Helper/TimePass.php:33 1452 msgid "24 hours access to all content on this website" 1453 msgstr "24 Stunden Zugang zu allen Inhalten dieser Website" 1454 1455 #: application/Helper/TimePass.php:80 1456 msgid "Hour" 1457 msgstr "Stunde" 1458 1459 #: application/Helper/TimePass.php:81 1460 msgid "Day" 1461 msgstr "Tag" 1462 1463 #: application/Helper/TimePass.php:82 1464 msgid "Week" 1465 msgstr "Woche" 1466 1467 #: application/Helper/TimePass.php:83 1468 msgid "Month" 1469 msgstr "Monat" 1470 1471 #: application/Helper/TimePass.php:84 1472 msgid "Year" 1473 msgstr "Jahr" 1474 1475 #: application/Helper/TimePass.php:89 1476 msgid "Hours" 1477 msgstr "Stunden" 1478 1479 #: application/Helper/TimePass.php:90 1480 msgid "Days" 1481 msgstr "Tage" 1482 1483 #: application/Helper/TimePass.php:91 1484 msgid "Weeks" 1485 msgstr "Wochen" 1486 1487 #: application/Helper/TimePass.php:92 1488 msgid "Months" 1489 msgstr "Monate" 1490 1491 #: application/Helper/TimePass.php:93 1492 msgid "Years" 1493 msgstr "Jahre" 1494 1495 #: application/Helper/TimePass.php:116 1496 msgid "later" 1497 msgstr "später" 1498 1499 #: application/Helper/TimePass.php:117 1500 msgid "immediately" 1501 msgstr "sofort" 1502 1503 #: application/Helper/TimePass.php:138 1504 msgid "All content" 1505 msgstr "Alle Inhalte" 1506 1507 #: application/Helper/TimePass.php:139 1508 msgid "All content except for category" 1509 msgstr "Alle Inhalte außer in Kategorie" 1510 1511 #: application/Helper/TimePass.php:140 1512 msgid "All content in category" 1513 msgstr "Alle Inhalte in Kategorie" 1514 1515 #: application/Helper/View.php:217 1516 msgid "k" 1517 msgstr "t" 1518 1519 #: application/Helper/View.php:250 1520 msgid "Problem with inserted shortcode:" 1521 msgstr "Es gibt ein Problem mit dem eingefügten Shortcode:" 1522 1523 #: application/Module/Purchase.php:110 application/Module/Purchase.php:198 1524 #: views/backend/partials/purchase-overlay.php:74 1525 msgid "I already bought this" 1526 msgstr "Bereits gekauft?" 1527 1528 #: application/Module/Purchase.php:260 application/Module/TimePasses.php:368 1529 msgid "Read Now" 1530 msgstr "Jetzt lesen" 1531 1532 #: application/Module/Purchase.php:262 1533 msgid "Read Now, Pay Later" 1534 msgstr "Jetzt lesen, später zahlen" 1535 1536 #: application/Module/Purchase.php:272 1537 msgid "" 1538 "Buy this post now with LaterPay and <br>pay with a payment method you trust." 1539 msgstr "" 1540 "Kaufen Sie diesen Beitrag jetzt mit LaterPay und <br>bezahlen Sie mit einer " 1541 "Zahlungsmethode Ihres Vertrauens." 1542 1543 #: application/Module/Purchase.php:276 application/Module/Purchase.php:289 1544 #: application/Module/TimePasses.php:376 1545 msgid "Read Immediately" 1546 msgstr "Sofort lesen" 1547 1548 #: application/Module/Purchase.php:277 1549 msgid "" 1550 "Immediately access your purchase. <br>You only buy this post. No " 1551 "subscription, no fees." 1552 msgstr "" 1553 "Greifen Sie sofort auf Ihren Kauf zu.<br>Sie kaufen nur diesen Beitrag. Kein " 1554 "Abo, keine Gebühren." 1555 1556 #: application/Module/Purchase.php:285 1557 msgid "Just agree to pay later.<br> No upfront registration and payment." 1558 msgstr "" 1559 "Stimmen Sie einfach zu, später zu zahlen.<br> Keine Vorabregistrierung. " 1560 "Keine Vorauszahlung." 1561 1562 #: application/Module/Purchase.php:290 1563 msgid "" 1564 "Access your purchase immediately.<br> You are only buying this article, not " 1565 "a subscription." 1566 msgstr "" 1567 "Greifen Sie sofort auf Ihren Kauf zu.<br>Sie kaufen nur diesen Beitrag. Kein " 1568 "Abo, keine Gebühren." 1569 1570 #: application/Module/Purchase.php:295 1571 #, php-format 1572 msgid "" 1573 "Buy with LaterPay until you reach a total of %s %s.<br> Only then do you " 1574 "have to register and pay." 1575 msgstr "" 1576 "Kaufen Sie mit LaterPay, bis Sie %s %s erreicht haben. Erst dann müssen Sie " 1577 "sich registrieren und bezahlen." 1578 1579 #: application/Module/TimePasses.php:300 1580 msgid "Buy a time pass to read the full content." 1581 msgstr "Kaufen Sie einen Zeitpass, um den gesamten Inhalt anzuzeigen." 1582 1583 #: application/Module/TimePasses.php:340 1584 msgid "Wrong time pass id or no time passes specified." 1585 msgstr "Ungültige Zeitpass-ID oder keine Zeitpässe vorhanden." 1586 1587 #: application/Module/TimePasses.php:371 1588 msgid "Buy Time Pass" 1589 msgstr "Zeitpass kaufen" 1590 1591 #: application/Module/TimePasses.php:372 1592 msgid "Buy a LaterPay time pass and pay with a payment method you trust." 1593 msgstr "" 1594 "Kaufen Sie einen LaterPay Zeitpass und zahlen Sie mit einer Zahlungsmethode " 1595 "Ihres Vertrauens." 1596 1597 #: application/Module/TimePasses.php:377 1598 msgid "" 1599 "Immediately access your content. <br>A time pass is not a subscription, it " 1600 "expires automatically." 1601 msgstr "" 1602 "Greifen Sie sofort auf Ihre Inhalte zu.<br>\n" 1603 "Ein Zeitpass ist kein Abo, denn er läuft automatisch aus." 1604 1605 #: views/backend/account.php:21 views/backend/appearance.php:19 1606 #: views/backend/pricing.php:19 1607 msgid "Test mode" 1608 msgstr "Test-Modus" 1609 1610 #: views/backend/account.php:22 views/backend/appearance.php:20 1611 #: views/backend/pricing.php:23 1612 msgid "Earn money in" 1613 msgstr "" 1614 1615 #: views/backend/account.php:22 views/backend/appearance.php:20 1616 #: views/backend/pricing.php:23 1617 msgid "live mode" 1618 msgstr "" 1619 1620 #: views/backend/account.php:35 1621 msgid "The LaterPay plugin is in" 1622 msgstr "Das LaterPay Plugin ist im" 1623 1624 #: views/backend/account.php:51 1625 msgid "mode." 1626 msgstr "Modus." 1627 1628 #: views/backend/account.php:55 1629 msgid "It is invisible" 1630 msgstr "Es ist für Besucher nicht sichtbar" 1631 1632 #: views/backend/account.php:72 1633 msgid "visible to visitors." 1634 msgstr "sichtbar." 1635 1636 #: views/backend/account.php:80 1637 msgid "Sandbox Environment" 1638 msgstr "Sandbox" 1639 1640 #: views/backend/account.php:83 1641 msgid "for testing with simulated payments" 1642 msgstr "zu Testzwecken mit simulierten Zahlungen" 1643 1644 #: views/backend/account.php:102 1645 msgid "Paste Sandbox Merchant ID here" 1646 msgstr "Sandbox Merchant ID hier einfügen" 1647 1648 #: views/backend/account.php:103 views/backend/account.php:159 1649 msgid "Merchant ID" 1650 msgstr "Merchant ID" 1651 1652 #: views/backend/account.php:122 1653 msgid "Paste Sandbox API Key here" 1654 msgstr "Sandbox API Key hier einfügen" 1655 1656 #: views/backend/account.php:123 views/backend/account.php:179 1657 msgid "API Key" 1658 msgstr "API Key" 1659 1660 #: views/backend/account.php:136 1661 msgid "Live Environment" 1662 msgstr "Live" 1663 1664 #: views/backend/account.php:139 1665 msgid "for processing real financial transactions" 1666 msgstr "Produktivumgebung für echte Käufe und Zahlungen" 1667 1668 #: views/backend/account.php:158 1669 msgid "Paste Live Merchant ID here" 1670 msgstr "Live Merchant ID hier einfügen" 1671 1672 #: views/backend/account.php:178 1673 msgid "Paste Live API Key here" 1674 msgstr "Live API Key hier einfügen" 1675 1676 #: views/backend/account.php:191 1677 msgid "Request Live API Credentials" 1678 msgstr "Live API Zugangsdaten anfordern" 1679 1680 #: views/backend/account.php:201 1681 msgid "Region and Currency" 1682 msgstr "Ländergruppe und Währung" 1683 1684 #: views/backend/account.php:203 1685 msgid "Select the region for your LaterPay merchant account" 1686 msgstr "Wählen Sie die Ländergruppe Ihres LaterPay Händlerkontos aus" 1687 1688 #: views/backend/account.php:207 1689 msgid "" 1690 "Is the selling company or person based in Europe or in the United States?" 1691 msgstr "" 1692 1693 #: views/backend/account.php:209 1694 msgid "" 1695 "If you select 'Europe', all prices will be displayed and charged in Euro " 1696 "(EUR), and the plugin will connect to the LaterPay Europe platform." 1697 msgstr "" 1698 1699 #: views/backend/account.php:211 1700 msgid "" 1701 "If you select 'United States', all prices will be displayed and charged in U." 1702 "S. Dollar (USD), and the plugin will connect to the LaterPay U.S. platform." 1703 msgstr "" 1704 1705 #: views/backend/account.php:220 1706 msgid "Europe (EUR)" 1707 msgstr "Europa (EUR)" 1708 1709 #: views/backend/account.php:221 1710 msgid "United States (USD)" 1711 msgstr "USA (USD)" 1712 1713 #: views/backend/account.php:228 1714 msgid "Important:" 1715 msgstr "" 1716 1717 #: views/backend/account.php:230 1718 msgid " The minimum value for \"Pay Now\" prices in the U.S. region is" 1719 msgstr "" 1720 1721 #: views/backend/account.php:232 1722 msgid "$1.99" 1723 msgstr "" 1724 1725 #: views/backend/account.php:235 1726 msgid "" 1727 "If you have already set \"Pay Now\" prices lower than 1.99, make sure to " 1728 "change them before you switch to the U.S. region." 1729 msgstr "" 1730 1731 #: views/backend/account.php:237 1732 msgid "" 1733 "If you haven't done any configuration yet, you can safely switch the region " 1734 "without further adjustments. " 1735 msgstr "" 1736 1737 #: views/backend/appearance.php:33 1738 msgid "Content Preview for Paid Posts" 1739 msgstr "Vorschau für Bezahlinhalte" 1740 1741 #: views/backend/appearance.php:47 1742 msgid "Teaser + Purchase Link" 1743 msgstr "Teaser + Kauflink" 1744 1745 #: views/backend/appearance.php:56 1746 msgid "Teaser + Explanatory Overlay" 1747 msgstr "Teaser + erklärendes Overlay" 1748 1749 #: views/backend/appearance.php:65 1750 msgid "Teaser + Purchase Overlay" 1751 msgstr "Teaser + Kauf-Overlay" 1752 1753 #: views/backend/appearance.php:77 1754 msgid "Header" 1755 msgstr "Header" 1756 1757 #: views/backend/appearance.php:82 1758 msgid "Header background color" 1759 msgstr "Hintergrundfarbe Header" 1760 1761 #: views/backend/appearance.php:90 1762 msgid "Header title" 1763 msgstr "Überschrift" 1764 1765 #: views/backend/appearance.php:98 1766 msgid "Purchase Options" 1767 msgstr "Kaufoptionen" 1768 1769 #: views/backend/appearance.php:103 1770 msgid "Background color" 1771 msgstr "Hintergrundfarbe" 1772 1773 #: views/backend/appearance.php:111 1774 msgid "Main text color" 1775 msgstr "Schriftfarbe Text" 1776 1777 #: views/backend/appearance.php:119 1778 msgid "Description color text" 1779 msgstr "Schriftfarbe Beschreibungen" 1780 1781 #: views/backend/appearance.php:127 1782 msgid "Purchase button background color" 1783 msgstr "Hintergrundfarbe Kaufbutton" 1784 1785 #: views/backend/appearance.php:135 1786 msgid "Purchase button text color" 1787 msgstr "Schriftfarbe Kaufbutton" 1788 1789 #: views/backend/appearance.php:143 1790 msgid "Link main color" 1791 msgstr "Schriftfarbe Links" 1792 1793 #: views/backend/appearance.php:151 1794 msgid "Link hover color" 1795 msgstr "Hover-Schriftfarbe Links" 1796 1797 #: views/backend/appearance.php:159 1798 msgid "Footer" 1799 msgstr "Footer" 1800 1801 #: views/backend/appearance.php:164 1802 msgid "Show footer" 1803 msgstr "Footer anzeigen" 1804 1805 #: views/backend/appearance.php:172 1806 msgid "Footer background color" 1807 msgstr "Hintergrundfarbe Footer" 1808 1809 #: views/backend/appearance.php:182 1810 msgid "Preview" 1811 msgstr "Vorschau" 1812 1813 #: views/backend/appearance.php:188 views/backend/pricing.php:130 1814 #: views/backend/pricing.php:235 views/backend/pricing.php:340 1815 #: views/backend/pricing.php:372 views/backend/pricing.php:547 1816 #: views/backend/pricing.php:588 views/backend/pricing.php:702 1817 msgid "Save" 1818 msgstr "Speichern" 1819 1820 #: views/backend/appearance.php:189 views/backend/pricing.php:131 1821 #: views/backend/pricing.php:236 views/backend/pricing.php:341 1822 #: views/backend/pricing.php:373 views/backend/pricing.php:548 1823 #: views/backend/pricing.php:589 views/backend/pricing.php:703 1824 #: views/frontend/partials/widget/purchase-overlay.php:132 1825 msgid "Cancel" 1826 msgstr "Abbrechen" 1827 1828 #: views/backend/appearance.php:192 1829 msgid "Restore Default Values" 1830 msgstr "Standardwerte wiederherstellen" 1831 1832 #: views/backend/appearance.php:200 1833 msgid "Position of the LaterPay Purchase Button" 1834 msgstr "Position des LaterPay Buttons" 1835 1836 #: views/backend/appearance.php:214 views/backend/appearance.php:251 1837 msgid "Standard position" 1838 msgstr "Standardposition" 1839 1840 #: views/backend/appearance.php:223 views/backend/appearance.php:260 1841 msgid "Custom position" 1842 msgstr "Benutzerdefinierte Position" 1843 1844 #: views/backend/appearance.php:228 1845 msgid "" 1846 "Call action 'laterpay_purchase_button' in your theme to render the LaterPay " 1847 "purchase button at that position." 1848 msgstr "" 1849 "Rufen Sie die Action 'laterpay_purchase_button' in Ihrem Theme auf, um den " 1850 "LaterPay Button an einer Position Ihrer Wahl anzuzeigen." 1851 1852 #: views/backend/appearance.php:237 1853 msgid "Display of LaterPay Time Passes" 1854 msgstr "Position der LaterPay Zeitpässe" 1855 1856 #: views/backend/appearance.php:265 1857 msgid "" 1858 "Call action 'laterpay_time_passes' in your theme or use the shortcode " 1859 "'[laterpay_time_passes]' to show your users the available time passes." 1860 msgstr "" 1861 "Rufen Sie die Action 'laterpay_time_passes' in Ihrem Theme auf oder " 1862 "verwenden Sie den Shortcode '[laterpay_time_passes]', um Ihren Nutzern die " 1863 "verfügbaren Zeitpässe anzuzeigen." 1864 1865 #: views/backend/options.php:10 1866 msgid "You don't have sufficient permissions to manage options for this site." 1867 msgstr "" 1868 "Sie haben nicht die notwendigen Berechtigungen, um die Einstellungen für " 1869 "diese Seite zu verwalten." 1870 1871 #: views/backend/partials/pointer-scripts.php:12 1872 msgid "Welcome to LaterPay" 1873 msgstr "Willkommen bei LaterPay" 1874 1875 #: views/backend/partials/pointer-scripts.php:13 1876 msgid "Set the most appropriate settings for you." 1877 msgstr "Passen Sie das LaterPay Plugin Ihren Bedürfnissen an." 1878 1879 #: views/backend/partials/pointer-scripts.php:41 1880 msgid "Set a Price for this Post" 1881 msgstr "Preis für den Beitrag setzen" 1882 1883 #: views/backend/partials/pointer-scripts.php:42 1884 msgid "Set an" 1885 msgstr "" 1886 1887 #: views/backend/partials/pointer-scripts.php:43 1888 msgid " individual price " 1889 msgstr "" 1890 1891 #: views/backend/partials/pointer-scripts.php:44 1892 msgid "for this post here. " 1893 msgstr "" 1894 1895 #: views/backend/partials/pointer-scripts.php:45 1896 msgid "You can also apply" 1897 msgstr "" 1898 1899 #: views/backend/partials/pointer-scripts.php:46 1900 msgid " advanced pricing " 1901 msgstr "" 1902 1903 #: views/backend/partials/pointer-scripts.php:47 1904 msgid "by defining how the price changes over time." 1905 msgstr "" 1906 1907 #: views/backend/partials/pointer-scripts.php:75 1908 msgid "Add Teaser Content" 1909 msgstr "Teaser zum Beitrag hinzufügen" 1910 1911 #: views/backend/partials/pointer-scripts.php:76 1912 msgid "" 1913 "You´ll give your users a better impression of what they´ll buy, if you " 1914 "preview some text, images, or video from the actual post." 1915 msgstr "" 1916 "Um Ihren Nutzern eine bessere Vorstellung davon zu geben, was sie kaufen, " 1917 "sollten Sie Text, Bilder oder Videos aus dem Beitrag als Teaser anzeigen." 1918 1919 #: views/backend/partials/post-pricing-form.php:23 1920 msgid "Pay Later: users pay purchased content later" 1921 msgstr "Später zahlen: Nutzer bezahlen gekaufte Inhalte später." 1922 1923 #: views/backend/partials/post-pricing-form.php:36 1924 msgid "Pay Now: users pay purchased content immediately" 1925 msgstr "Sofort zahlen: Nutzer bezahlen gekaufte Inhalte sofort." 1926 1927 #: views/backend/partials/post-pricing-form.php:49 1928 msgid "0.00" 1929 msgstr "0,00" 1930 1931 #: views/backend/partials/post-pricing-form.php:66 1932 msgid "Individual Price" 1933 msgstr "Individueller Preis" 1934 1935 #: views/backend/partials/post-pricing-form.php:71 1936 msgid "Category Default Price" 1937 msgstr "Kategorie- preis" 1938 1939 #: views/backend/partials/post-pricing-form.php:78 1940 msgid "Global" 1941 msgstr "" 1942 1943 #: views/backend/partials/post-pricing-form.php:78 1944 msgid "Default Price" 1945 msgstr "" 1946 1947 #: views/backend/partials/post-pricing-form.php:115 1948 msgid "The dynamic pricing will" 1949 msgstr "" 1950 1951 #: views/backend/partials/post-pricing-form.php:115 1952 msgid "start" 1953 msgstr "" 1954 1955 #: views/backend/partials/post-pricing-form.php:115 1956 msgid ", once you have" 1957 msgstr "" 1958 1959 #: views/backend/partials/post-pricing-form.php:115 1960 msgid "published" 1961 msgstr "" 1962 1963 #: views/backend/partials/post-pricing-form.php:115 1964 msgid "this post." 1965 msgstr "" 1966 1967 #: views/backend/partials/post-pricing-form.php:120 1968 msgid "Restart dynamic pricing" 1969 msgstr "Dynamische Preissetzung neu starten" 1970 1971 #: views/backend/partials/purchase-overlay.php:23 1972 #: views/frontend/partials/widget/purchase-overlay.php:38 1973 msgid "This article" 1974 msgstr "Diesen Artikel" 1975 1976 #: views/backend/partials/purchase-overlay.php:26 1977 msgid "An Amazing Article" 1978 msgstr "" 1979 1980 #: views/backend/partials/purchase-overlay.php:41 1981 msgid "Week Pass" 1982 msgstr "Wochenpass" 1983 1984 #: views/backend/partials/purchase-overlay.php:44 1985 msgid "7 days access to all paid content on this website (no subscription)" 1986 msgstr "7 Tage Zugriff auf alle Inhalte dieser Website (kein Abo)" 1987 1988 #: views/backend/partials/purchase-overlay.php:59 1989 msgid "Month subscription" 1990 msgstr "Monatsabo" 1991 1992 #: views/backend/partials/purchase-overlay.php:62 1993 msgid "30 days access to all paid content (cancellable anytime)" 1994 msgstr "1 Monat Zugriff auf alle Inhalte dieser Website (jederzeit kündbar)" 1995 1996 #: views/backend/partials/purchase-overlay.php:72 1997 msgid "Buy now, pay later" 1998 msgstr "Jetzt kaufen, später zahlen" 1999 2000 #: views/backend/partials/purchase-overlay.php:74 2001 #: views/frontend/partials/widget/purchase-overlay.php:129 2002 msgid "Redeem voucher" 2003 msgstr "Gutschein einlösen" 2004 2005 #: views/backend/partials/purchase-overlay.php:89 2006 #: views/frontend/partials/widget/purchase-overlay.php:148 2007 msgid "Powered by" 2008 msgstr "Powered by" 2009 2010 #: views/backend/partials/subscription.php:18 2011 #: views/backend/partials/time-pass.php:23 2012 #: views/frontend/partials/post/gift/gift-pass.php:26 2013 msgid "on this website" 2014 msgstr "dieser Website" 2015 2016 #: views/backend/partials/subscription.php:32 2017 #: views/backend/partials/time-pass.php:37 2018 #: views/frontend/partials/post/gift/gift-actions.php:25 2019 #: views/frontend/partials/widget/purchase-button.php:18 2020 #: views/frontend/partials/widget/purchase-link.php:14 2021 msgid "Buy now with LaterPay" 2022 msgstr "Jetzt mit LaterPay kaufen" 2023 2024 #: views/backend/partials/subscription.php:35 2025 #: views/backend/partials/time-pass.php:43 2026 msgid "Terms" 2027 msgstr "Details" 2028 2029 #: views/backend/partials/subscription.php:40 2030 #: views/backend/partials/time-pass.php:48 2031 msgid "Back" 2032 msgstr "Zurück" 2033 2034 #: views/backend/partials/subscription.php:44 2035 #: views/backend/partials/time-pass.php:52 2036 #: views/frontend/partials/post/gift/gift-pass.php:39 2037 msgid "Validity" 2038 msgstr "Gültigkeit" 2039 2040 #: views/backend/partials/subscription.php:50 2041 #: views/backend/partials/time-pass.php:58 2042 #: views/frontend/partials/post/gift/gift-pass.php:45 2043 msgid "Access to" 2044 msgstr "Zugriff auf" 2045 2046 #: views/backend/partials/subscription.php:56 2047 #: views/backend/partials/time-pass.php:64 2048 #: views/frontend/partials/post/gift/gift-pass.php:51 2049 msgid "Renewal" 2050 msgstr "Verlängert sich" 2051 2052 #: views/backend/partials/subscription.php:58 2053 #, php-format 2054 msgid "After %s %s" 2055 msgstr "Nach %s %s " 2056 2057 #: views/backend/partials/subscription.php:68 2058 msgid "Cancellation" 2059 msgstr "Kündigung" 2060 2061 #: views/backend/partials/subscription.php:70 2062 msgid "Cancellable anytime" 2063 msgstr "Jederzeit kündbar" 2064 2065 #: views/backend/partials/time-pass.php:66 2066 #: views/frontend/partials/post/gift/gift-pass.php:53 2067 msgid "No automatic renewal" 2068 msgstr "Keine automatische Verlängerung" 2069 2070 #: views/backend/pricing.php:36 2071 msgid "Posts can" 2072 msgstr "Beiträge können" 2073 2074 #: views/backend/pricing.php:53 2075 msgid "cannot be purchased individually." 2076 msgstr "können nicht einzeln gekauft werden." 2077 2078 #: views/backend/pricing.php:67 2079 msgid "Every post costs" 2080 msgstr "Jeder Artikel kostet" 2081 2082 #: views/backend/pricing.php:87 2083 msgid "Edit Global Default Price" 2084 msgstr "Allgemeinen Standardpreis bearbeiten" 2085 2086 #: views/backend/pricing.php:108 views/backend/pricing.php:213 2087 #: views/backend/pricing.php:318 2088 msgid "Revenue Model" 2089 msgstr "Erlösmodell" 2090 2091 #: views/backend/pricing.php:115 2092 msgid "Pay Later" 2093 msgstr "Später zahlen" 2094 2095 #: views/backend/pricing.php:143 views/backend/pricing.php:356 2096 #: views/backend/pricing.php:572 2097 msgid "Create" 2098 msgstr "Erstellen" 2099 2100 #: views/backend/pricing.php:160 views/backend/pricing.php:268 2101 msgid "Every post in" 2102 msgstr "Jeder Beitrag in" 2103 2104 #: views/backend/pricing.php:164 views/backend/pricing.php:271 2105 msgid "costs" 2106 msgstr "kostet" 2107 2108 #: views/backend/pricing.php:185 2109 msgid "Edit Category Default Price" 2110 msgstr "Kategoriespezifischen Standardpreis bearbeiten" 2111 2112 #: views/backend/pricing.php:192 views/backend/pricing.php:297 2113 msgid "Category" 2114 msgstr "Kategorie" 2115 2116 #: views/backend/pricing.php:247 2117 msgid "Set prices by category" 2118 msgstr "Kategoriespezifische Standardpreise setzen" 2119 2120 #: views/backend/pricing.php:252 2121 msgid "" 2122 "Category default prices are convenient for selling different categories of " 2123 "content at different standard prices." 2124 msgstr "" 2125 2126 #: views/backend/pricing.php:252 2127 msgid "Individual prices can be set when editing a post." 2128 msgstr "" 2129 2130 #: views/backend/pricing.php:256 2131 msgid "Click the \"Create\" button to set a default price for a category." 2132 msgstr "" 2133 "Klicken Sie auf den \"Erstellen\" Button, um einen Standardpreis für eine " 2134 "Kategorie zu setzen." 2135 2136 #: views/backend/pricing.php:290 2137 msgid "Add a Category Default Price" 2138 msgstr "Kategoriespezifischen Standardpreis hinzufügen" 2139 2140 #: views/backend/pricing.php:430 2141 msgid "The pass is valid for " 2142 msgstr "Dieser Pass gilt für " 2143 2144 #: views/backend/pricing.php:450 2145 msgid "and grants" 2146 msgstr "und gibt" 2147 2148 #: views/backend/pricing.php:477 2149 msgid "This pass costs" 2150 msgstr "Dieser Pass kostet" 2151 2152 #: views/backend/pricing.php:485 2153 msgid "and the user has to" 2154 msgstr "und Nutzer müssen" 2155 2156 #: views/backend/pricing.php:506 views/backend/pricing.php:677 2157 msgid "Title" 2158 msgstr "Titel" 2159 2160 #: views/backend/pricing.php:517 views/backend/pricing.php:688 2161 msgid "Description" 2162 msgstr "Beschreibung" 2163 2164 #: views/backend/pricing.php:530 2165 msgid "Offer this time pass at a reduced price of" 2166 msgstr "Diesen Zeitpass zu einem reduzierten Preis anbieten:" 2167 2168 #: views/backend/pricing.php:538 2169 msgid "Generate voucher code" 2170 msgstr "Gutschein-Code erstellen" 2171 2172 #: views/backend/pricing.php:558 2173 msgid "Sell bundles of content" 2174 msgstr "Zeitpässe verkaufen" 2175 2176 #: views/backend/pricing.php:561 2177 msgid "" 2178 "With Time Passes you can sell time-limited access to a category or your " 2179 "entire site. Time Passes do not renew automatically." 2180 msgstr "" 2181 "Mit Zeitpässen können Sie einen zeitlich begrenzten Zugang zu Kategorien " 2182 "oder der gesamten Seite verkaufen. Zeitpässe verlängern sich nicht " 2183 "automatisch." 2184 2185 #: views/backend/pricing.php:564 2186 msgid "Click the \"Create\" button to add a Time Pass." 2187 msgstr "" 2188 "Klicken Sie auf den \"Erstellen\" Button, um einen Zeitpass hinzuzufügen." 2189 2190 #: views/backend/pricing.php:579 views/backend/pricing.php:599 2191 msgid "Sub" 2192 msgstr "Abo" 2193 2194 #: views/backend/pricing.php:617 2195 msgid "The subscription costs" 2196 msgstr "Das Abo kostet" 2197 2198 #: views/backend/pricing.php:626 2199 msgid ", grants " 2200 msgstr ", gibt" 2201 2202 #: views/backend/pricing.php:654 2203 msgid "and renews every" 2204 msgstr "und verlängert sich nach" 2205 2206 #: views/backend/pricing.php:711 2207 msgid "Sell subscriptions" 2208 msgstr "Abos verkaufen" 2209 2210 #: views/backend/pricing.php:714 2211 msgid "" 2212 "Subscriptions work exactly like time passes, with a simple difference: They " 2213 "renew automatically." 2214 msgstr "" 2215 "Abos funktionieren genau wie Zeitpässe, mit einem einfachen Unterschied: Sie " 2216 "verlängern sich automatisch." 2217 2218 #: views/backend/pricing.php:717 2219 msgid "Click the \"Create\" button to add a Subscription." 2220 msgstr "Klicken Sie auf den \"Erstellen\" Button, um ein Abo hinzuzufügen." 2221 2222 #: views/backend/pricing.php:720 2223 msgid "" 2224 "Important: if your LaterPay merchant account has been created before June " 2225 "2017, please contact sales@laterpay.net to check, if subscriptions are " 2226 "enabled for your account." 2227 msgstr "" 2228 "Wichtig: Wenn Ihr LaterPay Händlerkonto vor Juni 2017 erstellt wurde, " 2229 "kontaktieren Sie bitte sales@laterpay.net um zu prüfen, ob Abos für Ihr " 2230 "Konto aktiviert sind." 2231 2232 #: views/frontend/partials/post/gift/gift-actions.php:18 2233 msgid "Gift Code" 2234 msgstr "Gutschein-Code" 2235 2236 #: views/frontend/partials/post/gift/gift-actions.php:21 2237 msgid "Redeem at" 2238 msgstr "Einlösen auf" 2239 2503 2240 #: views/frontend/partials/post/gift/redeem-form.php:10 2241 #: views/frontend/partials/widget/time-passes.php:32 2504 2242 msgid "Code" 2505 2243 msgstr "Code" 2506 2244 2507 #: views/frontend/partials/widget/time-passes.php:292508 2245 #: views/frontend/partials/post/gift/redeem-form.php:11 2246 #: views/frontend/partials/widget/time-passes.php:33 2509 2247 msgid "Redeem" 2510 2248 msgstr "Einlösen" 2511 2249 2512 #: views/frontend/partials/widget/time-passes.php:30 2513 msgid "Redeem Voucher >" 2514 msgstr "Gutschein einlösen >" 2250 #: views/frontend/partials/post/select-preview-mode-tab.php:15 2251 msgid "Post Preview Mode" 2252 msgstr "Vorschau-Modus" 2253 2254 #: views/frontend/partials/post/select-preview-mode-tab.php:17 2255 msgid "Preview post as" 2256 msgstr "Vorschau für" 2257 2258 #: views/frontend/partials/post/select-preview-mode-tab.php:17 2259 msgid "Admin" 2260 msgstr "Admin" 2261 2262 #: views/frontend/partials/post/select-preview-mode-tab.php:37 2263 msgid "Visitor" 2264 msgstr "Besucher" 2265 2266 #: views/frontend/partials/post/shortcode-purchase-link.php:10 2267 msgid "View" 2268 msgstr "Anzeigen" 2269 2270 #: views/frontend/partials/widget/explanatory-overlay.php:12 2271 #: views/frontend/partials/widget/purchase-overlay.php:12 2272 msgid "" 2273 "Thanks for reading this short excerpt from the paid post! Fancy buying it to " 2274 "read all of it?" 2275 msgstr "" 2276 "Danke, dass Sie diesen Auszug aus dem kostenpflichtigen Beitrag gelesen " 2277 "haben. Sie können den vollständigen Beitrag lesen, nachdem Sie ihn gekauft " 2278 "haben." 2279 2280 #: views/frontend/partials/widget/purchase-link.php:33 2281 #: views/frontend/partials/widget/purchase-link.php:36 2282 msgid "Buy now for" 2283 msgstr "Jetzt kaufen für" 2284 2285 #: views/frontend/partials/widget/purchase-link.php:36 2286 msgid "and pay later" 2287 msgstr "und später bezahlen" 2288 2289 #: views/frontend/partials/widget/purchase-overlay.php:114 2290 msgid "Enter Voucher Code" 2291 msgstr "Code eingeben" 2292 2293 #: views/frontend/partials/widget/purchase-overlay.php:124 2294 msgid "Redeem Voucher Code" 2295 msgstr "Gutschein-Code einlösen" 2515 2296 2516 2297 #: views/frontend/partials/widget/time-passes-link.php:8 … … 2522 2303 msgstr "Zeitpass kaufen" 2523 2304 2524 #: views/frontend/partials/widget/purchase-button.php:31 2525 #, php-format 2526 msgid "%s<small class=\"lp_purchase-link__currency\">%s</small>" 2527 msgstr "%s<small class=\"lp_purchase-link__currency\">%s</small>" 2528 2529 #: views/frontend/partials/widget/explanatory-overlay.php:10 2530 #: views/frontend/partials/widget/purchase-overlay.php:10 2531 msgid "Preview a short excerpt from the paid post:" 2532 msgstr "Zeige einen kurzen Auszug aus dem kostenpflichtigen Beitrag:" 2533 2534 #: views/frontend/partials/widget/explanatory-overlay.php:13 2535 #: views/frontend/partials/widget/purchase-overlay.php:13 2536 msgid "" 2537 "Thanks for reading this short excerpt from the paid post! Fancy buying it to " 2538 "read all of it?" 2539 msgstr "" 2540 "Danke, dass Sie diesen Auszug aus dem kostenpflichtigen Beitrag gelesen " 2541 "haben. Sie können den vollständigen Beitrag lesen, nachdem Sie ihn gekauft " 2542 "haben." 2543 2544 #: views/frontend/partials/widget/purchase-link.php:28 2545 #, php-format 2546 msgid "Buy now for %s<small class=\"lp_purchase-link__currency\">%s</small>" 2547 msgstr "" 2548 "Jetzt kaufen für %s<small class=\"lp_purchase-link__currency\">%s</small>" 2549 2550 #: views/frontend/partials/widget/purchase-link.php:34 2551 #, php-format 2552 msgid "" 2553 "Buy now for %s<small class=\"lp_purchase-link__currency\">%s</small> and pay " 2554 "later" 2555 msgstr "" 2556 "Jetzt kaufen für %s<small class=\"lp_purchase-link__currency\">%s</small> " 2557 "und später zahlen" 2558 2559 #: views/frontend/partials/widget/purchase-overlay.php:115 2560 msgid "Enter Voucher Code" 2561 msgstr "Code eingeben" 2562 2563 #: views/frontend/partials/widget/purchase-overlay.php:125 2564 msgid "Redeem Voucher Code" 2565 msgstr "Gutschein-Code einlösen" 2566 2567 #: views/frontend/partials/post/rating-summary.php:31 2568 msgid "Buyer Ratings for this Post" 2569 msgstr "Käuferbewertungen" 2570 2571 #: views/frontend/partials/post/rating-form.php:12 2572 msgid "Please rate this post:" 2573 msgstr "Bitte bewerten Sie diesen Beitrag:" 2574 2575 #: views/frontend/partials/post/rating-form.php:14 2576 #: views/frontend/partials/post/rating-form.php:19 2577 #: views/frontend/partials/post/rating-form.php:24 2578 #: views/frontend/partials/post/rating-form.php:29 2579 msgid "stars" 2580 msgstr "Sterne" 2581 2582 #: views/frontend/partials/post/rating-form.php:34 2583 msgid "star" 2584 msgstr "Stern" 2585 2586 #: views/frontend/partials/post/select-preview-mode-tab.php:15 2587 msgid "Post Preview Mode" 2588 msgstr "Vorschau-Modus" 2589 2590 #: views/frontend/partials/post/select-preview-mode-tab.php:17 2591 msgid "Preview post as" 2592 msgstr "Vorschau für" 2593 2594 #: views/frontend/partials/post/select-preview-mode-tab.php:17 2595 msgid "Admin" 2596 msgstr "Admin" 2597 2598 #: views/frontend/partials/post/select-preview-mode-tab.php:37 2599 msgid "Visitor" 2600 msgstr "Besucher" 2601 2602 #: views/frontend/partials/post/shortcode-purchase-link.php:10 2603 msgid "View" 2604 msgstr "Anzeigen" 2605 2606 #: application/Core/Logger/Handler/WordPress.php:123 2607 msgid "Requests" 2608 msgstr "Requests" 2609 2610 #: application/Core/Logger/Handler/WordPress.php:128 2611 #, php-format 2612 msgid "Cookies<span class=\"lp_badge\">%s</span>" 2613 msgstr "Cookies<span class=\"lp_badge\">%s</span>" 2614 2615 #: application/Core/Logger/Handler/WordPress.php:133 2616 msgid "System Config" 2617 msgstr "System Konfiguration" 2618 2619 #: application/Core/Logger/Handler/WordPress.php:138 2620 msgid "Plugin Config" 2621 msgstr "Plugin Konfiguration" 2622 2623 #: application/Core/Logger/Handler/WordPress.php:197 2624 msgid "yes" 2625 msgstr "ja" 2626 2627 #: application/Core/Logger/Handler/WordPress.php:197 2628 msgid "no" 2629 msgstr "nein" 2630 2631 #: application/Core/Logger/Handler/WordPress.php:200 2632 msgid "none" 2633 msgstr "keine" 2634 2635 #: application/Core/Logger/Formatter/Html.php:76 2636 msgid "Details" 2637 msgstr "Details" 2638 2639 #: application/Controller/Admin/Post/Column.php:43 2640 msgid "Price Type" 2641 msgstr "Preistyp" 2642 2643 #: application/Controller/Admin/Post/Column.php:89 2644 msgid "individual price" 2645 msgstr "Individueller Preis" 2646 2647 #: application/Controller/Admin/Post/Column.php:93 2648 msgid "dynamic individual price" 2649 msgstr "Individueller Preis (dynamisch)" 2650 2651 #: application/Controller/Admin/Post/Column.php:97 2652 msgid "category default price" 2653 msgstr "Kategorie-Standardpreis" 2654 2655 #: application/Controller/Admin/Post/Column.php:101 2656 #: application/Controller/Admin/Post/Column.php:111 2657 msgid "global default price" 2658 msgstr "Standardpreis" 2659 2660 #: application/Controller/Admin/Post/Metabox.php:139 2661 msgid "" 2662 "Paid posts require some teaser content. Please fill in the Teaser Content " 2663 "field." 2664 msgstr "" 2665 "Kostenpflichtige Inhalte benötigen einen Teaser. Bitte geben Sie einen " 2666 "Teaser an." 2667 2668 #: application/Controller/Admin/Post/Metabox.php:150 2669 msgid "default price" 2670 msgstr "Standardpreis" 2671 2672 #: application/Controller/Admin/Post/Metabox.php:151 2673 msgid "days" 2674 msgstr "Tage" 2675 2676 #: application/Controller/Admin/Post/Metabox.php:152 2677 msgid "Today" 2678 msgstr "Heute" 2679 2680 #: application/Controller/Admin/Post/Metabox.php:172 2681 msgid "Teaser Content" 2682 msgstr "Teaser für den Beitrag" 2683 2684 #: application/Controller/Admin/Post/Metabox.php:195 2685 msgid "Pricing for this Post" 2686 msgstr "Preis des Beitrags" 2687 2688 #: application/Controller/Admin/Post/Metabox.php:246 2689 msgid "" 2690 "Visitors will see the teaser content <strong>instead of the full " 2691 "content</strong> before purchase." 2692 msgstr "" 2693 "Besucher sehen den Teaser <strong>anstelle des Volltextes</strong> vor dem " 2694 "Kauf." 2695 2696 #: application/Controller/Admin/Post/Metabox.php:247 2697 msgid "" 2698 "If you do not enter any teaser content, the plugin will use an excerpt of " 2699 "the full content as teaser content." 2700 msgstr "" 2701 "Wenn Sie keinen Teaser angeben, verwendet das Plugin automatisch einen " 2702 "Auszug aus dem Volltext als Teaser." 2703 2704 #: application/Controller/Admin/Post/Metabox.php:248 2705 msgid "" 2706 "We do recommend to write dedicated teaser content to increase your sales " 2707 "though." 2708 msgstr "" 2709 "Wir empfehlen jedoch, für jeden Beitrag einen separaten Teaser zu erstellen, " 2710 "um die Attraktivität des Beitrags zu steigern." 2711 2712 #: views/frontend/partials/post/gift/gift-actions.php:18 2713 msgid "Gift Code" 2714 msgstr "Gutschein-Code" 2715 2716 #: views/frontend/partials/post/gift/gift-actions.php:21 2717 msgid "Redeem at" 2718 msgstr "Einlösen auf" 2719 2720 #. Author URI of the plugin 2721 msgid "https://laterpay.net/" 2722 msgstr "https://laterpay.net/" 2305 #: views/frontend/partials/widget/time-passes.php:34 2306 msgid "Redeem Voucher >" 2307 msgstr "Gutschein einlösen >" 2308 2309 #~ msgid "Unexpected error during plugin init" 2310 #~ msgstr "Unerwarteter Fehler während Plugin-Initialisierung" 2311 2312 #~ msgid "Earn money in <i>live mode</i>" 2313 #~ msgstr "Verdienen Sie Geld im <i>Live-Modus</i>" 2314 2315 #~ msgid "" 2316 #~ "Is the selling company or person based in Europe or in the United States?" 2317 #~ "<br>\n" 2318 #~ " If you select 'Europe', all prices will be " 2319 #~ "displayed and charged in Euro (EUR), and the plugin will connect to the " 2320 #~ "LaterPay Europe platform.<br>\n" 2321 #~ " If you select 'United States', all prices will be " 2322 #~ "displayed and charged in U.S. Dollar (USD), and the plugin will connect " 2323 #~ "to the LaterPay U.S. platform. \n" 2324 #~ " " 2325 #~ msgstr "" 2326 #~ "Hat das verkaufende Unternehmen seinen Sitz in Europa oder in den USA?" 2327 #~ "<br>\n" 2328 #~ "Wenn Sie \"Europa\" auswählen, werden alle Preise in Euro (EUR) angezeigt " 2329 #~ "und das Plugin verwendet die LaterPay-Europa-Plattform.\n" 2330 #~ "Wenn Sie \"USA\" auswählen, werden alle Preise in Dollar (USD) angezeigt " 2331 #~ "und das Plugin verwendet die LaterPay-USA-Plattform." 2332 2333 #~ msgid "" 2334 #~ "<b>Important:</b> The minimum value for \"Pay Now\" prices in the U.S. " 2335 #~ "region is <b>$1.99</b>.<br>\n" 2336 #~ " If you have already set \"Pay Now\" prices lower " 2337 #~ "than 1.99, make sure to change them before you switch to the U.S. region." 2338 #~ "<br>\n" 2339 #~ " If you haven't done any configuration yet, you " 2340 #~ "can safely switch the region without further adjustments. \n" 2341 #~ " " 2342 #~ msgstr "" 2343 #~ "<b>Wichtig:</b> Der Mindestpreis für \"Sofort Zahlen\"-Käufe für die USA " 2344 #~ "beträgt <b>$1,99</b>.<br>\n" 2345 #~ "Wenn Sie bereits \"Sofort Zahlen\"-Preise kleiner als 1,99 gesetzt haben, " 2346 #~ "ändern Sie diese bitte, bevor Sie zur Region USA wechseln.<br>\n" 2347 #~ "Wenn Sie noch keine Konfiguration vorgenommen haben, können Sie ohne " 2348 #~ "weitere Schritte die Region wechseln." 2349 2350 #~ msgid "" 2351 #~ "Category default prices are convenient for selling different categories " 2352 #~ "of content at different standard prices.<br>Individual prices can be set " 2353 #~ "when editing a post." 2354 #~ msgstr "" 2355 #~ "Mit kategoriespezifischen Standardpreisen können Sie einen Preis für alle " 2356 #~ "Artikel einer Kategorie vergeben. Individuelle Preise können Sie " 2357 #~ "vergeben, wenn Sie einen Beitrag bearbeiten oder erstellen." 2358 2359 #~ msgid "Forward users to this URL after they have redeemed a gift card:" 2360 #~ msgstr "" 2361 #~ "Leiten Sie Nutzer nach dem Einlösen eines Geschenkgutscheins zu dieser " 2362 #~ "URL weiter:" 2363 2364 #~ msgid "Bulk Price Editor" 2365 #~ msgstr "Bulk Price Editor" 2366 2367 #~ msgid "Display of LaterPay Invoice Balance" 2368 #~ msgstr "Einbinden der LaterPay Rechnungsanzeige" 2369 2370 #~ msgid "" 2371 #~ "Call action 'laterpay_invoice_indicator' in your theme to show your users " 2372 #~ "their LaterPay invoice balance." 2373 #~ msgstr "" 2374 #~ "Rufen Sie die Action 'laterpay_invoice_indicator' in Ihrem Theme auf, um " 2375 #~ "Ihren Nutzern deren aktuelle LaterPay Rechnungssumme anzuzeigen." 2376 2377 #~ msgid "" 2378 #~ "The LaterPay invoice indicator is served by LaterPay. Its styling can not " 2379 #~ "be changed." 2380 #~ msgstr "" 2381 #~ "Die LaterPay Rechnungsanzeige wird von LaterPay geladen. Ihr Aussehen " 2382 #~ "kann nicht verändert werden." 2383 2384 #~ msgid "Display of LaterPay Login / Logout Links" 2385 #~ msgstr "Anzeigen von Links zum Ein- und Ausloggen bei LaterPay" 2386 2387 #~ msgid "" 2388 #~ "Call action 'laterpay_account_links' in your theme or use the shortcode " 2389 #~ "'[laterpay_account_links]' to embed a LaterPay login / logout link in " 2390 #~ "your page." 2391 #~ msgstr "" 2392 #~ "Rufen Sie die Action 'laterpay_account_links' in Ihrem Theme auf oder " 2393 #~ "verwenden Sie den Shortcode '[laterpay_account_links]', um einen Link zum " 2394 #~ "Ein- und Ausloggen bei LaterPay in Ihre Seite einzubinden." 2395 2396 #~ msgid "" 2397 #~ "These links have minimal default styling. Apply own styling by passing " 2398 #~ "parameter 'css' the URL of a CSS file with your styles." 2399 #~ msgstr "" 2400 #~ "Standardmäßig wird der Link nahezu unformatiert angezeigt. Sie können die " 2401 #~ "Darstellung des Links ändern, indem Sie im Parameter 'css' den " 2402 #~ "vollständigen Pfad zu einer eigenen CSS Datei übergeben." 2403 2404 #~ msgid "Basic Example" 2405 #~ msgstr "Einfaches Beispiel" 2406 2407 #~ msgid "Advanced Example" 2408 #~ msgstr "Erweitertes Beispiel" 2409 2410 #~ msgid "Rating of Purchased Content" 2411 #~ msgstr "Bewertung gekaufter Inhalte" 2412 2413 #~ msgid "Content rating is" 2414 #~ msgstr "Inhaltebewertung ist" 2415 2416 #~ msgid "on" 2417 #~ msgstr "an" 2418 2419 #~ msgid "off" 2420 #~ msgstr "aus" 2421 2422 #~ msgid "The opinion of others has a strong influence on buying decisions." 2423 #~ msgstr "" 2424 #~ "Die Meinung anderer Käufer hat einen großen Einfluss auf die " 2425 #~ "Kaufentscheidung." 2426 2427 #~ msgid "" 2428 #~ "Content rating lets users rate your content on a five star scale after " 2429 #~ "purchasing." 2430 #~ msgstr "" 2431 #~ "Mit der Inhaltebewertung können Nutzer Ihre Inhalte nach dem Kauf auf " 2432 #~ "einer Fünf-Sterne-Skala bewerten. " 2433 2434 #~ msgid "" 2435 #~ "These ratings will be displayed to users who have not purchased that " 2436 #~ "content yet as a quality indicator." 2437 #~ msgstr "" 2438 #~ "Diese Bewertungen werden Nutzern, die den Inhalt noch nicht gekauft " 2439 #~ "haben, als Qualitätsindikator angezeigt." 2440 2441 #~ msgid "Offering of Gift Cards for Time Passes" 2442 #~ msgstr "Anbieten von Geschenkgutscheinen für Zeitpässe" 2443 2444 #~ msgid "" 2445 #~ "Please follow these two steps to offer gift cards for time passes. A user " 2446 #~ "will be able to purchase a voucher for a time pass, which he can give " 2447 #~ "away as a present. The receiver can then redeem this voucher code and " 2448 #~ "will get access to the purchased time pass." 2449 #~ msgstr "" 2450 #~ "Bitte folgen Sie diesen beiden Schritten, um Geschenkgutscheine für " 2451 #~ "Zeitpässe anzuzeigen. Ein Nutzer kann dann einen Gutschein für einen " 2452 #~ "Zeitpass kaufen, den er verschenken kann. Der Empfänger kann diesen " 2453 #~ "Gutschein dann einlösen und erhält Zugriff auf den gekauften Zeitpass." 2454 2455 #~ msgid "Step 1: Display Gift Cards" 2456 #~ msgstr "Schritt 1: Anzeigen von Geschenkgutscheinen" 2457 2458 #~ msgid "Use the shortcode '[laterpay_gift_card]' to render a gift card." 2459 #~ msgstr "" 2460 #~ "Verwenden Sie den Shortcode '[laterpay_gift_card]', um Geschenkgutscheine " 2461 #~ "anzuzeigen." 2462 2463 #~ msgid "" 2464 #~ "If you add the parameter 'id', you can offer a gift card for a specific " 2465 #~ "time pass. If you don't provide an id, gift cards for all time passes are " 2466 #~ "rendered." 2467 #~ msgstr "" 2468 #~ "Wenn Sie zusätzlich den Parameter 'id' angeben, können Sie einen " 2469 #~ "Geschenkgutschein für einen bestimmten Zeitpass anzeigen. <br>\n" 2470 #~ "Wenn Sie keine ID angeben, werden Geschenkgutscheine für alle vorhandenen " 2471 #~ "Zeitpässe angezeigt." 2472 2473 #~ msgid "" 2474 #~ "You can find the id of each time pass in the <a href=\"admin.php?" 2475 #~ "page=laterpay-pricing-tab#lp_time-passes\">pricing tab</a> next to the " 2476 #~ "respective time pass." 2477 #~ msgstr "" 2478 #~ "Sie finden die ID jedes Zeitpasses im \n" 2479 #~ "<a href=\"admin.php?page=laterpay-pricing-tab#lp_time-passes\">Tab " 2480 #~ "Preise</a> neben dem jeweiligen Zeitpass." 2481 2482 #~ msgid "or" 2483 #~ msgstr "oder" 2484 2485 #~ msgid "Step 2: Add Option to Redeem Vouchers" 2486 #~ msgstr "Schritt 2: Einlösen von Gutschein-Codes ermöglichen" 2487 2488 #~ msgid "" 2489 #~ "You can render a form where your users can enter a voucher code with the " 2490 #~ "shortcode '[laterpay_redeem_voucher]'." 2491 #~ msgstr "" 2492 #~ "Mit dem Shortcode '[laterpay_redeem_voucher]' können Sie ein Formular " 2493 #~ "anzeigen, mit dem Nutzer Gutschein-Codes einlösen können." 2494 2495 #~ msgid "Offer of Paid Content within (Free) Posts" 2496 #~ msgstr "Anbieten von Bezahlinhalten in (kostenlosen) Beiträgen" 2497 2498 #~ msgid "Offer of Additional Paid Content" 2499 #~ msgstr "Anbieten zusätzlicher Bezahlinhalte" 2500 2501 #~ msgid "" 2502 #~ "Insert shortcode [laterpay_premium_download] into a post to render a box " 2503 #~ "for selling additional paid content." 2504 #~ msgstr "" 2505 #~ "Fügen Sie den Shortcode [laterpay_premium_download] in einen Beitrag ein, " 2506 #~ "um dort eine Box zum Verkaufen zusätzlicher Bezahlinhalte anzuzeigen." 2507 2508 #~ msgid "" 2509 #~ "[laterpay_premium_download target_post_id=\"<dfn>127</dfn>\" " 2510 #~ "target_post_title=\"<dfn>Event video footage</dfn>\" content_type=" 2511 #~ "\"<dfn>video</dfn>\" teaser_image_path=\"<dfn>/uploads/images/concert-" 2512 #~ "video-still.jpg</dfn>\" heading_text=\"<dfn>Video footage of concert</dfn>" 2513 #~ "\" description_text=\"<dfn>Full HD video of the entire concert, including " 2514 #~ "behind the scenes action.</dfn>\"]" 2515 #~ msgstr "" 2516 #~ "[laterpay_premium_download target_post_id=\"<dfn>127</dfn>\" " 2517 #~ "target_post_title=\"<dfn>Event video footage</dfn>\" content_type=" 2518 #~ "\"<dfn>video</dfn>\" teaser_image_path=\"<dfn>/uploads/images/concert-" 2519 #~ "video-still.jpg</dfn>\" heading_text=\"<dfn>Video footage of concert</dfn>" 2520 #~ "\" description_text=\"<dfn>Full HD video of the entire concert, including " 2521 #~ "behind the scenes action.</dfn>\"]" 2522 2523 #~ msgid "The ID of the post that contains the paid content." 2524 #~ msgstr "Die ID des Beitrags, der den Bezahlinhalt enthält." 2525 2526 #~ msgid "" 2527 #~ "Page IDs are unique within a WordPress blog and should thus be used " 2528 #~ "instead of the target_post_title.<br> If both target_post_id and " 2529 #~ "target_post_title are provided, the target_post_title will be ignored." 2530 #~ msgstr "" 2531 #~ "Jede Page ID kommt innerhalb eines WordPress Blogs nur einmal vor. Daher " 2532 #~ "sollte target_post_id anstelle von target_post_title verwendet werden." 2533 #~ "<br> Wenn sowohl target_post_id als auch target_post_title angegeben " 2534 #~ "werden, wird target_post_title ignoriert." 2535 2536 #~ msgid "The title of the post that contains the paid content." 2537 #~ msgstr "Der Titel des Beitrags, der den Bezahlinhalt enthält." 2538 2539 #~ msgid "" 2540 #~ "Changing the title of the linked post requires updating the shortcode " 2541 #~ "accordingly." 2542 #~ msgstr "" 2543 #~ "Wenn Sie den Titel eines verknüpften Beitrags ändern, müssen Sie auch den " 2544 #~ "Shortcode aktualisieren." 2545 2546 #~ msgid "Content type of the linked content." 2547 #~ msgstr "Art des verknüpften Inhaltes." 2548 2549 #~ msgid "" 2550 #~ "Choose between 'audio', 'video', 'text', 'gallery', and 'file' to display " 2551 #~ "the corresponding default teaser image provided by the plugin." 2552 #~ msgstr "" 2553 #~ "Wählen Sie zwischen 'audio', 'video', 'text', 'gallery' und 'file', um " 2554 #~ "das entsprechende Standard-Vorschaubild anzuzeigen." 2555 2556 #~ msgid "" 2557 #~ "Path to a 300 x 300 px image that should be used instead of the default " 2558 #~ "LaterPay teaser image." 2559 #~ msgstr "" 2560 #~ "Pfad zu einem Bild der Größe 300 x 300 px, das anstelle des Standard-" 2561 #~ "Vorschaubildes verwendet werden soll." 2562 2563 #~ msgid "" 2564 #~ "Text that should be displayed as heading in the box rendered by the " 2565 #~ "shortcode. The heading is limited to one line." 2566 #~ msgstr "" 2567 #~ "Text, der als Überschrift in der Shortcode-Box angezeigt werden soll. Die " 2568 #~ "Überschrift ist auf eine Zeile begrenzt." 2569 2570 #~ msgid "Text that provides additional information on the paid content." 2571 #~ msgstr "Text, der den Bezahlinhalt näher beschreibt." 2572 2573 #~ msgid "Alignment of Additional Paid Content Boxes" 2574 #~ msgstr "Ausrichtung mehrerer Shortcode-Boxen" 2575 2576 #~ msgid "" 2577 #~ "Enclose multiple [laterpay_premium_download] shortcodes in a " 2578 #~ "[laterpay_box_wrapper] shortcode to align them in a three-column layout." 2579 #~ msgstr "" 2580 #~ "Wenn Sie mehrere [laterpay_premium_download]-Shortcodes zwischen " 2581 #~ "[laterpay_box_wrapper] und [/laterpay_box_wrapper] einschließen, werden " 2582 #~ "die Shortcode-Boxen in einem Drei-Spalten-Layout ausgerichtet." 2583 2584 #~ msgid "" 2585 #~ "[laterpay_box_wrapper]<dfn>[laterpay_premium_download …]" 2586 #~ "[laterpay_premium_download …]</dfn>[/laterpay_box_wrapper]" 2587 #~ msgstr "" 2588 #~ "[laterpay_box_wrapper]<dfn>[laterpay_premium_download …]" 2589 #~ "[laterpay_premium_download …]</dfn>[/laterpay_box_wrapper]" 2590 2591 #~ msgid "%s : <code>%s</code> not found" 2592 #~ msgstr "%s : <code>%s</code> nicht gefunden" 2593 2594 #~ msgid "%s Memory Usage" 2595 #~ msgstr "%s Speicherverbrauch" 2596 2597 #~ msgid "Debugger" 2598 #~ msgstr "Debugger" 2599 2600 #~ msgid "Messages<span class=\"lp_badge\">%s</span>" 2601 #~ msgstr "Meldungen<span class=\"lp_badge\">%s</span>" 2602 2603 #~ msgid "" 2604 #~ "Set an <strong>individual price</strong> for this post here.<br>You can " 2605 #~ "also apply <strong>advanced pricing</strong> by defining how the price " 2606 #~ "changes over time." 2607 #~ msgstr "" 2608 #~ "Setzen Sie hier einen <strong>individuellen Preis</strong> für diesen " 2609 #~ "Beitrag.<br>Sie können auch <strong>dynamische Preise</strong> setzen und " 2610 #~ "festlegen, wie Preise sich über die Zeit verändern sollen." 2611 2612 #~ msgid "Global <br> Default Price" 2613 #~ msgstr "Standard-<br>preis" 2614 2615 #~ msgid "" 2616 #~ "The dynamic pricing will <strong>start</strong>, once you have " 2617 #~ "<strong>published</strong> this post." 2618 #~ msgstr "" 2619 #~ "Die dynamische Preissetzung <strong>started</strong>, sobald Sie diesen " 2620 #~ "Beitrag <strong>veröffentlicht</strong> haben." 2621 2622 #~ msgid "\"An Amazing Article\"" 2623 #~ msgstr "Mein bester Post" 2624 2625 #~ msgid "Additional Premium Content" 2626 #~ msgstr "Zusätzlicher Premium-Inhalt" 2627 2628 #~ msgid "" 2629 #~ "<code>%1$s</code> is deprecated, please use <code>%2$s</code>. <code>" 2630 #~ "%1$s</code> will be removed in the next release." 2631 #~ msgstr "" 2632 #~ "<code>%1$s</code> ist veraltet, bitte verwenden Sie <code>%2$s</code>. " 2633 #~ "<code>%1$s</code> wird mit dem nächsten Release entfernt." 2634 2635 #~ msgid "We couldn't find a page for target_post_id=\"%s\" on this site." 2636 #~ msgstr "" 2637 #~ "Wir konnten keine Seite für target_post_id=\"%s\" auf dieser Webseite " 2638 #~ "finden." 2639 2640 #~ msgid "We couldn't find a page for target_post_title=\"%s\" on this site." 2641 #~ msgstr "" 2642 #~ "Wir konnten keine Seite für target_post_title=\"%s\" auf dieser Webseite " 2643 #~ "finden." 2644 2645 #~ msgid "LaterPay has been disabled for the post type of the target page." 2646 #~ msgstr "LaterPay wurde für den Post-Type der Zielseite deaktiviert." 2647 2648 #~ msgid "Buy another gift card" 2649 #~ msgstr "Einen weiteren Gutschein kaufen." 2650 2651 #~ msgid "Thank you very much for rating!" 2652 #~ msgstr "Vielen Dank für Ihre Bewertung!" 2653 2654 #~ msgid "The plugin is in <strong>visible</strong> test mode now." 2655 #~ msgstr "" 2656 #~ "Das Plugin ist jetzt im Test-Modus und für Besucher <strong>sichtbar</" 2657 #~ "strong>." 2658 2659 #~ msgid "The plugin is in <strong>invisible</strong> test mode now." 2660 #~ msgstr "" 2661 #~ "Das Plugin ist jetzt im Test-Modus und für Besucher <strong>nicht " 2662 #~ "sichtbar</strong>." 2663 2664 #~ msgid "Visitors can now rate the posts they have purchased." 2665 #~ msgstr "Besucher können nun gekaufte Beiträge bewerten." 2666 2667 #~ msgid "The rating of posts has been disabled." 2668 #~ msgstr "Die Bewertung gekaufter Beiträge wurde deaktiviert." 2669 2670 #~ msgid "Set price of" 2671 #~ msgstr "Setze den Preis" 2672 2673 #~ msgid "Increase price of" 2674 #~ msgstr "Erhöhe den Preis" 2675 2676 #~ msgid "Reduce price of" 2677 #~ msgstr "Reduziere den Preis" 2678 2679 #~ msgid "Make free" 2680 #~ msgstr "Kostenlos-machen" 2681 2682 #~ msgid "Reset" 2683 #~ msgstr "Zurücksetzen" 2684 2685 #~ msgid "All posts" 2686 #~ msgstr "aller Beiträge" 2687 2688 #~ msgid "The prices of all posts" 2689 #~ msgstr "Die Preise aller Beiträge" 2690 2691 #~ msgid "have been" 2692 #~ msgstr "wurden" 2693 2694 #~ msgid "set" 2695 #~ msgstr "gesetzt" 2696 2697 #~ msgid "%s %s" 2698 #~ msgstr "%s %s" 2699 2700 #~ msgid "decreased" 2701 #~ msgstr "reduziert" 2702 2703 #~ msgid "increased" 2704 #~ msgstr "erhöht" 2705 2706 #~ msgid "made free" 2707 #~ msgstr "kostenlos gemacht" 2708 2709 #~ msgid "reset" 2710 #~ msgstr "zurückgesetzt" 2711 2712 #~ msgid "Bulk operation saved." 2713 #~ msgstr "Bulk Price Operation gespeichert." 2714 2715 #~ msgid "Bulk operation deleted." 2716 #~ msgstr "Bulk Price Operation gelöscht." 2717 2718 #~ msgid "Landing page saved." 2719 #~ msgstr "Zielseite gespeichert." 2720 2721 #~ msgid "Debugger Pane" 2722 #~ msgstr "Debugger" 2723 2724 #~ msgid "LaterPay Debugger" 2725 #~ msgstr "LaterPay Debugger" 2726 2727 #~ msgid "I want to view the LaterPay debugger pane" 2728 #~ msgstr "Ich möchte die LaterPay Debugger Leiste sehen" 2729 2730 #~ msgid "List of allowed addresses to view debug(Ex.: 127.0.0.1,192.168.1.1)" 2731 #~ msgstr "" 2732 #~ "Liste der erlaubten IP-Adressen, die den Debugger sehen können (z. B. " 2733 #~ "127.0.0.1,192.168.1.1)" 2734 2735 #~ msgid "" 2736 #~ "The LaterPay debugger pane contains a lot of helpful plugin- and system-" 2737 #~ "related information\n" 2738 #~ " for debugging the LaterPay plugin and fixing configuration " 2739 #~ "problems.<br>\n" 2740 #~ " When activated, the debugger pane is rendered at the " 2741 #~ "bottom of the screen.<br>\n" 2742 #~ " It is visible both for users from address list<br>\n" 2743 #~ " On a production installation you should switch it off " 2744 #~ "again as soon as you don't need it anymore." 2745 #~ msgstr "" 2746 #~ "Der LaterPay Debugger stellt viele hilfreiche plugin- und systembezogene " 2747 #~ "Informationen bereit.<br>\n" 2748 #~ "Wenn die Debugger-Leiste aktiviert ist, wird sie am unteren " 2749 #~ "Bildschirmrand angezeigt.<br>\n" 2750 #~ "Sie wird für alle Nutzer mit den angegebenen IP-Adressen angezeigt.<br>\n" 2751 #~ "Auf einer Produktivumgebung sollten Sie sie deaktivieren." 2752 2753 #~ msgid "" 2754 #~ "You MUST enable caching compatiblity mode, if you are using a caching " 2755 #~ "solution that caches\n" 2756 #~ " entire HTML pages.<br>\n" 2757 #~ " In caching compatibility mode the plugin works like this:" 2758 #~ "<br>\n" 2759 #~ " It renders paid posts only with the teaser content. This " 2760 #~ "allows to cache them as static files without\n" 2761 #~ " risking to leak the paid content.<br>\n" 2762 #~ " When someone visits the page, it makes an Ajax request to " 2763 #~ "determine, if the visitor has already bought\n" 2764 #~ " the post and replaces the teaser with the full content, " 2765 #~ "if required." 2766 #~ msgstr "" 2767 #~ "Sie MÜSSEN den Caching-Kompatibilitätsmodus aktivieren, wenn Sie eine " 2768 #~ "Caching-Lösung verwenden, die vollständige HTML-Seiten cached.<br>\n" 2769 #~ "Im Caching-Kompatibilitätsmodus arbeitet das Plugin wie folgt:<br>\n" 2770 #~ "Kostenpflichtige Beiträge werden zunächst nur mit dem Teaser " 2771 #~ "ausgeliefert. So können sie als statische Dateien gecached werden, ohne " 2772 #~ "die kostenpflichtigen Inhalte mitauszuliefern.<br>\n" 2773 #~ "Wenn ein Nutzer einen kostenpflichtigen Beitrag besucht, prüft das Plugin " 2774 #~ "über einen Ajax-Request, ob der Nutzer diesen Artikel bereits gekauft " 2775 #~ "hat. Falls ja, wird der Teaser durch den Volltext ersetzt." 2776 2777 #~ msgid "Offering Time Passes on Free Posts" 2778 #~ msgstr "Anzeigen von Zeitpässen bei kostenlosen Beiträgen" 2779 2780 #~ msgid "Time Passes Widget" 2781 #~ msgstr "Zeitpässe" 2782 2783 #~ msgid "I want to display the time passes widget on free and paid posts" 2784 #~ msgstr "" 2785 #~ "Ich möchte Zeitpässe sowohl bei kostenpflichtigen als auch bei " 2786 #~ "kostenlosen Beiträgen anzeigen" 2787 2788 #~ msgid "" 2789 #~ "The LaterPay WordPress plugin automatically generates teaser content for " 2790 #~ "every paid post\n" 2791 #~ " without teaser content.<br>\n" 2792 #~ " While technically possible, setting this parameter to " 2793 #~ "zero is HIGHLY DISCOURAGED.<br>\n" 2794 #~ " If you really, really want to have NO teaser content for " 2795 #~ "a post, enter one space\n" 2796 #~ " into the teaser content editor for that post." 2797 #~ msgstr "" 2798 #~ "Das LaterPay WordPress Plugin erstellt automatisch einen Teaserinhalt für " 2799 #~ "jeden Bezahlinhalt, für den kein Teaser vorhanden ist.<br> Sie können " 2800 #~ "diesen Wert auf 0 setzen, wir raten jedoch dringend davon ab.<br> Wenn " 2801 #~ "Sie wirklich keinen Teaser setzen möchten, fügen Sie bitte ein " 2802 #~ "Leerzeichen in das Teaserfeld des betreffenden Beitrags ein." 2803 2804 #~ msgid "" 2805 #~ "In the appearance tab, you can choose to preview your paid posts with the " 2806 #~ "teaser content plus\n" 2807 #~ " an excerpt of the full content, covered by a semi-" 2808 #~ "transparent overlay.<br>\n" 2809 #~ " The following three parameters give you fine-grained " 2810 #~ "control over the length of this excerpt.<br>\n" 2811 #~ " These settings do not affect the teaser content in any " 2812 #~ "way." 2813 #~ msgstr "" 2814 #~ "Im Tab \"Darstellung\" können Sie wählen, welche Vorschau Ihre Besucher " 2815 #~ "für Bezahlinhalte sehen: Entweder nur einen Teaser-Text plus Kauflink " 2816 #~ "oder einen Teaser-Text plus einen Auszug unter einem halbtransparenten " 2817 #~ "Overlay.<br>\n" 2818 #~ "Mit den folgenden drei Parametern haben Sie die Möglichkeit, die Länge " 2819 #~ "dieses Auszuges anzupassen.<br>\n" 2820 #~ "Diese Einstellungen beeinflussen nicht die Länge des Teaser-Textes." 2821 2822 #~ msgid "" 2823 #~ "You can give logged-in users unlimited access to specific categories " 2824 #~ "depending on their user\n" 2825 #~ " role.<br>\n" 2826 #~ " This feature can be useful e.g. for giving free access to " 2827 #~ "existing subscribers.<br>\n" 2828 #~ " We recommend the plugin 'User Role Editor' for adding " 2829 #~ "custom roles to WordPress." 2830 #~ msgstr "" 2831 #~ "Sie können eingeloggten Nutzern mit einer bestimmten Rolle unbegrenzten " 2832 #~ "Zugang zu einzelnen Kategorien geben.<br>\n" 2833 #~ "Diese Funktionalität kann z. B. nützlich sein, wenn Sie bestehenden " 2834 #~ "Abonnenten Zugriff auf LaterPay-Inhalte geben möchten.<br>\n" 2835 #~ "Wir empfehlen das Plugin \"User Role Editor\", um Nutzerrollen zu " 2836 #~ "WordPress hinzuzufügen." 2837 2838 #~ msgid "%s<small class=\"lp_purchase-link__currency\">%s</small>" 2839 #~ msgstr "%s<small class=\"lp_purchase-link__currency\">%s</small>" 2840 2841 #~ msgid "Preview a short excerpt from the paid post:" 2842 #~ msgstr "Zeige einen kurzen Auszug aus dem kostenpflichtigen Beitrag:" 2843 2844 #~ msgid "Buy now for %s<small class=\"lp_purchase-link__currency\">%s</small>" 2845 #~ msgstr "" 2846 #~ "Jetzt kaufen für %s<small class=\"lp_purchase-link__currency\">%s</small>" 2847 2848 #~ msgid "" 2849 #~ "Buy now for %s<small class=\"lp_purchase-link__currency\">%s</small> and " 2850 #~ "pay later" 2851 #~ msgstr "" 2852 #~ "Jetzt kaufen für %s<small class=\"lp_purchase-link__currency\">%s</small> " 2853 #~ "und später zahlen" 2854 2855 #~ msgid "Buyer Ratings for this Post" 2856 #~ msgstr "Käuferbewertungen" 2857 2858 #~ msgid "Please rate this post:" 2859 #~ msgstr "Bitte bewerten Sie diesen Beitrag:" 2860 2861 #~ msgid "stars" 2862 #~ msgstr "Sterne" 2863 2864 #~ msgid "star" 2865 #~ msgstr "Stern" 2866 2867 #~ msgid "Requests" 2868 #~ msgstr "Requests" 2869 2870 #~ msgid "Cookies<span class=\"lp_badge\">%s</span>" 2871 #~ msgstr "Cookies<span class=\"lp_badge\">%s</span>" 2872 2873 #~ msgid "System Config" 2874 #~ msgstr "System Konfiguration" 2875 2876 #~ msgid "Plugin Config" 2877 #~ msgstr "Plugin Konfiguration" 2878 2879 #~ msgid "yes" 2880 #~ msgstr "ja" 2881 2882 #~ msgid "no" 2883 #~ msgstr "nein" 2884 2885 #~ msgid "none" 2886 #~ msgstr "keine" 2887 2888 #~ msgid "Details" 2889 #~ msgstr "Details" 2890 2891 #~ msgid "" 2892 #~ "Visitors will see the teaser content <strong>instead of the full content</" 2893 #~ "strong> before purchase." 2894 #~ msgstr "" 2895 #~ "Besucher sehen den Teaser <strong>anstelle des Volltextes</strong> vor " 2896 #~ "dem Kauf." 2897 2898 #~ msgid "https://laterpay.net/" 2899 #~ msgstr "https://laterpay.net/" -
laterpay/tags/0.12.0/laterpay.php
r1915145 r1923931 5 5 * Description: Sell digital content with LaterPay. It allows super easy and fast payments from as little as 5 cent up to 149.99 Euro at a 15% fee and no fixed costs. 6 6 * Author: LaterPay GmbH, Mihail Turalenka and Aliaksandr Vahura 7 * Version: 0.1 1.07 * Version: 0.12.0 8 8 * Author URI: https://laterpay.net/ 9 9 * Textdomain: laterpay -
laterpay/tags/0.12.0/views/backend/pricing.php
r1898231 r1923931 717 717 <?php esc_html_e( 'Click the "Create" button to add a Subscription.', 'laterpay' ); ?> 718 718 </p> 719 <p>720 <span style="color: red;" data-icon="n"></span><?php esc_html_e( 'Important: if your LaterPay merchant account has been created before June 2017, please contact sales@laterpay.net to check, if subscriptions are enabled for your account.', 'laterpay' ); ?>721 </p>722 719 </div> 723 720 </div> -
laterpay/trunk/README.txt
r1915145 r1923931 6 6 Requires at least: 4.6 7 7 Tested up to: 4.9.6 8 Stable tag: 0.1 1.08 Stable tag: 0.12.0 9 9 Author URI: https://laterpay.net 10 10 Plugin URI: https://github.com/laterpay/laterpay-wordpress-plugin … … 186 186 187 187 == Changelog == 188 = 0.12.0 (August 13, 2018): Bugfix Release (v1.0 RC32) = 189 * Fix issue with post purchase display. 190 * Fix translation issues. 191 * Add notice on WPEngine environment to bypass page cache. 192 * Update token cookie name to avoid conflicts. 193 * Remove Subscription Notice for pre June 2017 merchants. 194 188 195 = 0.11.0 (July 26, 2018): Bugfix Release (v1.0 RC31) = 189 196 * Fix teaser content display issue. … … 625 632 == Upgrade notice == 626 633 627 = 0. 9.14 ( April 7, 2016 ): Bugfix Release (v1.0 RC7) =628 Fixed various bugs with laterpay functional .634 = 0.12.0 ( August 13, 2018 ): Bugfix Release (v1.0 RC32) = 635 Fixed various bugs with laterpay functionality. 629 636 630 637 == Arbitrary section == -
laterpay/trunk/application/Controller/Frontend/Post.php
r1915145 r1923931 379 379 $content = $event->get_result(); 380 380 381 // Get the value of purchase type ( individual / timepass ) 382 $only_timepass = (bool) get_option( 'laterpay_only_time_pass_purchases_allowed' ); 383 381 384 if ( $event->has_argument( 'post' ) ) { 382 385 $post = $event->get_argument( 'post' ); … … 404 407 if ($user_has_unlimited_access && ! $preview_post_as_visitor ) { 405 408 $access = true; 409 } 410 411 // Check if no individual post type is allowed. 412 if ( $only_timepass ) { 413 414 // Getting list of timepass by post id. 415 $time_passes_list = LaterPay_Helper_TimePass::get_time_passes_list_by_post_id( $post->ID, null, true ); 416 417 // Getting list of subscription by post id. 418 $subscriptions_list = LaterPay_Helper_Subscription::get_subscriptions_list_by_post_id( $post->ID, null, true ); 419 420 // Check if no timepass/subscription exists. 421 if ( ( 0 === count( $time_passes_list ) ) && ( 0 === count( $subscriptions_list ) ) ) { 422 423 // Give access to post. 424 $access = true; 425 } 406 426 } 407 427 -
laterpay/trunk/application/Core/Bootstrap.php
r1898231 r1923931 142 142 // plugin backend 143 143 $controller = self::get_controller( 'Admin_Pricing' ); 144 laterpay_event_dispatcher()->add_subscriber( $controller ); 145 146 $controller = self::get_controller( 'Admin_Notice' ); 144 147 laterpay_event_dispatcher()->add_subscriber( $controller ); 145 148 -
laterpay/trunk/application/Helper/Config.php
r1898231 r1923931 19 19 'live_dialog_api_url' => 'https://web.laterpay.net', 20 20 'merchant_backend_url' => 'https://merchant.laterpay.net/', 21 'token_name' => ' token',21 'token_name' => 'laterpay_token', 22 22 'sandbox_merchant_id' => '984df2b86250447793241a', 23 23 'sandbox_api_key' => '57791c777baa4cea94c4ec074184e06d', … … 63 63 'live_dialog_api_url' => 'https://web.uselaterpay.com', 64 64 'merchant_backend_url' => 'https://web.uselaterpay.com/merchant', 65 'token_name' => ' token',65 'token_name' => 'laterpay_token', 66 66 'sandbox_merchant_id' => 'xswcBCpR6Vk6jTPw8si7KN', 67 67 'sandbox_api_key' => '22627fa7cbce45d394a8718fd9727731', -
laterpay/trunk/application/Module/TimePasses.php
r1898231 r1923931 298 298 299 299 if ( $only_time_passes_allowed ) { 300 $content .= esc_html__( 'Buy a time pass to read the full content.', 'laterpay' ); 301 } 300 301 // Getting list of timepass by post id. 302 $time_passes_list = LaterPay_Helper_TimePass::get_time_passes_list_by_post_id( $post->ID, null, true ); 303 304 // Show message only if any timepass exists 305 if ( 0 !== count( $time_passes_list ) ) { 306 $content .= esc_html__('Buy a time pass to read the full content.', 'laterpay'); 307 } 308 } 309 302 310 $time_pass_event = new LaterPay_Core_Event(); 303 311 $time_pass_event->set_echo( false ); -
laterpay/trunk/asset_sources/scss/laterpay-admin.scss
r1898231 r1923931 37 37 } 38 38 } 39 40 // sytle for wpengine notice button 41 .lp_wpengn_nbtn { 42 background: #1a766d; 43 border: none; 44 color: #fff; 45 padding: 5px; 46 border-radius: 3px; 47 cursor: pointer; 48 display: block; 49 width: 60px; 50 text-align: center; 51 margin-top: 7px; 52 } 53 54 .lp_wpengn_nbtn:link,.lp_wpengn_nbtn:hover,.lp_wpengn_nbtn:hover { 55 color:#fff; 56 } -
laterpay/trunk/built_assets/css/laterpay-admin.css
r1915145 r1923931 1 @font-face{font-family:laterpay-wordpress-icons;font-style:normal;font-weight:400;src:url(../fonts/laterpay-wordpress-icons_v099.eot);src:url(../fonts/laterpay-wordpress-icons_v099.eot?#iefix) format("embedded-opentype"),url(../fonts/laterpay-wordpress-icons_v099.woff) format("woff"),url(../fonts/laterpay-wordpress-icons_v099.ttf) format("truetype"),url(../fonts/laterpay-wordpress-icons_v099.svg#laterpay-wordpress-icons) format("svg")}.lp_vectorIcon,[data-icon]:before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;content:attr(data-icon);font-family:laterpay-wordpress-icons!important;font-style:normal!important;font-variant:normal!important;font-weight:400!important;line-height:1;padding-right:.25em;position:relative;speak:none;text-transform:none!important;top:.1em}#adminmenu div.wp-menu-image.dashicons-laterpay-logo:before{content:'b'!important;font-family:laterpay-wordpress-icons!important;font-size:33px!important;font-weight:400!important;line-height:.6!important;left:-5px!important;position:relative!important}.lp_region_notice[data-icon]:before{color:red}dfn.lp_region_notice{color:#444}.column-post_price{text-align:right;width:75px}.column-post_price span{color:#ababab} 1 @font-face{font-family:laterpay-wordpress-icons;font-style:normal;font-weight:400;src:url(../fonts/laterpay-wordpress-icons_v099.eot);src:url(../fonts/laterpay-wordpress-icons_v099.eot?#iefix) format("embedded-opentype"),url(../fonts/laterpay-wordpress-icons_v099.woff) format("woff"),url(../fonts/laterpay-wordpress-icons_v099.ttf) format("truetype"),url(../fonts/laterpay-wordpress-icons_v099.svg#laterpay-wordpress-icons) format("svg")}.lp_vectorIcon,[data-icon]:before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;content:attr(data-icon);font-family:laterpay-wordpress-icons!important;font-style:normal!important;font-variant:normal!important;font-weight:400!important;line-height:1;padding-right:.25em;position:relative;speak:none;text-transform:none!important;top:.1em}#adminmenu div.wp-menu-image.dashicons-laterpay-logo:before{content:'b'!important;font-family:laterpay-wordpress-icons!important;font-size:33px!important;font-weight:400!important;line-height:.6!important;left:-5px!important;position:relative!important}.lp_region_notice[data-icon]:before{color:red}dfn.lp_region_notice{color:#444}.column-post_price{text-align:right;width:75px}.column-post_price span{color:#ababab}.lp_wpengn_nbtn{background:#1a766d;border:none;color:#fff;padding:5px;border-radius:3px;cursor:pointer;display:block;width:60px;text-align:center;margin-top:7px}.lp_wpengn_nbtn:hover,.lp_wpengn_nbtn:link{color:#fff} -
laterpay/trunk/languages/laterpay-de_DE.po
r1774185 r1923931 3 3 "Project-Id-Version: LaterPay 0.9.6\n" 4 4 "Report-Msgid-Bugs-To: http://wordpress.org/tag/laterpay\n" 5 "POT-Creation-Date: 201 7-11-23 12:43+0000\n"6 "PO-Revision-Date: 201 7-11-23 12:58+0000\n"5 "POT-Creation-Date: 2018-08-01 15:37+0530\n" 6 "PO-Revision-Date: 2018-08-01 15:51+0530\n" 7 7 "Last-Translator: lpadmin <twoldrich@laterpay.net>\n" 8 8 "Language-Team: German\n" 9 "Language: de-DE\n" 10 "Plural-Forms: nplurals=2; plural=n != 1\n" 9 "Language: de_DE\n" 11 10 "MIME-Version: 1.0\n" 12 11 "Content-Type: text/plain; charset=UTF-8\n" 13 12 "Content-Transfer-Encoding: 8bit\n" 13 "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 14 "X-Poedit-SourceCharset: UTF-8\n" 15 "X-Generator: Loco - https://localise.biz/\n"15 "X-Generator: Poedit 1.8.7.1\n" 16 16 "X-Poedit-Basepath: ..\n" 17 17 "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;" … … 20 20 "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;" 21 21 "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n" 22 "X-Loco-Target-Locale: de_DE\n" 22 23 "X-Poedit-SearchPath-0: .\n" 23 "X-Loco-Target-Locale: de_DE" 24 25 #: views/backend/appearance.php:352 26 msgid "Hide Free Posts" 27 msgstr "" 28 29 #: views/backend/appearance.php:354 30 msgid "Hide free posts from homepage feature is" 31 msgstr "" 32 33 #: application/Controller/Admin.php:274 24 25 #: built_assets/js/vendor/velocity.min.js:3 26 msgid "translateX" 27 msgstr "" 28 29 #: built_assets/js/vendor/velocity.min.js:3 30 msgid "translateY" 31 msgstr "" 32 33 #: built_assets/js/vendor/velocity.min.js:3 34 msgid "skewX" 35 msgstr "" 36 37 #: built_assets/js/vendor/velocity.min.js:3 38 msgid "skewY" 39 msgstr "" 40 41 #: built_assets/js/vendor/velocity.min.js:3 42 msgid "scale" 43 msgstr "" 44 45 #: built_assets/js/vendor/velocity.min.js:3 46 msgid "scaleX" 47 msgstr "" 48 49 #: built_assets/js/vendor/velocity.min.js:3 50 msgid "scaleY" 51 msgstr "" 52 53 #: built_assets/js/vendor/velocity.min.js:3 54 msgid "rotateZ" 55 msgstr "" 56 57 #: application/Compatibility/Migrate.php:54 58 msgid "Your laterpay data needs to be migrated. Click" 59 msgstr "" 60 61 #: application/Compatibility/Migrate.php:55 62 msgid "here" 63 msgstr "" 64 65 #: application/Compatibility/Migrate.php:56 66 msgid "to migrate data." 67 msgstr "" 68 69 #: application/Compatibility/Migrate.php:77 70 msgid "Migrating Data" 71 msgstr "" 72 73 #: application/Compatibility/Migrate.php:78 74 msgid "Migrating Subscriptions" 75 msgstr "" 76 77 #: application/Compatibility/Migrate.php:79 78 msgid "Migrating Timepasses." 79 msgstr "" 80 81 #: application/Compatibility/Migrate.php:80 82 msgid "Migrating Category Prices." 83 msgstr "" 84 85 #: application/Compatibility/Migrate.php:81 86 msgid "Migration Completed." 87 msgstr "" 88 89 #: application/Controller/Admin.php:69 application/Controller/Admin.php:83 90 #: application/Controller/Admin.php:93 91 msgid "LaterPay Plugin Settings" 92 msgstr "LaterPay-Plugin-Einstellungen" 93 94 #: application/Controller/Admin.php:267 95 msgid "LaterPay" 96 msgstr "LaterPay" 97 98 #: application/Controller/Admin.php:268 34 99 msgid "" 35 100 "\n" … … 49 114 "adjust prices automatically over time.<br>\n" 50 115 " <br>\n" 51 " For example, you could sell a \"breaking news\" post for 0."52 " 49 (high interest within the first 24 hours)\n"53 " and automatically reduce the price to 0.05 on the second day."54 " \n"116 " For example, you could sell a \"breaking news\" post for " 117 "0.49 (high interest within the first 24 hours)\n" 118 " and automatically reduce the price to 0.05 on the second " 119 "day.\n" 55 120 " </p>\n" 56 121 " <p>\n" … … 68 133 " <p>\n" 69 134 " <strong>Pay Later</strong><br>\n" 70 " If you choose to sell your content as <strong>Pay "71 " Later</strong>, a user pays the purchased content <strong>later</strong>."72 " The purchase is added to his LaterPay invoice and he has to log in to"73 " LaterPayand pay, once his invoice has reached 5.00 (EUR or USD).<br>\n"135 " If you choose to sell your content as <strong>Pay Later</" 136 "strong>, a user pays the purchased content <strong>later</strong>. The " 137 "purchase is added to his LaterPay invoice and he has to log in to LaterPay " 138 "and pay, once his invoice has reached 5.00 (EUR or USD).<br>\n" 74 139 " LaterPay <strong>recommends</strong> Pay Later for all " 75 "prices up to 5.00 as they deliver the <strong>best purchase "76 " experience</strong> for your users.<br>\n"77 " PPU is possible for prices between (including) <strong>0. "78 " 05</strong> and (including) <strong>5.00</strong>.\n"140 "prices up to 5.00 as they deliver the <strong>best purchase experience</" 141 "strong> for your users.<br>\n" 142 " PPU is possible for prices between (including) <strong>0.05</" 143 "strong> and (including) <strong>5.00</strong>.\n" 79 144 " </p>\n" 80 145 " <p>\n" … … 83 148 "has to <strong>log in</strong> to LaterPay and <strong>pay</strong> for your " 84 149 "content <strong>immediately</strong>.<br>\n" 85 " Pay Now are especially suitable for higher-value content and"86 " / or content that immediately occasions costs (e. g. license fees for a "150 " Pay Now are especially suitable for higher-value content " 151 "and / or content that immediately occasions costs (e. g. license fees for a " 87 152 "video stream).<br>\n" 88 " Pay Now are possible for prices between (including) <strong>"89 " 1.49 € (in Europe) / $ 1.99 (in the U.S.)</strong> and (including) <strong>"90 " 149.99</strong>.\n"153 " Pay Now are possible for prices between (including) " 154 "<strong>1.49 € (in Europe) / $ 1.99 (in the U.S.)</strong> and (including) " 155 "<strong>149.99</strong>.\n" 91 156 " </p>" 92 157 msgstr "" 93 158 94 #: application/Controller/Admin.php:323 159 #: application/Controller/Admin.php:316 views/backend/pricing.php:58 160 msgid "Global Default Price" 161 msgstr "Allgemeiner Standardpreis" 162 163 #: application/Controller/Admin.php:317 95 164 msgid "" 96 165 "\n" … … 98 167 " The global default price is used for all posts, for which " 99 168 "no\n" 100 " category default price or individual price has been set. <br>"101 " \n"169 " category default price or individual price has been set." 170 "<br>\n" 102 171 " Accordingly, setting the global default price to 0.00 makes\n" 103 172 " all articles free, for which no category default price or\n" … … 106 175 msgstr "" 107 176 108 #: application/Controller/Admin.php:336 177 #: application/Controller/Admin.php:329 views/backend/pricing.php:141 178 msgid "Category Default Prices" 179 msgstr "Kategoriespezifische Standardpreise" 180 181 #: application/Controller/Admin.php:330 109 182 msgid "" 110 183 "\n" … … 118 191 "should\n" 119 192 " be effective.<br>\n" 120 " For example, if you have set a global default price of 0.15,"121 " \n"193 " For example, if you have set a global default price of " 194 "0.15,\n" 122 195 " but a post belongs to a category with a category default " 123 196 "price\n" … … 126 199 msgstr "" 127 200 128 #: application/Controller/Admin.php:353 201 #: application/Controller/Admin.php:346 202 msgid "Currency" 203 msgstr "Währung" 204 205 #: application/Controller/Admin.php:347 129 206 msgid "" 130 207 "\n" … … 142 219 msgstr "" 143 220 144 #: application/Controller/Admin.php:366 221 #: application/Controller/Admin.php:359 views/backend/pricing.php:354 222 msgid "Time Passes" 223 msgstr "Zeitpässe" 224 225 #: application/Controller/Admin.php:360 145 226 msgid "" 146 227 "\n" … … 160 241 " <p>\n" 161 242 " The <strong>validity period</strong> of a time pass starts " 162 "with the <strong>purchase</strong> and is defined for a <strong> "163 " continuous</strong> use – i.e. it doesn't matter, if a user is on your"164 " website during the entire validity period. After a time pass has expired,"165 " the access to the covered content is automatically refused. Please note:"166 " Access to pages which are <strong>still open</strong> when a pass expires"167 " will be refused only after <strong>reloading</strong> the respective page."168 " <strong>Any files</strong> (images, documents, presentations...), that were"169 " downloaded during the validity period, can still be used after the access"170 " has expired – but the user will <strong>not</strong> be able to <strong>"171 " download them </strong> without purchasing again.\n"243 "with the <strong>purchase</strong> and is defined for a <strong>continuous</" 244 "strong> use – i.e. it doesn't matter, if a user is on your website during " 245 "the entire validity period. After a time pass has expired, the access to the " 246 "covered content is automatically refused. Please note: Access to pages which " 247 "are <strong>still open</strong> when a pass expires will be refused only " 248 "after <strong>reloading</strong> the respective page. <strong>Any files</" 249 "strong> (images, documents, presentations...), that were downloaded during " 250 "the validity period, can still be used after the access has expired – but " 251 "the user will <strong>not</strong> be able to <strong>download them </" 252 "strong> without purchasing again.\n" 172 253 " </p>\n" 173 254 " <p>\n" … … 194 275 msgstr "" 195 276 196 #: application/Controller/Admin.php:3 92277 #: application/Controller/Admin.php:386 197 278 msgid "Time Pass Vouchers" 198 279 msgstr "" 199 280 200 #: application/Controller/Admin.php:3 93281 #: application/Controller/Admin.php:387 201 282 msgid "" 202 283 "\n" … … 204 285 " You can create any number of voucher codes for each time " 205 286 "pass. A voucher code allows one (or multiple) user(s) to purchase a time " 206 "pass for a reduced price. A user can enter a voucher code right <strong>"207 " below the time passes</strong> by clicking <strong>\"I have a"208 " voucher\"</strong>. If the entered code is a valid voucher code, the price "209 " of therespective time pass will be reduced.<br>\n"210 " A voucher code can be used <strong>any number of "211 " times</strong> and is <strong>not linked</strong> to a specific user. If you"212 " wantto invalidate a time pass voucher code, you can simply delete it.<br>\n"287 "pass for a reduced price. A user can enter a voucher code right " 288 "<strong>below the time passes</strong> by clicking <strong>\"I have a voucher" 289 "\"</strong>. If the entered code is a valid voucher code, the price of the " 290 "respective time pass will be reduced.<br>\n" 291 " A voucher code can be used <strong>any number of times</" 292 "strong> and is <strong>not linked</strong> to a specific user. If you want " 293 "to invalidate a time pass voucher code, you can simply delete it.<br>\n" 213 294 " <strong>Deleting</strong> a voucher code will <strong>not " 214 295 "affect</strong> the validity of time passes which have already been " … … 225 306 "purchase the respective time pass for 0.00.<br>\n" 226 307 " If you enter a price of e.g. '0.20', entering this " 227 "voucher code will change the price of the respective time pass to 0.20.</ li>"228 " \n"308 "voucher code will change the price of the respective time pass to 0.20.</" 309 "li>\n" 229 310 " <li>Click the 'Save' button.</li>\n" 230 311 " </ul>" 231 312 msgstr "" 232 313 233 #: application/Controller/Admin.php:422 314 #: application/Controller/Admin.php:415 315 msgid "Preview Mode" 316 msgstr "Vorschau für" 317 318 #: application/Controller/Admin.php:416 234 319 msgid "" 235 320 "\n" … … 259 344 msgstr "" 260 345 261 #: application/Controller/Admin.php:446 346 #: application/Controller/Admin.php:439 347 msgid "Purchase Button Position" 348 msgstr "Position des LaterPay Buttons" 349 350 #: application/Controller/Admin.php:440 262 351 msgid "" 263 352 "\n" … … 279 368 msgstr "" 280 369 281 #: application/Controller/Admin.php:463 370 #: application/Controller/Admin.php:456 371 msgid "Time Pass Position" 372 msgstr "Positionierung von Zeitpässen" 373 374 #: application/Controller/Admin.php:457 282 375 msgid "" 283 376 "\n" … … 301 394 msgstr "" 302 395 303 #: application/Controller/Admin.php:490 396 #: application/Controller/Admin.php:483 397 msgid "API Credentials" 398 msgstr "API Zugangsdaten" 399 400 #: application/Controller/Admin.php:484 304 401 msgid "" 305 402 "\n" … … 354 451 " Due to legal reasons, we can email you those credentials " 355 452 "only\n" 356 " once we have received a <strong>signed merchant "357 " contract</strong>\n"358 " including <strong>all necessary identification "359 " documents</strong>.<br>\n"453 " once we have received a <strong>signed merchant contract</" 454 "strong>\n" 455 " including <strong>all necessary identification documents</" 456 "strong>.<br>\n" 360 457 " <a href=\"https://www.laterpay.net/how-to-become-a-content-" 361 458 "provider\" target=\"blank\">Visit our website to read more about how to " … … 364 461 msgstr "" 365 462 366 #: application/Controller/Admin.php:538 463 #: application/Controller/Admin.php:531 464 msgid "Plugin Mode" 465 msgstr "Plugin-Modus" 466 467 #: application/Controller/Admin.php:532 367 468 msgid "" 368 469 "\n" … … 376 477 "are\n" 377 478 " only simulated and not actually processed.<br>\n" 378 " The plugin will <em>only</em> be visible to admin users,"379 " \n"479 " The plugin will <em>only</em> be visible to admin " 480 "users,\n" 380 481 " not to visitors.<br>\n" 381 482 " This is the <strong>default</strong> setting after " … … 408 509 msgstr "" 409 510 410 #: application/Controller/Admin/Appearance.php:284 411 #: application/Controller/Admin/Appearance.php:293 412 msgid "Free posts with premium content now hided from the homepage." 413 msgstr "" 414 415 #: application/Core/Logger/Handler/WordPress.php:143 416 #, php-format 417 msgid "Plugin Hooks<span class=\"lp_badge\">%s</span>" 418 msgstr "" 419 420 #. Description of the plugin 421 msgid "" 422 "Sell digital content with LaterPay. It allows super easy and fast payments " 423 "from as little as 5 cent up to 149.99 Euro at a 15% fee and no fixed costs." 424 msgstr "" 425 426 #. URI of the plugin 427 msgid "https://github.com/laterpay/laterpay-wordpress-plugin" 428 msgstr "" 429 430 #. Author of the plugin 431 msgid "LaterPay GmbH, Mihail Turalenka and Aliaksandr Vahura" 432 msgstr "" 433 434 #: views/backend/appearance.php:43 435 msgid "Teaser + Purchase Link" 436 msgstr "Teaser + Kauflink" 437 438 #: laterpay.php:39 439 msgid "Unexpected error during plugin init" 440 msgstr "Unerwarteter Fehler während Plugin-Initialisierung" 441 442 #: views/backend/options.php:10 443 msgid "You don't have sufficient permissions to manage options for this site." 444 msgstr "" 445 "Sie haben nicht die notwendigen Berechtigungen, um die Einstellungen für " 446 "diese Seite zu verwalten." 447 448 #: views/backend/account.php:21 views/backend/pricing.php:19 449 #: views/backend/appearance.php:19 450 msgid "Test mode" 451 msgstr "Test-Modus" 452 453 #: views/backend/account.php:22 views/backend/pricing.php:20 454 #: views/backend/appearance.php:20 455 msgid "Earn money in <i>live mode</i>" 456 msgstr "Verdienen Sie Geld im <i>Live-Modus</i>" 457 458 #: views/backend/account.php:32 459 msgid "The LaterPay plugin is in" 460 msgstr "Das LaterPay Plugin ist im" 461 462 #: views/backend/account.php:48 463 msgid "mode." 464 msgstr "Modus." 465 466 #: views/backend/account.php:52 467 msgid "It is invisible" 468 msgstr "Es ist für Besucher nicht sichtbar" 469 470 #: views/backend/account.php:69 471 msgid "visible to visitors." 472 msgstr "sichtbar." 473 474 #: views/backend/account.php:77 475 msgid "Sandbox Environment" 476 msgstr "Sandbox" 477 478 #: views/backend/account.php:80 479 msgid "for testing with simulated payments" 480 msgstr "zu Testzwecken mit simulierten Zahlungen" 481 482 #: views/backend/account.php:99 483 msgid "Paste Sandbox Merchant ID here" 484 msgstr "Sandbox Merchant ID hier einfügen" 485 486 #: views/backend/account.php:100 views/backend/account.php:156 487 msgid "Merchant ID" 488 msgstr "Merchant ID" 489 490 #: views/backend/account.php:119 491 msgid "Paste Sandbox API Key here" 492 msgstr "Sandbox API Key hier einfügen" 493 494 #: views/backend/account.php:120 views/backend/account.php:176 495 msgid "API Key" 496 msgstr "API Key" 497 498 #: views/backend/account.php:133 499 msgid "Live Environment" 500 msgstr "Live" 501 502 #: views/backend/account.php:136 503 msgid "for processing real financial transactions" 504 msgstr "Produktivumgebung für echte Käufe und Zahlungen" 505 506 #: views/backend/account.php:155 507 msgid "Paste Live Merchant ID here" 508 msgstr "Live Merchant ID hier einfügen" 509 510 #: views/backend/account.php:175 511 msgid "Paste Live API Key here" 512 msgstr "Live API Key hier einfügen" 513 514 #: views/backend/account.php:185 515 msgid "Request Live API Credentials" 516 msgstr "Live API Zugangsdaten anfordern" 517 518 #: views/backend/account.php:195 519 msgid "Region and Currency" 520 msgstr "Ländergruppe und Währung" 521 522 #: views/backend/account.php:197 523 msgid "Select the region for your LaterPay merchant account" 524 msgstr "Wählen Sie die Ländergruppe Ihres LaterPay Händlerkontos aus" 525 526 #: views/backend/account.php:201 527 msgid "" 528 "Is the selling company or person based in Europe or in the United States?<br>" 529 "\n" 530 " If you select 'Europe', all prices will be displayed " 531 "and charged in Euro (EUR), and the plugin will connect to the LaterPay " 532 "Europe platform.<br>\n" 533 " If you select 'United States', all prices will be " 534 "displayed and charged in U.S. Dollar (USD), and the plugin will connect to " 535 "the LaterPay U.S. platform. \n" 536 " " 537 msgstr "" 538 "Hat das verkaufende Unternehmen seinen Sitz in Europa oder in den USA?<br>\n" 539 "Wenn Sie \"Europa\" auswählen, werden alle Preise in Euro (EUR) angezeigt " 540 "und das Plugin verwendet die LaterPay-Europa-Plattform.\n" 541 "Wenn Sie \"USA\" auswählen, werden alle Preise in Dollar (USD) angezeigt und " 542 "das Plugin verwendet die LaterPay-USA-Plattform." 543 544 #: views/backend/account.php:213 545 msgid "Europe (EUR)" 546 msgstr "Europa (EUR)" 547 548 #: views/backend/account.php:214 549 msgid "United States (USD)" 550 msgstr "USA (USD)" 551 552 #: views/backend/account.php:220 553 msgid "" 554 "<b>Important:</b> The minimum value for \"Pay Now\" prices in the U.S. " 555 "region is <b>$1.99</b>.<br>\n" 556 " If you have already set \"Pay Now\" prices lower " 557 "than 1.99, make sure to change them before you switch to the U.S. region.<br>" 558 "\n" 559 " If you haven't done any configuration yet, you can " 560 "safely switch the region without further adjustments. \n" 561 " " 562 msgstr "" 563 "<b>Wichtig:</b> Der Mindestpreis für \"Sofort Zahlen\"-Käufe für die USA " 564 "beträgt <b>$1,99</b>.<br>\n" 565 "Wenn Sie bereits \"Sofort Zahlen\"-Preise kleiner als 1,99 gesetzt haben, " 566 "ändern Sie diese bitte, bevor Sie zur Region USA wechseln.<br>\n" 567 "Wenn Sie noch keine Konfiguration vorgenommen haben, können Sie ohne weitere " 568 "Schritte die Region wechseln." 569 570 #: views/backend/pricing.php:28 571 msgid "Posts can" 572 msgstr "Beiträge können" 573 574 #: views/backend/pricing.php:45 575 msgid "cannot be purchased individually." 576 msgstr "können nicht einzeln gekauft werden." 577 578 #: views/backend/pricing.php:50 application/Controller/Admin.php:322 579 msgid "Global Default Price" 580 msgstr "Allgemeiner Standardpreis" 581 582 #: views/backend/pricing.php:59 583 msgid "Every post costs" 584 msgstr "Jeder Artikel kostet" 585 586 #: views/backend/pricing.php:79 587 msgid "Edit Global Default Price" 588 msgstr "Allgemeinen Standardpreis bearbeiten" 589 590 #: views/backend/pricing.php:86 views/backend/pricing.php:192 591 #: views/backend/pricing.php:294 views/backend/partials/subscription.php:63 592 #: views/backend/partials/time-pass.php:63 593 #: application/Controller/Admin/Post/Column.php:42 594 msgid "Price" 595 msgstr "Preis" 596 597 #: views/backend/pricing.php:100 views/backend/pricing.php:205 598 #: views/backend/pricing.php:307 599 msgid "Revenue Model" 600 msgstr "Erlösmodell" 601 602 #: views/backend/pricing.php:107 603 msgid "Pay Later" 604 msgstr "Später zahlen" 605 606 #: views/backend/pricing.php:112 views/backend/pricing.php:217 607 #: views/backend/pricing.php:319 views/backend/pricing.php:471 608 #: application/Helper/Pricing.php:1007 609 #: views/backend/partials/post-pricing-form.php:41 610 #: application/Controller/Admin/Post/Column.php:87 611 msgid "Pay Now" 612 msgstr "Sofort zahlen" 613 614 #: views/backend/pricing.php:122 views/backend/pricing.php:227 615 #: views/backend/pricing.php:329 views/backend/pricing.php:361 616 #: views/backend/pricing.php:519 views/backend/pricing.php:560 617 #: views/backend/pricing.php:659 views/backend/pricing.php:691 618 #: views/backend/pricing.php:763 views/backend/appearance.php:184 619 msgid "Save" 620 msgstr "Speichern" 621 622 #: views/backend/pricing.php:123 views/backend/pricing.php:228 623 #: views/backend/pricing.php:330 views/backend/pricing.php:362 624 #: views/backend/pricing.php:520 views/backend/pricing.php:561 625 #: views/backend/pricing.php:660 views/backend/appearance.php:185 626 #: views/frontend/partials/widget/purchase-overlay.php:133 627 msgid "Cancel" 628 msgstr "Abbrechen" 629 630 #: views/backend/pricing.php:133 application/Controller/Admin.php:335 631 msgid "Category Default Prices" 632 msgstr "Kategoriespezifische Standardpreise" 633 634 #: views/backend/pricing.php:135 views/backend/pricing.php:345 635 #: views/backend/pricing.php:544 636 msgid "Create" 637 msgstr "Erstellen" 638 639 #: views/backend/pricing.php:152 views/backend/pricing.php:257 640 msgid "Every post in" 641 msgstr "Jeder Beitrag in" 642 643 #: views/backend/pricing.php:156 views/backend/pricing.php:260 644 msgid "costs" 645 msgstr "kostet" 646 647 #: views/backend/pricing.php:177 648 msgid "Edit Category Default Price" 649 msgstr "Kategoriespezifischen Standardpreis bearbeiten" 650 651 #: views/backend/pricing.php:184 views/backend/pricing.php:286 652 msgid "Category" 653 msgstr "Kategorie" 654 655 #: views/backend/pricing.php:212 views/backend/pricing.php:314 656 #: views/backend/pricing.php:466 application/Module/Purchase.php:294 657 #: application/Helper/Pricing.php:1010 658 #: views/backend/partials/post-pricing-form.php:28 659 #: application/Controller/Admin/Post/Column.php:88 660 msgid "Pay Later" 661 msgstr "Später zahlen" 662 663 #: views/backend/pricing.php:239 664 msgid "Set prices by category" 665 msgstr "Kategoriespezifische Standardpreise setzen" 666 667 #: views/backend/pricing.php:242 668 msgid "" 669 "Category default prices are convenient for selling different categories of " 670 "content at different standard prices.<br>Individual prices can be set when " 671 "editing a post." 672 msgstr "" 673 "Mit kategoriespezifischen Standardpreisen können Sie einen Preis für alle " 674 "Artikel einer Kategorie vergeben. Individuelle Preise können Sie vergeben, " 675 "wenn Sie einen Beitrag bearbeiten oder erstellen." 676 677 #: views/backend/pricing.php:245 678 msgid "Click the \"Create\" button to set a default price for a category." 679 msgstr "" 680 "Klicken Sie auf den \"Erstellen\" Button, um einen Standardpreis für eine " 681 "Kategorie zu setzen." 682 683 #: views/backend/pricing.php:279 684 msgid "Add a Category Default Price" 685 msgstr "Kategoriespezifischen Standardpreis hinzufügen" 686 687 #: views/backend/pricing.php:343 application/Controller/Admin.php:365 688 msgid "Time Passes" 689 msgstr "Zeitpässe" 690 691 #: views/backend/pricing.php:352 views/backend/pricing.php:400 692 msgid "Pass" 693 msgstr "Pass" 694 695 #: views/backend/pricing.php:376 application/Controller/Admin/Pricing.php:71 696 msgid "reduces the price to" 697 msgstr "reduziert den Preis auf" 698 699 #: views/backend/pricing.php:386 application/Controller/Admin/Pricing.php:72 700 msgid "times redeemed." 701 msgstr "Mal eingelöst." 702 703 #: views/backend/pricing.php:418 704 msgid "The pass is valid for " 705 msgstr "Dieser Pass gilt für " 706 707 #: views/backend/pricing.php:427 708 msgid "and grants" 709 msgstr "und gibt" 710 711 #: views/backend/pricing.php:432 views/backend/pricing.php:603 712 #: application/Helper/TimePass.php:174 application/Helper/Subscription.php:67 713 msgid "access to" 714 msgstr "Zugriff auf" 715 716 #: views/backend/pricing.php:449 717 msgid "This pass costs" 718 msgstr "Dieser Pass kostet" 719 720 #: views/backend/pricing.php:457 721 msgid "and the user has to" 722 msgstr "und Nutzer müssen" 723 724 #: views/backend/pricing.php:478 views/backend/pricing.php:634 725 msgid "Title" 726 msgstr "Titel" 727 728 #: views/backend/pricing.php:489 views/backend/pricing.php:645 729 msgid "Description" 730 msgstr "Beschreibung" 731 732 #: views/backend/pricing.php:502 733 msgid "Offer this time pass at a reduced price of" 734 msgstr "Diesen Zeitpass zu einem reduzierten Preis anbieten:" 735 736 #: views/backend/pricing.php:510 737 msgid "Generate voucher code" 738 msgstr "Gutschein-Code erstellen" 739 740 #: views/backend/pricing.php:530 741 msgid "Sell bundles of content" 742 msgstr "Zeitpässe verkaufen" 743 744 #: views/backend/pricing.php:533 745 msgid "" 746 "With Time Passes you can sell time-limited access to a category or your " 747 "entire site. Time Passes do not renew automatically." 748 msgstr "" 749 "Mit Zeitpässen können Sie einen zeitlich begrenzten Zugang zu Kategorien " 750 "oder der gesamten Seite verkaufen. Zeitpässe verlängern sich nicht " 751 "automatisch." 752 753 #: views/backend/pricing.php:536 754 msgid "Click the \"Create\" button to add a Time Pass." 755 msgstr "" 756 "Klicken Sie auf den \"Erstellen\" Button, um einen Zeitpass hinzuzufügen." 757 758 #: views/backend/pricing.php:542 759 msgid "Subscriptions" 760 msgstr "Abos" 761 762 #: views/backend/pricing.php:551 views/backend/pricing.php:571 763 msgid "Sub" 764 msgstr "Abo" 765 766 #: views/backend/pricing.php:589 767 msgid "The subscription costs" 768 msgstr "Das Abo kostet" 769 770 #: views/backend/pricing.php:598 771 msgid ", grants " 772 msgstr ", gibt" 773 774 #: views/backend/pricing.php:621 775 msgid "and renews every" 776 msgstr "und verlängert sich nach" 777 778 #: views/backend/pricing.php:668 779 msgid "Sell subscriptions" 780 msgstr "Abos verkaufen" 781 782 #: views/backend/pricing.php:671 783 msgid "" 784 "Subscriptions work exactly like time passes, with a simple difference: They " 785 "renew automatically." 786 msgstr "" 787 "Abos funktionieren genau wie Zeitpässe, mit einem einfachen Unterschied: Sie " 788 "verlängern sich automatisch." 789 790 #: views/backend/pricing.php:674 791 msgid "Click the \"Create\" button to add a Subscription." 792 msgstr "Klicken Sie auf den \"Erstellen\" Button, um ein Abo hinzuzufügen." 793 794 #: views/backend/pricing.php:677 795 msgid "" 796 "Important: if your LaterPay merchant account has been created before June " 797 "2017, please contact sales@laterpay.net to check, if subscriptions are " 798 "enabled for your account." 799 msgstr "" 800 "Wichtig: Wenn Ihr LaterPay Händlerkonto vor Juni 2017 erstellt wurde, " 801 "kontaktieren Sie bitte sales@laterpay.net um zu prüfen, ob Abos für Ihr " 802 "Konto aktiviert sind." 803 804 #: views/backend/pricing.php:689 805 msgid "Forward users to this URL after they have redeemed a gift card:" 806 msgstr "" 807 "Leiten Sie Nutzer nach dem Einlösen eines Geschenkgutscheins zu dieser URL " 808 "weiter:" 809 810 #: views/backend/pricing.php:696 811 msgid "Bulk Price Editor" 812 msgstr "Bulk Price Editor" 813 814 #: views/backend/pricing.php:745 application/Controller/Admin/Pricing.php:62 815 #: application/Controller/Admin/Pricing.php:567 816 #: application/Controller/Admin/Pricing.php:598 817 msgid "to" 818 msgstr "auf" 819 820 #: views/backend/pricing.php:751 821 #: views/backend/partials/post-pricing-form.php:50 822 msgid "0.00" 823 msgstr "0,00" 824 825 #: views/backend/pricing.php:761 views/backend/pricing.php:771 826 #: application/Controller/Admin/Pricing.php:66 827 msgid "Update Prices" 828 msgstr "Preise aktualisieren" 829 830 #: views/backend/pricing.php:770 application/Controller/Admin/Pricing.php:67 831 msgid "Delete" 832 msgstr "Löschen" 833 834 #: views/backend/appearance.php:29 835 msgid "Content Preview for Paid Posts" 836 msgstr "Vorschau für Bezahlinhalte" 837 838 #: views/backend/appearance.php:52 839 msgid "Teaser + Explanatory Overlay" 840 msgstr "Teaser + erklärendes Overlay" 841 842 #: views/backend/appearance.php:61 843 msgid "Teaser + Purchase Overlay" 844 msgstr "Teaser + Kauf-Overlay" 845 846 #: views/backend/appearance.php:73 847 msgid "Header" 848 msgstr "Header" 849 850 #: views/backend/appearance.php:78 851 msgid "Header background color" 852 msgstr "Hintergrundfarbe Header" 853 854 #: views/backend/appearance.php:86 855 msgid "Header title" 856 msgstr "Überschrift" 857 858 #: views/backend/appearance.php:94 859 msgid "Purchase Options" 860 msgstr "Kaufoptionen" 861 862 #: views/backend/appearance.php:99 863 msgid "Background color" 864 msgstr "Hintergrundfarbe" 865 866 #: views/backend/appearance.php:107 867 msgid "Main text color" 868 msgstr "Schriftfarbe Text" 869 870 #: views/backend/appearance.php:115 871 msgid "Description color text" 872 msgstr "Schriftfarbe Beschreibungen" 873 874 #: views/backend/appearance.php:123 875 msgid "Purchase button background color" 876 msgstr "Hintergrundfarbe Kaufbutton" 877 878 #: views/backend/appearance.php:131 879 msgid "Purchase button text color" 880 msgstr "Schriftfarbe Kaufbutton" 881 882 #: views/backend/appearance.php:139 883 msgid "Link main color" 884 msgstr "Schriftfarbe Links" 885 886 #: views/backend/appearance.php:147 887 msgid "Link hover color" 888 msgstr "Hover-Schriftfarbe Links" 889 890 #: views/backend/appearance.php:155 891 msgid "Footer" 892 msgstr "Footer" 893 894 #: views/backend/appearance.php:160 895 msgid "Show footer" 896 msgstr "Footer anzeigen" 897 898 #: views/backend/appearance.php:168 899 msgid "Footer background color" 900 msgstr "Hintergrundfarbe Footer" 901 902 #: views/backend/appearance.php:178 903 msgid "Preview" 904 msgstr "Vorschau" 905 906 #: views/backend/appearance.php:188 907 msgid "Restore Default Values" 908 msgstr "Standardwerte wiederherstellen" 909 910 #: views/backend/appearance.php:196 911 msgid "Position of the LaterPay Purchase Button" 912 msgstr "Position des LaterPay Buttons" 913 914 #: views/backend/appearance.php:210 views/backend/appearance.php:247 915 msgid "Standard position" 916 msgstr "Standardposition" 917 918 #: views/backend/appearance.php:219 views/backend/appearance.php:256 919 msgid "Custom position" 920 msgstr "Benutzerdefinierte Position" 921 922 #: views/backend/appearance.php:224 923 msgid "" 924 "Call action 'laterpay_purchase_button' in your theme to render the LaterPay " 925 "purchase button at that position." 926 msgstr "" 927 "Rufen Sie die Action 'laterpay_purchase_button' in Ihrem Theme auf, um den " 928 "LaterPay Button an einer Position Ihrer Wahl anzuzeigen." 929 930 #: views/backend/appearance.php:233 931 msgid "Display of LaterPay Time Passes" 932 msgstr "Position der LaterPay Zeitpässe" 933 934 #: views/backend/appearance.php:261 935 msgid "" 936 "Call action 'laterpay_time_passes' in your theme or use the shortcode " 937 "'[laterpay_time_passes]' to show your users the available time passes." 938 msgstr "" 939 "Rufen Sie die Action 'laterpay_time_passes' in Ihrem Theme auf oder " 940 "verwenden Sie den Shortcode '[laterpay_time_passes]', um Ihren Nutzern die " 941 "verfügbaren Zeitpässe anzuzeigen." 942 943 #: views/backend/appearance.php:289 944 msgid "Display of LaterPay Invoice Balance" 945 msgstr "Einbinden der LaterPay Rechnungsanzeige" 946 947 #: views/backend/appearance.php:291 948 msgid "" 949 "Call action 'laterpay_invoice_indicator' in your theme to show your users " 950 "their LaterPay invoice balance." 951 msgstr "" 952 "Rufen Sie die Action 'laterpay_invoice_indicator' in Ihrem Theme auf, um " 953 "Ihren Nutzern deren aktuelle LaterPay Rechnungssumme anzuzeigen." 954 955 #: views/backend/appearance.php:292 956 msgid "" 957 "The LaterPay invoice indicator is served by LaterPay. Its styling can not be " 958 "changed." 959 msgstr "" 960 "Die LaterPay Rechnungsanzeige wird von LaterPay geladen. Ihr Aussehen kann " 961 "nicht verändert werden." 962 963 #: views/backend/appearance.php:302 964 msgid "Display of LaterPay Login / Logout Links" 965 msgstr "Anzeigen von Links zum Ein- und Ausloggen bei LaterPay" 966 967 #: views/backend/appearance.php:304 968 msgid "" 969 "Call action 'laterpay_account_links' in your theme or use the shortcode " 970 "'[laterpay_account_links]' to embed a LaterPay login / logout link in your " 971 "page." 972 msgstr "" 973 "Rufen Sie die Action 'laterpay_account_links' in Ihrem Theme auf oder " 974 "verwenden Sie den Shortcode '[laterpay_account_links]', um einen Link zum " 975 "Ein- und Ausloggen bei LaterPay in Ihre Seite einzubinden." 976 977 #: views/backend/appearance.php:305 978 msgid "" 979 "These links have minimal default styling. Apply own styling by passing " 980 "parameter 'css' the URL of a CSS file with your styles." 981 msgstr "" 982 "Standardmäßig wird der Link nahezu unformatiert angezeigt. Sie können die " 983 "Darstellung des Links ändern, indem Sie im Parameter 'css' den vollständigen " 984 "Pfad zu einer eigenen CSS Datei übergeben." 985 986 #: views/backend/appearance.php:312 987 msgid "Basic Example" 988 msgstr "Einfaches Beispiel" 989 990 #: views/backend/appearance.php:316 991 msgid "Advanced Example" 992 msgstr "Erweitertes Beispiel" 993 994 #: views/backend/appearance.php:323 995 msgid "Rating of Purchased Content" 996 msgstr "Bewertung gekaufter Inhalte" 997 998 #: views/backend/appearance.php:326 999 msgid "Content rating is" 1000 msgstr "Inhaltebewertung ist" 1001 1002 #: views/backend/appearance.php:337 views/backend/appearance.php:365 1003 msgid "on" 1004 msgstr "an" 1005 1006 #: views/backend/appearance.php:337 views/backend/appearance.php:365 1007 msgid "off" 1008 msgstr "aus" 1009 1010 #: views/backend/appearance.php:344 1011 msgid "The opinion of others has a strong influence on buying decisions." 1012 msgstr "" 1013 "Die Meinung anderer Käufer hat einen großen Einfluss auf die " 1014 "Kaufentscheidung." 1015 1016 #: views/backend/appearance.php:345 1017 msgid "" 1018 "Content rating lets users rate your content on a five star scale after " 1019 "purchasing." 1020 msgstr "" 1021 "Mit der Inhaltebewertung können Nutzer Ihre Inhalte nach dem Kauf auf einer " 1022 "Fünf-Sterne-Skala bewerten. " 1023 1024 #: views/backend/appearance.php:346 1025 msgid "" 1026 "These ratings will be displayed to users who have not purchased that content " 1027 "yet as a quality indicator." 1028 msgstr "" 1029 "Diese Bewertungen werden Nutzern, die den Inhalt noch nicht gekauft haben, " 1030 "als Qualitätsindikator angezeigt." 1031 1032 #: views/backend/appearance.php:375 1033 msgid "Offering of Gift Cards for Time Passes" 1034 msgstr "Anbieten von Geschenkgutscheinen für Zeitpässe" 1035 1036 #: views/backend/appearance.php:377 1037 msgid "" 1038 "Please follow these two steps to offer gift cards for time passes. A user " 1039 "will be able to purchase a voucher for a time pass, which he can give away " 1040 "as a present. The receiver can then redeem this voucher code and will get " 1041 "access to the purchased time pass." 1042 msgstr "" 1043 "Bitte folgen Sie diesen beiden Schritten, um Geschenkgutscheine für " 1044 "Zeitpässe anzuzeigen. Ein Nutzer kann dann einen Gutschein für einen " 1045 "Zeitpass kaufen, den er verschenken kann. Der Empfänger kann diesen " 1046 "Gutschein dann einlösen und erhält Zugriff auf den gekauften Zeitpass." 1047 1048 #: views/backend/appearance.php:382 1049 msgid "Step 1: Display Gift Cards" 1050 msgstr "Schritt 1: Anzeigen von Geschenkgutscheinen" 1051 1052 #: views/backend/appearance.php:385 1053 msgid "Use the shortcode '[laterpay_gift_card]' to render a gift card." 1054 msgstr "" 1055 "Verwenden Sie den Shortcode '[laterpay_gift_card]', um Geschenkgutscheine " 1056 "anzuzeigen." 1057 1058 #: views/backend/appearance.php:386 1059 msgid "" 1060 "If you add the parameter 'id', you can offer a gift card for a specific time " 1061 "pass. If you don't provide an id, gift cards for all time passes are " 1062 "rendered." 1063 msgstr "" 1064 "Wenn Sie zusätzlich den Parameter 'id' angeben, können Sie einen " 1065 "Geschenkgutschein für einen bestimmten Zeitpass anzeigen. <br>\n" 1066 "Wenn Sie keine ID angeben, werden Geschenkgutscheine für alle vorhandenen " 1067 "Zeitpässe angezeigt." 1068 1069 #: views/backend/appearance.php:387 1070 msgid "" 1071 "You can find the id of each time pass in the <a href=\"admin.php?" 1072 "page=laterpay-pricing-tab#lp_time-passes\">pricing tab</a> next to the " 1073 "respective time pass." 1074 msgstr "" 1075 "Sie finden die ID jedes Zeitpasses im \n" 1076 "<a href=\"admin.php?page=laterpay-pricing-tab#lp_time-passes\">Tab Preise</a>" 1077 " neben dem jeweiligen Zeitpass." 1078 1079 #: views/backend/appearance.php:392 1080 msgid "or" 1081 msgstr "oder" 1082 1083 #: views/backend/appearance.php:400 1084 msgid "Step 2: Add Option to Redeem Vouchers" 1085 msgstr "Schritt 2: Einlösen von Gutschein-Codes ermöglichen" 1086 1087 #: views/backend/appearance.php:403 1088 msgid "" 1089 "You can render a form where your users can enter a voucher code with the " 1090 "shortcode '[laterpay_redeem_voucher]'." 1091 msgstr "" 1092 "Mit dem Shortcode '[laterpay_redeem_voucher]' können Sie ein Formular " 1093 "anzeigen, mit dem Nutzer Gutschein-Codes einlösen können." 1094 1095 #: views/backend/appearance.php:415 1096 msgid "Offer of Paid Content within (Free) Posts" 1097 msgstr "Anbieten von Bezahlinhalten in (kostenlosen) Beiträgen" 1098 1099 #: views/backend/appearance.php:416 1100 msgid "Offer of Additional Paid Content" 1101 msgstr "Anbieten zusätzlicher Bezahlinhalte" 1102 1103 #: views/backend/appearance.php:418 1104 msgid "" 1105 "Insert shortcode [laterpay_premium_download] into a post to render a box for " 1106 "selling additional paid content." 1107 msgstr "" 1108 "Fügen Sie den Shortcode [laterpay_premium_download] in einen Beitrag ein, um " 1109 "dort eine Box zum Verkaufen zusätzlicher Bezahlinhalte anzuzeigen." 1110 1111 #: views/backend/appearance.php:422 1112 msgid "" 1113 "[laterpay_premium_download target_post_id=\"<dfn>127</dfn>\" " 1114 "target_post_title=\"<dfn>Event video footage</dfn>\" content_type=\"<dfn>" 1115 "video</dfn>\" teaser_image_path=\"<dfn>/uploads/images/concert-video-still." 1116 "jpg</dfn>\" heading_text=\"<dfn>Video footage of concert</dfn>\" " 1117 "description_text=\"<dfn>Full HD video of the entire concert, including " 1118 "behind the scenes action.</dfn>\"]" 1119 msgstr "" 1120 "[laterpay_premium_download target_post_id=\"<dfn>127</dfn>\" " 1121 "target_post_title=\"<dfn>Event video footage</dfn>\" content_type=\"<dfn>" 1122 "video</dfn>\" teaser_image_path=\"<dfn>/uploads/images/concert-video-still." 1123 "jpg</dfn>\" heading_text=\"<dfn>Video footage of concert</dfn>\" " 1124 "description_text=\"<dfn>Full HD video of the entire concert, including " 1125 "behind the scenes action.</dfn>\"]" 1126 1127 #: views/backend/appearance.php:436 1128 msgid "The ID of the post that contains the paid content." 1129 msgstr "Die ID des Beitrags, der den Bezahlinhalt enthält." 1130 1131 #: views/backend/appearance.php:437 1132 msgid "" 1133 "Page IDs are unique within a WordPress blog and should thus be used instead " 1134 "of the target_post_title.<br> If both target_post_id and target_post_title " 1135 "are provided, the target_post_title will be ignored." 1136 msgstr "" 1137 "Jede Page ID kommt innerhalb eines WordPress Blogs nur einmal vor. Daher " 1138 "sollte target_post_id anstelle von target_post_title verwendet werden.<br> " 1139 "Wenn sowohl target_post_id als auch target_post_title angegeben werden, wird " 1140 "target_post_title ignoriert." 1141 1142 #: views/backend/appearance.php:445 1143 msgid "The title of the post that contains the paid content." 1144 msgstr "Der Titel des Beitrags, der den Bezahlinhalt enthält." 1145 1146 #: views/backend/appearance.php:446 1147 msgid "" 1148 "Changing the title of the linked post requires updating the shortcode " 1149 "accordingly." 1150 msgstr "" 1151 "Wenn Sie den Titel eines verknüpften Beitrags ändern, müssen Sie auch den " 1152 "Shortcode aktualisieren." 1153 1154 #: views/backend/appearance.php:454 1155 msgid "Content type of the linked content." 1156 msgstr "Art des verknüpften Inhaltes." 1157 1158 #: views/backend/appearance.php:455 1159 msgid "" 1160 "Choose between 'audio', 'video', 'text', 'gallery', and 'file' to display " 1161 "the corresponding default teaser image provided by the plugin." 1162 msgstr "" 1163 "Wählen Sie zwischen 'audio', 'video', 'text', 'gallery' und 'file', um das " 1164 "entsprechende Standard-Vorschaubild anzuzeigen." 1165 1166 #: views/backend/appearance.php:463 1167 msgid "" 1168 "Path to a 300 x 300 px image that should be used instead of the default " 1169 "LaterPay teaser image." 1170 msgstr "" 1171 "Pfad zu einem Bild der Größe 300 x 300 px, das anstelle des Standard-" 1172 "Vorschaubildes verwendet werden soll." 1173 1174 #: views/backend/appearance.php:471 1175 msgid "" 1176 "Text that should be displayed as heading in the box rendered by the " 1177 "shortcode. The heading is limited to one line." 1178 msgstr "" 1179 "Text, der als Überschrift in der Shortcode-Box angezeigt werden soll. Die " 1180 "Überschrift ist auf eine Zeile begrenzt." 1181 1182 #: views/backend/appearance.php:479 1183 msgid "Text that provides additional information on the paid content." 1184 msgstr "Text, der den Bezahlinhalt näher beschreibt." 1185 1186 #: views/backend/appearance.php:489 1187 msgid "Alignment of Additional Paid Content Boxes" 1188 msgstr "Ausrichtung mehrerer Shortcode-Boxen" 1189 1190 #: views/backend/appearance.php:491 1191 msgid "" 1192 "Enclose multiple [laterpay_premium_download] shortcodes in a " 1193 "[laterpay_box_wrapper] shortcode to align them in a three-column layout." 1194 msgstr "" 1195 "Wenn Sie mehrere [laterpay_premium_download]-Shortcodes zwischen " 1196 "[laterpay_box_wrapper] und [/laterpay_box_wrapper] einschließen, werden die " 1197 "Shortcode-Boxen in einem Drei-Spalten-Layout ausgerichtet." 1198 1199 #: views/backend/appearance.php:496 1200 msgid "" 1201 "[laterpay_box_wrapper]<dfn>[laterpay_premium_download …]" 1202 "[laterpay_premium_download …]</dfn>[/laterpay_box_wrapper]" 1203 msgstr "" 1204 "[laterpay_box_wrapper]<dfn>[laterpay_premium_download …]" 1205 "[laterpay_premium_download …]</dfn>[/laterpay_box_wrapper]" 1206 1207 #: application/Core/Bootstrap.php:56 1208 #, php-format 1209 msgid "%s: <code>%s</code> not found" 1210 msgstr "%s: <code>%s</code> nicht gefunden" 1211 1212 #: application/Core/View.php:82 application/Core/View.php:122 1213 #, php-format 1214 msgid "%s : <code>%s</code> not found" 1215 msgstr "%s : <code>%s</code> nicht gefunden" 1216 1217 #: application/Controller/Admin.php:74 application/Controller/Admin.php:88 1218 #: application/Controller/Admin.php:98 1219 msgid "LaterPay Plugin Settings" 1220 msgstr "LaterPay-Plugin-Einstellungen" 1221 1222 #: application/Controller/Admin.php:273 1223 msgid "LaterPay" 1224 msgstr "LaterPay" 1225 1226 #: application/Controller/Admin.php:352 1227 msgid "Currency" 1228 msgstr "Währung" 1229 1230 #: application/Controller/Admin.php:421 1231 msgid "Preview Mode" 1232 msgstr "Vorschau für" 1233 1234 #: application/Controller/Admin.php:445 1235 msgid "Purchase Button Position" 1236 msgstr "Position des LaterPay Buttons" 1237 1238 #: application/Controller/Admin.php:462 1239 msgid "Time Pass Position" 1240 msgstr "Positionierung von Zeitpässen" 1241 1242 #: application/Controller/Admin.php:489 1243 msgid "API Credentials" 1244 msgstr "API Zugangsdaten" 1245 1246 #: application/Controller/Admin.php:537 1247 msgid "Plugin Mode" 1248 msgstr "Plugin-Modus" 1249 1250 #: application/Controller/Admin.php:712 511 #: application/Controller/Admin.php:683 1251 512 msgid "Pricing" 1252 513 msgstr "Preise" 1253 514 1254 #: application/Controller/Admin.php: 718515 #: application/Controller/Admin.php:689 1255 516 msgid "Appearance" 1256 517 msgstr "Darstellung" 1257 518 1258 #: application/Controller/Admin.php: 724519 #: application/Controller/Admin.php:695 1259 520 msgid "Account" 1260 521 msgstr "Konto" 1261 522 1262 #: application/Controller/Install.php:71 1263 #, php-format 1264 msgid "" 1265 "<p>LaterPay: Your server <strong>does not</strong> meet the minimum " 1266 "requirement of %s version %s or higher. You are running %s version %s.</p>" 1267 msgstr "" 1268 "<p>LaterPay: Ihr Server <strong>erfüllt nicht die Mindestanforderung</strong>" 1269 " von %s-Version %s oder neuer. Sie verwenden %s-Version %s.</p>" 1270 1271 #: application/Controller/Install.php:88 1272 msgid "" 1273 "The LaterPay plugin could not be installed. Please fix the reported issues " 1274 "and try again." 1275 msgstr "" 1276 "Das LaterPay Plugin konnte nicht installiert werden. Bitte beheben Sie die " 1277 "genannten Probleme und versuchen Sie es erneut." 1278 1279 #: application/Module/Appearance.php:203 1280 #: application/Controller/Frontend/PreviewMode.php:245 1281 msgid "You don't have sufficient user capabilities to do this." 1282 msgstr "Sie haben nicht die erforderlichen Berechtigungen für diese Aktion." 1283 1284 #: application/Module/Purchase.php:110 application/Module/Purchase.php:198 1285 #: views/backend/partials/purchase-overlay.php:74 1286 msgid "I already bought this" 1287 msgstr "Bereits gekauft?" 1288 1289 #: application/Module/Purchase.php:172 application/Module/Purchase.php:271 1290 #: application/Module/Purchase.php:284 1291 #: application/Controller/Frontend/Post.php:781 1292 msgid "Buy Now" 1293 msgstr "Jetzt kaufen" 1294 1295 #: application/Module/Purchase.php:176 1296 #: application/Controller/Frontend/Post.php:780 1297 msgid "Buy Now, Pay Later" 1298 msgstr "Jetzt kaufen, später zahlen" 1299 1300 #: application/Module/Purchase.php:260 application/Module/TimePasses.php:443 1301 msgid "Read Now" 1302 msgstr "Jetzt lesen" 1303 1304 #: application/Module/Purchase.php:262 1305 msgid "Read Now, Pay Later" 1306 msgstr "Jetzt lesen, später zahlen" 1307 1308 #: application/Module/Purchase.php:272 1309 msgid "" 1310 "Buy this post now with LaterPay and <br>pay with a payment method you trust." 1311 msgstr "" 1312 "Kaufen Sie diesen Beitrag jetzt mit LaterPay und <br>bezahlen Sie mit einer " 1313 "Zahlungsmethode Ihres Vertrauens." 1314 1315 #: application/Module/Purchase.php:276 application/Module/Purchase.php:289 1316 #: application/Module/TimePasses.php:451 1317 msgid "Read Immediately" 1318 msgstr "Sofort lesen" 1319 1320 #: application/Module/Purchase.php:277 1321 msgid "" 1322 "Immediately access your purchase. <br>You only buy this post. No " 1323 "subscription, no fees." 1324 msgstr "" 1325 "Greifen Sie sofort auf Ihren Kauf zu.<br>Sie kaufen nur diesen Beitrag. Kein " 1326 "Abo, keine Gebühren." 1327 1328 #: application/Module/Purchase.php:285 1329 msgid "Just agree to pay later.<br> No upfront registration and payment." 1330 msgstr "" 1331 "Stimmen Sie einfach zu, später zu zahlen.<br> Keine Vorabregistrierung. " 1332 "Keine Vorauszahlung." 1333 1334 #: application/Module/Purchase.php:290 1335 msgid "" 1336 "Access your purchase immediately.<br> You are only buying this article, not " 1337 "a subscription." 1338 msgstr "" 1339 "Greifen Sie sofort auf Ihren Kauf zu.<br>Sie kaufen nur diesen Beitrag. Kein " 1340 "Abo, keine Gebühren." 1341 1342 #: application/Module/Purchase.php:295 1343 #, php-format 1344 msgid "" 1345 "Buy with LaterPay until you reach a total of %s %s.<br> Only then do you " 1346 "have to register and pay." 1347 msgstr "" 1348 "Kaufen Sie mit LaterPay, bis Sie %s %s erreicht haben. Erst dann müssen Sie " 1349 "sich registrieren und bezahlen." 1350 1351 #: application/Module/TimePasses.php:375 1352 msgid "Buy a time pass to read the full content." 1353 msgstr "Kaufen Sie einen Zeitpass, um den gesamten Inhalt anzuzeigen." 1354 1355 #: application/Module/TimePasses.php:415 1356 #: application/Controller/Frontend/Shortcode.php:499 1357 msgid "Wrong time pass id or no time passes specified." 1358 msgstr "Ungültige Zeitpass-ID oder keine Zeitpässe vorhanden." 1359 1360 #: application/Module/TimePasses.php:446 1361 msgid "Buy Time Pass" 1362 msgstr "Zeitpass kaufen" 1363 1364 #: application/Module/TimePasses.php:447 1365 msgid "Buy a LaterPay time pass and pay with a payment method you trust." 1366 msgstr "" 1367 "Kaufen Sie einen LaterPay Zeitpass und zahlen Sie mit einer Zahlungsmethode " 1368 "Ihres Vertrauens." 1369 1370 #: application/Module/TimePasses.php:452 1371 msgid "" 1372 "Immediately access your content. <br>A time pass is not a subscription, it " 1373 "expires automatically." 1374 msgstr "" 1375 "Greifen Sie sofort auf Ihre Inhalte zu.<br>\n" 1376 "Ein Zeitpass ist kein Abo, denn er läuft automatisch aus." 1377 1378 #: application/Helper/TimePass.php:32 1379 msgid "24-Hour Pass" 1380 msgstr "24-Stunden-Pass" 1381 1382 #: application/Helper/TimePass.php:33 1383 msgid "24 hours access to all content on this website" 1384 msgstr "24 Stunden Zugang zu allen Inhalten dieser Website" 1385 1386 #: application/Helper/TimePass.php:80 1387 msgid "Hour" 1388 msgstr "Stunde" 1389 1390 #: application/Helper/TimePass.php:81 1391 msgid "Day" 1392 msgstr "Tag" 1393 1394 #: application/Helper/TimePass.php:82 1395 msgid "Week" 1396 msgstr "Woche" 1397 1398 #: application/Helper/TimePass.php:83 1399 msgid "Month" 1400 msgstr "Monat" 1401 1402 #: application/Helper/TimePass.php:84 1403 msgid "Year" 1404 msgstr "Jahr" 1405 1406 #: application/Helper/TimePass.php:89 1407 msgid "Hours" 1408 msgstr "Stunden" 1409 1410 #: application/Helper/TimePass.php:90 1411 msgid "Days" 1412 msgstr "Tage" 1413 1414 #: application/Helper/TimePass.php:91 1415 msgid "Weeks" 1416 msgstr "Wochen" 1417 1418 #: application/Helper/TimePass.php:92 1419 msgid "Months" 1420 msgstr "Monate" 1421 1422 #: application/Helper/TimePass.php:93 1423 msgid "Years" 1424 msgstr "Jahre" 1425 1426 #: application/Helper/TimePass.php:116 1427 msgid "later" 1428 msgstr "später" 1429 1430 #: application/Helper/TimePass.php:117 1431 msgid "immediately" 1432 msgstr "sofort" 1433 1434 #: application/Helper/TimePass.php:138 1435 msgid "All content" 1436 msgstr "Alle Inhalte" 1437 1438 #: application/Helper/TimePass.php:139 1439 msgid "All content except for category" 1440 msgstr "Alle Inhalte außer in Kategorie" 1441 1442 #: application/Helper/TimePass.php:140 1443 msgid "All content in category" 1444 msgstr "Alle Inhalte in Kategorie" 1445 1446 #: application/Helper/TimePass.php:184 application/Helper/Subscription.php:77 1447 msgid "for" 1448 msgstr "für" 1449 1450 #: application/Helper/Appearance.php:22 application/Helper/Appearance.php:52 1451 msgid "Read now, pay later" 1452 msgstr "Jetzt lesen, später zahlen" 1453 1454 #: application/Helper/View.php:216 1455 msgid "k" 1456 msgstr "t" 1457 1458 #: application/Helper/View.php:249 1459 #: application/Controller/Frontend/Shortcode.php:186 1460 #: application/Controller/Frontend/Shortcode.php:206 1461 msgid "Problem with inserted shortcode:" 1462 msgstr "Es gibt ein Problem mit dem eingefügten Shortcode:" 1463 1464 #: application/Helper/Subscription.php:32 1465 msgid "1 Month Subscription" 1466 msgstr "Monatsabo" 1467 1468 #: application/Helper/Subscription.php:33 1469 msgid "1 month access to all content on this website (cancellable anytime)" 1470 msgstr "1 Monat Zugriff auf alle Inhalte dieser Website (jederzeit kündbar)" 1471 1472 #: views/backend/logger/wordpress-handler-records.php:11 1473 #, php-format 1474 msgid "%s Memory Usage" 1475 msgstr "%s Speicherverbrauch" 1476 1477 #: views/backend/logger/wordpress-handler-records.php:12 1478 msgid "Debugger" 1479 msgstr "Debugger" 1480 1481 #: views/backend/logger/wordpress-handler-records.php:17 1482 #, php-format 1483 msgid "Messages<span class=\"lp_badge\">%s</span>" 1484 msgstr "Meldungen<span class=\"lp_badge\">%s</span>" 1485 1486 #: views/backend/partials/pointer-scripts.php:11 1487 msgid "Welcome to LaterPay" 1488 msgstr "Willkommen bei LaterPay" 1489 1490 #: views/backend/partials/pointer-scripts.php:12 1491 msgid "Set the most appropriate settings for you." 1492 msgstr "Passen Sie das LaterPay Plugin Ihren Bedürfnissen an." 1493 1494 #: views/backend/partials/pointer-scripts.php:39 1495 msgid "Set a Price for this Post" 1496 msgstr "Preis für den Beitrag setzen" 1497 1498 #: views/backend/partials/pointer-scripts.php:40 1499 msgid "" 1500 "Set an <strong>individual price</strong> for this post here.<br>You can also " 1501 "apply <strong>advanced pricing</strong> by defining how the price changes " 1502 "over time." 1503 msgstr "" 1504 "Setzen Sie hier einen <strong>individuellen Preis</strong> für diesen " 1505 "Beitrag.<br>Sie können auch <strong>dynamische Preise</strong> setzen und " 1506 "festlegen, wie Preise sich über die Zeit verändern sollen." 1507 1508 #: views/backend/partials/pointer-scripts.php:67 1509 msgid "Add Teaser Content" 1510 msgstr "Teaser zum Beitrag hinzufügen" 1511 1512 #: views/backend/partials/pointer-scripts.php:68 1513 msgid "" 1514 "You´ll give your users a better impression of what they´ll buy, if you " 1515 "preview some text, images, or video from the actual post." 1516 msgstr "" 1517 "Um Ihren Nutzern eine bessere Vorstellung davon zu geben, was sie kaufen, " 1518 "sollten Sie Text, Bilder oder Videos aus dem Beitrag als Teaser anzeigen." 1519 1520 #: views/backend/partials/subscription.php:23 1521 #: views/backend/partials/time-pass.php:23 1522 #: views/frontend/partials/post/gift/gift-pass.php:25 1523 msgid "on this website" 1524 msgstr "dieser Website" 1525 1526 #: views/backend/partials/subscription.php:36 1527 #: views/backend/partials/time-pass.php:36 1528 #: views/frontend/partials/widget/purchase-button.php:18 1529 #: views/frontend/partials/widget/purchase-link.php:14 1530 #: views/frontend/partials/post/gift/gift-actions.php:25 1531 msgid "Buy now with LaterPay" 1532 msgstr "Jetzt mit LaterPay kaufen" 1533 1534 #: views/backend/partials/subscription.php:36 1535 #: views/backend/partials/time-pass.php:36 1536 msgid "Terms" 1537 msgstr "Details" 1538 1539 #: views/backend/partials/subscription.php:41 1540 #: views/backend/partials/time-pass.php:41 1541 msgid "Back" 1542 msgstr "Zurück" 1543 1544 #: views/backend/partials/subscription.php:45 1545 #: views/backend/partials/time-pass.php:45 1546 #: views/frontend/partials/post/gift/gift-pass.php:37 1547 msgid "Validity" 1548 msgstr "Gültigkeit" 1549 1550 #: views/backend/partials/subscription.php:51 1551 #: views/backend/partials/time-pass.php:51 1552 #: views/frontend/partials/post/gift/gift-pass.php:43 1553 msgid "Access to" 1554 msgstr "Zugriff auf" 1555 1556 #: views/backend/partials/subscription.php:57 1557 #: views/backend/partials/time-pass.php:57 1558 #: views/frontend/partials/post/gift/gift-pass.php:49 1559 msgid "Renewal" 1560 msgstr "Verlängert sich" 1561 1562 #: views/backend/partials/subscription.php:59 1563 #: application/Controller/Admin/Pricing.php:59 1564 msgid "After" 1565 msgstr "Nach" 1566 1567 #: views/backend/partials/subscription.php:69 1568 msgid "Cancellation" 1569 msgstr "Kündigung" 1570 1571 #: views/backend/partials/subscription.php:71 1572 msgid "Cancellable anytime" 1573 msgstr "Jederzeit kündbar" 1574 1575 #: views/backend/partials/time-pass.php:59 1576 #: views/frontend/partials/post/gift/gift-pass.php:51 1577 msgid "No automatic renewal" 1578 msgstr "Keine automatische Verlängerung" 1579 1580 #: views/backend/partials/post-pricing-form.php:24 1581 msgid "Pay Later: users pay purchased content later" 1582 msgstr "Später zahlen: Nutzer bezahlen gekaufte Inhalte später." 1583 1584 #: views/backend/partials/post-pricing-form.php:37 1585 msgid "Pay Now: users pay purchased content immediately" 1586 msgstr "Sofort zahlen: Nutzer bezahlen gekaufte Inhalte sofort." 1587 1588 #: views/backend/partials/post-pricing-form.php:67 1589 msgid "Individual Price" 1590 msgstr "Individueller Preis" 1591 1592 #: views/backend/partials/post-pricing-form.php:72 1593 msgid "Category Default Price" 1594 msgstr "Kategorie- preis" 1595 1596 #: views/backend/partials/post-pricing-form.php:79 1597 msgid "Global <br> Default Price" 1598 msgstr "Standard-<br>preis" 1599 1600 #: views/backend/partials/post-pricing-form.php:117 1601 msgid "" 1602 "The dynamic pricing will <strong>start</strong>, once you have <strong>" 1603 "published</strong> this post." 1604 msgstr "" 1605 "Die dynamische Preissetzung <strong>started</strong>, sobald Sie diesen " 1606 "Beitrag <strong>veröffentlicht</strong> haben." 1607 1608 #: views/backend/partials/post-pricing-form.php:122 1609 msgid "Restart dynamic pricing" 1610 msgstr "Dynamische Preissetzung neu starten" 1611 1612 #: views/backend/partials/post-pricing-form.php:128 1613 #: application/Controller/Admin/Post/Metabox.php:141 1614 msgid "Remove dynamic pricing" 1615 msgstr "Dynamische Preissetzung entfernen" 1616 1617 #: views/backend/partials/post-pricing-form.php:135 1618 #: application/Controller/Admin/Post/Metabox.php:140 1619 msgid "Add dynamic pricing" 1620 msgstr "Dynamische Preissetzung hinzufügen" 1621 1622 #: views/backend/partials/purchase-overlay.php:23 1623 #: views/frontend/partials/widget/purchase-overlay.php:39 1624 msgid "This article" 1625 msgstr "Diesen Artikel" 1626 1627 #: views/backend/partials/purchase-overlay.php:26 1628 msgid "\"An Amazing Article\"" 1629 msgstr "Mein bester Post" 1630 1631 #: views/backend/partials/purchase-overlay.php:41 1632 msgid "Week Pass" 1633 msgstr "Wochenpass" 1634 1635 #: views/backend/partials/purchase-overlay.php:44 1636 msgid "7 days access to all paid content on this website (no subscription)" 1637 msgstr "7 Tage Zugriff auf alle Inhalte dieser Website (kein Abo)" 1638 1639 #: views/backend/partials/purchase-overlay.php:59 1640 msgid "Month subscription" 1641 msgstr "Monatsabo" 1642 1643 #: views/backend/partials/purchase-overlay.php:62 1644 msgid "30 days access to all paid content (cancellable anytime)" 1645 msgstr "1 Monat Zugriff auf alle Inhalte dieser Website (jederzeit kündbar)" 1646 1647 #: views/backend/partials/purchase-overlay.php:72 1648 msgid "Buy now, pay later" 1649 msgstr "Jetzt kaufen, später zahlen" 1650 1651 #: views/backend/partials/purchase-overlay.php:74 1652 #: views/frontend/partials/widget/purchase-overlay.php:130 1653 msgid "Redeem voucher" 1654 msgstr "Gutschein einlösen" 1655 1656 #: views/backend/partials/purchase-overlay.php:89 1657 #: views/frontend/partials/widget/purchase-overlay.php:149 1658 msgid "Powered by" 1659 msgstr "Powered by" 1660 1661 #: application/Core/Exception/PostNotFound.php:14 1662 #, php-format 1663 msgid "Post with id \"%s\" not exist" 1664 msgstr "Es existiert kein Beitrag mit der ID \"%s\"." 1665 1666 #: application/Core/Exception/FormValidation.php:18 1667 #, php-format 1668 msgid "Form \"%s\" validation failed." 1669 msgstr "Formatvalidierung \"%s\" fehlgeschlagen." 1670 1671 #: application/Core/Exception/InvalidIncomingData.php:14 1672 #, php-format 1673 msgid "\"%s\" param missed or has incorrect value" 1674 msgstr "Der Parameter \"%s\" fehlt oder hat einen ungültigen Wert." 1675 1676 #: application/Controller/Frontend/Shortcode.php:109 1677 msgid "Additional Premium Content" 1678 msgstr "Zusätzlicher Premium-Inhalt" 1679 1680 #: application/Controller/Frontend/Shortcode.php:118 1681 #, php-format 1682 msgid "" 1683 "<code>%1$s</code> is deprecated, please use <code>%2$s</code>. <code>" 1684 "%1$s</code> will be removed in the next release." 1685 msgstr "" 1686 "<code>%1$s</code> ist veraltet, bitte verwenden Sie <code>%2$s</code>. <code>" 1687 "%1$s</code> wird mit dem nächsten Release entfernt." 1688 1689 #: application/Controller/Frontend/Shortcode.php:170 1690 #, php-format 1691 msgid "We couldn't find a page for target_post_id=\"%s\" on this site." 1692 msgstr "" 1693 "Wir konnten keine Seite für target_post_id=\"%s\" auf dieser Webseite finden." 1694 1695 #: application/Controller/Frontend/Shortcode.php:180 1696 #, php-format 1697 msgid "We couldn't find a page for target_post_title=\"%s\" on this site." 1698 msgstr "" 1699 "Wir konnten keine Seite für target_post_title=\"%s\" auf dieser Webseite " 1700 "finden." 1701 1702 #: application/Controller/Frontend/Shortcode.php:203 1703 msgid "LaterPay has been disabled for the post type of the target page." 1704 msgstr "LaterPay wurde für den Post-Type der Zielseite deaktiviert." 1705 1706 #: application/Controller/Frontend/Shortcode.php:392 1707 msgid "Download now" 1708 msgstr "Jetzt herunterladen" 1709 1710 #: application/Controller/Frontend/Shortcode.php:397 1711 msgid "Watch now" 1712 msgstr "Jetzt ansehen" 1713 1714 #: application/Controller/Frontend/Shortcode.php:402 1715 msgid "Listen now" 1716 msgstr "Jetzt anhören" 1717 1718 #: application/Controller/Frontend/Shortcode.php:406 1719 msgid "Read now" 1720 msgstr "Jetzt lesen" 1721 1722 #: application/Controller/Frontend/Shortcode.php:538 1723 msgid "Wrong time pass id." 1724 msgstr "Ungültige Zeitpass-ID." 1725 1726 #: application/Controller/Frontend/Shortcode.php:672 1727 msgid "Buy another gift card" 1728 msgstr "Einen weiteren Gutschein kaufen." 1729 1730 #: application/Controller/Frontend/PreviewMode.php:147 1731 #: application/Controller/Admin/Account.php:88 1732 #: application/Controller/Admin/Appearance.php:108 1733 #: application/Controller/Admin/Pricing.php:181 1734 #: application/Controller/Admin/Pricing.php:380 1735 #: application/Controller/Admin/Pricing.php:453 1736 #: application/Controller/Admin/Pricing.php:534 1737 #: application/Controller/Admin/Pricing.php:778 1738 #: application/Controller/Admin/Pricing.php:814 523 #: application/Controller/Admin/Account.php:45 524 msgid "The API key you entered is not a valid LaterPay API key!" 525 msgstr "Der eingegebene API Key ist kein gültiger LaterPay API Key!" 526 527 #: application/Controller/Admin/Account.php:46 528 msgid "The Merchant ID you entered is not a valid LaterPay Merchant ID!" 529 msgstr "Die eingegebene Merchant ID ist keine gültige LaterPay Merchant ID!" 530 531 #: application/Controller/Admin/Account.php:47 532 msgid "LaterPay does not work properly with invalid API credentials." 533 msgstr "LaterPay funktioniert nicht ohne gültige API Zugangsdaten." 534 535 #: application/Controller/Admin/Account.php:89 536 #: application/Controller/Admin/Appearance.php:105 537 #: application/Controller/Admin/Pricing.php:177 538 #: application/Controller/Admin/Pricing.php:364 539 #: application/Controller/Admin/Pricing.php:438 540 #: application/Controller/Frontend/PreviewMode.php:115 1739 541 msgid "An error occurred when trying to save your settings. Please try again." 1740 542 msgstr "" … … 1742 544 "erneut." 1743 545 1744 #: application/Controller/Frontend/PreviewMode.php:188 1745 #: application/Controller/Frontend/PreviewMode.php:271 1746 msgid "Updated." 1747 msgstr "Aktualisiert." 1748 1749 #: application/Controller/Frontend/Post.php:194 1750 msgid "Thank you very much for rating!" 1751 msgstr "Vielen Dank für Ihre Bewertung!" 1752 1753 #: application/Controller/Frontend/Post.php:774 1754 msgid "In Live mode, your visitors would now see the LaterPay purchase dialog." 1755 msgstr "" 1756 "Im Live-Modus würden Ihre Besucher jetzt den LaterPay Kaufdialog sehen." 1757 1758 #: application/Controller/Frontend/Post.php:775 1759 msgid "Voucher code accepted." 1760 msgstr "Gutschein-Code akzeptiert." 1761 1762 #: application/Controller/Frontend/Post.php:776 1763 msgid " is not a valid voucher code!" 1764 msgstr " ist kein gültiger Gutschein-Code!" 1765 1766 #: application/Controller/Frontend/Post.php:777 1767 msgid "Please enter a six-digit voucher code." 1768 msgstr "Bitte geben Sie einen sechsstelligen Gutschein-Code ein." 1769 1770 #: application/Controller/Frontend/Post.php:778 1771 msgid "An error occurred. Please try again." 1772 msgstr "Ein Fehler ist aufgetreten. Bitte versuchen Sie es erneut." 1773 1774 #: application/Controller/Frontend/Post.php:782 1775 msgid "Subscribe Now" 1776 msgstr "Jetzt abonnieren" 1777 1778 #: application/Controller/Frontend/Post.php:893 1779 msgid "" 1780 "— Visit the post to buy its full content for {price} {currency} —" 1781 " {teaser_content}" 1782 msgstr "" 1783 "— Kaufen Sie den vollständigen Inhalt für {price} {currency} — " 1784 "{teaser_content}" 1785 1786 #: application/Controller/Admin/Account.php:46 1787 msgid "The API key you entered is not a valid LaterPay API key!" 1788 msgstr "Der eingegebene API Key ist kein gültiger LaterPay API Key!" 1789 1790 #: application/Controller/Admin/Account.php:47 1791 msgid "The Merchant ID you entered is not a valid LaterPay Merchant ID!" 1792 msgstr "Die eingegebene Merchant ID ist keine gültige LaterPay Merchant ID!" 1793 1794 #: application/Controller/Admin/Account.php:48 1795 msgid "LaterPay does not work properly with invalid API credentials." 1796 msgstr "LaterPay funktioniert nicht ohne gültige API Zugangsdaten." 1797 1798 #: application/Controller/Admin/Account.php:161 1799 #: application/Controller/Admin/Account.php:219 546 #: application/Controller/Admin/Account.php:163 547 #: application/Controller/Admin/Account.php:221 1800 548 #, php-format 1801 549 msgid "The Merchant ID you entered is not a valid LaterPay %s Merchant ID!" 1802 550 msgstr "Die eingegebene Merchant ID ist keine kültige LaterPay %s Merchant ID!" 1803 551 1804 #: application/Controller/Admin/Account.php:17 5552 #: application/Controller/Admin/Account.php:177 1805 553 #, php-format 1806 554 msgid "The %s Merchant ID has been removed." 1807 555 msgstr "Die %s Merchant ID wurde entfernt." 1808 556 1809 #: application/Controller/Admin/Account.php:1 88557 #: application/Controller/Admin/Account.php:190 1810 558 #, php-format 1811 559 msgid "%s Merchant ID verified and saved." 1812 560 msgstr "%s Merchant ID überprüft und gespeichert." 1813 561 1814 #: application/Controller/Admin/Account.php:23 3562 #: application/Controller/Admin/Account.php:235 1815 563 #, php-format 1816 564 msgid "The %s API key has been removed." 1817 565 msgstr "Der %s API Key wurde entfernt." 1818 566 1819 #: application/Controller/Admin/Account.php:24 6567 #: application/Controller/Admin/Account.php:248 1820 568 #, php-format 1821 569 msgid "Your %s API key is valid. You can now make %s transactions." … … 1823 571 "Ihr %s API-Key ist gültig. Sie können nun %s Transaktionen durchführen." 1824 572 1825 #: application/Controller/Admin/Account.php:26 71826 #: application/Controller/Admin/Account.php:32 2573 #: application/Controller/Admin/Account.php:269 574 #: application/Controller/Admin/Account.php:324 1827 575 msgid "Error occurred. Incorrect data provided." 1828 576 msgstr "Ein Fehler ist aufgetreten. Falsche Daten wurden übergeben." 1829 577 1830 #: application/Controller/Admin/Account.php:28 1578 #: application/Controller/Admin/Account.php:283 1831 579 msgid "" 1832 580 "The LaterPay plugin is in LIVE mode now. All payments are actually booked " … … 1836 584 "tatsächlich gebucht und Ihrem Händlerkonto gutgeschrieben." 1837 585 1838 #: application/Controller/Admin/Account.php:29 0586 #: application/Controller/Admin/Account.php:292 1839 587 msgid "" 1840 588 "The LaterPay plugin is in visible TEST mode now. Payments are only simulated " … … 1844 592 "Zahlungen werden nur simuliert und nicht tatsächlich gebucht." 1845 593 1846 #: application/Controller/Admin/Account.php:30 0594 #: application/Controller/Admin/Account.php:302 1847 595 msgid "" 1848 596 "The LaterPay plugin is in invisible TEST mode now. Payments are only " … … 1852 600 "Zahlungen werden nur simuliert und nicht tatsächlich gebucht." 1853 601 1854 #: application/Controller/Admin/Account.php:31 01855 #: application/Controller/Admin/Account.php:38 0602 #: application/Controller/Admin/Account.php:312 603 #: application/Controller/Admin/Account.php:382 1856 604 msgid "The LaterPay plugin needs valid API credentials to work." 1857 605 msgstr "Das LaterPay Plugin benötigt gültige API Zugangsdaten." 1858 606 1859 #: application/Controller/Admin/Account.php:33 4607 #: application/Controller/Admin/Account.php:336 1860 608 msgid "Failed to change region settings." 1861 609 msgstr "" 1862 610 "Die Einstellungen für Ländergruppe und Währung konnten nicht geändert werden." 1863 611 1864 #: application/Controller/Admin/Account.php:34 4612 #: application/Controller/Admin/Account.php:346 1865 613 msgid "The LaterPay region was changed successfully." 1866 614 msgstr "" … … 1868 616 "geändert." 1869 617 1870 #: application/Controller/Admin/Account.php:36 41871 #: application/Controller/Admin/Pricing.php: 3141872 #: application/Controller/Admin/Pricing.php:3 64618 #: application/Controller/Admin/Account.php:366 619 #: application/Controller/Admin/Pricing.php:299 620 #: application/Controller/Admin/Pricing.php:348 1873 621 msgid "An error occurred. Incorrect data provided." 1874 622 msgstr "Ein Fehler ist aufgetreten: Falsche Daten angegeben." 1875 623 1876 #: application/Controller/Admin/Account.php:3891877 msgid "The plugin is in <strong>visible</strong> test mode now."1878 msgstr ""1879 "Das Plugin ist jetzt im Test-Modus und für Besucher <strong>sichtbar</strong>"1880 "."1881 1882 624 #: application/Controller/Admin/Account.php:391 1883 msgid "The plugin is in <strong>invisible</strong> test mode now." 1884 msgstr "" 1885 "Das Plugin ist jetzt im Test-Modus und für Besucher <strong>nicht " 1886 "sichtbar</strong>." 1887 1888 #: application/Controller/Admin/Appearance.php:135 625 #: application/Controller/Admin/Account.php:393 626 msgid "The plugin is in" 627 msgstr "" 628 629 #: application/Controller/Admin/Account.php:391 630 msgid "visible" 631 msgstr "" 632 633 #: application/Controller/Admin/Account.php:391 634 #: application/Controller/Admin/Account.php:393 635 msgid "test mode now." 636 msgstr "" 637 638 #: application/Controller/Admin/Account.php:393 639 msgid "invisible" 640 msgstr "" 641 642 #: application/Controller/Admin/Appearance.php:134 1889 643 msgid "" 1890 644 "Visitors will now see the teaser content of paid posts plus an excerpt of " … … 1894 648 "einen Auszug des Artikels unter einem Overlay." 1895 649 1896 #: application/Controller/Admin/Appearance.php:13 8650 #: application/Controller/Admin/Appearance.php:137 1897 651 msgid "" 1898 652 "Visitors will now see the teaser content of paid posts plus an excerpt of " … … 1902 656 "dem Volltext unter einem Overlay mit allen Kaufoptionen." 1903 657 1904 #: application/Controller/Admin/Appearance.php:14 1658 #: application/Controller/Admin/Appearance.php:140 1905 659 msgid "Visitors will now see only the teaser content of paid posts." 1906 660 msgstr "" 1907 661 "Besucher sehen ab jetzt nur den Teaser eines kostenpflichtigen Beitrags." 1908 662 1909 #: application/Controller/Admin/Appearance.php:1 73663 #: application/Controller/Admin/Appearance.php:186 1910 664 msgid "Purchase overlay settings saved successfully." 1911 665 msgstr "Kauf-Overlay Einstellungen erfolgreich gespeichert." 1912 666 1913 #: application/Controller/Admin/Appearance.php:194 1914 msgid "Visitors can now rate the posts they have purchased." 1915 msgstr "Besucher können nun gekaufte Beiträge bewerten." 1916 1917 #: application/Controller/Admin/Appearance.php:203 1918 msgid "The rating of posts has been disabled." 1919 msgstr "Die Bewertung gekaufter Beiträge wurde deaktiviert." 1920 1921 #: application/Controller/Admin/Appearance.php:224 667 #: application/Controller/Admin/Appearance.php:206 1922 668 msgid "Purchase buttons are now rendered at a custom position." 1923 669 msgstr "" 1924 670 "Kauf-Buttons werden ab jetzt an einer benutzerdefinierten Position angezeigt." 1925 671 1926 #: application/Controller/Admin/Appearance.php:2 33672 #: application/Controller/Admin/Appearance.php:215 1927 673 msgid "Purchase buttons are now rendered at their default position." 1928 msgstr "" 1929 "Kauf-Buttons werden ab jetzt an ihrer Standard-Position angezeigt.\n" 1930 1931 #: application/Controller/Admin/Appearance.php:254 674 msgstr "Kauf-Buttons werden ab jetzt an ihrer Standard-Position angezeigt." 675 676 #: application/Controller/Admin/Appearance.php:236 1932 677 msgid "Time passes are now rendered at a custom position." 1933 678 msgstr "" 1934 679 "Zeitpässe werden ab jetzt an einer benutzerdefinierten Position angezeigt." 1935 680 1936 #: application/Controller/Admin/Appearance.php:2 63681 #: application/Controller/Admin/Appearance.php:245 1937 682 msgid "Time passes are now rendered at their default position." 1938 msgstr "" 1939 "Zeitpässe werden ab jetzt an ihrer Standard-Position angezeigt.\n" 1940 1941 #: application/Controller/Admin/Pricing.php:60 683 msgstr "Zeitpässe werden ab jetzt an ihrer Standard-Position angezeigt." 684 685 #: application/Controller/Admin/Notice.php:39 686 msgid "Please contact WPEngine customer service to bypass the required cookies" 687 msgstr "" 688 689 #: application/Controller/Admin/Notice.php:40 690 msgid "token, laterpay_purchased_gift_card and laterpay_tracking_code" 691 msgstr "" 692 693 #: application/Controller/Admin/Notice.php:41 694 msgid "in order for the plugin to work properly with page-cache." 695 msgstr "" 696 697 #: application/Controller/Admin/Notice.php:42 698 msgid "Done" 699 msgstr "" 700 701 #: application/Controller/Admin/Notice.php:63 702 msgid "Saving Settings " 703 msgstr "" 704 705 #: application/Controller/Admin/Notice.php:64 706 msgid "Settings Saved " 707 msgstr "" 708 709 #: application/Controller/Admin/Notice.php:65 710 msgid "Error saving data" 711 msgstr "" 712 713 #: application/Controller/Admin/Post/Column.php:42 714 #: views/backend/partials/subscription.php:62 715 #: views/backend/partials/time-pass.php:70 views/backend/pricing.php:94 716 #: views/backend/pricing.php:200 views/backend/pricing.php:305 717 msgid "Price" 718 msgstr "Preis" 719 720 #: application/Controller/Admin/Post/Column.php:43 721 msgid "Price Type" 722 msgstr "Preistyp" 723 724 #: application/Controller/Admin/Post/Column.php:87 725 #: application/Helper/Pricing.php:865 726 #: views/backend/partials/post-pricing-form.php:40 727 #: views/backend/pricing.php:120 views/backend/pricing.php:225 728 #: views/backend/pricing.php:330 views/backend/pricing.php:499 729 msgid "Pay Now" 730 msgstr "Sofort zahlen" 731 732 #: application/Controller/Admin/Post/Column.php:88 733 #: application/Helper/Pricing.php:868 application/Module/Purchase.php:294 734 #: views/backend/partials/post-pricing-form.php:27 735 #: views/backend/pricing.php:220 views/backend/pricing.php:325 736 #: views/backend/pricing.php:494 737 msgid "Pay Later" 738 msgstr "Später zahlen" 739 740 #: application/Controller/Admin/Post/Column.php:89 741 msgid "individual price" 742 msgstr "Individueller Preis" 743 744 #: application/Controller/Admin/Post/Column.php:93 745 msgid "dynamic individual price" 746 msgstr "Individueller Preis (dynamisch)" 747 748 #: application/Controller/Admin/Post/Column.php:97 749 msgid "category default price" 750 msgstr "Kategorie-Standardpreis" 751 752 #: application/Controller/Admin/Post/Column.php:101 753 #: application/Controller/Admin/Post/Column.php:111 754 msgid "global default price" 755 msgstr "Standardpreis" 756 757 #: application/Controller/Admin/Post/Metabox.php:136 758 msgid "" 759 "Paid posts require some teaser content. Please fill in the Teaser Content " 760 "field." 761 msgstr "" 762 "Kostenpflichtige Inhalte benötigen einen Teaser. Bitte geben Sie einen " 763 "Teaser an." 764 765 #: application/Controller/Admin/Post/Metabox.php:137 766 #: views/backend/partials/post-pricing-form.php:133 767 msgid "Add dynamic pricing" 768 msgstr "Dynamische Preissetzung hinzufügen" 769 770 #: application/Controller/Admin/Post/Metabox.php:138 771 #: views/backend/partials/post-pricing-form.php:126 772 msgid "Remove dynamic pricing" 773 msgstr "Dynamische Preissetzung entfernen" 774 775 #: application/Controller/Admin/Post/Metabox.php:147 776 msgid "default price" 777 msgstr "Standardpreis" 778 779 #: application/Controller/Admin/Post/Metabox.php:148 780 msgid "days" 781 msgstr "Tage" 782 783 #: application/Controller/Admin/Post/Metabox.php:149 784 msgid "Today" 785 msgstr "Heute" 786 787 #: application/Controller/Admin/Post/Metabox.php:169 788 msgid "Teaser Content" 789 msgstr "Teaser für den Beitrag" 790 791 #: application/Controller/Admin/Post/Metabox.php:192 792 msgid "Pricing for this Post" 793 msgstr "Preis des Beitrags" 794 795 #: application/Controller/Admin/Post/Metabox.php:235 796 #, php-format 797 msgid "" 798 "Visitors will see the teaser content %s instead of the full content %s " 799 "before purchase." 800 msgstr "" 801 802 #: application/Controller/Admin/Post/Metabox.php:238 803 msgid "" 804 "If you do not enter any teaser content, the plugin will use an excerpt of " 805 "the full content as teaser content." 806 msgstr "" 807 "Wenn Sie keinen Teaser angeben, verwendet das Plugin automatisch einen " 808 "Auszug aus dem Volltext als Teaser." 809 810 #: application/Controller/Admin/Post/Metabox.php:240 811 msgid "" 812 "We do recommend to write dedicated teaser content to increase your sales " 813 "though." 814 msgstr "" 815 "Wir empfehlen jedoch, für jeden Beitrag einen separaten Teaser zu erstellen, " 816 "um die Attraktivität des Beitrags zu steigern." 817 818 #: application/Controller/Admin/Pricing.php:46 views/backend/pricing.php:570 819 msgid "Subscriptions" 820 msgstr "Abos" 821 822 #: application/Controller/Admin/Pricing.php:47 823 msgid "Subscription" 824 msgstr "" 825 826 #: application/Controller/Admin/Pricing.php:79 827 msgid "After" 828 msgstr "Nach" 829 830 #: application/Controller/Admin/Pricing.php:80 1942 831 msgid "Make" 1943 832 msgstr "Mache" 1944 833 1945 #: application/Controller/Admin/Pricing.php: 61834 #: application/Controller/Admin/Pricing.php:81 1946 835 msgid "free" 1947 836 msgstr "kostenlos" 1948 837 1949 #: application/Controller/Admin/Pricing.php:63 1950 #: application/Controller/Admin/Pricing.php:629 838 #: application/Controller/Admin/Pricing.php:82 839 msgid "to" 840 msgstr "auf" 841 842 #: application/Controller/Admin/Pricing.php:83 1951 843 msgid "by" 1952 844 msgstr "um" 1953 845 1954 #: application/Controller/Admin/Pricing.php:64 1955 #: application/Controller/Admin/Pricing.php:652 846 #: application/Controller/Admin/Pricing.php:84 1956 847 msgid "to global default price of" 1957 848 msgstr "auf den allgemeinen Standardpreis" 1958 849 1959 #: application/Controller/Admin/Pricing.php:65 1960 #: application/Controller/Admin/Pricing.php:658 850 #: application/Controller/Admin/Pricing.php:85 1961 851 msgid "to category default price of" 1962 852 msgstr "auf den Kategorie-Standardpreis" 1963 853 1964 #: application/Controller/Admin/Pricing.php:69 854 #: application/Controller/Admin/Pricing.php:86 855 msgid "Update Prices" 856 msgstr "Preise aktualisieren" 857 858 #: application/Controller/Admin/Pricing.php:87 859 msgid "Delete" 860 msgstr "Löschen" 861 862 #: application/Controller/Admin/Pricing.php:89 1965 863 msgid "Are you sure?" 1966 864 msgstr "Sind Sie sicher?" 1967 865 1968 #: application/Controller/Admin/Pricing.php: 70866 #: application/Controller/Admin/Pricing.php:90 1969 867 msgid "" 1970 868 "Do you really want to discontinue this subscription? If you delete it, it " … … 1980 878 "dieses Abo wirklich löschen?" 1981 879 1982 #: application/Controller/Admin/Pricing.php:94 880 #: application/Controller/Admin/Pricing.php:91 views/backend/pricing.php:387 881 msgid "reduces the price to" 882 msgstr "reduziert den Preis auf" 883 884 #: application/Controller/Admin/Pricing.php:92 views/backend/pricing.php:398 885 msgid "times redeemed." 886 msgstr "Mal eingelöst." 887 888 #: application/Controller/Admin/Pricing.php:114 1983 889 msgid "All posts in category" 1984 890 msgstr "aller Beiträge in Kategorie" 1985 891 1986 #: application/Controller/Admin/Pricing.php:129 1987 msgid "Set price of" 1988 msgstr "Setze den Preis" 1989 1990 #: application/Controller/Admin/Pricing.php:130 1991 msgid "Increase price of" 1992 msgstr "Erhöhe den Preis" 1993 1994 #: application/Controller/Admin/Pricing.php:131 1995 msgid "Reduce price of" 1996 msgstr "Reduziere den Preis" 1997 1998 #: application/Controller/Admin/Pricing.php:132 1999 msgid "Make free" 2000 msgstr "Kostenlos-machen" 2001 2002 #: application/Controller/Admin/Pricing.php:133 2003 msgid "Reset" 2004 msgstr "Zurücksetzen" 2005 2006 #: application/Controller/Admin/Pricing.php:137 2007 #: application/Controller/Admin/Pricing.php:641 2008 msgid "All posts" 2009 msgstr "aller Beiträge" 2010 2011 #: application/Controller/Admin/Pricing.php:328 892 #: application/Controller/Admin/Pricing.php:313 2012 893 msgid "All posts are free by default now." 2013 894 msgstr "Alle Beiträge sind nun standardmäßig kostenlos." 2014 895 2015 #: application/Controller/Admin/Pricing.php:3 31896 #: application/Controller/Admin/Pricing.php:316 2016 897 #, php-format 2017 898 msgid "The global default price for all posts is %s %s now." 2018 899 msgstr "Der allgemeine Standardpreis für alle Beiträge ist jetzt %s %s." 2019 900 2020 #: application/Controller/Admin/Pricing.php:3 95901 #: application/Controller/Admin/Pricing.php:379 2021 902 msgid "There is no such category on this website." 2022 903 msgstr "Diese Kategorie existiert nicht." 2023 904 2024 #: application/Controller/Admin/Pricing.php:4 32905 #: application/Controller/Admin/Pricing.php:415 2025 906 #, php-format 2026 907 msgid "All posts in category %s have a default price of %s %s now." 2027 908 msgstr "Alle Beiträge in Kategorie %s haben nun einen Standardpreis von %s %s." 2028 909 2029 #: application/Controller/Admin/Pricing.php:4 98910 #: application/Controller/Admin/Pricing.php:460 2030 911 #, php-format 2031 912 msgid "The default price for category %s was deleted." 2032 913 msgstr "Der Standardpreis für die Kategorie %s wurde entfernt." 2033 914 2034 #: application/Controller/Admin/Pricing.php:563 2035 msgid "The prices of all posts" 2036 msgstr "Die Preise aller Beiträge" 2037 2038 #: application/Controller/Admin/Pricing.php:565 2039 msgid "have been" 2040 msgstr "wurden" 2041 2042 #: application/Controller/Admin/Pricing.php:566 2043 #: application/Controller/Admin/Pricing.php:597 2044 msgid "set" 2045 msgstr "gesetzt" 2046 2047 #: application/Controller/Admin/Pricing.php:582 2048 #, php-format 2049 msgid "%s %s" 2050 msgstr "%s %s" 2051 2052 #: application/Controller/Admin/Pricing.php:628 2053 msgid "decreased" 2054 msgstr "reduziert" 2055 2056 #: application/Controller/Admin/Pricing.php:628 2057 msgid "increased" 2058 msgstr "erhöht" 2059 2060 #: application/Controller/Admin/Pricing.php:642 2061 msgid "made free" 2062 msgstr "kostenlos gemacht" 2063 2064 #: application/Controller/Admin/Pricing.php:647 2065 msgid "reset" 2066 msgstr "zurückgesetzt" 2067 2068 #: application/Controller/Admin/Pricing.php:797 2069 msgid "Bulk operation saved." 2070 msgstr "Bulk Price Operation gespeichert." 2071 2072 #: application/Controller/Admin/Pricing.php:828 2073 msgid "Bulk operation deleted." 2074 msgstr "Bulk Price Operation gelöscht." 2075 2076 #: application/Controller/Admin/Pricing.php:871 915 #: application/Controller/Admin/Pricing.php:518 2077 916 msgid "An error occurred when trying to save the time pass. Please try again." 2078 917 msgstr "" … … 2080 919 "Sie es noch einmal." 2081 920 2082 #: application/Controller/Admin/Pricing.php: 926921 #: application/Controller/Admin/Pricing.php:573 2083 922 msgid "Pass saved." 2084 923 msgstr "Pass gespeichert." 2085 924 2086 #: application/Controller/Admin/Pricing.php: 950925 #: application/Controller/Admin/Pricing.php:598 2087 926 msgid "Time pass deleted." 2088 927 msgstr "Zeitpass gelöscht." 2089 928 2090 #: application/Controller/Admin/Pricing.php: 957929 #: application/Controller/Admin/Pricing.php:605 2091 930 msgid "The selected pass was deleted already." 2092 931 msgstr "Der ausgewählte Pass wurde bereits gelöscht." 2093 932 2094 #: application/Controller/Admin/Pricing.php: 997933 #: application/Controller/Admin/Pricing.php:648 2095 934 msgid "" 2096 935 "An error occurred when trying to save the subscription. Please try again." … … 2099 938 "Sie es erneut." 2100 939 2101 #: application/Controller/Admin/Pricing.php: 1020940 #: application/Controller/Admin/Pricing.php:671 2102 941 msgid "Subscription saved." 2103 942 msgstr "Abo gespeichert." 2104 943 2105 #: application/Controller/Admin/Pricing.php: 1041944 #: application/Controller/Admin/Pricing.php:693 2106 945 msgid "Subscription deleted." 2107 946 msgstr "Abo gelöscht." 2108 947 2109 #: application/Controller/Admin/Pricing.php: 1048948 #: application/Controller/Admin/Pricing.php:700 2110 949 msgid "The selected subscription was deleted already." 2111 950 msgstr "Dieses Abo wurde bereits gelöscht." 2112 951 2113 #: application/Controller/Admin/Pricing.php: 1103952 #: application/Controller/Admin/Pricing.php:755 2114 953 msgid "Incorrect voucher price." 2115 954 msgstr "Ungültiger Gutschein-Preis." 2116 955 2117 #: application/Controller/Admin/Pricing.php:1147 2118 msgid "Landing page saved." 2119 msgstr "Zielseite gespeichert." 2120 2121 #: application/Controller/Admin/Pricing.php:1173 956 #: application/Controller/Admin/Pricing.php:804 2122 957 msgid "" 2123 958 "You have to create a time pass, before you can disable individual purchases." … … 2126 961 "können." 2127 962 2128 #: application/Controller/Admin/Settings.php:55 963 #: application/Controller/Admin/Pricing.php:828 964 msgid "Passes" 965 msgstr "" 966 967 #: application/Controller/Admin/Pricing.php:829 views/backend/pricing.php:363 968 #: views/backend/pricing.php:412 969 msgid "Pass" 970 msgstr "Pass" 971 972 #: application/Controller/Admin/Pricing.php:839 973 msgid "Laterpay Passes Post type Registration issue." 974 msgstr "" 975 976 #: application/Controller/Admin/Settings.php:55 2129 977 #: application/Controller/Admin/Settings.php:72 2130 978 msgid "LaterPay Advanced Settings" 2131 979 msgstr "LaterPay – Erweiterte Einstellungen" 2132 980 2133 #: application/Controller/Admin/Settings.php:10 5981 #: application/Controller/Admin/Settings.php:103 2134 982 msgid "LaterPay Colors" 2135 983 msgstr "LaterPay Farben" 2136 984 2137 #: application/Controller/Admin/Settings.php:11 2985 #: application/Controller/Admin/Settings.php:110 2138 986 msgid "Main Color" 2139 987 msgstr "Hauptfarbe" 2140 988 2141 #: application/Controller/Admin/Settings.php:126 989 #: application/Controller/Admin/Settings.php:115 990 msgid "Main color for clickable elements. (Default: #01a99d)" 991 msgstr "" 992 993 #: application/Controller/Admin/Settings.php:124 2142 994 msgid "Hover Color" 2143 995 msgstr "Hover Farbe" 2144 996 2145 #: application/Controller/Admin/Settings.php:146 997 #: application/Controller/Admin/Settings.php:129 998 msgid "Hover color for clickable elements. (Default: #01766e)" 999 msgstr "" 1000 1001 #: application/Controller/Admin/Settings.php:144 2146 1002 msgid "You can customize the colors of clickable LaterPay elements." 2147 1003 msgstr "Sie können die Farben von klickbaren LaterPay Elementen anpassen." 2148 1004 2149 #: application/Controller/Admin/Settings.php:158 2150 msgid "Debugger Pane" 2151 msgstr "Debugger" 2152 2153 #: application/Controller/Admin/Settings.php:165 2154 #: application/Controller/Admin/Settings.php:181 2155 #: application/Core/Logger/Handler/WordPress.php:45 2156 msgid "LaterPay Debugger" 2157 msgstr "LaterPay Debugger" 2158 2159 #: application/Controller/Admin/Settings.php:173 2160 msgid "I want to view the LaterPay debugger pane" 2161 msgstr "Ich möchte die LaterPay Debugger Leiste sehen" 2162 2163 #: application/Controller/Admin/Settings.php:188 2164 msgid "List of allowed addresses to view debug(Ex.: 127.0.0.1,192.168.1.1)" 2165 msgstr "" 2166 "Liste der erlaubten IP-Adressen, die den Debugger sehen können (z. B. 127.0." 2167 "0.1,192.168.1.1)" 2168 2169 #: application/Controller/Admin/Settings.php:202 2170 msgid "" 2171 "The LaterPay debugger pane contains a lot of helpful plugin- and system-" 2172 "related information\n" 2173 " for debugging the LaterPay plugin and fixing configuration " 2174 "problems.<br>\n" 2175 " When activated, the debugger pane is rendered at the bottom " 2176 "of the screen.<br>\n" 2177 " It is visible both for users from address list<br>\n" 2178 " On a production installation you should switch it off again " 2179 "as soon as you don't need it anymore." 2180 msgstr "" 2181 "Der LaterPay Debugger stellt viele hilfreiche plugin- und systembezogene " 2182 "Informationen bereit.<br>\n" 2183 "Wenn die Debugger-Leiste aktiviert ist, wird sie am unteren Bildschirmrand " 2184 "angezeigt.<br>\n" 2185 "Sie wird für alle Nutzer mit den angegebenen IP-Adressen angezeigt.<br>\n" 2186 "Auf einer Produktivumgebung sollten Sie sie deaktivieren." 2187 2188 #: application/Controller/Admin/Settings.php:218 1005 #: application/Controller/Admin/Settings.php:157 2189 1006 msgid "Caching Compatibility Mode" 2190 1007 msgstr "Caching-Kompatibilitätsmodus" 2191 1008 2192 #: application/Controller/Admin/Settings.php: 2251009 #: application/Controller/Admin/Settings.php:164 2193 1010 msgid "Caching Compatibility" 2194 1011 msgstr "Caching-Kompatibilität" 2195 1012 2196 #: application/Controller/Admin/Settings.php: 2331013 #: application/Controller/Admin/Settings.php:172 2197 1014 msgid "I am using a caching plugin (e.g. WP Super Cache or Cachify)" 2198 1015 msgstr "Ich verwende ein Caching-Plugin (z. B. WP Super Cache oder Cachify)" 2199 1016 2200 #: application/Controller/Admin/Settings.php: 2471017 #: application/Controller/Admin/Settings.php:186 2201 1018 msgid "" 2202 1019 "You MUST enable caching compatiblity mode, if you are using a caching " 2203 "solution that caches\n" 2204 " entire HTML pages.<br>\n" 2205 " In caching compatibility mode the plugin works like this:<br>" 2206 "\n" 2207 " It renders paid posts only with the teaser content. This " 2208 "allows to cache them as static files without\n" 2209 " risking to leak the paid content.<br>\n" 2210 " When someone visits the page, it makes an Ajax request to " 2211 "determine, if the visitor has already bought\n" 2212 " the post and replaces the teaser with the full content, if " 2213 "required." 2214 msgstr "" 2215 "Sie MÜSSEN den Caching-Kompatibilitätsmodus aktivieren, wenn Sie eine " 2216 "Caching-Lösung verwenden, die vollständige HTML-Seiten cached.<br>\n" 2217 "Im Caching-Kompatibilitätsmodus arbeitet das Plugin wie folgt:<br>\n" 2218 "Kostenpflichtige Beiträge werden zunächst nur mit dem Teaser ausgeliefert. " 2219 "So können sie als statische Dateien gecached werden, ohne die " 2220 "kostenpflichtigen Inhalte mitauszuliefern.<br>\n" 2221 "Wenn ein Nutzer einen kostenpflichtigen Beitrag besucht, prüft das Plugin " 2222 "über einen Ajax-Request, ob der Nutzer diesen Artikel bereits gekauft hat. " 2223 "Falls ja, wird der Teaser durch den Volltext ersetzt." 2224 2225 #: application/Controller/Admin/Settings.php:265 1020 "solution\n" 1021 " that caches entire HTML pages." 1022 msgstr "" 1023 1024 #: application/Controller/Admin/Settings.php:189 1025 msgid "" 1026 "In caching compatibility mode the plugin works\n" 1027 " like this:" 1028 msgstr "" 1029 1030 #: application/Controller/Admin/Settings.php:192 1031 msgid "" 1032 "It renders paid posts only with the teaser content. This allows to cache\n" 1033 " them as static files without risking to leak the paid content." 1034 msgstr "" 1035 1036 #: application/Controller/Admin/Settings.php:195 1037 msgid "" 1038 "When someone visits\n" 1039 " the page, it makes an Ajax request to determine, if the visitor " 1040 "has already bought the post\n" 1041 " and replaces the teaser with the full content, if required." 1042 msgstr "" 1043 1044 #: application/Controller/Admin/Settings.php:209 2226 1045 msgid "LaterPay-enabled Post Types" 2227 1046 msgstr "LaterPay Post-Types" 2228 1047 2229 #: application/Controller/Admin/Settings.php:2 721048 #: application/Controller/Admin/Settings.php:216 2230 1049 msgid "Enabled Post Types" 2231 1050 msgstr "Aktivierte Post-Types" 2232 1051 2233 #: application/Controller/Admin/Settings.php:2 881052 #: application/Controller/Admin/Settings.php:232 2234 1053 msgid "" 2235 1054 "Please choose, which standard and custom post types should be sellable with " … … 2239 1058 "verfügbar sein soll." 2240 1059 2241 #: application/Controller/Admin/Settings.php:301 2242 msgid "Offering Time Passes on Free Posts" 2243 msgstr "Anzeigen von Zeitpässen bei kostenlosen Beiträgen" 2244 2245 #: application/Controller/Admin/Settings.php:308 2246 msgid "Time Passes Widget" 2247 msgstr "Zeitpässe" 2248 2249 #: application/Controller/Admin/Settings.php:316 2250 msgid "I want to display the time passes widget on free and paid posts" 2251 msgstr "" 2252 "Ich möchte Zeitpässe sowohl bei kostenpflichtigen als auch bei kostenlosen " 2253 "Beiträgen anzeigen" 2254 2255 #: application/Controller/Admin/Settings.php:330 1060 #: application/Controller/Admin/Settings.php:244 2256 1061 msgid "" 2257 1062 "Please choose, if you want to show the time passes widget on free posts, or " … … 2261 1066 "kostenlosen Beiträgen anzeigen möchten." 2262 1067 2263 #: application/Controller/Admin/Settings.php: 3412264 #: application/Controller/Admin/Settings.php: 3481068 #: application/Controller/Admin/Settings.php:255 1069 #: application/Controller/Admin/Settings.php:262 2265 1070 msgid "Require login" 2266 1071 msgstr "Login erforderlich" 2267 1072 2268 #: application/Controller/Admin/Settings.php: 3561073 #: application/Controller/Admin/Settings.php:270 2269 1074 msgid "Require the user to log in to LaterPay before a \"Pay Later\" purchase." 2270 1075 msgstr "" … … 2272 1077 "einzuloggen." 2273 1078 2274 #: application/Controller/Admin/Settings.php: 3701079 #: application/Controller/Admin/Settings.php:284 2275 1080 msgid "" 2276 1081 "Please choose if you want to require a login for \"Pay Later\" purchases." … … 2279 1084 "sein soll." 2280 1085 2281 #: application/Controller/Admin/Settings.php: 3831086 #: application/Controller/Admin/Settings.php:296 2282 1087 msgid "Gift Codes Limit" 2283 1088 msgstr "Einschränkungen für Geschenkgutscheine" 2284 1089 2285 #: application/Controller/Admin/Settings.php:3 901090 #: application/Controller/Admin/Settings.php:303 2286 1091 msgid "Times Redeemable" 2287 1092 msgstr "Maximal einlösbar" 2288 1093 2289 #: application/Controller/Admin/Settings.php: 4101094 #: application/Controller/Admin/Settings.php:323 2290 1095 msgid "" 2291 1096 "Specify, how many times a gift code can be redeemed for the associated time " … … 2295 1100 "eingelöst werden kann." 2296 1101 2297 #: application/Controller/Admin/Settings.php: 4501102 #: application/Controller/Admin/Settings.php:363 2298 1103 msgid "Automatically Generated Teaser Content" 2299 1104 msgstr "Automatisch erzeugter Teaser" 2300 1105 2301 #: application/Controller/Admin/Settings.php: 4571106 #: application/Controller/Admin/Settings.php:370 2302 1107 msgid "Teaser Content Word Count" 2303 1108 msgstr "Teaser-Länge" 2304 1109 2305 #: application/Controller/Admin/Settings.php: 4641110 #: application/Controller/Admin/Settings.php:377 2306 1111 msgid "Number of words extracted from paid posts as teaser content." 2307 1112 msgstr "Anzahl der Wörter aus dem Volltext, die als Teaser verwendet werden." 2308 1113 2309 #: application/Controller/Admin/Settings.php: 4781114 #: application/Controller/Admin/Settings.php:391 2310 1115 msgid "" 2311 1116 "The LaterPay WordPress plugin automatically generates teaser content for " 2312 1117 "every paid post\n" 2313 " without teaser content.<br>\n" 2314 " While technically possible, setting this parameter to zero " 2315 "is HIGHLY DISCOURAGED.<br>\n" 2316 " If you really, really want to have NO teaser content for a " 2317 "post, enter one space\n" 2318 " into the teaser content editor for that post." 2319 msgstr "" 2320 "Das LaterPay WordPress Plugin erstellt automatisch einen Teaserinhalt für " 2321 "jeden Bezahlinhalt, für den kein Teaser vorhanden ist.<br> Sie können diesen " 2322 "Wert auf 0 setzen, wir raten jedoch dringend davon ab.<br> Wenn Sie wirklich " 2323 "keinen Teaser setzen möchten, fügen Sie bitte ein Leerzeichen in das " 2324 "Teaserfeld des betreffenden Beitrags ein." 2325 2326 #: application/Controller/Admin/Settings.php:494 1118 " without teaser content." 1119 msgstr "" 1120 1121 #: application/Controller/Admin/Settings.php:394 1122 msgid "" 1123 "While technically possible, setting this parameter to zero is\n" 1124 " HIGHLY DISCOURAGED." 1125 msgstr "" 1126 1127 #: application/Controller/Admin/Settings.php:397 1128 msgid "" 1129 "If you really, really want to have NO teaser content for a post,\n" 1130 " enter one space into the teaser content editor for that post." 1131 msgstr "" 1132 1133 #: application/Controller/Admin/Settings.php:410 2327 1134 msgid "Content Preview under Overlay" 2328 1135 msgstr "Beitragsvorschau unter Overlay" 2329 1136 2330 #: application/Controller/Admin/Settings.php: 5011137 #: application/Controller/Admin/Settings.php:417 2331 1138 msgid "Percentage of Post Content" 2332 1139 msgstr "Anteil des Volltextes" 2333 1140 2334 #: application/Controller/Admin/Settings.php: 5081141 #: application/Controller/Admin/Settings.php:424 2335 1142 #, php-format 2336 1143 msgid "" … … 2342 1149 "die ersten 20% des Volltextes unter dem Overlay an.\"" 2343 1150 2344 #: application/Controller/Admin/Settings.php: 5151151 #: application/Controller/Admin/Settings.php:431 2345 1152 msgid "Minimum Number of Words" 2346 1153 msgstr "Mindestanzahl Wörter" 2347 1154 2348 #: application/Controller/Admin/Settings.php: 5221155 #: application/Controller/Admin/Settings.php:438 2349 1156 msgid "" 2350 1157 "Applied if number of words as percentage of the total number of words is " … … 2355 1162 "als dieser Wert." 2356 1163 2357 #: application/Controller/Admin/Settings.php: 5291164 #: application/Controller/Admin/Settings.php:445 2358 1165 msgid "Maximum Number of Words" 2359 1166 msgstr "Höchstanzahl Wörter" 2360 1167 2361 #: application/Controller/Admin/Settings.php: 5361168 #: application/Controller/Admin/Settings.php:452 2362 1169 msgid "" 2363 1170 "Applied if number of words as percentage of the total number of words " … … 2368 1175 "dieser Wert." 2369 1176 2370 #: application/Controller/Admin/Settings.php: 5531177 #: application/Controller/Admin/Settings.php:469 2371 1178 msgid "" 2372 1179 "In the appearance tab, you can choose to preview your paid posts with the " 2373 1180 "teaser content plus\n" 2374 " an excerpt of the full content, covered by a semi-" 2375 "transparent overlay.<br>\n" 2376 " The following three parameters give you fine-grained control " 2377 "over the length of this excerpt.<br>\n" 2378 " These settings do not affect the teaser content in any way." 2379 msgstr "" 2380 "Im Tab \"Darstellung\" können Sie wählen, welche Vorschau Ihre Besucher für " 2381 "Bezahlinhalte sehen: Entweder nur einen Teaser-Text plus Kauflink oder einen " 2382 "Teaser-Text plus einen Auszug unter einem halbtransparenten Overlay.<br>\n" 2383 "Mit den folgenden drei Parametern haben Sie die Möglichkeit, die Länge " 2384 "dieses Auszuges anzupassen.<br>\n" 2385 "Diese Einstellungen beeinflussen nicht die Länge des Teaser-Textes." 2386 2387 #: application/Controller/Admin/Settings.php:603 1181 " an excerpt of the full content, covered by a semi-transparent " 1182 "overlay." 1183 msgstr "" 1184 1185 #: application/Controller/Admin/Settings.php:472 1186 msgid "" 1187 "The following three parameters give you fine-grained control over the length " 1188 "of this excerpt." 1189 msgstr "" 1190 1191 #: application/Controller/Admin/Settings.php:474 1192 msgid "These settings do not affect the teaser content in any way." 1193 msgstr "" 1194 1195 #: application/Controller/Admin/Settings.php:521 2388 1196 msgid "Unlimited Access to Paid Content" 2389 1197 msgstr "Unbegrenzter Zugriff auf Bezahlinhalte" 2390 1198 2391 #: application/Controller/Admin/Settings.php: 6341199 #: application/Controller/Admin/Settings.php:552 2392 1200 msgid "" 2393 1201 "You can give logged-in users unlimited access to specific categories " 2394 "depending on their user\n" 2395 " role.<br>\n" 2396 " This feature can be useful e.g. for giving free access to " 2397 "existing subscribers.<br>\n" 2398 " We recommend the plugin 'User Role Editor' for adding custom " 2399 "roles to WordPress." 2400 msgstr "" 2401 "Sie können eingeloggten Nutzern mit einer bestimmten Rolle unbegrenzten " 2402 "Zugang zu einzelnen Kategorien geben.<br>\n" 2403 "Diese Funktionalität kann z. B. nützlich sein, wenn Sie bestehenden " 2404 "Abonnenten Zugriff auf LaterPay-Inhalte geben möchten.<br>\n" 2405 "Wir empfehlen das Plugin \"User Role Editor\", um Nutzerrollen zu WordPress " 2406 "hinzuzufügen." 2407 2408 #: application/Controller/Admin/Settings.php:644 1202 "depending on their user role." 1203 msgstr "" 1204 1205 #: application/Controller/Admin/Settings.php:554 1206 msgid "" 1207 "This feature can be useful e.g. for giving free access to existing " 1208 "subscribers." 1209 msgstr "" 1210 1211 #: application/Controller/Admin/Settings.php:556 1212 msgid "" 1213 "We recommend the plugin 'User Role Editor' for adding custom roles to " 1214 "WordPress." 1215 msgstr "" 1216 1217 #: application/Controller/Admin/Settings.php:562 2409 1218 msgid "User Role" 2410 1219 msgstr "Nutzerrolle" 2411 1220 2412 #: application/Controller/Admin/Settings.php: 6451221 #: application/Controller/Admin/Settings.php:564 2413 1222 msgid "Unlimited Access to Categories" 2414 1223 msgstr "Unbeschränkter Zugriff auf die Kategorien" 2415 1224 2416 #: application/Controller/Admin/Settings.php: 6501225 #: application/Controller/Admin/Settings.php:569 2417 1226 msgid "Please add a custom role first." 2418 1227 msgstr "Bitte erstellen Sie erst eine eigene Nutzerrolle." 2419 1228 2420 #: application/Controller/Admin/Settings.php: 9441229 #: application/Controller/Admin/Settings.php:864 2421 1230 msgid "LaterPay API Settings" 2422 1231 msgstr "LaterPay API-Einstellungen" 2423 1232 2424 #: application/Controller/Admin/Settings.php: 9531233 #: application/Controller/Admin/Settings.php:873 2425 1234 msgid "Fallback Behavior" 2426 1235 msgstr "Fallback-Verhalten" 2427 1236 2428 #: application/Controller/Admin/Settings.php: 9701237 #: application/Controller/Admin/Settings.php:890 2429 1238 msgid "Enabled on home page" 2430 1239 msgstr "LaterPay auf Startseite aktivieren" 2431 1240 2432 #: application/Controller/Admin/Settings.php: 9781241 #: application/Controller/Admin/Settings.php:898 2433 1242 msgid "I want to enable requests to LaterPay API on home page" 2434 1243 msgstr "Ich möchte LaterPay API Aufrufe auf der Startseite erlauben" 2435 1244 2436 #: application/Controller/Admin/Settings.php:9 921245 #: application/Controller/Admin/Settings.php:912 2437 1246 msgid "" 2438 1247 "Define fallback behavior in case LaterPay API is not responding and option " … … 2443 1252 "soll." 2444 1253 2445 #: application/Controller/Admin/Settings.php: 10051254 #: application/Controller/Admin/Settings.php:925 2446 1255 msgid "Do nothing" 2447 1256 msgstr "Nichts tun" 2448 1257 2449 #: application/Controller/Admin/Settings.php: 10061258 #: application/Controller/Admin/Settings.php:926 2450 1259 msgid "" 2451 1260 "No user can access premium content while the LaterPay API is not responding." … … 2454 1263 "erreichbar ist." 2455 1264 2456 #: application/Controller/Admin/Settings.php: 10101265 #: application/Controller/Admin/Settings.php:930 2457 1266 msgid "Give full access" 2458 1267 msgstr "Vollzugriff gewähren" 2459 1268 2460 #: application/Controller/Admin/Settings.php: 10111269 #: application/Controller/Admin/Settings.php:931 2461 1270 msgid "" 2462 1271 "All users have full access to premium content in order to not disappoint " … … 2466 1275 "bisherige Käufer nicht zu verärgern)." 2467 1276 2468 #: application/Controller/Admin/Settings.php: 10151277 #: application/Controller/Admin/Settings.php:935 2469 1278 msgid "Hide premium content" 2470 1279 msgstr "Bezahlinhalte ausblenden" 2471 1280 2472 #: application/Controller/Admin/Settings.php: 10161281 #: application/Controller/Admin/Settings.php:936 2473 1282 msgid "Premium content is hidden from users. Direct access would be blocked." 2474 1283 msgstr "Bezahlinhalte werden ausgeblendet, der Direktzugriff wird verweigert." 2475 1284 2476 #: application/Controller/Admin/Settings.php: 10292477 #: application/Controller/Admin/Settings.php: 10381285 #: application/Controller/Admin/Settings.php:949 1286 #: application/Controller/Admin/Settings.php:958 2478 1287 msgid "LaterPay Pro Merchant" 2479 1288 msgstr "LaterPay Pro Händlerkonto" 2480 1289 2481 #: application/Controller/Admin/Settings.php: 10341290 #: application/Controller/Admin/Settings.php:954 2482 1291 msgid "" 2483 1292 "Only choose this option, if you have a LaterPay Pro merchant account. " … … 2492 1301 "dass Sie diese Option aktivieren möchten?" 2493 1302 2494 #: application/Controller/Admin/Settings.php: 10461303 #: application/Controller/Admin/Settings.php:966 2495 1304 msgid "I have a LaterPay Pro merchant account." 2496 1305 msgstr "Ich habe ein LaterPay Pro Händlerkonto." 2497 1306 2498 #: application/Controller/Admin/Settings.php: 10611307 #: application/Controller/Admin/Settings.php:981 2499 1308 msgid "Please choose, if you have a LaterPay Pro merchant account." 2500 1309 msgstr "Bitte aktivieren, wenn Sie ein LaterPay Pro Händlerkonto besitzen." 2501 1310 2502 #: views/frontend/partials/widget/time-passes.php:28 1311 #: application/Controller/Frontend/Post.php:553 1312 msgid "In Live mode, your visitors would now see the LaterPay purchase dialog." 1313 msgstr "" 1314 "Im Live-Modus würden Ihre Besucher jetzt den LaterPay Kaufdialog sehen." 1315 1316 #: application/Controller/Frontend/Post.php:554 1317 msgid "Voucher code accepted." 1318 msgstr "Gutschein-Code akzeptiert." 1319 1320 #: application/Controller/Frontend/Post.php:555 1321 msgid " is not a valid voucher code!" 1322 msgstr " ist kein gültiger Gutschein-Code!" 1323 1324 #: application/Controller/Frontend/Post.php:556 1325 msgid "Please enter a six-digit voucher code." 1326 msgstr "Bitte geben Sie einen sechsstelligen Gutschein-Code ein." 1327 1328 #: application/Controller/Frontend/Post.php:557 1329 msgid "An error occurred. Please try again." 1330 msgstr "Ein Fehler ist aufgetreten. Bitte versuchen Sie es erneut." 1331 1332 #: application/Controller/Frontend/Post.php:559 1333 #: application/Module/Purchase.php:176 1334 msgid "Buy Now, Pay Later" 1335 msgstr "Jetzt kaufen, später zahlen" 1336 1337 #: application/Controller/Frontend/Post.php:560 1338 #: application/Module/Purchase.php:172 application/Module/Purchase.php:271 1339 #: application/Module/Purchase.php:284 1340 msgid "Buy Now" 1341 msgstr "Jetzt kaufen" 1342 1343 #: application/Controller/Frontend/Post.php:561 1344 msgid "Subscribe Now" 1345 msgstr "Jetzt abonnieren" 1346 1347 #: application/Controller/Frontend/Post.php:668 1348 msgid "" 1349 "— Visit the post to buy its full content for {price} {currency} " 1350 "— {teaser_content}" 1351 msgstr "" 1352 "— Kaufen Sie den vollständigen Inhalt für {price} {currency} — " 1353 "{teaser_content}" 1354 1355 #: application/Controller/Frontend/PreviewMode.php:156 1356 #: application/Controller/Frontend/PreviewMode.php:240 1357 msgid "Updated." 1358 msgstr "Aktualisiert." 1359 1360 #: application/Controller/Frontend/PreviewMode.php:214 1361 #: application/Module/Appearance.php:191 1362 msgid "You don't have sufficient user capabilities to do this." 1363 msgstr "Sie haben nicht die erforderlichen Berechtigungen für diese Aktion." 1364 1365 #: application/Controller/Frontend/Shortcode.php:91 1366 msgid "Download now" 1367 msgstr "Jetzt herunterladen" 1368 1369 #: application/Controller/Frontend/Shortcode.php:96 1370 msgid "Watch now" 1371 msgstr "Jetzt ansehen" 1372 1373 #: application/Controller/Frontend/Shortcode.php:101 1374 msgid "Listen now" 1375 msgstr "Jetzt anhören" 1376 1377 #: application/Controller/Frontend/Shortcode.php:105 1378 msgid "Read now" 1379 msgstr "Jetzt lesen" 1380 1381 #: application/Controller/Frontend/Shortcode.php:185 1382 msgid "Wrong time pass id." 1383 msgstr "Ungültige Zeitpass-ID." 1384 1385 #: application/Controller/Install.php:76 1386 #, php-format 1387 msgid "" 1388 "<p>LaterPay: Your server <strong>does not</strong> meet the minimum " 1389 "requirement of %s version %s or higher. You are running %s version %s.</p>" 1390 msgstr "" 1391 "<p>LaterPay: Ihr Server <strong>erfüllt nicht die Mindestanforderung</" 1392 "strong> von %s-Version %s oder neuer. Sie verwenden %s-Version %s.</p>" 1393 1394 #: application/Controller/Install.php:93 1395 msgid "" 1396 "The LaterPay plugin could not be installed. Please fix the reported issues " 1397 "and try again." 1398 msgstr "" 1399 "Das LaterPay Plugin konnte nicht installiert werden. Bitte beheben Sie die " 1400 "genannten Probleme und versuchen Sie es erneut." 1401 1402 #: application/Core/Bootstrap.php:56 1403 #, php-format 1404 msgid "%s: <code>%s</code> not found" 1405 msgstr "%s: <code>%s</code> nicht gefunden" 1406 1407 #: application/Core/Exception/FormValidation.php:18 1408 #, php-format 1409 msgid "Form \"%s\" validation failed." 1410 msgstr "Formatvalidierung \"%s\" fehlgeschlagen." 1411 1412 #: application/Core/Exception/InvalidIncomingData.php:14 1413 #, php-format 1414 msgid "\"%s\" param missed or has incorrect value" 1415 msgstr "Der Parameter \"%s\" fehlt oder hat einen ungültigen Wert." 1416 1417 #: application/Core/Exception/PostNotFound.php:14 1418 #, php-format 1419 msgid "Post with id \"%s\" not exist" 1420 msgstr "Es existiert kein Beitrag mit der ID \"%s\"." 1421 1422 #: application/Helper/Appearance.php:22 application/Helper/Appearance.php:52 1423 msgid "Read now, pay later" 1424 msgstr "Jetzt lesen, später zahlen" 1425 1426 #: application/Helper/Post.php:300 1427 msgid "(more…)" 1428 msgstr "" 1429 1430 #: application/Helper/Subscription.php:33 1431 msgid "1 Month Subscription" 1432 msgstr "Monatsabo" 1433 1434 #: application/Helper/Subscription.php:34 1435 msgid "1 month access to all content on this website (cancellable anytime)" 1436 msgstr "1 Monat Zugriff auf alle Inhalte dieser Website (jederzeit kündbar)" 1437 1438 #: application/Helper/Subscription.php:68 application/Helper/TimePass.php:174 1439 #: views/backend/pricing.php:455 views/backend/pricing.php:631 1440 msgid "access to" 1441 msgstr "Zugriff auf" 1442 1443 #: application/Helper/Subscription.php:78 application/Helper/TimePass.php:184 1444 msgid "for" 1445 msgstr "für" 1446 1447 #: application/Helper/TimePass.php:32 1448 msgid "24-Hour Pass" 1449 msgstr "24-Stunden-Pass" 1450 1451 #: application/Helper/TimePass.php:33 1452 msgid "24 hours access to all content on this website" 1453 msgstr "24 Stunden Zugang zu allen Inhalten dieser Website" 1454 1455 #: application/Helper/TimePass.php:80 1456 msgid "Hour" 1457 msgstr "Stunde" 1458 1459 #: application/Helper/TimePass.php:81 1460 msgid "Day" 1461 msgstr "Tag" 1462 1463 #: application/Helper/TimePass.php:82 1464 msgid "Week" 1465 msgstr "Woche" 1466 1467 #: application/Helper/TimePass.php:83 1468 msgid "Month" 1469 msgstr "Monat" 1470 1471 #: application/Helper/TimePass.php:84 1472 msgid "Year" 1473 msgstr "Jahr" 1474 1475 #: application/Helper/TimePass.php:89 1476 msgid "Hours" 1477 msgstr "Stunden" 1478 1479 #: application/Helper/TimePass.php:90 1480 msgid "Days" 1481 msgstr "Tage" 1482 1483 #: application/Helper/TimePass.php:91 1484 msgid "Weeks" 1485 msgstr "Wochen" 1486 1487 #: application/Helper/TimePass.php:92 1488 msgid "Months" 1489 msgstr "Monate" 1490 1491 #: application/Helper/TimePass.php:93 1492 msgid "Years" 1493 msgstr "Jahre" 1494 1495 #: application/Helper/TimePass.php:116 1496 msgid "later" 1497 msgstr "später" 1498 1499 #: application/Helper/TimePass.php:117 1500 msgid "immediately" 1501 msgstr "sofort" 1502 1503 #: application/Helper/TimePass.php:138 1504 msgid "All content" 1505 msgstr "Alle Inhalte" 1506 1507 #: application/Helper/TimePass.php:139 1508 msgid "All content except for category" 1509 msgstr "Alle Inhalte außer in Kategorie" 1510 1511 #: application/Helper/TimePass.php:140 1512 msgid "All content in category" 1513 msgstr "Alle Inhalte in Kategorie" 1514 1515 #: application/Helper/View.php:217 1516 msgid "k" 1517 msgstr "t" 1518 1519 #: application/Helper/View.php:250 1520 msgid "Problem with inserted shortcode:" 1521 msgstr "Es gibt ein Problem mit dem eingefügten Shortcode:" 1522 1523 #: application/Module/Purchase.php:110 application/Module/Purchase.php:198 1524 #: views/backend/partials/purchase-overlay.php:74 1525 msgid "I already bought this" 1526 msgstr "Bereits gekauft?" 1527 1528 #: application/Module/Purchase.php:260 application/Module/TimePasses.php:368 1529 msgid "Read Now" 1530 msgstr "Jetzt lesen" 1531 1532 #: application/Module/Purchase.php:262 1533 msgid "Read Now, Pay Later" 1534 msgstr "Jetzt lesen, später zahlen" 1535 1536 #: application/Module/Purchase.php:272 1537 msgid "" 1538 "Buy this post now with LaterPay and <br>pay with a payment method you trust." 1539 msgstr "" 1540 "Kaufen Sie diesen Beitrag jetzt mit LaterPay und <br>bezahlen Sie mit einer " 1541 "Zahlungsmethode Ihres Vertrauens." 1542 1543 #: application/Module/Purchase.php:276 application/Module/Purchase.php:289 1544 #: application/Module/TimePasses.php:376 1545 msgid "Read Immediately" 1546 msgstr "Sofort lesen" 1547 1548 #: application/Module/Purchase.php:277 1549 msgid "" 1550 "Immediately access your purchase. <br>You only buy this post. No " 1551 "subscription, no fees." 1552 msgstr "" 1553 "Greifen Sie sofort auf Ihren Kauf zu.<br>Sie kaufen nur diesen Beitrag. Kein " 1554 "Abo, keine Gebühren." 1555 1556 #: application/Module/Purchase.php:285 1557 msgid "Just agree to pay later.<br> No upfront registration and payment." 1558 msgstr "" 1559 "Stimmen Sie einfach zu, später zu zahlen.<br> Keine Vorabregistrierung. " 1560 "Keine Vorauszahlung." 1561 1562 #: application/Module/Purchase.php:290 1563 msgid "" 1564 "Access your purchase immediately.<br> You are only buying this article, not " 1565 "a subscription." 1566 msgstr "" 1567 "Greifen Sie sofort auf Ihren Kauf zu.<br>Sie kaufen nur diesen Beitrag. Kein " 1568 "Abo, keine Gebühren." 1569 1570 #: application/Module/Purchase.php:295 1571 #, php-format 1572 msgid "" 1573 "Buy with LaterPay until you reach a total of %s %s.<br> Only then do you " 1574 "have to register and pay." 1575 msgstr "" 1576 "Kaufen Sie mit LaterPay, bis Sie %s %s erreicht haben. Erst dann müssen Sie " 1577 "sich registrieren und bezahlen." 1578 1579 #: application/Module/TimePasses.php:300 1580 msgid "Buy a time pass to read the full content." 1581 msgstr "Kaufen Sie einen Zeitpass, um den gesamten Inhalt anzuzeigen." 1582 1583 #: application/Module/TimePasses.php:340 1584 msgid "Wrong time pass id or no time passes specified." 1585 msgstr "Ungültige Zeitpass-ID oder keine Zeitpässe vorhanden." 1586 1587 #: application/Module/TimePasses.php:371 1588 msgid "Buy Time Pass" 1589 msgstr "Zeitpass kaufen" 1590 1591 #: application/Module/TimePasses.php:372 1592 msgid "Buy a LaterPay time pass and pay with a payment method you trust." 1593 msgstr "" 1594 "Kaufen Sie einen LaterPay Zeitpass und zahlen Sie mit einer Zahlungsmethode " 1595 "Ihres Vertrauens." 1596 1597 #: application/Module/TimePasses.php:377 1598 msgid "" 1599 "Immediately access your content. <br>A time pass is not a subscription, it " 1600 "expires automatically." 1601 msgstr "" 1602 "Greifen Sie sofort auf Ihre Inhalte zu.<br>\n" 1603 "Ein Zeitpass ist kein Abo, denn er läuft automatisch aus." 1604 1605 #: views/backend/account.php:21 views/backend/appearance.php:19 1606 #: views/backend/pricing.php:19 1607 msgid "Test mode" 1608 msgstr "Test-Modus" 1609 1610 #: views/backend/account.php:22 views/backend/appearance.php:20 1611 #: views/backend/pricing.php:23 1612 msgid "Earn money in" 1613 msgstr "" 1614 1615 #: views/backend/account.php:22 views/backend/appearance.php:20 1616 #: views/backend/pricing.php:23 1617 msgid "live mode" 1618 msgstr "" 1619 1620 #: views/backend/account.php:35 1621 msgid "The LaterPay plugin is in" 1622 msgstr "Das LaterPay Plugin ist im" 1623 1624 #: views/backend/account.php:51 1625 msgid "mode." 1626 msgstr "Modus." 1627 1628 #: views/backend/account.php:55 1629 msgid "It is invisible" 1630 msgstr "Es ist für Besucher nicht sichtbar" 1631 1632 #: views/backend/account.php:72 1633 msgid "visible to visitors." 1634 msgstr "sichtbar." 1635 1636 #: views/backend/account.php:80 1637 msgid "Sandbox Environment" 1638 msgstr "Sandbox" 1639 1640 #: views/backend/account.php:83 1641 msgid "for testing with simulated payments" 1642 msgstr "zu Testzwecken mit simulierten Zahlungen" 1643 1644 #: views/backend/account.php:102 1645 msgid "Paste Sandbox Merchant ID here" 1646 msgstr "Sandbox Merchant ID hier einfügen" 1647 1648 #: views/backend/account.php:103 views/backend/account.php:159 1649 msgid "Merchant ID" 1650 msgstr "Merchant ID" 1651 1652 #: views/backend/account.php:122 1653 msgid "Paste Sandbox API Key here" 1654 msgstr "Sandbox API Key hier einfügen" 1655 1656 #: views/backend/account.php:123 views/backend/account.php:179 1657 msgid "API Key" 1658 msgstr "API Key" 1659 1660 #: views/backend/account.php:136 1661 msgid "Live Environment" 1662 msgstr "Live" 1663 1664 #: views/backend/account.php:139 1665 msgid "for processing real financial transactions" 1666 msgstr "Produktivumgebung für echte Käufe und Zahlungen" 1667 1668 #: views/backend/account.php:158 1669 msgid "Paste Live Merchant ID here" 1670 msgstr "Live Merchant ID hier einfügen" 1671 1672 #: views/backend/account.php:178 1673 msgid "Paste Live API Key here" 1674 msgstr "Live API Key hier einfügen" 1675 1676 #: views/backend/account.php:191 1677 msgid "Request Live API Credentials" 1678 msgstr "Live API Zugangsdaten anfordern" 1679 1680 #: views/backend/account.php:201 1681 msgid "Region and Currency" 1682 msgstr "Ländergruppe und Währung" 1683 1684 #: views/backend/account.php:203 1685 msgid "Select the region for your LaterPay merchant account" 1686 msgstr "Wählen Sie die Ländergruppe Ihres LaterPay Händlerkontos aus" 1687 1688 #: views/backend/account.php:207 1689 msgid "" 1690 "Is the selling company or person based in Europe or in the United States?" 1691 msgstr "" 1692 1693 #: views/backend/account.php:209 1694 msgid "" 1695 "If you select 'Europe', all prices will be displayed and charged in Euro " 1696 "(EUR), and the plugin will connect to the LaterPay Europe platform." 1697 msgstr "" 1698 1699 #: views/backend/account.php:211 1700 msgid "" 1701 "If you select 'United States', all prices will be displayed and charged in U." 1702 "S. Dollar (USD), and the plugin will connect to the LaterPay U.S. platform." 1703 msgstr "" 1704 1705 #: views/backend/account.php:220 1706 msgid "Europe (EUR)" 1707 msgstr "Europa (EUR)" 1708 1709 #: views/backend/account.php:221 1710 msgid "United States (USD)" 1711 msgstr "USA (USD)" 1712 1713 #: views/backend/account.php:228 1714 msgid "Important:" 1715 msgstr "" 1716 1717 #: views/backend/account.php:230 1718 msgid " The minimum value for \"Pay Now\" prices in the U.S. region is" 1719 msgstr "" 1720 1721 #: views/backend/account.php:232 1722 msgid "$1.99" 1723 msgstr "" 1724 1725 #: views/backend/account.php:235 1726 msgid "" 1727 "If you have already set \"Pay Now\" prices lower than 1.99, make sure to " 1728 "change them before you switch to the U.S. region." 1729 msgstr "" 1730 1731 #: views/backend/account.php:237 1732 msgid "" 1733 "If you haven't done any configuration yet, you can safely switch the region " 1734 "without further adjustments. " 1735 msgstr "" 1736 1737 #: views/backend/appearance.php:33 1738 msgid "Content Preview for Paid Posts" 1739 msgstr "Vorschau für Bezahlinhalte" 1740 1741 #: views/backend/appearance.php:47 1742 msgid "Teaser + Purchase Link" 1743 msgstr "Teaser + Kauflink" 1744 1745 #: views/backend/appearance.php:56 1746 msgid "Teaser + Explanatory Overlay" 1747 msgstr "Teaser + erklärendes Overlay" 1748 1749 #: views/backend/appearance.php:65 1750 msgid "Teaser + Purchase Overlay" 1751 msgstr "Teaser + Kauf-Overlay" 1752 1753 #: views/backend/appearance.php:77 1754 msgid "Header" 1755 msgstr "Header" 1756 1757 #: views/backend/appearance.php:82 1758 msgid "Header background color" 1759 msgstr "Hintergrundfarbe Header" 1760 1761 #: views/backend/appearance.php:90 1762 msgid "Header title" 1763 msgstr "Überschrift" 1764 1765 #: views/backend/appearance.php:98 1766 msgid "Purchase Options" 1767 msgstr "Kaufoptionen" 1768 1769 #: views/backend/appearance.php:103 1770 msgid "Background color" 1771 msgstr "Hintergrundfarbe" 1772 1773 #: views/backend/appearance.php:111 1774 msgid "Main text color" 1775 msgstr "Schriftfarbe Text" 1776 1777 #: views/backend/appearance.php:119 1778 msgid "Description color text" 1779 msgstr "Schriftfarbe Beschreibungen" 1780 1781 #: views/backend/appearance.php:127 1782 msgid "Purchase button background color" 1783 msgstr "Hintergrundfarbe Kaufbutton" 1784 1785 #: views/backend/appearance.php:135 1786 msgid "Purchase button text color" 1787 msgstr "Schriftfarbe Kaufbutton" 1788 1789 #: views/backend/appearance.php:143 1790 msgid "Link main color" 1791 msgstr "Schriftfarbe Links" 1792 1793 #: views/backend/appearance.php:151 1794 msgid "Link hover color" 1795 msgstr "Hover-Schriftfarbe Links" 1796 1797 #: views/backend/appearance.php:159 1798 msgid "Footer" 1799 msgstr "Footer" 1800 1801 #: views/backend/appearance.php:164 1802 msgid "Show footer" 1803 msgstr "Footer anzeigen" 1804 1805 #: views/backend/appearance.php:172 1806 msgid "Footer background color" 1807 msgstr "Hintergrundfarbe Footer" 1808 1809 #: views/backend/appearance.php:182 1810 msgid "Preview" 1811 msgstr "Vorschau" 1812 1813 #: views/backend/appearance.php:188 views/backend/pricing.php:130 1814 #: views/backend/pricing.php:235 views/backend/pricing.php:340 1815 #: views/backend/pricing.php:372 views/backend/pricing.php:547 1816 #: views/backend/pricing.php:588 views/backend/pricing.php:702 1817 msgid "Save" 1818 msgstr "Speichern" 1819 1820 #: views/backend/appearance.php:189 views/backend/pricing.php:131 1821 #: views/backend/pricing.php:236 views/backend/pricing.php:341 1822 #: views/backend/pricing.php:373 views/backend/pricing.php:548 1823 #: views/backend/pricing.php:589 views/backend/pricing.php:703 1824 #: views/frontend/partials/widget/purchase-overlay.php:132 1825 msgid "Cancel" 1826 msgstr "Abbrechen" 1827 1828 #: views/backend/appearance.php:192 1829 msgid "Restore Default Values" 1830 msgstr "Standardwerte wiederherstellen" 1831 1832 #: views/backend/appearance.php:200 1833 msgid "Position of the LaterPay Purchase Button" 1834 msgstr "Position des LaterPay Buttons" 1835 1836 #: views/backend/appearance.php:214 views/backend/appearance.php:251 1837 msgid "Standard position" 1838 msgstr "Standardposition" 1839 1840 #: views/backend/appearance.php:223 views/backend/appearance.php:260 1841 msgid "Custom position" 1842 msgstr "Benutzerdefinierte Position" 1843 1844 #: views/backend/appearance.php:228 1845 msgid "" 1846 "Call action 'laterpay_purchase_button' in your theme to render the LaterPay " 1847 "purchase button at that position." 1848 msgstr "" 1849 "Rufen Sie die Action 'laterpay_purchase_button' in Ihrem Theme auf, um den " 1850 "LaterPay Button an einer Position Ihrer Wahl anzuzeigen." 1851 1852 #: views/backend/appearance.php:237 1853 msgid "Display of LaterPay Time Passes" 1854 msgstr "Position der LaterPay Zeitpässe" 1855 1856 #: views/backend/appearance.php:265 1857 msgid "" 1858 "Call action 'laterpay_time_passes' in your theme or use the shortcode " 1859 "'[laterpay_time_passes]' to show your users the available time passes." 1860 msgstr "" 1861 "Rufen Sie die Action 'laterpay_time_passes' in Ihrem Theme auf oder " 1862 "verwenden Sie den Shortcode '[laterpay_time_passes]', um Ihren Nutzern die " 1863 "verfügbaren Zeitpässe anzuzeigen." 1864 1865 #: views/backend/options.php:10 1866 msgid "You don't have sufficient permissions to manage options for this site." 1867 msgstr "" 1868 "Sie haben nicht die notwendigen Berechtigungen, um die Einstellungen für " 1869 "diese Seite zu verwalten." 1870 1871 #: views/backend/partials/pointer-scripts.php:12 1872 msgid "Welcome to LaterPay" 1873 msgstr "Willkommen bei LaterPay" 1874 1875 #: views/backend/partials/pointer-scripts.php:13 1876 msgid "Set the most appropriate settings for you." 1877 msgstr "Passen Sie das LaterPay Plugin Ihren Bedürfnissen an." 1878 1879 #: views/backend/partials/pointer-scripts.php:41 1880 msgid "Set a Price for this Post" 1881 msgstr "Preis für den Beitrag setzen" 1882 1883 #: views/backend/partials/pointer-scripts.php:42 1884 msgid "Set an" 1885 msgstr "" 1886 1887 #: views/backend/partials/pointer-scripts.php:43 1888 msgid " individual price " 1889 msgstr "" 1890 1891 #: views/backend/partials/pointer-scripts.php:44 1892 msgid "for this post here. " 1893 msgstr "" 1894 1895 #: views/backend/partials/pointer-scripts.php:45 1896 msgid "You can also apply" 1897 msgstr "" 1898 1899 #: views/backend/partials/pointer-scripts.php:46 1900 msgid " advanced pricing " 1901 msgstr "" 1902 1903 #: views/backend/partials/pointer-scripts.php:47 1904 msgid "by defining how the price changes over time." 1905 msgstr "" 1906 1907 #: views/backend/partials/pointer-scripts.php:75 1908 msgid "Add Teaser Content" 1909 msgstr "Teaser zum Beitrag hinzufügen" 1910 1911 #: views/backend/partials/pointer-scripts.php:76 1912 msgid "" 1913 "You´ll give your users a better impression of what they´ll buy, if you " 1914 "preview some text, images, or video from the actual post." 1915 msgstr "" 1916 "Um Ihren Nutzern eine bessere Vorstellung davon zu geben, was sie kaufen, " 1917 "sollten Sie Text, Bilder oder Videos aus dem Beitrag als Teaser anzeigen." 1918 1919 #: views/backend/partials/post-pricing-form.php:23 1920 msgid "Pay Later: users pay purchased content later" 1921 msgstr "Später zahlen: Nutzer bezahlen gekaufte Inhalte später." 1922 1923 #: views/backend/partials/post-pricing-form.php:36 1924 msgid "Pay Now: users pay purchased content immediately" 1925 msgstr "Sofort zahlen: Nutzer bezahlen gekaufte Inhalte sofort." 1926 1927 #: views/backend/partials/post-pricing-form.php:49 1928 msgid "0.00" 1929 msgstr "0,00" 1930 1931 #: views/backend/partials/post-pricing-form.php:66 1932 msgid "Individual Price" 1933 msgstr "Individueller Preis" 1934 1935 #: views/backend/partials/post-pricing-form.php:71 1936 msgid "Category Default Price" 1937 msgstr "Kategorie- preis" 1938 1939 #: views/backend/partials/post-pricing-form.php:78 1940 msgid "Global" 1941 msgstr "" 1942 1943 #: views/backend/partials/post-pricing-form.php:78 1944 msgid "Default Price" 1945 msgstr "" 1946 1947 #: views/backend/partials/post-pricing-form.php:115 1948 msgid "The dynamic pricing will" 1949 msgstr "" 1950 1951 #: views/backend/partials/post-pricing-form.php:115 1952 msgid "start" 1953 msgstr "" 1954 1955 #: views/backend/partials/post-pricing-form.php:115 1956 msgid ", once you have" 1957 msgstr "" 1958 1959 #: views/backend/partials/post-pricing-form.php:115 1960 msgid "published" 1961 msgstr "" 1962 1963 #: views/backend/partials/post-pricing-form.php:115 1964 msgid "this post." 1965 msgstr "" 1966 1967 #: views/backend/partials/post-pricing-form.php:120 1968 msgid "Restart dynamic pricing" 1969 msgstr "Dynamische Preissetzung neu starten" 1970 1971 #: views/backend/partials/purchase-overlay.php:23 1972 #: views/frontend/partials/widget/purchase-overlay.php:38 1973 msgid "This article" 1974 msgstr "Diesen Artikel" 1975 1976 #: views/backend/partials/purchase-overlay.php:26 1977 msgid "An Amazing Article" 1978 msgstr "" 1979 1980 #: views/backend/partials/purchase-overlay.php:41 1981 msgid "Week Pass" 1982 msgstr "Wochenpass" 1983 1984 #: views/backend/partials/purchase-overlay.php:44 1985 msgid "7 days access to all paid content on this website (no subscription)" 1986 msgstr "7 Tage Zugriff auf alle Inhalte dieser Website (kein Abo)" 1987 1988 #: views/backend/partials/purchase-overlay.php:59 1989 msgid "Month subscription" 1990 msgstr "Monatsabo" 1991 1992 #: views/backend/partials/purchase-overlay.php:62 1993 msgid "30 days access to all paid content (cancellable anytime)" 1994 msgstr "1 Monat Zugriff auf alle Inhalte dieser Website (jederzeit kündbar)" 1995 1996 #: views/backend/partials/purchase-overlay.php:72 1997 msgid "Buy now, pay later" 1998 msgstr "Jetzt kaufen, später zahlen" 1999 2000 #: views/backend/partials/purchase-overlay.php:74 2001 #: views/frontend/partials/widget/purchase-overlay.php:129 2002 msgid "Redeem voucher" 2003 msgstr "Gutschein einlösen" 2004 2005 #: views/backend/partials/purchase-overlay.php:89 2006 #: views/frontend/partials/widget/purchase-overlay.php:148 2007 msgid "Powered by" 2008 msgstr "Powered by" 2009 2010 #: views/backend/partials/subscription.php:18 2011 #: views/backend/partials/time-pass.php:23 2012 #: views/frontend/partials/post/gift/gift-pass.php:26 2013 msgid "on this website" 2014 msgstr "dieser Website" 2015 2016 #: views/backend/partials/subscription.php:32 2017 #: views/backend/partials/time-pass.php:37 2018 #: views/frontend/partials/post/gift/gift-actions.php:25 2019 #: views/frontend/partials/widget/purchase-button.php:18 2020 #: views/frontend/partials/widget/purchase-link.php:14 2021 msgid "Buy now with LaterPay" 2022 msgstr "Jetzt mit LaterPay kaufen" 2023 2024 #: views/backend/partials/subscription.php:35 2025 #: views/backend/partials/time-pass.php:43 2026 msgid "Terms" 2027 msgstr "Details" 2028 2029 #: views/backend/partials/subscription.php:40 2030 #: views/backend/partials/time-pass.php:48 2031 msgid "Back" 2032 msgstr "Zurück" 2033 2034 #: views/backend/partials/subscription.php:44 2035 #: views/backend/partials/time-pass.php:52 2036 #: views/frontend/partials/post/gift/gift-pass.php:39 2037 msgid "Validity" 2038 msgstr "Gültigkeit" 2039 2040 #: views/backend/partials/subscription.php:50 2041 #: views/backend/partials/time-pass.php:58 2042 #: views/frontend/partials/post/gift/gift-pass.php:45 2043 msgid "Access to" 2044 msgstr "Zugriff auf" 2045 2046 #: views/backend/partials/subscription.php:56 2047 #: views/backend/partials/time-pass.php:64 2048 #: views/frontend/partials/post/gift/gift-pass.php:51 2049 msgid "Renewal" 2050 msgstr "Verlängert sich" 2051 2052 #: views/backend/partials/subscription.php:58 2053 #, php-format 2054 msgid "After %s %s" 2055 msgstr "Nach %s %s " 2056 2057 #: views/backend/partials/subscription.php:68 2058 msgid "Cancellation" 2059 msgstr "Kündigung" 2060 2061 #: views/backend/partials/subscription.php:70 2062 msgid "Cancellable anytime" 2063 msgstr "Jederzeit kündbar" 2064 2065 #: views/backend/partials/time-pass.php:66 2066 #: views/frontend/partials/post/gift/gift-pass.php:53 2067 msgid "No automatic renewal" 2068 msgstr "Keine automatische Verlängerung" 2069 2070 #: views/backend/pricing.php:36 2071 msgid "Posts can" 2072 msgstr "Beiträge können" 2073 2074 #: views/backend/pricing.php:53 2075 msgid "cannot be purchased individually." 2076 msgstr "können nicht einzeln gekauft werden." 2077 2078 #: views/backend/pricing.php:67 2079 msgid "Every post costs" 2080 msgstr "Jeder Artikel kostet" 2081 2082 #: views/backend/pricing.php:87 2083 msgid "Edit Global Default Price" 2084 msgstr "Allgemeinen Standardpreis bearbeiten" 2085 2086 #: views/backend/pricing.php:108 views/backend/pricing.php:213 2087 #: views/backend/pricing.php:318 2088 msgid "Revenue Model" 2089 msgstr "Erlösmodell" 2090 2091 #: views/backend/pricing.php:115 2092 msgid "Pay Later" 2093 msgstr "Später zahlen" 2094 2095 #: views/backend/pricing.php:143 views/backend/pricing.php:356 2096 #: views/backend/pricing.php:572 2097 msgid "Create" 2098 msgstr "Erstellen" 2099 2100 #: views/backend/pricing.php:160 views/backend/pricing.php:268 2101 msgid "Every post in" 2102 msgstr "Jeder Beitrag in" 2103 2104 #: views/backend/pricing.php:164 views/backend/pricing.php:271 2105 msgid "costs" 2106 msgstr "kostet" 2107 2108 #: views/backend/pricing.php:185 2109 msgid "Edit Category Default Price" 2110 msgstr "Kategoriespezifischen Standardpreis bearbeiten" 2111 2112 #: views/backend/pricing.php:192 views/backend/pricing.php:297 2113 msgid "Category" 2114 msgstr "Kategorie" 2115 2116 #: views/backend/pricing.php:247 2117 msgid "Set prices by category" 2118 msgstr "Kategoriespezifische Standardpreise setzen" 2119 2120 #: views/backend/pricing.php:252 2121 msgid "" 2122 "Category default prices are convenient for selling different categories of " 2123 "content at different standard prices." 2124 msgstr "" 2125 2126 #: views/backend/pricing.php:252 2127 msgid "Individual prices can be set when editing a post." 2128 msgstr "" 2129 2130 #: views/backend/pricing.php:256 2131 msgid "Click the \"Create\" button to set a default price for a category." 2132 msgstr "" 2133 "Klicken Sie auf den \"Erstellen\" Button, um einen Standardpreis für eine " 2134 "Kategorie zu setzen." 2135 2136 #: views/backend/pricing.php:290 2137 msgid "Add a Category Default Price" 2138 msgstr "Kategoriespezifischen Standardpreis hinzufügen" 2139 2140 #: views/backend/pricing.php:430 2141 msgid "The pass is valid for " 2142 msgstr "Dieser Pass gilt für " 2143 2144 #: views/backend/pricing.php:450 2145 msgid "and grants" 2146 msgstr "und gibt" 2147 2148 #: views/backend/pricing.php:477 2149 msgid "This pass costs" 2150 msgstr "Dieser Pass kostet" 2151 2152 #: views/backend/pricing.php:485 2153 msgid "and the user has to" 2154 msgstr "und Nutzer müssen" 2155 2156 #: views/backend/pricing.php:506 views/backend/pricing.php:677 2157 msgid "Title" 2158 msgstr "Titel" 2159 2160 #: views/backend/pricing.php:517 views/backend/pricing.php:688 2161 msgid "Description" 2162 msgstr "Beschreibung" 2163 2164 #: views/backend/pricing.php:530 2165 msgid "Offer this time pass at a reduced price of" 2166 msgstr "Diesen Zeitpass zu einem reduzierten Preis anbieten:" 2167 2168 #: views/backend/pricing.php:538 2169 msgid "Generate voucher code" 2170 msgstr "Gutschein-Code erstellen" 2171 2172 #: views/backend/pricing.php:558 2173 msgid "Sell bundles of content" 2174 msgstr "Zeitpässe verkaufen" 2175 2176 #: views/backend/pricing.php:561 2177 msgid "" 2178 "With Time Passes you can sell time-limited access to a category or your " 2179 "entire site. Time Passes do not renew automatically." 2180 msgstr "" 2181 "Mit Zeitpässen können Sie einen zeitlich begrenzten Zugang zu Kategorien " 2182 "oder der gesamten Seite verkaufen. Zeitpässe verlängern sich nicht " 2183 "automatisch." 2184 2185 #: views/backend/pricing.php:564 2186 msgid "Click the \"Create\" button to add a Time Pass." 2187 msgstr "" 2188 "Klicken Sie auf den \"Erstellen\" Button, um einen Zeitpass hinzuzufügen." 2189 2190 #: views/backend/pricing.php:579 views/backend/pricing.php:599 2191 msgid "Sub" 2192 msgstr "Abo" 2193 2194 #: views/backend/pricing.php:617 2195 msgid "The subscription costs" 2196 msgstr "Das Abo kostet" 2197 2198 #: views/backend/pricing.php:626 2199 msgid ", grants " 2200 msgstr ", gibt" 2201 2202 #: views/backend/pricing.php:654 2203 msgid "and renews every" 2204 msgstr "und verlängert sich nach" 2205 2206 #: views/backend/pricing.php:711 2207 msgid "Sell subscriptions" 2208 msgstr "Abos verkaufen" 2209 2210 #: views/backend/pricing.php:714 2211 msgid "" 2212 "Subscriptions work exactly like time passes, with a simple difference: They " 2213 "renew automatically." 2214 msgstr "" 2215 "Abos funktionieren genau wie Zeitpässe, mit einem einfachen Unterschied: Sie " 2216 "verlängern sich automatisch." 2217 2218 #: views/backend/pricing.php:717 2219 msgid "Click the \"Create\" button to add a Subscription." 2220 msgstr "Klicken Sie auf den \"Erstellen\" Button, um ein Abo hinzuzufügen." 2221 2222 #: views/backend/pricing.php:720 2223 msgid "" 2224 "Important: if your LaterPay merchant account has been created before June " 2225 "2017, please contact sales@laterpay.net to check, if subscriptions are " 2226 "enabled for your account." 2227 msgstr "" 2228 "Wichtig: Wenn Ihr LaterPay Händlerkonto vor Juni 2017 erstellt wurde, " 2229 "kontaktieren Sie bitte sales@laterpay.net um zu prüfen, ob Abos für Ihr " 2230 "Konto aktiviert sind." 2231 2232 #: views/frontend/partials/post/gift/gift-actions.php:18 2233 msgid "Gift Code" 2234 msgstr "Gutschein-Code" 2235 2236 #: views/frontend/partials/post/gift/gift-actions.php:21 2237 msgid "Redeem at" 2238 msgstr "Einlösen auf" 2239 2503 2240 #: views/frontend/partials/post/gift/redeem-form.php:10 2241 #: views/frontend/partials/widget/time-passes.php:32 2504 2242 msgid "Code" 2505 2243 msgstr "Code" 2506 2244 2507 #: views/frontend/partials/widget/time-passes.php:292508 2245 #: views/frontend/partials/post/gift/redeem-form.php:11 2246 #: views/frontend/partials/widget/time-passes.php:33 2509 2247 msgid "Redeem" 2510 2248 msgstr "Einlösen" 2511 2249 2512 #: views/frontend/partials/widget/time-passes.php:30 2513 msgid "Redeem Voucher >" 2514 msgstr "Gutschein einlösen >" 2250 #: views/frontend/partials/post/select-preview-mode-tab.php:15 2251 msgid "Post Preview Mode" 2252 msgstr "Vorschau-Modus" 2253 2254 #: views/frontend/partials/post/select-preview-mode-tab.php:17 2255 msgid "Preview post as" 2256 msgstr "Vorschau für" 2257 2258 #: views/frontend/partials/post/select-preview-mode-tab.php:17 2259 msgid "Admin" 2260 msgstr "Admin" 2261 2262 #: views/frontend/partials/post/select-preview-mode-tab.php:37 2263 msgid "Visitor" 2264 msgstr "Besucher" 2265 2266 #: views/frontend/partials/post/shortcode-purchase-link.php:10 2267 msgid "View" 2268 msgstr "Anzeigen" 2269 2270 #: views/frontend/partials/widget/explanatory-overlay.php:12 2271 #: views/frontend/partials/widget/purchase-overlay.php:12 2272 msgid "" 2273 "Thanks for reading this short excerpt from the paid post! Fancy buying it to " 2274 "read all of it?" 2275 msgstr "" 2276 "Danke, dass Sie diesen Auszug aus dem kostenpflichtigen Beitrag gelesen " 2277 "haben. Sie können den vollständigen Beitrag lesen, nachdem Sie ihn gekauft " 2278 "haben." 2279 2280 #: views/frontend/partials/widget/purchase-link.php:33 2281 #: views/frontend/partials/widget/purchase-link.php:36 2282 msgid "Buy now for" 2283 msgstr "Jetzt kaufen für" 2284 2285 #: views/frontend/partials/widget/purchase-link.php:36 2286 msgid "and pay later" 2287 msgstr "und später bezahlen" 2288 2289 #: views/frontend/partials/widget/purchase-overlay.php:114 2290 msgid "Enter Voucher Code" 2291 msgstr "Code eingeben" 2292 2293 #: views/frontend/partials/widget/purchase-overlay.php:124 2294 msgid "Redeem Voucher Code" 2295 msgstr "Gutschein-Code einlösen" 2515 2296 2516 2297 #: views/frontend/partials/widget/time-passes-link.php:8 … … 2522 2303 msgstr "Zeitpass kaufen" 2523 2304 2524 #: views/frontend/partials/widget/purchase-button.php:31 2525 #, php-format 2526 msgid "%s<small class=\"lp_purchase-link__currency\">%s</small>" 2527 msgstr "%s<small class=\"lp_purchase-link__currency\">%s</small>" 2528 2529 #: views/frontend/partials/widget/explanatory-overlay.php:10 2530 #: views/frontend/partials/widget/purchase-overlay.php:10 2531 msgid "Preview a short excerpt from the paid post:" 2532 msgstr "Zeige einen kurzen Auszug aus dem kostenpflichtigen Beitrag:" 2533 2534 #: views/frontend/partials/widget/explanatory-overlay.php:13 2535 #: views/frontend/partials/widget/purchase-overlay.php:13 2536 msgid "" 2537 "Thanks for reading this short excerpt from the paid post! Fancy buying it to " 2538 "read all of it?" 2539 msgstr "" 2540 "Danke, dass Sie diesen Auszug aus dem kostenpflichtigen Beitrag gelesen " 2541 "haben. Sie können den vollständigen Beitrag lesen, nachdem Sie ihn gekauft " 2542 "haben." 2543 2544 #: views/frontend/partials/widget/purchase-link.php:28 2545 #, php-format 2546 msgid "Buy now for %s<small class=\"lp_purchase-link__currency\">%s</small>" 2547 msgstr "" 2548 "Jetzt kaufen für %s<small class=\"lp_purchase-link__currency\">%s</small>" 2549 2550 #: views/frontend/partials/widget/purchase-link.php:34 2551 #, php-format 2552 msgid "" 2553 "Buy now for %s<small class=\"lp_purchase-link__currency\">%s</small> and pay " 2554 "later" 2555 msgstr "" 2556 "Jetzt kaufen für %s<small class=\"lp_purchase-link__currency\">%s</small> " 2557 "und später zahlen" 2558 2559 #: views/frontend/partials/widget/purchase-overlay.php:115 2560 msgid "Enter Voucher Code" 2561 msgstr "Code eingeben" 2562 2563 #: views/frontend/partials/widget/purchase-overlay.php:125 2564 msgid "Redeem Voucher Code" 2565 msgstr "Gutschein-Code einlösen" 2566 2567 #: views/frontend/partials/post/rating-summary.php:31 2568 msgid "Buyer Ratings for this Post" 2569 msgstr "Käuferbewertungen" 2570 2571 #: views/frontend/partials/post/rating-form.php:12 2572 msgid "Please rate this post:" 2573 msgstr "Bitte bewerten Sie diesen Beitrag:" 2574 2575 #: views/frontend/partials/post/rating-form.php:14 2576 #: views/frontend/partials/post/rating-form.php:19 2577 #: views/frontend/partials/post/rating-form.php:24 2578 #: views/frontend/partials/post/rating-form.php:29 2579 msgid "stars" 2580 msgstr "Sterne" 2581 2582 #: views/frontend/partials/post/rating-form.php:34 2583 msgid "star" 2584 msgstr "Stern" 2585 2586 #: views/frontend/partials/post/select-preview-mode-tab.php:15 2587 msgid "Post Preview Mode" 2588 msgstr "Vorschau-Modus" 2589 2590 #: views/frontend/partials/post/select-preview-mode-tab.php:17 2591 msgid "Preview post as" 2592 msgstr "Vorschau für" 2593 2594 #: views/frontend/partials/post/select-preview-mode-tab.php:17 2595 msgid "Admin" 2596 msgstr "Admin" 2597 2598 #: views/frontend/partials/post/select-preview-mode-tab.php:37 2599 msgid "Visitor" 2600 msgstr "Besucher" 2601 2602 #: views/frontend/partials/post/shortcode-purchase-link.php:10 2603 msgid "View" 2604 msgstr "Anzeigen" 2605 2606 #: application/Core/Logger/Handler/WordPress.php:123 2607 msgid "Requests" 2608 msgstr "Requests" 2609 2610 #: application/Core/Logger/Handler/WordPress.php:128 2611 #, php-format 2612 msgid "Cookies<span class=\"lp_badge\">%s</span>" 2613 msgstr "Cookies<span class=\"lp_badge\">%s</span>" 2614 2615 #: application/Core/Logger/Handler/WordPress.php:133 2616 msgid "System Config" 2617 msgstr "System Konfiguration" 2618 2619 #: application/Core/Logger/Handler/WordPress.php:138 2620 msgid "Plugin Config" 2621 msgstr "Plugin Konfiguration" 2622 2623 #: application/Core/Logger/Handler/WordPress.php:197 2624 msgid "yes" 2625 msgstr "ja" 2626 2627 #: application/Core/Logger/Handler/WordPress.php:197 2628 msgid "no" 2629 msgstr "nein" 2630 2631 #: application/Core/Logger/Handler/WordPress.php:200 2632 msgid "none" 2633 msgstr "keine" 2634 2635 #: application/Core/Logger/Formatter/Html.php:76 2636 msgid "Details" 2637 msgstr "Details" 2638 2639 #: application/Controller/Admin/Post/Column.php:43 2640 msgid "Price Type" 2641 msgstr "Preistyp" 2642 2643 #: application/Controller/Admin/Post/Column.php:89 2644 msgid "individual price" 2645 msgstr "Individueller Preis" 2646 2647 #: application/Controller/Admin/Post/Column.php:93 2648 msgid "dynamic individual price" 2649 msgstr "Individueller Preis (dynamisch)" 2650 2651 #: application/Controller/Admin/Post/Column.php:97 2652 msgid "category default price" 2653 msgstr "Kategorie-Standardpreis" 2654 2655 #: application/Controller/Admin/Post/Column.php:101 2656 #: application/Controller/Admin/Post/Column.php:111 2657 msgid "global default price" 2658 msgstr "Standardpreis" 2659 2660 #: application/Controller/Admin/Post/Metabox.php:139 2661 msgid "" 2662 "Paid posts require some teaser content. Please fill in the Teaser Content " 2663 "field." 2664 msgstr "" 2665 "Kostenpflichtige Inhalte benötigen einen Teaser. Bitte geben Sie einen " 2666 "Teaser an." 2667 2668 #: application/Controller/Admin/Post/Metabox.php:150 2669 msgid "default price" 2670 msgstr "Standardpreis" 2671 2672 #: application/Controller/Admin/Post/Metabox.php:151 2673 msgid "days" 2674 msgstr "Tage" 2675 2676 #: application/Controller/Admin/Post/Metabox.php:152 2677 msgid "Today" 2678 msgstr "Heute" 2679 2680 #: application/Controller/Admin/Post/Metabox.php:172 2681 msgid "Teaser Content" 2682 msgstr "Teaser für den Beitrag" 2683 2684 #: application/Controller/Admin/Post/Metabox.php:195 2685 msgid "Pricing for this Post" 2686 msgstr "Preis des Beitrags" 2687 2688 #: application/Controller/Admin/Post/Metabox.php:246 2689 msgid "" 2690 "Visitors will see the teaser content <strong>instead of the full " 2691 "content</strong> before purchase." 2692 msgstr "" 2693 "Besucher sehen den Teaser <strong>anstelle des Volltextes</strong> vor dem " 2694 "Kauf." 2695 2696 #: application/Controller/Admin/Post/Metabox.php:247 2697 msgid "" 2698 "If you do not enter any teaser content, the plugin will use an excerpt of " 2699 "the full content as teaser content." 2700 msgstr "" 2701 "Wenn Sie keinen Teaser angeben, verwendet das Plugin automatisch einen " 2702 "Auszug aus dem Volltext als Teaser." 2703 2704 #: application/Controller/Admin/Post/Metabox.php:248 2705 msgid "" 2706 "We do recommend to write dedicated teaser content to increase your sales " 2707 "though." 2708 msgstr "" 2709 "Wir empfehlen jedoch, für jeden Beitrag einen separaten Teaser zu erstellen, " 2710 "um die Attraktivität des Beitrags zu steigern." 2711 2712 #: views/frontend/partials/post/gift/gift-actions.php:18 2713 msgid "Gift Code" 2714 msgstr "Gutschein-Code" 2715 2716 #: views/frontend/partials/post/gift/gift-actions.php:21 2717 msgid "Redeem at" 2718 msgstr "Einlösen auf" 2719 2720 #. Author URI of the plugin 2721 msgid "https://laterpay.net/" 2722 msgstr "https://laterpay.net/" 2305 #: views/frontend/partials/widget/time-passes.php:34 2306 msgid "Redeem Voucher >" 2307 msgstr "Gutschein einlösen >" 2308 2309 #~ msgid "Unexpected error during plugin init" 2310 #~ msgstr "Unerwarteter Fehler während Plugin-Initialisierung" 2311 2312 #~ msgid "Earn money in <i>live mode</i>" 2313 #~ msgstr "Verdienen Sie Geld im <i>Live-Modus</i>" 2314 2315 #~ msgid "" 2316 #~ "Is the selling company or person based in Europe or in the United States?" 2317 #~ "<br>\n" 2318 #~ " If you select 'Europe', all prices will be " 2319 #~ "displayed and charged in Euro (EUR), and the plugin will connect to the " 2320 #~ "LaterPay Europe platform.<br>\n" 2321 #~ " If you select 'United States', all prices will be " 2322 #~ "displayed and charged in U.S. Dollar (USD), and the plugin will connect " 2323 #~ "to the LaterPay U.S. platform. \n" 2324 #~ " " 2325 #~ msgstr "" 2326 #~ "Hat das verkaufende Unternehmen seinen Sitz in Europa oder in den USA?" 2327 #~ "<br>\n" 2328 #~ "Wenn Sie \"Europa\" auswählen, werden alle Preise in Euro (EUR) angezeigt " 2329 #~ "und das Plugin verwendet die LaterPay-Europa-Plattform.\n" 2330 #~ "Wenn Sie \"USA\" auswählen, werden alle Preise in Dollar (USD) angezeigt " 2331 #~ "und das Plugin verwendet die LaterPay-USA-Plattform." 2332 2333 #~ msgid "" 2334 #~ "<b>Important:</b> The minimum value for \"Pay Now\" prices in the U.S. " 2335 #~ "region is <b>$1.99</b>.<br>\n" 2336 #~ " If you have already set \"Pay Now\" prices lower " 2337 #~ "than 1.99, make sure to change them before you switch to the U.S. region." 2338 #~ "<br>\n" 2339 #~ " If you haven't done any configuration yet, you " 2340 #~ "can safely switch the region without further adjustments. \n" 2341 #~ " " 2342 #~ msgstr "" 2343 #~ "<b>Wichtig:</b> Der Mindestpreis für \"Sofort Zahlen\"-Käufe für die USA " 2344 #~ "beträgt <b>$1,99</b>.<br>\n" 2345 #~ "Wenn Sie bereits \"Sofort Zahlen\"-Preise kleiner als 1,99 gesetzt haben, " 2346 #~ "ändern Sie diese bitte, bevor Sie zur Region USA wechseln.<br>\n" 2347 #~ "Wenn Sie noch keine Konfiguration vorgenommen haben, können Sie ohne " 2348 #~ "weitere Schritte die Region wechseln." 2349 2350 #~ msgid "" 2351 #~ "Category default prices are convenient for selling different categories " 2352 #~ "of content at different standard prices.<br>Individual prices can be set " 2353 #~ "when editing a post." 2354 #~ msgstr "" 2355 #~ "Mit kategoriespezifischen Standardpreisen können Sie einen Preis für alle " 2356 #~ "Artikel einer Kategorie vergeben. Individuelle Preise können Sie " 2357 #~ "vergeben, wenn Sie einen Beitrag bearbeiten oder erstellen." 2358 2359 #~ msgid "Forward users to this URL after they have redeemed a gift card:" 2360 #~ msgstr "" 2361 #~ "Leiten Sie Nutzer nach dem Einlösen eines Geschenkgutscheins zu dieser " 2362 #~ "URL weiter:" 2363 2364 #~ msgid "Bulk Price Editor" 2365 #~ msgstr "Bulk Price Editor" 2366 2367 #~ msgid "Display of LaterPay Invoice Balance" 2368 #~ msgstr "Einbinden der LaterPay Rechnungsanzeige" 2369 2370 #~ msgid "" 2371 #~ "Call action 'laterpay_invoice_indicator' in your theme to show your users " 2372 #~ "their LaterPay invoice balance." 2373 #~ msgstr "" 2374 #~ "Rufen Sie die Action 'laterpay_invoice_indicator' in Ihrem Theme auf, um " 2375 #~ "Ihren Nutzern deren aktuelle LaterPay Rechnungssumme anzuzeigen." 2376 2377 #~ msgid "" 2378 #~ "The LaterPay invoice indicator is served by LaterPay. Its styling can not " 2379 #~ "be changed." 2380 #~ msgstr "" 2381 #~ "Die LaterPay Rechnungsanzeige wird von LaterPay geladen. Ihr Aussehen " 2382 #~ "kann nicht verändert werden." 2383 2384 #~ msgid "Display of LaterPay Login / Logout Links" 2385 #~ msgstr "Anzeigen von Links zum Ein- und Ausloggen bei LaterPay" 2386 2387 #~ msgid "" 2388 #~ "Call action 'laterpay_account_links' in your theme or use the shortcode " 2389 #~ "'[laterpay_account_links]' to embed a LaterPay login / logout link in " 2390 #~ "your page." 2391 #~ msgstr "" 2392 #~ "Rufen Sie die Action 'laterpay_account_links' in Ihrem Theme auf oder " 2393 #~ "verwenden Sie den Shortcode '[laterpay_account_links]', um einen Link zum " 2394 #~ "Ein- und Ausloggen bei LaterPay in Ihre Seite einzubinden." 2395 2396 #~ msgid "" 2397 #~ "These links have minimal default styling. Apply own styling by passing " 2398 #~ "parameter 'css' the URL of a CSS file with your styles." 2399 #~ msgstr "" 2400 #~ "Standardmäßig wird der Link nahezu unformatiert angezeigt. Sie können die " 2401 #~ "Darstellung des Links ändern, indem Sie im Parameter 'css' den " 2402 #~ "vollständigen Pfad zu einer eigenen CSS Datei übergeben." 2403 2404 #~ msgid "Basic Example" 2405 #~ msgstr "Einfaches Beispiel" 2406 2407 #~ msgid "Advanced Example" 2408 #~ msgstr "Erweitertes Beispiel" 2409 2410 #~ msgid "Rating of Purchased Content" 2411 #~ msgstr "Bewertung gekaufter Inhalte" 2412 2413 #~ msgid "Content rating is" 2414 #~ msgstr "Inhaltebewertung ist" 2415 2416 #~ msgid "on" 2417 #~ msgstr "an" 2418 2419 #~ msgid "off" 2420 #~ msgstr "aus" 2421 2422 #~ msgid "The opinion of others has a strong influence on buying decisions." 2423 #~ msgstr "" 2424 #~ "Die Meinung anderer Käufer hat einen großen Einfluss auf die " 2425 #~ "Kaufentscheidung." 2426 2427 #~ msgid "" 2428 #~ "Content rating lets users rate your content on a five star scale after " 2429 #~ "purchasing." 2430 #~ msgstr "" 2431 #~ "Mit der Inhaltebewertung können Nutzer Ihre Inhalte nach dem Kauf auf " 2432 #~ "einer Fünf-Sterne-Skala bewerten. " 2433 2434 #~ msgid "" 2435 #~ "These ratings will be displayed to users who have not purchased that " 2436 #~ "content yet as a quality indicator." 2437 #~ msgstr "" 2438 #~ "Diese Bewertungen werden Nutzern, die den Inhalt noch nicht gekauft " 2439 #~ "haben, als Qualitätsindikator angezeigt." 2440 2441 #~ msgid "Offering of Gift Cards for Time Passes" 2442 #~ msgstr "Anbieten von Geschenkgutscheinen für Zeitpässe" 2443 2444 #~ msgid "" 2445 #~ "Please follow these two steps to offer gift cards for time passes. A user " 2446 #~ "will be able to purchase a voucher for a time pass, which he can give " 2447 #~ "away as a present. The receiver can then redeem this voucher code and " 2448 #~ "will get access to the purchased time pass." 2449 #~ msgstr "" 2450 #~ "Bitte folgen Sie diesen beiden Schritten, um Geschenkgutscheine für " 2451 #~ "Zeitpässe anzuzeigen. Ein Nutzer kann dann einen Gutschein für einen " 2452 #~ "Zeitpass kaufen, den er verschenken kann. Der Empfänger kann diesen " 2453 #~ "Gutschein dann einlösen und erhält Zugriff auf den gekauften Zeitpass." 2454 2455 #~ msgid "Step 1: Display Gift Cards" 2456 #~ msgstr "Schritt 1: Anzeigen von Geschenkgutscheinen" 2457 2458 #~ msgid "Use the shortcode '[laterpay_gift_card]' to render a gift card." 2459 #~ msgstr "" 2460 #~ "Verwenden Sie den Shortcode '[laterpay_gift_card]', um Geschenkgutscheine " 2461 #~ "anzuzeigen." 2462 2463 #~ msgid "" 2464 #~ "If you add the parameter 'id', you can offer a gift card for a specific " 2465 #~ "time pass. If you don't provide an id, gift cards for all time passes are " 2466 #~ "rendered." 2467 #~ msgstr "" 2468 #~ "Wenn Sie zusätzlich den Parameter 'id' angeben, können Sie einen " 2469 #~ "Geschenkgutschein für einen bestimmten Zeitpass anzeigen. <br>\n" 2470 #~ "Wenn Sie keine ID angeben, werden Geschenkgutscheine für alle vorhandenen " 2471 #~ "Zeitpässe angezeigt." 2472 2473 #~ msgid "" 2474 #~ "You can find the id of each time pass in the <a href=\"admin.php?" 2475 #~ "page=laterpay-pricing-tab#lp_time-passes\">pricing tab</a> next to the " 2476 #~ "respective time pass." 2477 #~ msgstr "" 2478 #~ "Sie finden die ID jedes Zeitpasses im \n" 2479 #~ "<a href=\"admin.php?page=laterpay-pricing-tab#lp_time-passes\">Tab " 2480 #~ "Preise</a> neben dem jeweiligen Zeitpass." 2481 2482 #~ msgid "or" 2483 #~ msgstr "oder" 2484 2485 #~ msgid "Step 2: Add Option to Redeem Vouchers" 2486 #~ msgstr "Schritt 2: Einlösen von Gutschein-Codes ermöglichen" 2487 2488 #~ msgid "" 2489 #~ "You can render a form where your users can enter a voucher code with the " 2490 #~ "shortcode '[laterpay_redeem_voucher]'." 2491 #~ msgstr "" 2492 #~ "Mit dem Shortcode '[laterpay_redeem_voucher]' können Sie ein Formular " 2493 #~ "anzeigen, mit dem Nutzer Gutschein-Codes einlösen können." 2494 2495 #~ msgid "Offer of Paid Content within (Free) Posts" 2496 #~ msgstr "Anbieten von Bezahlinhalten in (kostenlosen) Beiträgen" 2497 2498 #~ msgid "Offer of Additional Paid Content" 2499 #~ msgstr "Anbieten zusätzlicher Bezahlinhalte" 2500 2501 #~ msgid "" 2502 #~ "Insert shortcode [laterpay_premium_download] into a post to render a box " 2503 #~ "for selling additional paid content." 2504 #~ msgstr "" 2505 #~ "Fügen Sie den Shortcode [laterpay_premium_download] in einen Beitrag ein, " 2506 #~ "um dort eine Box zum Verkaufen zusätzlicher Bezahlinhalte anzuzeigen." 2507 2508 #~ msgid "" 2509 #~ "[laterpay_premium_download target_post_id=\"<dfn>127</dfn>\" " 2510 #~ "target_post_title=\"<dfn>Event video footage</dfn>\" content_type=" 2511 #~ "\"<dfn>video</dfn>\" teaser_image_path=\"<dfn>/uploads/images/concert-" 2512 #~ "video-still.jpg</dfn>\" heading_text=\"<dfn>Video footage of concert</dfn>" 2513 #~ "\" description_text=\"<dfn>Full HD video of the entire concert, including " 2514 #~ "behind the scenes action.</dfn>\"]" 2515 #~ msgstr "" 2516 #~ "[laterpay_premium_download target_post_id=\"<dfn>127</dfn>\" " 2517 #~ "target_post_title=\"<dfn>Event video footage</dfn>\" content_type=" 2518 #~ "\"<dfn>video</dfn>\" teaser_image_path=\"<dfn>/uploads/images/concert-" 2519 #~ "video-still.jpg</dfn>\" heading_text=\"<dfn>Video footage of concert</dfn>" 2520 #~ "\" description_text=\"<dfn>Full HD video of the entire concert, including " 2521 #~ "behind the scenes action.</dfn>\"]" 2522 2523 #~ msgid "The ID of the post that contains the paid content." 2524 #~ msgstr "Die ID des Beitrags, der den Bezahlinhalt enthält." 2525 2526 #~ msgid "" 2527 #~ "Page IDs are unique within a WordPress blog and should thus be used " 2528 #~ "instead of the target_post_title.<br> If both target_post_id and " 2529 #~ "target_post_title are provided, the target_post_title will be ignored." 2530 #~ msgstr "" 2531 #~ "Jede Page ID kommt innerhalb eines WordPress Blogs nur einmal vor. Daher " 2532 #~ "sollte target_post_id anstelle von target_post_title verwendet werden." 2533 #~ "<br> Wenn sowohl target_post_id als auch target_post_title angegeben " 2534 #~ "werden, wird target_post_title ignoriert." 2535 2536 #~ msgid "The title of the post that contains the paid content." 2537 #~ msgstr "Der Titel des Beitrags, der den Bezahlinhalt enthält." 2538 2539 #~ msgid "" 2540 #~ "Changing the title of the linked post requires updating the shortcode " 2541 #~ "accordingly." 2542 #~ msgstr "" 2543 #~ "Wenn Sie den Titel eines verknüpften Beitrags ändern, müssen Sie auch den " 2544 #~ "Shortcode aktualisieren." 2545 2546 #~ msgid "Content type of the linked content." 2547 #~ msgstr "Art des verknüpften Inhaltes." 2548 2549 #~ msgid "" 2550 #~ "Choose between 'audio', 'video', 'text', 'gallery', and 'file' to display " 2551 #~ "the corresponding default teaser image provided by the plugin." 2552 #~ msgstr "" 2553 #~ "Wählen Sie zwischen 'audio', 'video', 'text', 'gallery' und 'file', um " 2554 #~ "das entsprechende Standard-Vorschaubild anzuzeigen." 2555 2556 #~ msgid "" 2557 #~ "Path to a 300 x 300 px image that should be used instead of the default " 2558 #~ "LaterPay teaser image." 2559 #~ msgstr "" 2560 #~ "Pfad zu einem Bild der Größe 300 x 300 px, das anstelle des Standard-" 2561 #~ "Vorschaubildes verwendet werden soll." 2562 2563 #~ msgid "" 2564 #~ "Text that should be displayed as heading in the box rendered by the " 2565 #~ "shortcode. The heading is limited to one line." 2566 #~ msgstr "" 2567 #~ "Text, der als Überschrift in der Shortcode-Box angezeigt werden soll. Die " 2568 #~ "Überschrift ist auf eine Zeile begrenzt." 2569 2570 #~ msgid "Text that provides additional information on the paid content." 2571 #~ msgstr "Text, der den Bezahlinhalt näher beschreibt." 2572 2573 #~ msgid "Alignment of Additional Paid Content Boxes" 2574 #~ msgstr "Ausrichtung mehrerer Shortcode-Boxen" 2575 2576 #~ msgid "" 2577 #~ "Enclose multiple [laterpay_premium_download] shortcodes in a " 2578 #~ "[laterpay_box_wrapper] shortcode to align them in a three-column layout." 2579 #~ msgstr "" 2580 #~ "Wenn Sie mehrere [laterpay_premium_download]-Shortcodes zwischen " 2581 #~ "[laterpay_box_wrapper] und [/laterpay_box_wrapper] einschließen, werden " 2582 #~ "die Shortcode-Boxen in einem Drei-Spalten-Layout ausgerichtet." 2583 2584 #~ msgid "" 2585 #~ "[laterpay_box_wrapper]<dfn>[laterpay_premium_download …]" 2586 #~ "[laterpay_premium_download …]</dfn>[/laterpay_box_wrapper]" 2587 #~ msgstr "" 2588 #~ "[laterpay_box_wrapper]<dfn>[laterpay_premium_download …]" 2589 #~ "[laterpay_premium_download …]</dfn>[/laterpay_box_wrapper]" 2590 2591 #~ msgid "%s : <code>%s</code> not found" 2592 #~ msgstr "%s : <code>%s</code> nicht gefunden" 2593 2594 #~ msgid "%s Memory Usage" 2595 #~ msgstr "%s Speicherverbrauch" 2596 2597 #~ msgid "Debugger" 2598 #~ msgstr "Debugger" 2599 2600 #~ msgid "Messages<span class=\"lp_badge\">%s</span>" 2601 #~ msgstr "Meldungen<span class=\"lp_badge\">%s</span>" 2602 2603 #~ msgid "" 2604 #~ "Set an <strong>individual price</strong> for this post here.<br>You can " 2605 #~ "also apply <strong>advanced pricing</strong> by defining how the price " 2606 #~ "changes over time." 2607 #~ msgstr "" 2608 #~ "Setzen Sie hier einen <strong>individuellen Preis</strong> für diesen " 2609 #~ "Beitrag.<br>Sie können auch <strong>dynamische Preise</strong> setzen und " 2610 #~ "festlegen, wie Preise sich über die Zeit verändern sollen." 2611 2612 #~ msgid "Global <br> Default Price" 2613 #~ msgstr "Standard-<br>preis" 2614 2615 #~ msgid "" 2616 #~ "The dynamic pricing will <strong>start</strong>, once you have " 2617 #~ "<strong>published</strong> this post." 2618 #~ msgstr "" 2619 #~ "Die dynamische Preissetzung <strong>started</strong>, sobald Sie diesen " 2620 #~ "Beitrag <strong>veröffentlicht</strong> haben." 2621 2622 #~ msgid "\"An Amazing Article\"" 2623 #~ msgstr "Mein bester Post" 2624 2625 #~ msgid "Additional Premium Content" 2626 #~ msgstr "Zusätzlicher Premium-Inhalt" 2627 2628 #~ msgid "" 2629 #~ "<code>%1$s</code> is deprecated, please use <code>%2$s</code>. <code>" 2630 #~ "%1$s</code> will be removed in the next release." 2631 #~ msgstr "" 2632 #~ "<code>%1$s</code> ist veraltet, bitte verwenden Sie <code>%2$s</code>. " 2633 #~ "<code>%1$s</code> wird mit dem nächsten Release entfernt." 2634 2635 #~ msgid "We couldn't find a page for target_post_id=\"%s\" on this site." 2636 #~ msgstr "" 2637 #~ "Wir konnten keine Seite für target_post_id=\"%s\" auf dieser Webseite " 2638 #~ "finden." 2639 2640 #~ msgid "We couldn't find a page for target_post_title=\"%s\" on this site." 2641 #~ msgstr "" 2642 #~ "Wir konnten keine Seite für target_post_title=\"%s\" auf dieser Webseite " 2643 #~ "finden." 2644 2645 #~ msgid "LaterPay has been disabled for the post type of the target page." 2646 #~ msgstr "LaterPay wurde für den Post-Type der Zielseite deaktiviert." 2647 2648 #~ msgid "Buy another gift card" 2649 #~ msgstr "Einen weiteren Gutschein kaufen." 2650 2651 #~ msgid "Thank you very much for rating!" 2652 #~ msgstr "Vielen Dank für Ihre Bewertung!" 2653 2654 #~ msgid "The plugin is in <strong>visible</strong> test mode now." 2655 #~ msgstr "" 2656 #~ "Das Plugin ist jetzt im Test-Modus und für Besucher <strong>sichtbar</" 2657 #~ "strong>." 2658 2659 #~ msgid "The plugin is in <strong>invisible</strong> test mode now." 2660 #~ msgstr "" 2661 #~ "Das Plugin ist jetzt im Test-Modus und für Besucher <strong>nicht " 2662 #~ "sichtbar</strong>." 2663 2664 #~ msgid "Visitors can now rate the posts they have purchased." 2665 #~ msgstr "Besucher können nun gekaufte Beiträge bewerten." 2666 2667 #~ msgid "The rating of posts has been disabled." 2668 #~ msgstr "Die Bewertung gekaufter Beiträge wurde deaktiviert." 2669 2670 #~ msgid "Set price of" 2671 #~ msgstr "Setze den Preis" 2672 2673 #~ msgid "Increase price of" 2674 #~ msgstr "Erhöhe den Preis" 2675 2676 #~ msgid "Reduce price of" 2677 #~ msgstr "Reduziere den Preis" 2678 2679 #~ msgid "Make free" 2680 #~ msgstr "Kostenlos-machen" 2681 2682 #~ msgid "Reset" 2683 #~ msgstr "Zurücksetzen" 2684 2685 #~ msgid "All posts" 2686 #~ msgstr "aller Beiträge" 2687 2688 #~ msgid "The prices of all posts" 2689 #~ msgstr "Die Preise aller Beiträge" 2690 2691 #~ msgid "have been" 2692 #~ msgstr "wurden" 2693 2694 #~ msgid "set" 2695 #~ msgstr "gesetzt" 2696 2697 #~ msgid "%s %s" 2698 #~ msgstr "%s %s" 2699 2700 #~ msgid "decreased" 2701 #~ msgstr "reduziert" 2702 2703 #~ msgid "increased" 2704 #~ msgstr "erhöht" 2705 2706 #~ msgid "made free" 2707 #~ msgstr "kostenlos gemacht" 2708 2709 #~ msgid "reset" 2710 #~ msgstr "zurückgesetzt" 2711 2712 #~ msgid "Bulk operation saved." 2713 #~ msgstr "Bulk Price Operation gespeichert." 2714 2715 #~ msgid "Bulk operation deleted." 2716 #~ msgstr "Bulk Price Operation gelöscht." 2717 2718 #~ msgid "Landing page saved." 2719 #~ msgstr "Zielseite gespeichert." 2720 2721 #~ msgid "Debugger Pane" 2722 #~ msgstr "Debugger" 2723 2724 #~ msgid "LaterPay Debugger" 2725 #~ msgstr "LaterPay Debugger" 2726 2727 #~ msgid "I want to view the LaterPay debugger pane" 2728 #~ msgstr "Ich möchte die LaterPay Debugger Leiste sehen" 2729 2730 #~ msgid "List of allowed addresses to view debug(Ex.: 127.0.0.1,192.168.1.1)" 2731 #~ msgstr "" 2732 #~ "Liste der erlaubten IP-Adressen, die den Debugger sehen können (z. B. " 2733 #~ "127.0.0.1,192.168.1.1)" 2734 2735 #~ msgid "" 2736 #~ "The LaterPay debugger pane contains a lot of helpful plugin- and system-" 2737 #~ "related information\n" 2738 #~ " for debugging the LaterPay plugin and fixing configuration " 2739 #~ "problems.<br>\n" 2740 #~ " When activated, the debugger pane is rendered at the " 2741 #~ "bottom of the screen.<br>\n" 2742 #~ " It is visible both for users from address list<br>\n" 2743 #~ " On a production installation you should switch it off " 2744 #~ "again as soon as you don't need it anymore." 2745 #~ msgstr "" 2746 #~ "Der LaterPay Debugger stellt viele hilfreiche plugin- und systembezogene " 2747 #~ "Informationen bereit.<br>\n" 2748 #~ "Wenn die Debugger-Leiste aktiviert ist, wird sie am unteren " 2749 #~ "Bildschirmrand angezeigt.<br>\n" 2750 #~ "Sie wird für alle Nutzer mit den angegebenen IP-Adressen angezeigt.<br>\n" 2751 #~ "Auf einer Produktivumgebung sollten Sie sie deaktivieren." 2752 2753 #~ msgid "" 2754 #~ "You MUST enable caching compatiblity mode, if you are using a caching " 2755 #~ "solution that caches\n" 2756 #~ " entire HTML pages.<br>\n" 2757 #~ " In caching compatibility mode the plugin works like this:" 2758 #~ "<br>\n" 2759 #~ " It renders paid posts only with the teaser content. This " 2760 #~ "allows to cache them as static files without\n" 2761 #~ " risking to leak the paid content.<br>\n" 2762 #~ " When someone visits the page, it makes an Ajax request to " 2763 #~ "determine, if the visitor has already bought\n" 2764 #~ " the post and replaces the teaser with the full content, " 2765 #~ "if required." 2766 #~ msgstr "" 2767 #~ "Sie MÜSSEN den Caching-Kompatibilitätsmodus aktivieren, wenn Sie eine " 2768 #~ "Caching-Lösung verwenden, die vollständige HTML-Seiten cached.<br>\n" 2769 #~ "Im Caching-Kompatibilitätsmodus arbeitet das Plugin wie folgt:<br>\n" 2770 #~ "Kostenpflichtige Beiträge werden zunächst nur mit dem Teaser " 2771 #~ "ausgeliefert. So können sie als statische Dateien gecached werden, ohne " 2772 #~ "die kostenpflichtigen Inhalte mitauszuliefern.<br>\n" 2773 #~ "Wenn ein Nutzer einen kostenpflichtigen Beitrag besucht, prüft das Plugin " 2774 #~ "über einen Ajax-Request, ob der Nutzer diesen Artikel bereits gekauft " 2775 #~ "hat. Falls ja, wird der Teaser durch den Volltext ersetzt." 2776 2777 #~ msgid "Offering Time Passes on Free Posts" 2778 #~ msgstr "Anzeigen von Zeitpässen bei kostenlosen Beiträgen" 2779 2780 #~ msgid "Time Passes Widget" 2781 #~ msgstr "Zeitpässe" 2782 2783 #~ msgid "I want to display the time passes widget on free and paid posts" 2784 #~ msgstr "" 2785 #~ "Ich möchte Zeitpässe sowohl bei kostenpflichtigen als auch bei " 2786 #~ "kostenlosen Beiträgen anzeigen" 2787 2788 #~ msgid "" 2789 #~ "The LaterPay WordPress plugin automatically generates teaser content for " 2790 #~ "every paid post\n" 2791 #~ " without teaser content.<br>\n" 2792 #~ " While technically possible, setting this parameter to " 2793 #~ "zero is HIGHLY DISCOURAGED.<br>\n" 2794 #~ " If you really, really want to have NO teaser content for " 2795 #~ "a post, enter one space\n" 2796 #~ " into the teaser content editor for that post." 2797 #~ msgstr "" 2798 #~ "Das LaterPay WordPress Plugin erstellt automatisch einen Teaserinhalt für " 2799 #~ "jeden Bezahlinhalt, für den kein Teaser vorhanden ist.<br> Sie können " 2800 #~ "diesen Wert auf 0 setzen, wir raten jedoch dringend davon ab.<br> Wenn " 2801 #~ "Sie wirklich keinen Teaser setzen möchten, fügen Sie bitte ein " 2802 #~ "Leerzeichen in das Teaserfeld des betreffenden Beitrags ein." 2803 2804 #~ msgid "" 2805 #~ "In the appearance tab, you can choose to preview your paid posts with the " 2806 #~ "teaser content plus\n" 2807 #~ " an excerpt of the full content, covered by a semi-" 2808 #~ "transparent overlay.<br>\n" 2809 #~ " The following three parameters give you fine-grained " 2810 #~ "control over the length of this excerpt.<br>\n" 2811 #~ " These settings do not affect the teaser content in any " 2812 #~ "way." 2813 #~ msgstr "" 2814 #~ "Im Tab \"Darstellung\" können Sie wählen, welche Vorschau Ihre Besucher " 2815 #~ "für Bezahlinhalte sehen: Entweder nur einen Teaser-Text plus Kauflink " 2816 #~ "oder einen Teaser-Text plus einen Auszug unter einem halbtransparenten " 2817 #~ "Overlay.<br>\n" 2818 #~ "Mit den folgenden drei Parametern haben Sie die Möglichkeit, die Länge " 2819 #~ "dieses Auszuges anzupassen.<br>\n" 2820 #~ "Diese Einstellungen beeinflussen nicht die Länge des Teaser-Textes." 2821 2822 #~ msgid "" 2823 #~ "You can give logged-in users unlimited access to specific categories " 2824 #~ "depending on their user\n" 2825 #~ " role.<br>\n" 2826 #~ " This feature can be useful e.g. for giving free access to " 2827 #~ "existing subscribers.<br>\n" 2828 #~ " We recommend the plugin 'User Role Editor' for adding " 2829 #~ "custom roles to WordPress." 2830 #~ msgstr "" 2831 #~ "Sie können eingeloggten Nutzern mit einer bestimmten Rolle unbegrenzten " 2832 #~ "Zugang zu einzelnen Kategorien geben.<br>\n" 2833 #~ "Diese Funktionalität kann z. B. nützlich sein, wenn Sie bestehenden " 2834 #~ "Abonnenten Zugriff auf LaterPay-Inhalte geben möchten.<br>\n" 2835 #~ "Wir empfehlen das Plugin \"User Role Editor\", um Nutzerrollen zu " 2836 #~ "WordPress hinzuzufügen." 2837 2838 #~ msgid "%s<small class=\"lp_purchase-link__currency\">%s</small>" 2839 #~ msgstr "%s<small class=\"lp_purchase-link__currency\">%s</small>" 2840 2841 #~ msgid "Preview a short excerpt from the paid post:" 2842 #~ msgstr "Zeige einen kurzen Auszug aus dem kostenpflichtigen Beitrag:" 2843 2844 #~ msgid "Buy now for %s<small class=\"lp_purchase-link__currency\">%s</small>" 2845 #~ msgstr "" 2846 #~ "Jetzt kaufen für %s<small class=\"lp_purchase-link__currency\">%s</small>" 2847 2848 #~ msgid "" 2849 #~ "Buy now for %s<small class=\"lp_purchase-link__currency\">%s</small> and " 2850 #~ "pay later" 2851 #~ msgstr "" 2852 #~ "Jetzt kaufen für %s<small class=\"lp_purchase-link__currency\">%s</small> " 2853 #~ "und später zahlen" 2854 2855 #~ msgid "Buyer Ratings for this Post" 2856 #~ msgstr "Käuferbewertungen" 2857 2858 #~ msgid "Please rate this post:" 2859 #~ msgstr "Bitte bewerten Sie diesen Beitrag:" 2860 2861 #~ msgid "stars" 2862 #~ msgstr "Sterne" 2863 2864 #~ msgid "star" 2865 #~ msgstr "Stern" 2866 2867 #~ msgid "Requests" 2868 #~ msgstr "Requests" 2869 2870 #~ msgid "Cookies<span class=\"lp_badge\">%s</span>" 2871 #~ msgstr "Cookies<span class=\"lp_badge\">%s</span>" 2872 2873 #~ msgid "System Config" 2874 #~ msgstr "System Konfiguration" 2875 2876 #~ msgid "Plugin Config" 2877 #~ msgstr "Plugin Konfiguration" 2878 2879 #~ msgid "yes" 2880 #~ msgstr "ja" 2881 2882 #~ msgid "no" 2883 #~ msgstr "nein" 2884 2885 #~ msgid "none" 2886 #~ msgstr "keine" 2887 2888 #~ msgid "Details" 2889 #~ msgstr "Details" 2890 2891 #~ msgid "" 2892 #~ "Visitors will see the teaser content <strong>instead of the full content</" 2893 #~ "strong> before purchase." 2894 #~ msgstr "" 2895 #~ "Besucher sehen den Teaser <strong>anstelle des Volltextes</strong> vor " 2896 #~ "dem Kauf." 2897 2898 #~ msgid "https://laterpay.net/" 2899 #~ msgstr "https://laterpay.net/" -
laterpay/trunk/laterpay.php
r1915145 r1923931 5 5 * Description: Sell digital content with LaterPay. It allows super easy and fast payments from as little as 5 cent up to 149.99 Euro at a 15% fee and no fixed costs. 6 6 * Author: LaterPay GmbH, Mihail Turalenka and Aliaksandr Vahura 7 * Version: 0.1 1.07 * Version: 0.12.0 8 8 * Author URI: https://laterpay.net/ 9 9 * Textdomain: laterpay -
laterpay/trunk/views/backend/pricing.php
r1898231 r1923931 717 717 <?php esc_html_e( 'Click the "Create" button to add a Subscription.', 'laterpay' ); ?> 718 718 </p> 719 <p>720 <span style="color: red;" data-icon="n"></span><?php esc_html_e( 'Important: if your LaterPay merchant account has been created before June 2017, please contact sales@laterpay.net to check, if subscriptions are enabled for your account.', 'laterpay' ); ?>721 </p>722 719 </div> 723 720 </div>
Note: See TracChangeset
for help on using the changeset viewer.