Plugin Directory

Changeset 1923931


Ignore:
Timestamp:
08/13/2018 08:55:43 AM (8 years ago)
Author:
utkarshpatel
Message:

Tagging version 0.12.0

Location:
laterpay
Files:
22 edited
1 copied

Legend:

Unmodified
Added
Removed
  • laterpay/tags/0.12.0/README.txt

    r1915145 r1923931  
    66Requires at least: 4.6
    77Tested up to: 4.9.6
    8 Stable tag: 0.11.0
     8Stable tag: 0.12.0
    99Author URI: https://laterpay.net
    1010Plugin URI: https://github.com/laterpay/laterpay-wordpress-plugin
     
    186186
    187187== 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
    188195= 0.11.0 (July 26, 2018): Bugfix Release (v1.0 RC31) =
    189196* Fix teaser content display issue.
     
    625632== Upgrade notice ==
    626633
    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) =
     635Fixed various bugs with laterpay functionality.
    629636
    630637== Arbitrary section ==
  • laterpay/tags/0.12.0/application/Controller/Frontend/Post.php

    r1915145 r1923931  
    379379        $content = $event->get_result();
    380380
     381        // Get the value of purchase type ( individual / timepass )
     382        $only_timepass = (bool) get_option( 'laterpay_only_time_pass_purchases_allowed' );
     383
    381384        if ( $event->has_argument( 'post' ) ) {
    382385            $post = $event->get_argument( 'post' );
     
    404407        if ($user_has_unlimited_access && ! $preview_post_as_visitor ) {
    405408            $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            }
    406426        }
    407427
  • laterpay/tags/0.12.0/application/Core/Bootstrap.php

    r1898231 r1923931  
    142142        // plugin backend
    143143        $controller = self::get_controller( 'Admin_Pricing' );
     144        laterpay_event_dispatcher()->add_subscriber( $controller );
     145
     146        $controller = self::get_controller( 'Admin_Notice' );
    144147        laterpay_event_dispatcher()->add_subscriber( $controller );
    145148
  • laterpay/tags/0.12.0/application/Helper/Config.php

    r1898231 r1923931  
    1919                'live_dialog_api_url'     => 'https://web.laterpay.net',
    2020                'merchant_backend_url'    => 'https://merchant.laterpay.net/',
    21                 'token_name'              => 'token',
     21                'token_name'              => 'laterpay_token',
    2222                'sandbox_merchant_id'     => '984df2b86250447793241a',
    2323                'sandbox_api_key'         => '57791c777baa4cea94c4ec074184e06d',
     
    6363                'live_dialog_api_url'     => 'https://web.uselaterpay.com',
    6464                'merchant_backend_url'    => 'https://web.uselaterpay.com/merchant',
    65                 'token_name'              => 'token',
     65                'token_name'              => 'laterpay_token',
    6666                'sandbox_merchant_id'     => 'xswcBCpR6Vk6jTPw8si7KN',
    6767                'sandbox_api_key'         => '22627fa7cbce45d394a8718fd9727731',
  • laterpay/tags/0.12.0/application/Module/TimePasses.php

    r1898231 r1923931  
    298298
    299299        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
    302310        $time_pass_event = new LaterPay_Core_Event();
    303311        $time_pass_event->set_echo( false );
  • laterpay/tags/0.12.0/asset_sources/scss/laterpay-admin.scss

    r1898231 r1923931  
    3737    }
    3838}
     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  
    33"Project-Id-Version: LaterPay 0.9.6\n"
    44"Report-Msgid-Bugs-To: http://wordpress.org/tag/laterpay\n"
    5 "POT-Creation-Date: 2017-11-23 12:43+0000\n"
    6 "PO-Revision-Date: 2017-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"
    77"Last-Translator: lpadmin <twoldrich@laterpay.net>\n"
    88"Language-Team: German\n"
    9 "Language: de-DE\n"
    10 "Plural-Forms: nplurals=2; plural=n != 1\n"
     9"Language: de_DE\n"
    1110"MIME-Version: 1.0\n"
    1211"Content-Type: text/plain; charset=UTF-8\n"
    1312"Content-Transfer-Encoding: 8bit\n"
     13"Plural-Forms: nplurals=2; plural=n != 1;\n"
    1414"X-Poedit-SourceCharset: UTF-8\n"
    15 "X-Generator: Loco - https://localise.biz/\n"
     15"X-Generator: Poedit 1.8.7.1\n"
    1616"X-Poedit-Basepath: ..\n"
    1717"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
     
    2020"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
    2121"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"
    2223"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
     26msgid "translateX"
     27msgstr ""
     28
     29#: built_assets/js/vendor/velocity.min.js:3
     30msgid "translateY"
     31msgstr ""
     32
     33#: built_assets/js/vendor/velocity.min.js:3
     34msgid "skewX"
     35msgstr ""
     36
     37#: built_assets/js/vendor/velocity.min.js:3
     38msgid "skewY"
     39msgstr ""
     40
     41#: built_assets/js/vendor/velocity.min.js:3
     42msgid "scale"
     43msgstr ""
     44
     45#: built_assets/js/vendor/velocity.min.js:3
     46msgid "scaleX"
     47msgstr ""
     48
     49#: built_assets/js/vendor/velocity.min.js:3
     50msgid "scaleY"
     51msgstr ""
     52
     53#: built_assets/js/vendor/velocity.min.js:3
     54msgid "rotateZ"
     55msgstr ""
     56
     57#: application/Compatibility/Migrate.php:54
     58msgid "Your laterpay data needs to be migrated. Click"
     59msgstr ""
     60
     61#: application/Compatibility/Migrate.php:55
     62msgid "here"
     63msgstr ""
     64
     65#: application/Compatibility/Migrate.php:56
     66msgid "to migrate data."
     67msgstr ""
     68
     69#: application/Compatibility/Migrate.php:77
     70msgid "Migrating Data"
     71msgstr ""
     72
     73#: application/Compatibility/Migrate.php:78
     74msgid "Migrating Subscriptions"
     75msgstr ""
     76
     77#: application/Compatibility/Migrate.php:79
     78msgid "Migrating Timepasses."
     79msgstr ""
     80
     81#: application/Compatibility/Migrate.php:80
     82msgid "Migrating Category Prices."
     83msgstr ""
     84
     85#: application/Compatibility/Migrate.php:81
     86msgid "Migration Completed."
     87msgstr ""
     88
     89#: application/Controller/Admin.php:69 application/Controller/Admin.php:83
     90#: application/Controller/Admin.php:93
     91msgid "LaterPay Plugin Settings"
     92msgstr "LaterPay-Plugin-Einstellungen"
     93
     94#: application/Controller/Admin.php:267
     95msgid "LaterPay"
     96msgstr "LaterPay"
     97
     98#: application/Controller/Admin.php:268
    3499msgid ""
    35100"\n"
     
    49114"adjust prices automatically over time.<br>\n"
    50115"                <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"
    55120"            </p>\n"
    56121"            <p>\n"
     
    68133"            <p>\n"
    69134"                <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 "LaterPay and 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"
    74139"                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"
    79144"            </p>\n"
    80145"            <p>\n"
     
    83148"has to <strong>log in</strong> to LaterPay and <strong>pay</strong> for your "
    84149"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 "
    87152"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"
    91156"            </p>"
    92157msgstr ""
    93158
    94 #: application/Controller/Admin.php:323
     159#: application/Controller/Admin.php:316 views/backend/pricing.php:58
     160msgid "Global Default Price"
     161msgstr "Allgemeiner Standardpreis"
     162
     163#: application/Controller/Admin.php:317
    95164msgid ""
    96165"\n"
     
    98167"                The global default price is used for all posts, for which "
    99168"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"
    102171"                Accordingly, setting the global default price to 0.00 makes\n"
    103172"                all articles free, for which no category default price or\n"
     
    106175msgstr ""
    107176
    108 #: application/Controller/Admin.php:336
     177#: application/Controller/Admin.php:329 views/backend/pricing.php:141
     178msgid "Category Default Prices"
     179msgstr "Kategoriespezifische Standardpreise"
     180
     181#: application/Controller/Admin.php:330
    109182msgid ""
    110183"\n"
     
    118191"should\n"
    119192"                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"
    122195"                but a post belongs to a category with a category default "
    123196"price\n"
     
    126199msgstr ""
    127200
    128 #: application/Controller/Admin.php:353
     201#: application/Controller/Admin.php:346
     202msgid "Currency"
     203msgstr "Währung"
     204
     205#: application/Controller/Admin.php:347
    129206msgid ""
    130207"\n"
     
    142219msgstr ""
    143220
    144 #: application/Controller/Admin.php:366
     221#: application/Controller/Admin.php:359 views/backend/pricing.php:354
     222msgid "Time Passes"
     223msgstr "Zeitpässe"
     224
     225#: application/Controller/Admin.php:360
    145226msgid ""
    146227"\n"
     
    160241"            <p>\n"
    161242"                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"
    172253"            </p>\n"
    173254"            <p>\n"
     
    194275msgstr ""
    195276
    196 #: application/Controller/Admin.php:392
     277#: application/Controller/Admin.php:386
    197278msgid "Time Pass Vouchers"
    198279msgstr ""
    199280
    200 #: application/Controller/Admin.php:393
     281#: application/Controller/Admin.php:387
    201282msgid ""
    202283"\n"
     
    204285"                You can create any number of voucher codes for each time "
    205286"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 the respective 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 "want to 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"
    213294"                <strong>Deleting</strong> a voucher code will <strong>not "
    214295"affect</strong> the validity of time passes which have already been "
     
    225306"purchase the respective time pass for 0.00.<br>\n"
    226307"                    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"
    229310"                <li>Click the 'Save' button.</li>\n"
    230311"            </ul>"
    231312msgstr ""
    232313
    233 #: application/Controller/Admin.php:422
     314#: application/Controller/Admin.php:415
     315msgid "Preview Mode"
     316msgstr "Vorschau für"
     317
     318#: application/Controller/Admin.php:416
    234319msgid ""
    235320"\n"
     
    259344msgstr ""
    260345
    261 #: application/Controller/Admin.php:446
     346#: application/Controller/Admin.php:439
     347msgid "Purchase Button Position"
     348msgstr "Position des LaterPay Buttons"
     349
     350#: application/Controller/Admin.php:440
    262351msgid ""
    263352"\n"
     
    279368msgstr ""
    280369
    281 #: application/Controller/Admin.php:463
     370#: application/Controller/Admin.php:456
     371msgid "Time Pass Position"
     372msgstr "Positionierung von Zeitpässen"
     373
     374#: application/Controller/Admin.php:457
    282375msgid ""
    283376"\n"
     
    301394msgstr ""
    302395
    303 #: application/Controller/Admin.php:490
     396#: application/Controller/Admin.php:483
     397msgid "API Credentials"
     398msgstr "API Zugangsdaten"
     399
     400#: application/Controller/Admin.php:484
    304401msgid ""
    305402"\n"
     
    354451"                Due to legal reasons, we can email you those credentials "
    355452"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"
    360457"                <a href=\"https://www.laterpay.net/how-to-become-a-content-"
    361458"provider\" target=\"blank\">Visit our website to read more about how to "
     
    364461msgstr ""
    365462
    366 #: application/Controller/Admin.php:538
     463#: application/Controller/Admin.php:531
     464msgid "Plugin Mode"
     465msgstr "Plugin-Modus"
     466
     467#: application/Controller/Admin.php:532
    367468msgid ""
    368469"\n"
     
    376477"are\n"
    377478"                    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"
    380481"                    not to visitors.<br>\n"
    381482"                    This is the <strong>default</strong> setting after "
     
    408509msgstr ""
    409510
    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&nbsp;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 &hellip;]"
    1202 "[laterpay_premium_download &hellip;]</dfn>[/laterpay_box_wrapper]"
    1203 msgstr ""
    1204 "[laterpay_box_wrapper]<dfn>[laterpay_premium_download &hellip;]"
    1205 "[laterpay_premium_download &hellip;]</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
    1251512msgid "Pricing"
    1252513msgstr "Preise"
    1253514
    1254 #: application/Controller/Admin.php:718
     515#: application/Controller/Admin.php:689
    1255516msgid "Appearance"
    1256517msgstr "Darstellung"
    1257518
    1258 #: application/Controller/Admin.php:724
     519#: application/Controller/Admin.php:695
    1259520msgid "Account"
    1260521msgstr "Konto"
    1261522
    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
     524msgid "The API key you entered is not a valid LaterPay API key!"
     525msgstr "Der eingegebene API Key ist kein gültiger LaterPay API Key!"
     526
     527#: application/Controller/Admin/Account.php:46
     528msgid "The Merchant ID you entered is not a valid LaterPay Merchant ID!"
     529msgstr "Die eingegebene Merchant ID ist keine gültige LaterPay Merchant ID!"
     530
     531#: application/Controller/Admin/Account.php:47
     532msgid "LaterPay does not work properly with invalid API credentials."
     533msgstr "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
    1739541msgid "An error occurred when trying to save your settings. Please try again."
    1740542msgstr ""
     
    1742544"erneut."
    1743545
    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 "&mdash; Visit the post to buy its full content for {price} {currency} &mdash;"
    1781 " {teaser_content}"
    1782 msgstr ""
    1783 "&mdash; Kaufen Sie den vollständigen Inhalt für {price} {currency} &mdash; "
    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
    1800548#, php-format
    1801549msgid "The Merchant ID you entered is not a valid LaterPay %s Merchant ID!"
    1802550msgstr "Die eingegebene Merchant ID ist keine kültige LaterPay %s Merchant ID!"
    1803551
    1804 #: application/Controller/Admin/Account.php:175
     552#: application/Controller/Admin/Account.php:177
    1805553#, php-format
    1806554msgid "The %s Merchant ID has been removed."
    1807555msgstr "Die %s Merchant ID wurde entfernt."
    1808556
    1809 #: application/Controller/Admin/Account.php:188
     557#: application/Controller/Admin/Account.php:190
    1810558#, php-format
    1811559msgid "%s Merchant ID verified and saved."
    1812560msgstr "%s Merchant ID überprüft und gespeichert."
    1813561
    1814 #: application/Controller/Admin/Account.php:233
     562#: application/Controller/Admin/Account.php:235
    1815563#, php-format
    1816564msgid "The %s API key has been removed."
    1817565msgstr "Der %s API Key wurde entfernt."
    1818566
    1819 #: application/Controller/Admin/Account.php:246
     567#: application/Controller/Admin/Account.php:248
    1820568#, php-format
    1821569msgid "Your %s API key is valid. You can now make %s transactions."
     
    1823571"Ihr %s API-Key ist gültig. Sie können nun %s Transaktionen durchführen."
    1824572
    1825 #: application/Controller/Admin/Account.php:267
    1826 #: application/Controller/Admin/Account.php:322
     573#: application/Controller/Admin/Account.php:269
     574#: application/Controller/Admin/Account.php:324
    1827575msgid "Error occurred. Incorrect data provided."
    1828576msgstr "Ein Fehler ist aufgetreten. Falsche Daten wurden übergeben."
    1829577
    1830 #: application/Controller/Admin/Account.php:281
     578#: application/Controller/Admin/Account.php:283
    1831579msgid ""
    1832580"The LaterPay plugin is in LIVE mode now. All payments are actually booked "
     
    1836584"tatsächlich gebucht und Ihrem Händlerkonto gutgeschrieben."
    1837585
    1838 #: application/Controller/Admin/Account.php:290
     586#: application/Controller/Admin/Account.php:292
    1839587msgid ""
    1840588"The LaterPay plugin is in visible TEST mode now. Payments are only simulated "
     
    1844592"Zahlungen werden nur simuliert und nicht tatsächlich gebucht."
    1845593
    1846 #: application/Controller/Admin/Account.php:300
     594#: application/Controller/Admin/Account.php:302
    1847595msgid ""
    1848596"The LaterPay plugin is in invisible TEST mode now. Payments are only "
     
    1852600"Zahlungen werden nur simuliert und nicht tatsächlich gebucht."
    1853601
    1854 #: application/Controller/Admin/Account.php:310
    1855 #: application/Controller/Admin/Account.php:380
     602#: application/Controller/Admin/Account.php:312
     603#: application/Controller/Admin/Account.php:382
    1856604msgid "The LaterPay plugin needs valid API credentials to work."
    1857605msgstr "Das LaterPay Plugin benötigt gültige API Zugangsdaten."
    1858606
    1859 #: application/Controller/Admin/Account.php:334
     607#: application/Controller/Admin/Account.php:336
    1860608msgid "Failed to change region settings."
    1861609msgstr ""
    1862610"Die Einstellungen für Ländergruppe und Währung konnten nicht geändert werden."
    1863611
    1864 #: application/Controller/Admin/Account.php:344
     612#: application/Controller/Admin/Account.php:346
    1865613msgid "The LaterPay region was changed successfully."
    1866614msgstr ""
     
    1868616"geändert."
    1869617
    1870 #: application/Controller/Admin/Account.php:364
    1871 #: application/Controller/Admin/Pricing.php:314
    1872 #: application/Controller/Admin/Pricing.php:364
     618#: application/Controller/Admin/Account.php:366
     619#: application/Controller/Admin/Pricing.php:299
     620#: application/Controller/Admin/Pricing.php:348
    1873621msgid "An error occurred. Incorrect data provided."
    1874622msgstr "Ein Fehler ist aufgetreten: Falsche Daten angegeben."
    1875623
    1876 #: application/Controller/Admin/Account.php:389
    1877 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 
    1882624#: 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
     626msgid "The plugin is in"
     627msgstr ""
     628
     629#: application/Controller/Admin/Account.php:391
     630msgid "visible"
     631msgstr ""
     632
     633#: application/Controller/Admin/Account.php:391
     634#: application/Controller/Admin/Account.php:393
     635msgid "test mode now."
     636msgstr ""
     637
     638#: application/Controller/Admin/Account.php:393
     639msgid "invisible"
     640msgstr ""
     641
     642#: application/Controller/Admin/Appearance.php:134
    1889643msgid ""
    1890644"Visitors will now see the teaser content of paid posts plus an excerpt of "
     
    1894648"einen Auszug des Artikels unter einem Overlay."
    1895649
    1896 #: application/Controller/Admin/Appearance.php:138
     650#: application/Controller/Admin/Appearance.php:137
    1897651msgid ""
    1898652"Visitors will now see the teaser content of paid posts plus an excerpt of "
     
    1902656"dem Volltext unter einem Overlay mit allen Kaufoptionen."
    1903657
    1904 #: application/Controller/Admin/Appearance.php:141
     658#: application/Controller/Admin/Appearance.php:140
    1905659msgid "Visitors will now see only the teaser content of paid posts."
    1906660msgstr ""
    1907661"Besucher sehen ab jetzt nur den Teaser eines kostenpflichtigen Beitrags."
    1908662
    1909 #: application/Controller/Admin/Appearance.php:173
     663#: application/Controller/Admin/Appearance.php:186
    1910664msgid "Purchase overlay settings saved successfully."
    1911665msgstr "Kauf-Overlay Einstellungen erfolgreich gespeichert."
    1912666
    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
    1922668msgid "Purchase buttons are now rendered at a custom position."
    1923669msgstr ""
    1924670"Kauf-Buttons werden ab jetzt an einer benutzerdefinierten Position angezeigt."
    1925671
    1926 #: application/Controller/Admin/Appearance.php:233
     672#: application/Controller/Admin/Appearance.php:215
    1927673msgid "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
     674msgstr "Kauf-Buttons werden ab jetzt an ihrer Standard-Position angezeigt."
     675
     676#: application/Controller/Admin/Appearance.php:236
    1932677msgid "Time passes are now rendered at a custom position."
    1933678msgstr ""
    1934679"Zeitpässe werden ab jetzt an einer benutzerdefinierten Position angezeigt."
    1935680
    1936 #: application/Controller/Admin/Appearance.php:263
     681#: application/Controller/Admin/Appearance.php:245
    1937682msgid "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
     683msgstr "Zeitpässe werden ab jetzt an ihrer Standard-Position angezeigt."
     684
     685#: application/Controller/Admin/Notice.php:39
     686msgid "Please contact WPEngine customer service to bypass the required cookies"
     687msgstr ""
     688
     689#: application/Controller/Admin/Notice.php:40
     690msgid "token, laterpay_purchased_gift_card and laterpay_tracking_code"
     691msgstr ""
     692
     693#: application/Controller/Admin/Notice.php:41
     694msgid "in order for the plugin to work properly with page-cache."
     695msgstr ""
     696
     697#: application/Controller/Admin/Notice.php:42
     698msgid "Done"
     699msgstr ""
     700
     701#: application/Controller/Admin/Notice.php:63
     702msgid "Saving Settings "
     703msgstr ""
     704
     705#: application/Controller/Admin/Notice.php:64
     706msgid "Settings Saved "
     707msgstr ""
     708
     709#: application/Controller/Admin/Notice.php:65
     710msgid "Error saving data"
     711msgstr ""
     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
     717msgid "Price"
     718msgstr "Preis"
     719
     720#: application/Controller/Admin/Post/Column.php:43
     721msgid "Price Type"
     722msgstr "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
     729msgid "Pay Now"
     730msgstr "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
     737msgid "Pay Later"
     738msgstr "Später zahlen"
     739
     740#: application/Controller/Admin/Post/Column.php:89
     741msgid "individual price"
     742msgstr "Individueller Preis"
     743
     744#: application/Controller/Admin/Post/Column.php:93
     745msgid "dynamic individual price"
     746msgstr "Individueller Preis (dynamisch)"
     747
     748#: application/Controller/Admin/Post/Column.php:97
     749msgid "category default price"
     750msgstr "Kategorie-Standardpreis"
     751
     752#: application/Controller/Admin/Post/Column.php:101
     753#: application/Controller/Admin/Post/Column.php:111
     754msgid "global default price"
     755msgstr "Standardpreis"
     756
     757#: application/Controller/Admin/Post/Metabox.php:136
     758msgid ""
     759"Paid posts require some teaser content. Please fill in the Teaser Content "
     760"field."
     761msgstr ""
     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
     767msgid "Add dynamic pricing"
     768msgstr "Dynamische Preissetzung hinzufügen"
     769
     770#: application/Controller/Admin/Post/Metabox.php:138
     771#: views/backend/partials/post-pricing-form.php:126
     772msgid "Remove dynamic pricing"
     773msgstr "Dynamische Preissetzung entfernen"
     774
     775#: application/Controller/Admin/Post/Metabox.php:147
     776msgid "default price"
     777msgstr "Standardpreis"
     778
     779#: application/Controller/Admin/Post/Metabox.php:148
     780msgid "days"
     781msgstr "Tage"
     782
     783#: application/Controller/Admin/Post/Metabox.php:149
     784msgid "Today"
     785msgstr "Heute"
     786
     787#: application/Controller/Admin/Post/Metabox.php:169
     788msgid "Teaser Content"
     789msgstr "Teaser für den Beitrag"
     790
     791#: application/Controller/Admin/Post/Metabox.php:192
     792msgid "Pricing for this Post"
     793msgstr "Preis des Beitrags"
     794
     795#: application/Controller/Admin/Post/Metabox.php:235
     796#, php-format
     797msgid ""
     798"Visitors will see the teaser content %s instead of the full content %s "
     799"before purchase."
     800msgstr ""
     801
     802#: application/Controller/Admin/Post/Metabox.php:238
     803msgid ""
     804"If you do not enter any teaser content, the plugin will use an excerpt of "
     805"the full content as teaser content."
     806msgstr ""
     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
     811msgid ""
     812"We do recommend to write dedicated teaser content to increase your sales "
     813"though."
     814msgstr ""
     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
     819msgid "Subscriptions"
     820msgstr "Abos"
     821
     822#: application/Controller/Admin/Pricing.php:47
     823msgid "Subscription"
     824msgstr ""
     825
     826#: application/Controller/Admin/Pricing.php:79
     827msgid "After"
     828msgstr "Nach"
     829
     830#: application/Controller/Admin/Pricing.php:80
    1942831msgid "Make"
    1943832msgstr "Mache"
    1944833
    1945 #: application/Controller/Admin/Pricing.php:61
     834#: application/Controller/Admin/Pricing.php:81
    1946835msgid "free"
    1947836msgstr "kostenlos"
    1948837
    1949 #: application/Controller/Admin/Pricing.php:63
    1950 #: application/Controller/Admin/Pricing.php:629
     838#: application/Controller/Admin/Pricing.php:82
     839msgid "to"
     840msgstr "auf"
     841
     842#: application/Controller/Admin/Pricing.php:83
    1951843msgid "by"
    1952844msgstr "um"
    1953845
    1954 #: application/Controller/Admin/Pricing.php:64
    1955 #: application/Controller/Admin/Pricing.php:652
     846#: application/Controller/Admin/Pricing.php:84
    1956847msgid "to global default price of"
    1957848msgstr "auf den allgemeinen Standardpreis"
    1958849
    1959 #: application/Controller/Admin/Pricing.php:65
    1960 #: application/Controller/Admin/Pricing.php:658
     850#: application/Controller/Admin/Pricing.php:85
    1961851msgid "to category default price of"
    1962852msgstr "auf den Kategorie-Standardpreis"
    1963853
    1964 #: application/Controller/Admin/Pricing.php:69
     854#: application/Controller/Admin/Pricing.php:86
     855msgid "Update Prices"
     856msgstr "Preise aktualisieren"
     857
     858#: application/Controller/Admin/Pricing.php:87
     859msgid "Delete"
     860msgstr "Löschen"
     861
     862#: application/Controller/Admin/Pricing.php:89
    1965863msgid "Are you sure?"
    1966864msgstr "Sind Sie sicher?"
    1967865
    1968 #: application/Controller/Admin/Pricing.php:70
     866#: application/Controller/Admin/Pricing.php:90
    1969867msgid ""
    1970868"Do you really want to discontinue this subscription? If you delete it, it "
     
    1980878"dieses Abo wirklich löschen?"
    1981879
    1982 #: application/Controller/Admin/Pricing.php:94
     880#: application/Controller/Admin/Pricing.php:91 views/backend/pricing.php:387
     881msgid "reduces the price to"
     882msgstr "reduziert den Preis auf"
     883
     884#: application/Controller/Admin/Pricing.php:92 views/backend/pricing.php:398
     885msgid "times redeemed."
     886msgstr "Mal eingelöst."
     887
     888#: application/Controller/Admin/Pricing.php:114
    1983889msgid "All posts in category"
    1984890msgstr "aller Beiträge in Kategorie"
    1985891
    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
    2012893msgid "All posts are free by default now."
    2013894msgstr "Alle Beiträge sind nun standardmäßig kostenlos."
    2014895
    2015 #: application/Controller/Admin/Pricing.php:331
     896#: application/Controller/Admin/Pricing.php:316
    2016897#, php-format
    2017898msgid "The global default price for all posts is %s %s now."
    2018899msgstr "Der allgemeine Standardpreis für alle Beiträge ist jetzt %s %s."
    2019900
    2020 #: application/Controller/Admin/Pricing.php:395
     901#: application/Controller/Admin/Pricing.php:379
    2021902msgid "There is no such category on this website."
    2022903msgstr "Diese Kategorie existiert nicht."
    2023904
    2024 #: application/Controller/Admin/Pricing.php:432
     905#: application/Controller/Admin/Pricing.php:415
    2025906#, php-format
    2026907msgid "All posts in category %s have a default price of %s %s now."
    2027908msgstr "Alle Beiträge in Kategorie %s haben nun einen Standardpreis von %s %s."
    2028909
    2029 #: application/Controller/Admin/Pricing.php:498
     910#: application/Controller/Admin/Pricing.php:460
    2030911#, php-format
    2031912msgid "The default price for category %s was deleted."
    2032913msgstr "Der Standardpreis für die Kategorie %s wurde entfernt."
    2033914
    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
    2077916msgid "An error occurred when trying to save the time pass. Please try again."
    2078917msgstr ""
     
    2080919"Sie es noch einmal."
    2081920
    2082 #: application/Controller/Admin/Pricing.php:926
     921#: application/Controller/Admin/Pricing.php:573
    2083922msgid "Pass saved."
    2084923msgstr "Pass gespeichert."
    2085924
    2086 #: application/Controller/Admin/Pricing.php:950
     925#: application/Controller/Admin/Pricing.php:598
    2087926msgid "Time pass deleted."
    2088927msgstr "Zeitpass gelöscht."
    2089928
    2090 #: application/Controller/Admin/Pricing.php:957
     929#: application/Controller/Admin/Pricing.php:605
    2091930msgid "The selected pass was deleted already."
    2092931msgstr "Der ausgewählte Pass wurde bereits gelöscht."
    2093932
    2094 #: application/Controller/Admin/Pricing.php:997
     933#: application/Controller/Admin/Pricing.php:648
    2095934msgid ""
    2096935"An error occurred when trying to save the subscription. Please try again."
     
    2099938"Sie es erneut."
    2100939
    2101 #: application/Controller/Admin/Pricing.php:1020
     940#: application/Controller/Admin/Pricing.php:671
    2102941msgid "Subscription saved."
    2103942msgstr "Abo gespeichert."
    2104943
    2105 #: application/Controller/Admin/Pricing.php:1041
     944#: application/Controller/Admin/Pricing.php:693
    2106945msgid "Subscription deleted."
    2107946msgstr "Abo gelöscht."
    2108947
    2109 #: application/Controller/Admin/Pricing.php:1048
     948#: application/Controller/Admin/Pricing.php:700
    2110949msgid "The selected subscription was deleted already."
    2111950msgstr "Dieses Abo wurde bereits gelöscht."
    2112951
    2113 #: application/Controller/Admin/Pricing.php:1103
     952#: application/Controller/Admin/Pricing.php:755
    2114953msgid "Incorrect voucher price."
    2115954msgstr "Ungültiger Gutschein-Preis."
    2116955
    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
    2122957msgid ""
    2123958"You have to create a time pass, before you can disable individual purchases."
     
    2126961"können."
    2127962
    2128 #: application/Controller/Admin/Settings.php:55
     963#: application/Controller/Admin/Pricing.php:828
     964msgid "Passes"
     965msgstr ""
     966
     967#: application/Controller/Admin/Pricing.php:829 views/backend/pricing.php:363
     968#: views/backend/pricing.php:412
     969msgid "Pass"
     970msgstr "Pass"
     971
     972#: application/Controller/Admin/Pricing.php:839
     973msgid "Laterpay Passes Post type Registration issue."
     974msgstr ""
     975
     976#: application/Controller/Admin/Settings.php:55
    2129977#: application/Controller/Admin/Settings.php:72
    2130978msgid "LaterPay Advanced Settings"
    2131979msgstr "LaterPay – Erweiterte Einstellungen"
    2132980
    2133 #: application/Controller/Admin/Settings.php:105
     981#: application/Controller/Admin/Settings.php:103
    2134982msgid "LaterPay Colors"
    2135983msgstr "LaterPay Farben"
    2136984
    2137 #: application/Controller/Admin/Settings.php:112
     985#: application/Controller/Admin/Settings.php:110
    2138986msgid "Main Color"
    2139987msgstr "Hauptfarbe"
    2140988
    2141 #: application/Controller/Admin/Settings.php:126
     989#: application/Controller/Admin/Settings.php:115
     990msgid "Main color for clickable elements. (Default: #01a99d)"
     991msgstr ""
     992
     993#: application/Controller/Admin/Settings.php:124
    2142994msgid "Hover Color"
    2143995msgstr "Hover Farbe"
    2144996
    2145 #: application/Controller/Admin/Settings.php:146
     997#: application/Controller/Admin/Settings.php:129
     998msgid "Hover color for clickable elements. (Default: #01766e)"
     999msgstr ""
     1000
     1001#: application/Controller/Admin/Settings.php:144
    21461002msgid "You can customize the colors of clickable LaterPay elements."
    21471003msgstr "Sie können die Farben von klickbaren LaterPay Elementen anpassen."
    21481004
    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
    21891006msgid "Caching Compatibility Mode"
    21901007msgstr "Caching-Kompatibilitätsmodus"
    21911008
    2192 #: application/Controller/Admin/Settings.php:225
     1009#: application/Controller/Admin/Settings.php:164
    21931010msgid "Caching Compatibility"
    21941011msgstr "Caching-Kompatibilität"
    21951012
    2196 #: application/Controller/Admin/Settings.php:233
     1013#: application/Controller/Admin/Settings.php:172
    21971014msgid "I am using a caching plugin (e.g. WP Super Cache or Cachify)"
    21981015msgstr "Ich verwende ein Caching-Plugin (z. B. WP Super Cache oder Cachify)"
    21991016
    2200 #: application/Controller/Admin/Settings.php:247
     1017#: application/Controller/Admin/Settings.php:186
    22011018msgid ""
    22021019"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."
     1022msgstr ""
     1023
     1024#: application/Controller/Admin/Settings.php:189
     1025msgid ""
     1026"In caching compatibility mode the plugin works\n"
     1027"           like this:"
     1028msgstr ""
     1029
     1030#: application/Controller/Admin/Settings.php:192
     1031msgid ""
     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."
     1034msgstr ""
     1035
     1036#: application/Controller/Admin/Settings.php:195
     1037msgid ""
     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."
     1042msgstr ""
     1043
     1044#: application/Controller/Admin/Settings.php:209
    22261045msgid "LaterPay-enabled Post Types"
    22271046msgstr "LaterPay Post-Types"
    22281047
    2229 #: application/Controller/Admin/Settings.php:272
     1048#: application/Controller/Admin/Settings.php:216
    22301049msgid "Enabled Post Types"
    22311050msgstr "Aktivierte Post-Types"
    22321051
    2233 #: application/Controller/Admin/Settings.php:288
     1052#: application/Controller/Admin/Settings.php:232
    22341053msgid ""
    22351054"Please choose, which standard and custom post types should be sellable with "
     
    22391058"verfügbar sein soll."
    22401059
    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
    22561061msgid ""
    22571062"Please choose, if you want to show the time passes widget on free posts, or "
     
    22611066"kostenlosen Beiträgen anzeigen möchten."
    22621067
    2263 #: application/Controller/Admin/Settings.php:341
    2264 #: application/Controller/Admin/Settings.php:348
     1068#: application/Controller/Admin/Settings.php:255
     1069#: application/Controller/Admin/Settings.php:262
    22651070msgid "Require login"
    22661071msgstr "Login erforderlich"
    22671072
    2268 #: application/Controller/Admin/Settings.php:356
     1073#: application/Controller/Admin/Settings.php:270
    22691074msgid "Require the user to log in to LaterPay before a \"Pay Later\" purchase."
    22701075msgstr ""
     
    22721077"einzuloggen."
    22731078
    2274 #: application/Controller/Admin/Settings.php:370
     1079#: application/Controller/Admin/Settings.php:284
    22751080msgid ""
    22761081"Please choose if you want to require a login for \"Pay Later\" purchases."
     
    22791084"sein soll."
    22801085
    2281 #: application/Controller/Admin/Settings.php:383
     1086#: application/Controller/Admin/Settings.php:296
    22821087msgid "Gift Codes Limit"
    22831088msgstr "Einschränkungen für Geschenkgutscheine"
    22841089
    2285 #: application/Controller/Admin/Settings.php:390
     1090#: application/Controller/Admin/Settings.php:303
    22861091msgid "Times Redeemable"
    22871092msgstr "Maximal einlösbar"
    22881093
    2289 #: application/Controller/Admin/Settings.php:410
     1094#: application/Controller/Admin/Settings.php:323
    22901095msgid ""
    22911096"Specify, how many times a gift code can be redeemed for the associated time "
     
    22951100"eingelöst werden kann."
    22961101
    2297 #: application/Controller/Admin/Settings.php:450
     1102#: application/Controller/Admin/Settings.php:363
    22981103msgid "Automatically Generated Teaser Content"
    22991104msgstr "Automatisch erzeugter Teaser"
    23001105
    2301 #: application/Controller/Admin/Settings.php:457
     1106#: application/Controller/Admin/Settings.php:370
    23021107msgid "Teaser Content Word Count"
    23031108msgstr "Teaser-Länge"
    23041109
    2305 #: application/Controller/Admin/Settings.php:464
     1110#: application/Controller/Admin/Settings.php:377
    23061111msgid "Number of words extracted from paid posts as teaser content."
    23071112msgstr "Anzahl der Wörter aus dem Volltext, die als Teaser verwendet werden."
    23081113
    2309 #: application/Controller/Admin/Settings.php:478
     1114#: application/Controller/Admin/Settings.php:391
    23101115msgid ""
    23111116"The LaterPay WordPress plugin automatically generates teaser content for "
    23121117"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."
     1119msgstr ""
     1120
     1121#: application/Controller/Admin/Settings.php:394
     1122msgid ""
     1123"While technically possible, setting this parameter to zero is\n"
     1124"            HIGHLY DISCOURAGED."
     1125msgstr ""
     1126
     1127#: application/Controller/Admin/Settings.php:397
     1128msgid ""
     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."
     1131msgstr ""
     1132
     1133#: application/Controller/Admin/Settings.php:410
    23271134msgid "Content Preview under Overlay"
    23281135msgstr "Beitragsvorschau unter Overlay"
    23291136
    2330 #: application/Controller/Admin/Settings.php:501
     1137#: application/Controller/Admin/Settings.php:417
    23311138msgid "Percentage of Post Content"
    23321139msgstr "Anteil des Volltextes"
    23331140
    2334 #: application/Controller/Admin/Settings.php:508
     1141#: application/Controller/Admin/Settings.php:424
    23351142#, php-format
    23361143msgid ""
     
    23421149"die ersten 20% des Volltextes unter dem Overlay an.\""
    23431150
    2344 #: application/Controller/Admin/Settings.php:515
     1151#: application/Controller/Admin/Settings.php:431
    23451152msgid "Minimum Number of Words"
    23461153msgstr "Mindestanzahl Wörter"
    23471154
    2348 #: application/Controller/Admin/Settings.php:522
     1155#: application/Controller/Admin/Settings.php:438
    23491156msgid ""
    23501157"Applied if number of words as percentage of the total number of words is "
     
    23551162"als dieser Wert."
    23561163
    2357 #: application/Controller/Admin/Settings.php:529
     1164#: application/Controller/Admin/Settings.php:445
    23581165msgid "Maximum Number of Words"
    23591166msgstr "Höchstanzahl Wörter"
    23601167
    2361 #: application/Controller/Admin/Settings.php:536
     1168#: application/Controller/Admin/Settings.php:452
    23621169msgid ""
    23631170"Applied if number of words as percentage of the total number of words "
     
    23681175"dieser Wert."
    23691176
    2370 #: application/Controller/Admin/Settings.php:553
     1177#: application/Controller/Admin/Settings.php:469
    23711178msgid ""
    23721179"In the appearance tab, you can choose to preview your paid posts with the "
    23731180"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."
     1183msgstr ""
     1184
     1185#: application/Controller/Admin/Settings.php:472
     1186msgid ""
     1187"The following three parameters give you fine-grained control over the length "
     1188"of this excerpt."
     1189msgstr ""
     1190
     1191#: application/Controller/Admin/Settings.php:474
     1192msgid "These settings do not affect the teaser content in any way."
     1193msgstr ""
     1194
     1195#: application/Controller/Admin/Settings.php:521
    23881196msgid "Unlimited Access to Paid Content"
    23891197msgstr "Unbegrenzter Zugriff auf Bezahlinhalte"
    23901198
    2391 #: application/Controller/Admin/Settings.php:634
     1199#: application/Controller/Admin/Settings.php:552
    23921200msgid ""
    23931201"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."
     1203msgstr ""
     1204
     1205#: application/Controller/Admin/Settings.php:554
     1206msgid ""
     1207"This feature can be useful e.g. for giving free access to existing "
     1208"subscribers."
     1209msgstr ""
     1210
     1211#: application/Controller/Admin/Settings.php:556
     1212msgid ""
     1213"We recommend the plugin 'User Role Editor' for adding custom roles to "
     1214"WordPress."
     1215msgstr ""
     1216
     1217#: application/Controller/Admin/Settings.php:562
    24091218msgid "User Role"
    24101219msgstr "Nutzerrolle"
    24111220
    2412 #: application/Controller/Admin/Settings.php:645
     1221#: application/Controller/Admin/Settings.php:564
    24131222msgid "Unlimited Access to Categories"
    24141223msgstr "Unbeschränkter Zugriff auf die Kategorien"
    24151224
    2416 #: application/Controller/Admin/Settings.php:650
     1225#: application/Controller/Admin/Settings.php:569
    24171226msgid "Please add a custom role first."
    24181227msgstr "Bitte erstellen Sie erst eine eigene Nutzerrolle."
    24191228
    2420 #: application/Controller/Admin/Settings.php:944
     1229#: application/Controller/Admin/Settings.php:864
    24211230msgid "LaterPay API Settings"
    24221231msgstr "LaterPay API-Einstellungen"
    24231232
    2424 #: application/Controller/Admin/Settings.php:953
     1233#: application/Controller/Admin/Settings.php:873
    24251234msgid "Fallback Behavior"
    24261235msgstr "Fallback-Verhalten"
    24271236
    2428 #: application/Controller/Admin/Settings.php:970
     1237#: application/Controller/Admin/Settings.php:890
    24291238msgid "Enabled on home page"
    24301239msgstr "LaterPay auf Startseite aktivieren"
    24311240
    2432 #: application/Controller/Admin/Settings.php:978
     1241#: application/Controller/Admin/Settings.php:898
    24331242msgid "I want to enable requests to LaterPay API on home page"
    24341243msgstr "Ich möchte LaterPay API Aufrufe auf der Startseite erlauben"
    24351244
    2436 #: application/Controller/Admin/Settings.php:992
     1245#: application/Controller/Admin/Settings.php:912
    24371246msgid ""
    24381247"Define fallback behavior in case LaterPay API is not responding and option "
     
    24431252"soll."
    24441253
    2445 #: application/Controller/Admin/Settings.php:1005
     1254#: application/Controller/Admin/Settings.php:925
    24461255msgid "Do nothing"
    24471256msgstr "Nichts tun"
    24481257
    2449 #: application/Controller/Admin/Settings.php:1006
     1258#: application/Controller/Admin/Settings.php:926
    24501259msgid ""
    24511260"No user can access premium content while the LaterPay API is not responding."
     
    24541263"erreichbar ist."
    24551264
    2456 #: application/Controller/Admin/Settings.php:1010
     1265#: application/Controller/Admin/Settings.php:930
    24571266msgid "Give full access"
    24581267msgstr "Vollzugriff gewähren"
    24591268
    2460 #: application/Controller/Admin/Settings.php:1011
     1269#: application/Controller/Admin/Settings.php:931
    24611270msgid ""
    24621271"All users have full access to premium content in order to not disappoint "
     
    24661275"bisherige Käufer nicht zu verärgern)."
    24671276
    2468 #: application/Controller/Admin/Settings.php:1015
     1277#: application/Controller/Admin/Settings.php:935
    24691278msgid "Hide premium content"
    24701279msgstr "Bezahlinhalte ausblenden"
    24711280
    2472 #: application/Controller/Admin/Settings.php:1016
     1281#: application/Controller/Admin/Settings.php:936
    24731282msgid "Premium content is hidden from users. Direct access would be blocked."
    24741283msgstr "Bezahlinhalte werden ausgeblendet, der Direktzugriff wird verweigert."
    24751284
    2476 #: application/Controller/Admin/Settings.php:1029
    2477 #: application/Controller/Admin/Settings.php:1038
     1285#: application/Controller/Admin/Settings.php:949
     1286#: application/Controller/Admin/Settings.php:958
    24781287msgid "LaterPay Pro Merchant"
    24791288msgstr "LaterPay Pro Händlerkonto"
    24801289
    2481 #: application/Controller/Admin/Settings.php:1034
     1290#: application/Controller/Admin/Settings.php:954
    24821291msgid ""
    24831292"Only choose this option, if you have a LaterPay Pro merchant account. "
     
    24921301"dass Sie diese Option aktivieren möchten?"
    24931302
    2494 #: application/Controller/Admin/Settings.php:1046
     1303#: application/Controller/Admin/Settings.php:966
    24951304msgid "I have a LaterPay Pro merchant account."
    24961305msgstr "Ich habe ein LaterPay Pro Händlerkonto."
    24971306
    2498 #: application/Controller/Admin/Settings.php:1061
     1307#: application/Controller/Admin/Settings.php:981
    24991308msgid "Please choose, if you have a LaterPay Pro merchant account."
    25001309msgstr "Bitte aktivieren, wenn Sie ein LaterPay Pro Händlerkonto besitzen."
    25011310
    2502 #: views/frontend/partials/widget/time-passes.php:28
     1311#: application/Controller/Frontend/Post.php:553
     1312msgid "In Live mode, your visitors would now see the LaterPay purchase dialog."
     1313msgstr ""
     1314"Im Live-Modus würden Ihre Besucher jetzt den LaterPay Kaufdialog sehen."
     1315
     1316#: application/Controller/Frontend/Post.php:554
     1317msgid "Voucher code accepted."
     1318msgstr "Gutschein-Code akzeptiert."
     1319
     1320#: application/Controller/Frontend/Post.php:555
     1321msgid " is not a valid voucher code!"
     1322msgstr " ist kein gültiger Gutschein-Code!"
     1323
     1324#: application/Controller/Frontend/Post.php:556
     1325msgid "Please enter a six-digit voucher code."
     1326msgstr "Bitte geben Sie einen sechsstelligen Gutschein-Code ein."
     1327
     1328#: application/Controller/Frontend/Post.php:557
     1329msgid "An error occurred. Please try again."
     1330msgstr "Ein Fehler ist aufgetreten. Bitte versuchen Sie es erneut."
     1331
     1332#: application/Controller/Frontend/Post.php:559
     1333#: application/Module/Purchase.php:176
     1334msgid "Buy Now, Pay Later"
     1335msgstr "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
     1340msgid "Buy Now"
     1341msgstr "Jetzt kaufen"
     1342
     1343#: application/Controller/Frontend/Post.php:561
     1344msgid "Subscribe Now"
     1345msgstr "Jetzt abonnieren"
     1346
     1347#: application/Controller/Frontend/Post.php:668
     1348msgid ""
     1349"&mdash; Visit the post to buy its full content for {price} {currency} "
     1350"&mdash; {teaser_content}"
     1351msgstr ""
     1352"&mdash; Kaufen Sie den vollständigen Inhalt für {price} {currency} &mdash; "
     1353"{teaser_content}"
     1354
     1355#: application/Controller/Frontend/PreviewMode.php:156
     1356#: application/Controller/Frontend/PreviewMode.php:240
     1357msgid "Updated."
     1358msgstr "Aktualisiert."
     1359
     1360#: application/Controller/Frontend/PreviewMode.php:214
     1361#: application/Module/Appearance.php:191
     1362msgid "You don't have sufficient user capabilities to do this."
     1363msgstr "Sie haben nicht die erforderlichen Berechtigungen für diese Aktion."
     1364
     1365#: application/Controller/Frontend/Shortcode.php:91
     1366msgid "Download now"
     1367msgstr "Jetzt herunterladen"
     1368
     1369#: application/Controller/Frontend/Shortcode.php:96
     1370msgid "Watch now"
     1371msgstr "Jetzt ansehen"
     1372
     1373#: application/Controller/Frontend/Shortcode.php:101
     1374msgid "Listen now"
     1375msgstr "Jetzt anhören"
     1376
     1377#: application/Controller/Frontend/Shortcode.php:105
     1378msgid "Read now"
     1379msgstr "Jetzt lesen"
     1380
     1381#: application/Controller/Frontend/Shortcode.php:185
     1382msgid "Wrong time pass id."
     1383msgstr "Ungültige Zeitpass-ID."
     1384
     1385#: application/Controller/Install.php:76
     1386#, php-format
     1387msgid ""
     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>"
     1390msgstr ""
     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
     1395msgid ""
     1396"The LaterPay plugin could not be installed. Please fix the reported issues "
     1397"and try again."
     1398msgstr ""
     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
     1404msgid "%s: <code>%s</code> not found"
     1405msgstr "%s: <code>%s</code> nicht gefunden"
     1406
     1407#: application/Core/Exception/FormValidation.php:18
     1408#, php-format
     1409msgid "Form \"%s\" validation failed."
     1410msgstr "Formatvalidierung \"%s\" fehlgeschlagen."
     1411
     1412#: application/Core/Exception/InvalidIncomingData.php:14
     1413#, php-format
     1414msgid "\"%s\" param missed or has incorrect value"
     1415msgstr "Der Parameter \"%s\" fehlt oder hat einen ungültigen Wert."
     1416
     1417#: application/Core/Exception/PostNotFound.php:14
     1418#, php-format
     1419msgid "Post with id \"%s\" not exist"
     1420msgstr "Es existiert kein Beitrag mit der ID \"%s\"."
     1421
     1422#: application/Helper/Appearance.php:22 application/Helper/Appearance.php:52
     1423msgid "Read now, pay later"
     1424msgstr "Jetzt lesen, später zahlen"
     1425
     1426#: application/Helper/Post.php:300
     1427msgid "(more&hellip;)"
     1428msgstr ""
     1429
     1430#: application/Helper/Subscription.php:33
     1431msgid "1 Month Subscription"
     1432msgstr "Monatsabo"
     1433
     1434#: application/Helper/Subscription.php:34
     1435msgid "1 month access to all content on this website (cancellable anytime)"
     1436msgstr "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
     1440msgid "access to"
     1441msgstr "Zugriff auf"
     1442
     1443#: application/Helper/Subscription.php:78 application/Helper/TimePass.php:184
     1444msgid "for"
     1445msgstr "für"
     1446
     1447#: application/Helper/TimePass.php:32
     1448msgid "24-Hour Pass"
     1449msgstr "24-Stunden-Pass"
     1450
     1451#: application/Helper/TimePass.php:33
     1452msgid "24 hours access to all content on this website"
     1453msgstr "24 Stunden Zugang zu allen Inhalten dieser Website"
     1454
     1455#: application/Helper/TimePass.php:80
     1456msgid "Hour"
     1457msgstr "Stunde"
     1458
     1459#: application/Helper/TimePass.php:81
     1460msgid "Day"
     1461msgstr "Tag"
     1462
     1463#: application/Helper/TimePass.php:82
     1464msgid "Week"
     1465msgstr "Woche"
     1466
     1467#: application/Helper/TimePass.php:83
     1468msgid "Month"
     1469msgstr "Monat"
     1470
     1471#: application/Helper/TimePass.php:84
     1472msgid "Year"
     1473msgstr "Jahr"
     1474
     1475#: application/Helper/TimePass.php:89
     1476msgid "Hours"
     1477msgstr "Stunden"
     1478
     1479#: application/Helper/TimePass.php:90
     1480msgid "Days"
     1481msgstr "Tage"
     1482
     1483#: application/Helper/TimePass.php:91
     1484msgid "Weeks"
     1485msgstr "Wochen"
     1486
     1487#: application/Helper/TimePass.php:92
     1488msgid "Months"
     1489msgstr "Monate"
     1490
     1491#: application/Helper/TimePass.php:93
     1492msgid "Years"
     1493msgstr "Jahre"
     1494
     1495#: application/Helper/TimePass.php:116
     1496msgid "later"
     1497msgstr "später"
     1498
     1499#: application/Helper/TimePass.php:117
     1500msgid "immediately"
     1501msgstr "sofort"
     1502
     1503#: application/Helper/TimePass.php:138
     1504msgid "All content"
     1505msgstr "Alle Inhalte"
     1506
     1507#: application/Helper/TimePass.php:139
     1508msgid "All content except for category"
     1509msgstr "Alle Inhalte außer in Kategorie"
     1510
     1511#: application/Helper/TimePass.php:140
     1512msgid "All content in category"
     1513msgstr "Alle Inhalte in Kategorie"
     1514
     1515#: application/Helper/View.php:217
     1516msgid "k"
     1517msgstr "t"
     1518
     1519#: application/Helper/View.php:250
     1520msgid "Problem with inserted shortcode:"
     1521msgstr "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
     1525msgid "I already bought this"
     1526msgstr "Bereits gekauft?"
     1527
     1528#: application/Module/Purchase.php:260 application/Module/TimePasses.php:368
     1529msgid "Read Now"
     1530msgstr "Jetzt lesen"
     1531
     1532#: application/Module/Purchase.php:262
     1533msgid "Read Now, Pay Later"
     1534msgstr "Jetzt lesen, später zahlen"
     1535
     1536#: application/Module/Purchase.php:272
     1537msgid ""
     1538"Buy this post now with LaterPay and <br>pay with a payment method you trust."
     1539msgstr ""
     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
     1545msgid "Read Immediately"
     1546msgstr "Sofort lesen"
     1547
     1548#: application/Module/Purchase.php:277
     1549msgid ""
     1550"Immediately access your purchase. <br>You only buy this post. No "
     1551"subscription, no fees."
     1552msgstr ""
     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
     1557msgid "Just agree to pay later.<br> No upfront registration and payment."
     1558msgstr ""
     1559"Stimmen Sie einfach zu, später zu zahlen.<br> Keine Vorabregistrierung. "
     1560"Keine Vorauszahlung."
     1561
     1562#: application/Module/Purchase.php:290
     1563msgid ""
     1564"Access your purchase immediately.<br> You are only buying this article, not "
     1565"a subscription."
     1566msgstr ""
     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
     1572msgid ""
     1573"Buy with LaterPay until you reach a total of %s %s.<br> Only then do you "
     1574"have to register and pay."
     1575msgstr ""
     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
     1580msgid "Buy a time pass to read the full content."
     1581msgstr "Kaufen Sie einen Zeitpass, um den gesamten Inhalt anzuzeigen."
     1582
     1583#: application/Module/TimePasses.php:340
     1584msgid "Wrong time pass id or no time passes specified."
     1585msgstr "Ungültige Zeitpass-ID oder keine Zeitpässe vorhanden."
     1586
     1587#: application/Module/TimePasses.php:371
     1588msgid "Buy Time Pass"
     1589msgstr "Zeitpass kaufen"
     1590
     1591#: application/Module/TimePasses.php:372
     1592msgid "Buy a LaterPay time pass and pay with a payment method you trust."
     1593msgstr ""
     1594"Kaufen Sie einen LaterPay Zeitpass und zahlen Sie mit einer Zahlungsmethode "
     1595"Ihres Vertrauens."
     1596
     1597#: application/Module/TimePasses.php:377
     1598msgid ""
     1599"Immediately access your content. <br>A time pass is not a subscription, it "
     1600"expires automatically."
     1601msgstr ""
     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
     1607msgid "Test mode"
     1608msgstr "Test-Modus"
     1609
     1610#: views/backend/account.php:22 views/backend/appearance.php:20
     1611#: views/backend/pricing.php:23
     1612msgid "Earn money in"
     1613msgstr ""
     1614
     1615#: views/backend/account.php:22 views/backend/appearance.php:20
     1616#: views/backend/pricing.php:23
     1617msgid "live mode"
     1618msgstr ""
     1619
     1620#: views/backend/account.php:35
     1621msgid "The LaterPay plugin is in"
     1622msgstr "Das LaterPay Plugin ist im"
     1623
     1624#: views/backend/account.php:51
     1625msgid "mode."
     1626msgstr "Modus."
     1627
     1628#: views/backend/account.php:55
     1629msgid "It is invisible"
     1630msgstr "Es ist für Besucher nicht sichtbar"
     1631
     1632#: views/backend/account.php:72
     1633msgid "visible to visitors."
     1634msgstr "sichtbar."
     1635
     1636#: views/backend/account.php:80
     1637msgid "Sandbox Environment"
     1638msgstr "Sandbox"
     1639
     1640#: views/backend/account.php:83
     1641msgid "for testing with simulated payments"
     1642msgstr "zu Testzwecken mit simulierten Zahlungen"
     1643
     1644#: views/backend/account.php:102
     1645msgid "Paste Sandbox Merchant ID here"
     1646msgstr "Sandbox Merchant ID hier einfügen"
     1647
     1648#: views/backend/account.php:103 views/backend/account.php:159
     1649msgid "Merchant ID"
     1650msgstr "Merchant ID"
     1651
     1652#: views/backend/account.php:122
     1653msgid "Paste Sandbox API Key here"
     1654msgstr "Sandbox API Key hier einfügen"
     1655
     1656#: views/backend/account.php:123 views/backend/account.php:179
     1657msgid "API Key"
     1658msgstr "API Key"
     1659
     1660#: views/backend/account.php:136
     1661msgid "Live Environment"
     1662msgstr "Live"
     1663
     1664#: views/backend/account.php:139
     1665msgid "for processing real financial transactions"
     1666msgstr "Produktivumgebung für echte Käufe und Zahlungen"
     1667
     1668#: views/backend/account.php:158
     1669msgid "Paste Live Merchant ID here"
     1670msgstr "Live Merchant ID hier einfügen"
     1671
     1672#: views/backend/account.php:178
     1673msgid "Paste Live API Key here"
     1674msgstr "Live API Key hier einfügen"
     1675
     1676#: views/backend/account.php:191
     1677msgid "Request Live API Credentials"
     1678msgstr "Live API Zugangsdaten anfordern"
     1679
     1680#: views/backend/account.php:201
     1681msgid "Region and Currency"
     1682msgstr "Ländergruppe und Währung"
     1683
     1684#: views/backend/account.php:203
     1685msgid "Select the region for your LaterPay merchant account"
     1686msgstr "Wählen Sie die Ländergruppe Ihres LaterPay Händlerkontos aus"
     1687
     1688#: views/backend/account.php:207
     1689msgid ""
     1690"Is the selling company or person based in Europe or in the United States?"
     1691msgstr ""
     1692
     1693#: views/backend/account.php:209
     1694msgid ""
     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."
     1697msgstr ""
     1698
     1699#: views/backend/account.php:211
     1700msgid ""
     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."
     1703msgstr ""
     1704
     1705#: views/backend/account.php:220
     1706msgid "Europe (EUR)"
     1707msgstr "Europa (EUR)"
     1708
     1709#: views/backend/account.php:221
     1710msgid "United States (USD)"
     1711msgstr "USA (USD)"
     1712
     1713#: views/backend/account.php:228
     1714msgid "Important:"
     1715msgstr ""
     1716
     1717#: views/backend/account.php:230
     1718msgid " The minimum value for \"Pay Now\" prices in the U.S. region is"
     1719msgstr ""
     1720
     1721#: views/backend/account.php:232
     1722msgid "$1.99"
     1723msgstr ""
     1724
     1725#: views/backend/account.php:235
     1726msgid ""
     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."
     1729msgstr ""
     1730
     1731#: views/backend/account.php:237
     1732msgid ""
     1733"If you haven't done any configuration yet, you can safely switch the region "
     1734"without further adjustments. "
     1735msgstr ""
     1736
     1737#: views/backend/appearance.php:33
     1738msgid "Content Preview for Paid Posts"
     1739msgstr "Vorschau für Bezahlinhalte"
     1740
     1741#: views/backend/appearance.php:47
     1742msgid "Teaser + Purchase Link"
     1743msgstr "Teaser + Kauflink"
     1744
     1745#: views/backend/appearance.php:56
     1746msgid "Teaser + Explanatory Overlay"
     1747msgstr "Teaser + erklärendes Overlay"
     1748
     1749#: views/backend/appearance.php:65
     1750msgid "Teaser + Purchase Overlay"
     1751msgstr "Teaser + Kauf-Overlay"
     1752
     1753#: views/backend/appearance.php:77
     1754msgid "Header"
     1755msgstr "Header"
     1756
     1757#: views/backend/appearance.php:82
     1758msgid "Header background color"
     1759msgstr "Hintergrundfarbe Header"
     1760
     1761#: views/backend/appearance.php:90
     1762msgid "Header title"
     1763msgstr "Überschrift"
     1764
     1765#: views/backend/appearance.php:98
     1766msgid "Purchase Options"
     1767msgstr "Kaufoptionen"
     1768
     1769#: views/backend/appearance.php:103
     1770msgid "Background color"
     1771msgstr "Hintergrundfarbe"
     1772
     1773#: views/backend/appearance.php:111
     1774msgid "Main text color"
     1775msgstr "Schriftfarbe Text"
     1776
     1777#: views/backend/appearance.php:119
     1778msgid "Description color text"
     1779msgstr "Schriftfarbe Beschreibungen"
     1780
     1781#: views/backend/appearance.php:127
     1782msgid "Purchase button background color"
     1783msgstr "Hintergrundfarbe Kaufbutton"
     1784
     1785#: views/backend/appearance.php:135
     1786msgid "Purchase button text color"
     1787msgstr "Schriftfarbe Kaufbutton"
     1788
     1789#: views/backend/appearance.php:143
     1790msgid "Link main color"
     1791msgstr "Schriftfarbe Links"
     1792
     1793#: views/backend/appearance.php:151
     1794msgid "Link hover color"
     1795msgstr "Hover-Schriftfarbe Links"
     1796
     1797#: views/backend/appearance.php:159
     1798msgid "Footer"
     1799msgstr "Footer"
     1800
     1801#: views/backend/appearance.php:164
     1802msgid "Show footer"
     1803msgstr "Footer anzeigen"
     1804
     1805#: views/backend/appearance.php:172
     1806msgid "Footer background color"
     1807msgstr "Hintergrundfarbe Footer"
     1808
     1809#: views/backend/appearance.php:182
     1810msgid "Preview"
     1811msgstr "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
     1817msgid "Save"
     1818msgstr "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
     1825msgid "Cancel"
     1826msgstr "Abbrechen"
     1827
     1828#: views/backend/appearance.php:192
     1829msgid "Restore Default Values"
     1830msgstr "Standardwerte wiederherstellen"
     1831
     1832#: views/backend/appearance.php:200
     1833msgid "Position of the LaterPay Purchase Button"
     1834msgstr "Position des LaterPay Buttons"
     1835
     1836#: views/backend/appearance.php:214 views/backend/appearance.php:251
     1837msgid "Standard position"
     1838msgstr "Standardposition"
     1839
     1840#: views/backend/appearance.php:223 views/backend/appearance.php:260
     1841msgid "Custom position"
     1842msgstr "Benutzerdefinierte Position"
     1843
     1844#: views/backend/appearance.php:228
     1845msgid ""
     1846"Call action 'laterpay_purchase_button' in your theme to render the LaterPay "
     1847"purchase button at that position."
     1848msgstr ""
     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
     1853msgid "Display of LaterPay Time Passes"
     1854msgstr "Position der LaterPay Zeitpässe"
     1855
     1856#: views/backend/appearance.php:265
     1857msgid ""
     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."
     1860msgstr ""
     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
     1866msgid "You don't have sufficient permissions to manage options for this site."
     1867msgstr ""
     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
     1872msgid "Welcome to LaterPay"
     1873msgstr "Willkommen bei LaterPay"
     1874
     1875#: views/backend/partials/pointer-scripts.php:13
     1876msgid "Set the most appropriate settings for you."
     1877msgstr "Passen Sie das LaterPay Plugin Ihren Bedürfnissen an."
     1878
     1879#: views/backend/partials/pointer-scripts.php:41
     1880msgid "Set a Price for this Post"
     1881msgstr "Preis für den Beitrag setzen"
     1882
     1883#: views/backend/partials/pointer-scripts.php:42
     1884msgid "Set an"
     1885msgstr ""
     1886
     1887#: views/backend/partials/pointer-scripts.php:43
     1888msgid " individual price "
     1889msgstr ""
     1890
     1891#: views/backend/partials/pointer-scripts.php:44
     1892msgid "for this post here. "
     1893msgstr ""
     1894
     1895#: views/backend/partials/pointer-scripts.php:45
     1896msgid "You can also apply"
     1897msgstr ""
     1898
     1899#: views/backend/partials/pointer-scripts.php:46
     1900msgid " advanced pricing "
     1901msgstr ""
     1902
     1903#: views/backend/partials/pointer-scripts.php:47
     1904msgid "by defining how the price changes over time."
     1905msgstr ""
     1906
     1907#: views/backend/partials/pointer-scripts.php:75
     1908msgid "Add Teaser Content"
     1909msgstr "Teaser zum Beitrag hinzufügen"
     1910
     1911#: views/backend/partials/pointer-scripts.php:76
     1912msgid ""
     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."
     1915msgstr ""
     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
     1920msgid "Pay Later: users pay purchased content later"
     1921msgstr "Später zahlen: Nutzer bezahlen gekaufte Inhalte später."
     1922
     1923#: views/backend/partials/post-pricing-form.php:36
     1924msgid "Pay Now: users pay purchased content immediately"
     1925msgstr "Sofort zahlen: Nutzer bezahlen gekaufte Inhalte sofort."
     1926
     1927#: views/backend/partials/post-pricing-form.php:49
     1928msgid "0.00"
     1929msgstr "0,00"
     1930
     1931#: views/backend/partials/post-pricing-form.php:66
     1932msgid "Individual Price"
     1933msgstr "Individueller Preis"
     1934
     1935#: views/backend/partials/post-pricing-form.php:71
     1936msgid "Category Default Price"
     1937msgstr "Kategorie- preis"
     1938
     1939#: views/backend/partials/post-pricing-form.php:78
     1940msgid "Global"
     1941msgstr ""
     1942
     1943#: views/backend/partials/post-pricing-form.php:78
     1944msgid "Default Price"
     1945msgstr ""
     1946
     1947#: views/backend/partials/post-pricing-form.php:115
     1948msgid "The dynamic pricing will"
     1949msgstr ""
     1950
     1951#: views/backend/partials/post-pricing-form.php:115
     1952msgid "start"
     1953msgstr ""
     1954
     1955#: views/backend/partials/post-pricing-form.php:115
     1956msgid ", once you have"
     1957msgstr ""
     1958
     1959#: views/backend/partials/post-pricing-form.php:115
     1960msgid "published"
     1961msgstr ""
     1962
     1963#: views/backend/partials/post-pricing-form.php:115
     1964msgid "this post."
     1965msgstr ""
     1966
     1967#: views/backend/partials/post-pricing-form.php:120
     1968msgid "Restart dynamic pricing"
     1969msgstr "Dynamische Preissetzung neu starten"
     1970
     1971#: views/backend/partials/purchase-overlay.php:23
     1972#: views/frontend/partials/widget/purchase-overlay.php:38
     1973msgid "This article"
     1974msgstr "Diesen Artikel"
     1975
     1976#: views/backend/partials/purchase-overlay.php:26
     1977msgid "An Amazing Article"
     1978msgstr ""
     1979
     1980#: views/backend/partials/purchase-overlay.php:41
     1981msgid "Week Pass"
     1982msgstr "Wochenpass"
     1983
     1984#: views/backend/partials/purchase-overlay.php:44
     1985msgid "7 days access to all paid content on this website (no subscription)"
     1986msgstr "7 Tage Zugriff auf alle Inhalte dieser Website (kein Abo)"
     1987
     1988#: views/backend/partials/purchase-overlay.php:59
     1989msgid "Month subscription"
     1990msgstr "Monatsabo"
     1991
     1992#: views/backend/partials/purchase-overlay.php:62
     1993msgid "30 days access to all paid content (cancellable anytime)"
     1994msgstr "1 Monat Zugriff auf alle Inhalte dieser Website (jederzeit kündbar)"
     1995
     1996#: views/backend/partials/purchase-overlay.php:72
     1997msgid "Buy now, pay later"
     1998msgstr "Jetzt kaufen, später zahlen"
     1999
     2000#: views/backend/partials/purchase-overlay.php:74
     2001#: views/frontend/partials/widget/purchase-overlay.php:129
     2002msgid "Redeem voucher"
     2003msgstr "Gutschein einlösen"
     2004
     2005#: views/backend/partials/purchase-overlay.php:89
     2006#: views/frontend/partials/widget/purchase-overlay.php:148
     2007msgid "Powered by"
     2008msgstr "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
     2013msgid "on this website"
     2014msgstr "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
     2021msgid "Buy now with LaterPay"
     2022msgstr "Jetzt mit LaterPay kaufen"
     2023
     2024#: views/backend/partials/subscription.php:35
     2025#: views/backend/partials/time-pass.php:43
     2026msgid "Terms"
     2027msgstr "Details"
     2028
     2029#: views/backend/partials/subscription.php:40
     2030#: views/backend/partials/time-pass.php:48
     2031msgid "Back"
     2032msgstr "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
     2037msgid "Validity"
     2038msgstr "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
     2043msgid "Access to"
     2044msgstr "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
     2049msgid "Renewal"
     2050msgstr "Verlängert sich"
     2051
     2052#: views/backend/partials/subscription.php:58
     2053#, php-format
     2054msgid "After %s %s"
     2055msgstr "Nach %s %s "
     2056
     2057#: views/backend/partials/subscription.php:68
     2058msgid "Cancellation"
     2059msgstr "Kündigung"
     2060
     2061#: views/backend/partials/subscription.php:70
     2062msgid "Cancellable anytime"
     2063msgstr "Jederzeit kündbar"
     2064
     2065#: views/backend/partials/time-pass.php:66
     2066#: views/frontend/partials/post/gift/gift-pass.php:53
     2067msgid "No automatic renewal"
     2068msgstr "Keine automatische Verlängerung"
     2069
     2070#: views/backend/pricing.php:36
     2071msgid "Posts can"
     2072msgstr "Beiträge können"
     2073
     2074#: views/backend/pricing.php:53
     2075msgid "cannot be purchased individually."
     2076msgstr "können nicht einzeln gekauft werden."
     2077
     2078#: views/backend/pricing.php:67
     2079msgid "Every post costs"
     2080msgstr "Jeder Artikel kostet"
     2081
     2082#: views/backend/pricing.php:87
     2083msgid "Edit Global Default Price"
     2084msgstr "Allgemeinen Standardpreis bearbeiten"
     2085
     2086#: views/backend/pricing.php:108 views/backend/pricing.php:213
     2087#: views/backend/pricing.php:318
     2088msgid "Revenue Model"
     2089msgstr "Erlösmodell"
     2090
     2091#: views/backend/pricing.php:115
     2092msgid "Pay&nbsp;Later"
     2093msgstr "Später zahlen"
     2094
     2095#: views/backend/pricing.php:143 views/backend/pricing.php:356
     2096#: views/backend/pricing.php:572
     2097msgid "Create"
     2098msgstr "Erstellen"
     2099
     2100#: views/backend/pricing.php:160 views/backend/pricing.php:268
     2101msgid "Every post in"
     2102msgstr "Jeder Beitrag in"
     2103
     2104#: views/backend/pricing.php:164 views/backend/pricing.php:271
     2105msgid "costs"
     2106msgstr "kostet"
     2107
     2108#: views/backend/pricing.php:185
     2109msgid "Edit Category Default Price"
     2110msgstr "Kategoriespezifischen Standardpreis bearbeiten"
     2111
     2112#: views/backend/pricing.php:192 views/backend/pricing.php:297
     2113msgid "Category"
     2114msgstr "Kategorie"
     2115
     2116#: views/backend/pricing.php:247
     2117msgid "Set prices by category"
     2118msgstr "Kategoriespezifische Standardpreise setzen"
     2119
     2120#: views/backend/pricing.php:252
     2121msgid ""
     2122"Category default prices are convenient for selling different categories of "
     2123"content at different standard prices."
     2124msgstr ""
     2125
     2126#: views/backend/pricing.php:252
     2127msgid "Individual prices can be set when editing a post."
     2128msgstr ""
     2129
     2130#: views/backend/pricing.php:256
     2131msgid "Click the \"Create\" button to set a default price for a category."
     2132msgstr ""
     2133"Klicken Sie auf den \"Erstellen\" Button, um einen Standardpreis für eine "
     2134"Kategorie zu setzen."
     2135
     2136#: views/backend/pricing.php:290
     2137msgid "Add a Category Default Price"
     2138msgstr "Kategoriespezifischen Standardpreis hinzufügen"
     2139
     2140#: views/backend/pricing.php:430
     2141msgid "The pass is valid for "
     2142msgstr "Dieser Pass gilt für "
     2143
     2144#: views/backend/pricing.php:450
     2145msgid "and grants"
     2146msgstr "und gibt"
     2147
     2148#: views/backend/pricing.php:477
     2149msgid "This pass costs"
     2150msgstr "Dieser Pass kostet"
     2151
     2152#: views/backend/pricing.php:485
     2153msgid "and the user has to"
     2154msgstr "und Nutzer müssen"
     2155
     2156#: views/backend/pricing.php:506 views/backend/pricing.php:677
     2157msgid "Title"
     2158msgstr "Titel"
     2159
     2160#: views/backend/pricing.php:517 views/backend/pricing.php:688
     2161msgid "Description"
     2162msgstr "Beschreibung"
     2163
     2164#: views/backend/pricing.php:530
     2165msgid "Offer this time pass at a reduced price of"
     2166msgstr "Diesen Zeitpass zu einem reduzierten Preis anbieten:"
     2167
     2168#: views/backend/pricing.php:538
     2169msgid "Generate voucher code"
     2170msgstr "Gutschein-Code erstellen"
     2171
     2172#: views/backend/pricing.php:558
     2173msgid "Sell bundles of content"
     2174msgstr "Zeitpässe verkaufen"
     2175
     2176#: views/backend/pricing.php:561
     2177msgid ""
     2178"With Time Passes you can sell time-limited access to a category or your "
     2179"entire site. Time Passes do not renew automatically."
     2180msgstr ""
     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
     2186msgid "Click the \"Create\" button to add a Time Pass."
     2187msgstr ""
     2188"Klicken Sie auf den \"Erstellen\" Button, um einen Zeitpass hinzuzufügen."
     2189
     2190#: views/backend/pricing.php:579 views/backend/pricing.php:599
     2191msgid "Sub"
     2192msgstr "Abo"
     2193
     2194#: views/backend/pricing.php:617
     2195msgid "The subscription costs"
     2196msgstr "Das Abo kostet"
     2197
     2198#: views/backend/pricing.php:626
     2199msgid ", grants "
     2200msgstr ", gibt"
     2201
     2202#: views/backend/pricing.php:654
     2203msgid "and renews every"
     2204msgstr "und verlängert sich nach"
     2205
     2206#: views/backend/pricing.php:711
     2207msgid "Sell subscriptions"
     2208msgstr "Abos verkaufen"
     2209
     2210#: views/backend/pricing.php:714
     2211msgid ""
     2212"Subscriptions work exactly like time passes, with a simple difference: They "
     2213"renew automatically."
     2214msgstr ""
     2215"Abos funktionieren genau wie Zeitpässe, mit einem einfachen Unterschied: Sie "
     2216"verlängern sich automatisch."
     2217
     2218#: views/backend/pricing.php:717
     2219msgid "Click the \"Create\" button to add a Subscription."
     2220msgstr "Klicken Sie auf den \"Erstellen\" Button, um ein Abo hinzuzufügen."
     2221
     2222#: views/backend/pricing.php:720
     2223msgid ""
     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."
     2227msgstr ""
     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
     2233msgid "Gift Code"
     2234msgstr "Gutschein-Code"
     2235
     2236#: views/frontend/partials/post/gift/gift-actions.php:21
     2237msgid "Redeem at"
     2238msgstr "Einlösen auf"
     2239
    25032240#: views/frontend/partials/post/gift/redeem-form.php:10
     2241#: views/frontend/partials/widget/time-passes.php:32
    25042242msgid "Code"
    25052243msgstr "Code"
    25062244
    2507 #: views/frontend/partials/widget/time-passes.php:29
    25082245#: views/frontend/partials/post/gift/redeem-form.php:11
     2246#: views/frontend/partials/widget/time-passes.php:33
    25092247msgid "Redeem"
    25102248msgstr "Einlösen"
    25112249
    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
     2251msgid "Post Preview Mode"
     2252msgstr "Vorschau-Modus"
     2253
     2254#: views/frontend/partials/post/select-preview-mode-tab.php:17
     2255msgid "Preview post as"
     2256msgstr "Vorschau für"
     2257
     2258#: views/frontend/partials/post/select-preview-mode-tab.php:17
     2259msgid "Admin"
     2260msgstr "Admin"
     2261
     2262#: views/frontend/partials/post/select-preview-mode-tab.php:37
     2263msgid "Visitor"
     2264msgstr "Besucher"
     2265
     2266#: views/frontend/partials/post/shortcode-purchase-link.php:10
     2267msgid "View"
     2268msgstr "Anzeigen"
     2269
     2270#: views/frontend/partials/widget/explanatory-overlay.php:12
     2271#: views/frontend/partials/widget/purchase-overlay.php:12
     2272msgid ""
     2273"Thanks for reading this short excerpt from the paid post! Fancy buying it to "
     2274"read all of it?"
     2275msgstr ""
     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
     2282msgid "Buy now for"
     2283msgstr "Jetzt kaufen für"
     2284
     2285#: views/frontend/partials/widget/purchase-link.php:36
     2286msgid "and pay later"
     2287msgstr "und später bezahlen"
     2288
     2289#: views/frontend/partials/widget/purchase-overlay.php:114
     2290msgid "Enter Voucher Code"
     2291msgstr "Code eingeben"
     2292
     2293#: views/frontend/partials/widget/purchase-overlay.php:124
     2294msgid "Redeem Voucher Code"
     2295msgstr "Gutschein-Code einlösen"
    25152296
    25162297#: views/frontend/partials/widget/time-passes-link.php:8
     
    25222303msgstr "Zeitpass kaufen"
    25232304
    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
     2306msgid "Redeem Voucher >"
     2307msgstr "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 &hellip;]"
     2586#~ "[laterpay_premium_download &hellip;]</dfn>[/laterpay_box_wrapper]"
     2587#~ msgstr ""
     2588#~ "[laterpay_box_wrapper]<dfn>[laterpay_premium_download &hellip;]"
     2589#~ "[laterpay_premium_download &hellip;]</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  
    55 * 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.
    66 * Author: LaterPay GmbH, Mihail Turalenka and Aliaksandr Vahura
    7  * Version: 0.11.0
     7 * Version: 0.12.0
    88 * Author URI: https://laterpay.net/
    99 * Textdomain: laterpay
  • laterpay/tags/0.12.0/views/backend/pricing.php

    r1898231 r1923931  
    717717                        <?php esc_html_e( 'Click the "Create" button to add a Subscription.', 'laterpay' ); ?>
    718718                    </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>
    722719                </div>
    723720            </div>
  • laterpay/trunk/README.txt

    r1915145 r1923931  
    66Requires at least: 4.6
    77Tested up to: 4.9.6
    8 Stable tag: 0.11.0
     8Stable tag: 0.12.0
    99Author URI: https://laterpay.net
    1010Plugin URI: https://github.com/laterpay/laterpay-wordpress-plugin
     
    186186
    187187== 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
    188195= 0.11.0 (July 26, 2018): Bugfix Release (v1.0 RC31) =
    189196* Fix teaser content display issue.
     
    625632== Upgrade notice ==
    626633
    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) =
     635Fixed various bugs with laterpay functionality.
    629636
    630637== Arbitrary section ==
  • laterpay/trunk/application/Controller/Frontend/Post.php

    r1915145 r1923931  
    379379        $content = $event->get_result();
    380380
     381        // Get the value of purchase type ( individual / timepass )
     382        $only_timepass = (bool) get_option( 'laterpay_only_time_pass_purchases_allowed' );
     383
    381384        if ( $event->has_argument( 'post' ) ) {
    382385            $post = $event->get_argument( 'post' );
     
    404407        if ($user_has_unlimited_access && ! $preview_post_as_visitor ) {
    405408            $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            }
    406426        }
    407427
  • laterpay/trunk/application/Core/Bootstrap.php

    r1898231 r1923931  
    142142        // plugin backend
    143143        $controller = self::get_controller( 'Admin_Pricing' );
     144        laterpay_event_dispatcher()->add_subscriber( $controller );
     145
     146        $controller = self::get_controller( 'Admin_Notice' );
    144147        laterpay_event_dispatcher()->add_subscriber( $controller );
    145148
  • laterpay/trunk/application/Helper/Config.php

    r1898231 r1923931  
    1919                'live_dialog_api_url'     => 'https://web.laterpay.net',
    2020                'merchant_backend_url'    => 'https://merchant.laterpay.net/',
    21                 'token_name'              => 'token',
     21                'token_name'              => 'laterpay_token',
    2222                'sandbox_merchant_id'     => '984df2b86250447793241a',
    2323                'sandbox_api_key'         => '57791c777baa4cea94c4ec074184e06d',
     
    6363                'live_dialog_api_url'     => 'https://web.uselaterpay.com',
    6464                'merchant_backend_url'    => 'https://web.uselaterpay.com/merchant',
    65                 'token_name'              => 'token',
     65                'token_name'              => 'laterpay_token',
    6666                'sandbox_merchant_id'     => 'xswcBCpR6Vk6jTPw8si7KN',
    6767                'sandbox_api_key'         => '22627fa7cbce45d394a8718fd9727731',
  • laterpay/trunk/application/Module/TimePasses.php

    r1898231 r1923931  
    298298
    299299        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
    302310        $time_pass_event = new LaterPay_Core_Event();
    303311        $time_pass_event->set_echo( false );
  • laterpay/trunk/asset_sources/scss/laterpay-admin.scss

    r1898231 r1923931  
    3737    }
    3838}
     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  
    33"Project-Id-Version: LaterPay 0.9.6\n"
    44"Report-Msgid-Bugs-To: http://wordpress.org/tag/laterpay\n"
    5 "POT-Creation-Date: 2017-11-23 12:43+0000\n"
    6 "PO-Revision-Date: 2017-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"
    77"Last-Translator: lpadmin <twoldrich@laterpay.net>\n"
    88"Language-Team: German\n"
    9 "Language: de-DE\n"
    10 "Plural-Forms: nplurals=2; plural=n != 1\n"
     9"Language: de_DE\n"
    1110"MIME-Version: 1.0\n"
    1211"Content-Type: text/plain; charset=UTF-8\n"
    1312"Content-Transfer-Encoding: 8bit\n"
     13"Plural-Forms: nplurals=2; plural=n != 1;\n"
    1414"X-Poedit-SourceCharset: UTF-8\n"
    15 "X-Generator: Loco - https://localise.biz/\n"
     15"X-Generator: Poedit 1.8.7.1\n"
    1616"X-Poedit-Basepath: ..\n"
    1717"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
     
    2020"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
    2121"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"
    2223"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
     26msgid "translateX"
     27msgstr ""
     28
     29#: built_assets/js/vendor/velocity.min.js:3
     30msgid "translateY"
     31msgstr ""
     32
     33#: built_assets/js/vendor/velocity.min.js:3
     34msgid "skewX"
     35msgstr ""
     36
     37#: built_assets/js/vendor/velocity.min.js:3
     38msgid "skewY"
     39msgstr ""
     40
     41#: built_assets/js/vendor/velocity.min.js:3
     42msgid "scale"
     43msgstr ""
     44
     45#: built_assets/js/vendor/velocity.min.js:3
     46msgid "scaleX"
     47msgstr ""
     48
     49#: built_assets/js/vendor/velocity.min.js:3
     50msgid "scaleY"
     51msgstr ""
     52
     53#: built_assets/js/vendor/velocity.min.js:3
     54msgid "rotateZ"
     55msgstr ""
     56
     57#: application/Compatibility/Migrate.php:54
     58msgid "Your laterpay data needs to be migrated. Click"
     59msgstr ""
     60
     61#: application/Compatibility/Migrate.php:55
     62msgid "here"
     63msgstr ""
     64
     65#: application/Compatibility/Migrate.php:56
     66msgid "to migrate data."
     67msgstr ""
     68
     69#: application/Compatibility/Migrate.php:77
     70msgid "Migrating Data"
     71msgstr ""
     72
     73#: application/Compatibility/Migrate.php:78
     74msgid "Migrating Subscriptions"
     75msgstr ""
     76
     77#: application/Compatibility/Migrate.php:79
     78msgid "Migrating Timepasses."
     79msgstr ""
     80
     81#: application/Compatibility/Migrate.php:80
     82msgid "Migrating Category Prices."
     83msgstr ""
     84
     85#: application/Compatibility/Migrate.php:81
     86msgid "Migration Completed."
     87msgstr ""
     88
     89#: application/Controller/Admin.php:69 application/Controller/Admin.php:83
     90#: application/Controller/Admin.php:93
     91msgid "LaterPay Plugin Settings"
     92msgstr "LaterPay-Plugin-Einstellungen"
     93
     94#: application/Controller/Admin.php:267
     95msgid "LaterPay"
     96msgstr "LaterPay"
     97
     98#: application/Controller/Admin.php:268
    3499msgid ""
    35100"\n"
     
    49114"adjust prices automatically over time.<br>\n"
    50115"                <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"
    55120"            </p>\n"
    56121"            <p>\n"
     
    68133"            <p>\n"
    69134"                <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 "LaterPay and 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"
    74139"                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"
    79144"            </p>\n"
    80145"            <p>\n"
     
    83148"has to <strong>log in</strong> to LaterPay and <strong>pay</strong> for your "
    84149"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 "
    87152"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"
    91156"            </p>"
    92157msgstr ""
    93158
    94 #: application/Controller/Admin.php:323
     159#: application/Controller/Admin.php:316 views/backend/pricing.php:58
     160msgid "Global Default Price"
     161msgstr "Allgemeiner Standardpreis"
     162
     163#: application/Controller/Admin.php:317
    95164msgid ""
    96165"\n"
     
    98167"                The global default price is used for all posts, for which "
    99168"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"
    102171"                Accordingly, setting the global default price to 0.00 makes\n"
    103172"                all articles free, for which no category default price or\n"
     
    106175msgstr ""
    107176
    108 #: application/Controller/Admin.php:336
     177#: application/Controller/Admin.php:329 views/backend/pricing.php:141
     178msgid "Category Default Prices"
     179msgstr "Kategoriespezifische Standardpreise"
     180
     181#: application/Controller/Admin.php:330
    109182msgid ""
    110183"\n"
     
    118191"should\n"
    119192"                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"
    122195"                but a post belongs to a category with a category default "
    123196"price\n"
     
    126199msgstr ""
    127200
    128 #: application/Controller/Admin.php:353
     201#: application/Controller/Admin.php:346
     202msgid "Currency"
     203msgstr "Währung"
     204
     205#: application/Controller/Admin.php:347
    129206msgid ""
    130207"\n"
     
    142219msgstr ""
    143220
    144 #: application/Controller/Admin.php:366
     221#: application/Controller/Admin.php:359 views/backend/pricing.php:354
     222msgid "Time Passes"
     223msgstr "Zeitpässe"
     224
     225#: application/Controller/Admin.php:360
    145226msgid ""
    146227"\n"
     
    160241"            <p>\n"
    161242"                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"
    172253"            </p>\n"
    173254"            <p>\n"
     
    194275msgstr ""
    195276
    196 #: application/Controller/Admin.php:392
     277#: application/Controller/Admin.php:386
    197278msgid "Time Pass Vouchers"
    198279msgstr ""
    199280
    200 #: application/Controller/Admin.php:393
     281#: application/Controller/Admin.php:387
    201282msgid ""
    202283"\n"
     
    204285"                You can create any number of voucher codes for each time "
    205286"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 the respective 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 "want to 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"
    213294"                <strong>Deleting</strong> a voucher code will <strong>not "
    214295"affect</strong> the validity of time passes which have already been "
     
    225306"purchase the respective time pass for 0.00.<br>\n"
    226307"                    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"
    229310"                <li>Click the 'Save' button.</li>\n"
    230311"            </ul>"
    231312msgstr ""
    232313
    233 #: application/Controller/Admin.php:422
     314#: application/Controller/Admin.php:415
     315msgid "Preview Mode"
     316msgstr "Vorschau für"
     317
     318#: application/Controller/Admin.php:416
    234319msgid ""
    235320"\n"
     
    259344msgstr ""
    260345
    261 #: application/Controller/Admin.php:446
     346#: application/Controller/Admin.php:439
     347msgid "Purchase Button Position"
     348msgstr "Position des LaterPay Buttons"
     349
     350#: application/Controller/Admin.php:440
    262351msgid ""
    263352"\n"
     
    279368msgstr ""
    280369
    281 #: application/Controller/Admin.php:463
     370#: application/Controller/Admin.php:456
     371msgid "Time Pass Position"
     372msgstr "Positionierung von Zeitpässen"
     373
     374#: application/Controller/Admin.php:457
    282375msgid ""
    283376"\n"
     
    301394msgstr ""
    302395
    303 #: application/Controller/Admin.php:490
     396#: application/Controller/Admin.php:483
     397msgid "API Credentials"
     398msgstr "API Zugangsdaten"
     399
     400#: application/Controller/Admin.php:484
    304401msgid ""
    305402"\n"
     
    354451"                Due to legal reasons, we can email you those credentials "
    355452"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"
    360457"                <a href=\"https://www.laterpay.net/how-to-become-a-content-"
    361458"provider\" target=\"blank\">Visit our website to read more about how to "
     
    364461msgstr ""
    365462
    366 #: application/Controller/Admin.php:538
     463#: application/Controller/Admin.php:531
     464msgid "Plugin Mode"
     465msgstr "Plugin-Modus"
     466
     467#: application/Controller/Admin.php:532
    367468msgid ""
    368469"\n"
     
    376477"are\n"
    377478"                    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"
    380481"                    not to visitors.<br>\n"
    381482"                    This is the <strong>default</strong> setting after "
     
    408509msgstr ""
    409510
    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&nbsp;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 &hellip;]"
    1202 "[laterpay_premium_download &hellip;]</dfn>[/laterpay_box_wrapper]"
    1203 msgstr ""
    1204 "[laterpay_box_wrapper]<dfn>[laterpay_premium_download &hellip;]"
    1205 "[laterpay_premium_download &hellip;]</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
    1251512msgid "Pricing"
    1252513msgstr "Preise"
    1253514
    1254 #: application/Controller/Admin.php:718
     515#: application/Controller/Admin.php:689
    1255516msgid "Appearance"
    1256517msgstr "Darstellung"
    1257518
    1258 #: application/Controller/Admin.php:724
     519#: application/Controller/Admin.php:695
    1259520msgid "Account"
    1260521msgstr "Konto"
    1261522
    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
     524msgid "The API key you entered is not a valid LaterPay API key!"
     525msgstr "Der eingegebene API Key ist kein gültiger LaterPay API Key!"
     526
     527#: application/Controller/Admin/Account.php:46
     528msgid "The Merchant ID you entered is not a valid LaterPay Merchant ID!"
     529msgstr "Die eingegebene Merchant ID ist keine gültige LaterPay Merchant ID!"
     530
     531#: application/Controller/Admin/Account.php:47
     532msgid "LaterPay does not work properly with invalid API credentials."
     533msgstr "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
    1739541msgid "An error occurred when trying to save your settings. Please try again."
    1740542msgstr ""
     
    1742544"erneut."
    1743545
    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 "&mdash; Visit the post to buy its full content for {price} {currency} &mdash;"
    1781 " {teaser_content}"
    1782 msgstr ""
    1783 "&mdash; Kaufen Sie den vollständigen Inhalt für {price} {currency} &mdash; "
    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
    1800548#, php-format
    1801549msgid "The Merchant ID you entered is not a valid LaterPay %s Merchant ID!"
    1802550msgstr "Die eingegebene Merchant ID ist keine kültige LaterPay %s Merchant ID!"
    1803551
    1804 #: application/Controller/Admin/Account.php:175
     552#: application/Controller/Admin/Account.php:177
    1805553#, php-format
    1806554msgid "The %s Merchant ID has been removed."
    1807555msgstr "Die %s Merchant ID wurde entfernt."
    1808556
    1809 #: application/Controller/Admin/Account.php:188
     557#: application/Controller/Admin/Account.php:190
    1810558#, php-format
    1811559msgid "%s Merchant ID verified and saved."
    1812560msgstr "%s Merchant ID überprüft und gespeichert."
    1813561
    1814 #: application/Controller/Admin/Account.php:233
     562#: application/Controller/Admin/Account.php:235
    1815563#, php-format
    1816564msgid "The %s API key has been removed."
    1817565msgstr "Der %s API Key wurde entfernt."
    1818566
    1819 #: application/Controller/Admin/Account.php:246
     567#: application/Controller/Admin/Account.php:248
    1820568#, php-format
    1821569msgid "Your %s API key is valid. You can now make %s transactions."
     
    1823571"Ihr %s API-Key ist gültig. Sie können nun %s Transaktionen durchführen."
    1824572
    1825 #: application/Controller/Admin/Account.php:267
    1826 #: application/Controller/Admin/Account.php:322
     573#: application/Controller/Admin/Account.php:269
     574#: application/Controller/Admin/Account.php:324
    1827575msgid "Error occurred. Incorrect data provided."
    1828576msgstr "Ein Fehler ist aufgetreten. Falsche Daten wurden übergeben."
    1829577
    1830 #: application/Controller/Admin/Account.php:281
     578#: application/Controller/Admin/Account.php:283
    1831579msgid ""
    1832580"The LaterPay plugin is in LIVE mode now. All payments are actually booked "
     
    1836584"tatsächlich gebucht und Ihrem Händlerkonto gutgeschrieben."
    1837585
    1838 #: application/Controller/Admin/Account.php:290
     586#: application/Controller/Admin/Account.php:292
    1839587msgid ""
    1840588"The LaterPay plugin is in visible TEST mode now. Payments are only simulated "
     
    1844592"Zahlungen werden nur simuliert und nicht tatsächlich gebucht."
    1845593
    1846 #: application/Controller/Admin/Account.php:300
     594#: application/Controller/Admin/Account.php:302
    1847595msgid ""
    1848596"The LaterPay plugin is in invisible TEST mode now. Payments are only "
     
    1852600"Zahlungen werden nur simuliert und nicht tatsächlich gebucht."
    1853601
    1854 #: application/Controller/Admin/Account.php:310
    1855 #: application/Controller/Admin/Account.php:380
     602#: application/Controller/Admin/Account.php:312
     603#: application/Controller/Admin/Account.php:382
    1856604msgid "The LaterPay plugin needs valid API credentials to work."
    1857605msgstr "Das LaterPay Plugin benötigt gültige API Zugangsdaten."
    1858606
    1859 #: application/Controller/Admin/Account.php:334
     607#: application/Controller/Admin/Account.php:336
    1860608msgid "Failed to change region settings."
    1861609msgstr ""
    1862610"Die Einstellungen für Ländergruppe und Währung konnten nicht geändert werden."
    1863611
    1864 #: application/Controller/Admin/Account.php:344
     612#: application/Controller/Admin/Account.php:346
    1865613msgid "The LaterPay region was changed successfully."
    1866614msgstr ""
     
    1868616"geändert."
    1869617
    1870 #: application/Controller/Admin/Account.php:364
    1871 #: application/Controller/Admin/Pricing.php:314
    1872 #: application/Controller/Admin/Pricing.php:364
     618#: application/Controller/Admin/Account.php:366
     619#: application/Controller/Admin/Pricing.php:299
     620#: application/Controller/Admin/Pricing.php:348
    1873621msgid "An error occurred. Incorrect data provided."
    1874622msgstr "Ein Fehler ist aufgetreten: Falsche Daten angegeben."
    1875623
    1876 #: application/Controller/Admin/Account.php:389
    1877 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 
    1882624#: 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
     626msgid "The plugin is in"
     627msgstr ""
     628
     629#: application/Controller/Admin/Account.php:391
     630msgid "visible"
     631msgstr ""
     632
     633#: application/Controller/Admin/Account.php:391
     634#: application/Controller/Admin/Account.php:393
     635msgid "test mode now."
     636msgstr ""
     637
     638#: application/Controller/Admin/Account.php:393
     639msgid "invisible"
     640msgstr ""
     641
     642#: application/Controller/Admin/Appearance.php:134
    1889643msgid ""
    1890644"Visitors will now see the teaser content of paid posts plus an excerpt of "
     
    1894648"einen Auszug des Artikels unter einem Overlay."
    1895649
    1896 #: application/Controller/Admin/Appearance.php:138
     650#: application/Controller/Admin/Appearance.php:137
    1897651msgid ""
    1898652"Visitors will now see the teaser content of paid posts plus an excerpt of "
     
    1902656"dem Volltext unter einem Overlay mit allen Kaufoptionen."
    1903657
    1904 #: application/Controller/Admin/Appearance.php:141
     658#: application/Controller/Admin/Appearance.php:140
    1905659msgid "Visitors will now see only the teaser content of paid posts."
    1906660msgstr ""
    1907661"Besucher sehen ab jetzt nur den Teaser eines kostenpflichtigen Beitrags."
    1908662
    1909 #: application/Controller/Admin/Appearance.php:173
     663#: application/Controller/Admin/Appearance.php:186
    1910664msgid "Purchase overlay settings saved successfully."
    1911665msgstr "Kauf-Overlay Einstellungen erfolgreich gespeichert."
    1912666
    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
    1922668msgid "Purchase buttons are now rendered at a custom position."
    1923669msgstr ""
    1924670"Kauf-Buttons werden ab jetzt an einer benutzerdefinierten Position angezeigt."
    1925671
    1926 #: application/Controller/Admin/Appearance.php:233
     672#: application/Controller/Admin/Appearance.php:215
    1927673msgid "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
     674msgstr "Kauf-Buttons werden ab jetzt an ihrer Standard-Position angezeigt."
     675
     676#: application/Controller/Admin/Appearance.php:236
    1932677msgid "Time passes are now rendered at a custom position."
    1933678msgstr ""
    1934679"Zeitpässe werden ab jetzt an einer benutzerdefinierten Position angezeigt."
    1935680
    1936 #: application/Controller/Admin/Appearance.php:263
     681#: application/Controller/Admin/Appearance.php:245
    1937682msgid "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
     683msgstr "Zeitpässe werden ab jetzt an ihrer Standard-Position angezeigt."
     684
     685#: application/Controller/Admin/Notice.php:39
     686msgid "Please contact WPEngine customer service to bypass the required cookies"
     687msgstr ""
     688
     689#: application/Controller/Admin/Notice.php:40
     690msgid "token, laterpay_purchased_gift_card and laterpay_tracking_code"
     691msgstr ""
     692
     693#: application/Controller/Admin/Notice.php:41
     694msgid "in order for the plugin to work properly with page-cache."
     695msgstr ""
     696
     697#: application/Controller/Admin/Notice.php:42
     698msgid "Done"
     699msgstr ""
     700
     701#: application/Controller/Admin/Notice.php:63
     702msgid "Saving Settings "
     703msgstr ""
     704
     705#: application/Controller/Admin/Notice.php:64
     706msgid "Settings Saved "
     707msgstr ""
     708
     709#: application/Controller/Admin/Notice.php:65
     710msgid "Error saving data"
     711msgstr ""
     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
     717msgid "Price"
     718msgstr "Preis"
     719
     720#: application/Controller/Admin/Post/Column.php:43
     721msgid "Price Type"
     722msgstr "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
     729msgid "Pay Now"
     730msgstr "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
     737msgid "Pay Later"
     738msgstr "Später zahlen"
     739
     740#: application/Controller/Admin/Post/Column.php:89
     741msgid "individual price"
     742msgstr "Individueller Preis"
     743
     744#: application/Controller/Admin/Post/Column.php:93
     745msgid "dynamic individual price"
     746msgstr "Individueller Preis (dynamisch)"
     747
     748#: application/Controller/Admin/Post/Column.php:97
     749msgid "category default price"
     750msgstr "Kategorie-Standardpreis"
     751
     752#: application/Controller/Admin/Post/Column.php:101
     753#: application/Controller/Admin/Post/Column.php:111
     754msgid "global default price"
     755msgstr "Standardpreis"
     756
     757#: application/Controller/Admin/Post/Metabox.php:136
     758msgid ""
     759"Paid posts require some teaser content. Please fill in the Teaser Content "
     760"field."
     761msgstr ""
     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
     767msgid "Add dynamic pricing"
     768msgstr "Dynamische Preissetzung hinzufügen"
     769
     770#: application/Controller/Admin/Post/Metabox.php:138
     771#: views/backend/partials/post-pricing-form.php:126
     772msgid "Remove dynamic pricing"
     773msgstr "Dynamische Preissetzung entfernen"
     774
     775#: application/Controller/Admin/Post/Metabox.php:147
     776msgid "default price"
     777msgstr "Standardpreis"
     778
     779#: application/Controller/Admin/Post/Metabox.php:148
     780msgid "days"
     781msgstr "Tage"
     782
     783#: application/Controller/Admin/Post/Metabox.php:149
     784msgid "Today"
     785msgstr "Heute"
     786
     787#: application/Controller/Admin/Post/Metabox.php:169
     788msgid "Teaser Content"
     789msgstr "Teaser für den Beitrag"
     790
     791#: application/Controller/Admin/Post/Metabox.php:192
     792msgid "Pricing for this Post"
     793msgstr "Preis des Beitrags"
     794
     795#: application/Controller/Admin/Post/Metabox.php:235
     796#, php-format
     797msgid ""
     798"Visitors will see the teaser content %s instead of the full content %s "
     799"before purchase."
     800msgstr ""
     801
     802#: application/Controller/Admin/Post/Metabox.php:238
     803msgid ""
     804"If you do not enter any teaser content, the plugin will use an excerpt of "
     805"the full content as teaser content."
     806msgstr ""
     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
     811msgid ""
     812"We do recommend to write dedicated teaser content to increase your sales "
     813"though."
     814msgstr ""
     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
     819msgid "Subscriptions"
     820msgstr "Abos"
     821
     822#: application/Controller/Admin/Pricing.php:47
     823msgid "Subscription"
     824msgstr ""
     825
     826#: application/Controller/Admin/Pricing.php:79
     827msgid "After"
     828msgstr "Nach"
     829
     830#: application/Controller/Admin/Pricing.php:80
    1942831msgid "Make"
    1943832msgstr "Mache"
    1944833
    1945 #: application/Controller/Admin/Pricing.php:61
     834#: application/Controller/Admin/Pricing.php:81
    1946835msgid "free"
    1947836msgstr "kostenlos"
    1948837
    1949 #: application/Controller/Admin/Pricing.php:63
    1950 #: application/Controller/Admin/Pricing.php:629
     838#: application/Controller/Admin/Pricing.php:82
     839msgid "to"
     840msgstr "auf"
     841
     842#: application/Controller/Admin/Pricing.php:83
    1951843msgid "by"
    1952844msgstr "um"
    1953845
    1954 #: application/Controller/Admin/Pricing.php:64
    1955 #: application/Controller/Admin/Pricing.php:652
     846#: application/Controller/Admin/Pricing.php:84
    1956847msgid "to global default price of"
    1957848msgstr "auf den allgemeinen Standardpreis"
    1958849
    1959 #: application/Controller/Admin/Pricing.php:65
    1960 #: application/Controller/Admin/Pricing.php:658
     850#: application/Controller/Admin/Pricing.php:85
    1961851msgid "to category default price of"
    1962852msgstr "auf den Kategorie-Standardpreis"
    1963853
    1964 #: application/Controller/Admin/Pricing.php:69
     854#: application/Controller/Admin/Pricing.php:86
     855msgid "Update Prices"
     856msgstr "Preise aktualisieren"
     857
     858#: application/Controller/Admin/Pricing.php:87
     859msgid "Delete"
     860msgstr "Löschen"
     861
     862#: application/Controller/Admin/Pricing.php:89
    1965863msgid "Are you sure?"
    1966864msgstr "Sind Sie sicher?"
    1967865
    1968 #: application/Controller/Admin/Pricing.php:70
     866#: application/Controller/Admin/Pricing.php:90
    1969867msgid ""
    1970868"Do you really want to discontinue this subscription? If you delete it, it "
     
    1980878"dieses Abo wirklich löschen?"
    1981879
    1982 #: application/Controller/Admin/Pricing.php:94
     880#: application/Controller/Admin/Pricing.php:91 views/backend/pricing.php:387
     881msgid "reduces the price to"
     882msgstr "reduziert den Preis auf"
     883
     884#: application/Controller/Admin/Pricing.php:92 views/backend/pricing.php:398
     885msgid "times redeemed."
     886msgstr "Mal eingelöst."
     887
     888#: application/Controller/Admin/Pricing.php:114
    1983889msgid "All posts in category"
    1984890msgstr "aller Beiträge in Kategorie"
    1985891
    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
    2012893msgid "All posts are free by default now."
    2013894msgstr "Alle Beiträge sind nun standardmäßig kostenlos."
    2014895
    2015 #: application/Controller/Admin/Pricing.php:331
     896#: application/Controller/Admin/Pricing.php:316
    2016897#, php-format
    2017898msgid "The global default price for all posts is %s %s now."
    2018899msgstr "Der allgemeine Standardpreis für alle Beiträge ist jetzt %s %s."
    2019900
    2020 #: application/Controller/Admin/Pricing.php:395
     901#: application/Controller/Admin/Pricing.php:379
    2021902msgid "There is no such category on this website."
    2022903msgstr "Diese Kategorie existiert nicht."
    2023904
    2024 #: application/Controller/Admin/Pricing.php:432
     905#: application/Controller/Admin/Pricing.php:415
    2025906#, php-format
    2026907msgid "All posts in category %s have a default price of %s %s now."
    2027908msgstr "Alle Beiträge in Kategorie %s haben nun einen Standardpreis von %s %s."
    2028909
    2029 #: application/Controller/Admin/Pricing.php:498
     910#: application/Controller/Admin/Pricing.php:460
    2030911#, php-format
    2031912msgid "The default price for category %s was deleted."
    2032913msgstr "Der Standardpreis für die Kategorie %s wurde entfernt."
    2033914
    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
    2077916msgid "An error occurred when trying to save the time pass. Please try again."
    2078917msgstr ""
     
    2080919"Sie es noch einmal."
    2081920
    2082 #: application/Controller/Admin/Pricing.php:926
     921#: application/Controller/Admin/Pricing.php:573
    2083922msgid "Pass saved."
    2084923msgstr "Pass gespeichert."
    2085924
    2086 #: application/Controller/Admin/Pricing.php:950
     925#: application/Controller/Admin/Pricing.php:598
    2087926msgid "Time pass deleted."
    2088927msgstr "Zeitpass gelöscht."
    2089928
    2090 #: application/Controller/Admin/Pricing.php:957
     929#: application/Controller/Admin/Pricing.php:605
    2091930msgid "The selected pass was deleted already."
    2092931msgstr "Der ausgewählte Pass wurde bereits gelöscht."
    2093932
    2094 #: application/Controller/Admin/Pricing.php:997
     933#: application/Controller/Admin/Pricing.php:648
    2095934msgid ""
    2096935"An error occurred when trying to save the subscription. Please try again."
     
    2099938"Sie es erneut."
    2100939
    2101 #: application/Controller/Admin/Pricing.php:1020
     940#: application/Controller/Admin/Pricing.php:671
    2102941msgid "Subscription saved."
    2103942msgstr "Abo gespeichert."
    2104943
    2105 #: application/Controller/Admin/Pricing.php:1041
     944#: application/Controller/Admin/Pricing.php:693
    2106945msgid "Subscription deleted."
    2107946msgstr "Abo gelöscht."
    2108947
    2109 #: application/Controller/Admin/Pricing.php:1048
     948#: application/Controller/Admin/Pricing.php:700
    2110949msgid "The selected subscription was deleted already."
    2111950msgstr "Dieses Abo wurde bereits gelöscht."
    2112951
    2113 #: application/Controller/Admin/Pricing.php:1103
     952#: application/Controller/Admin/Pricing.php:755
    2114953msgid "Incorrect voucher price."
    2115954msgstr "Ungültiger Gutschein-Preis."
    2116955
    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
    2122957msgid ""
    2123958"You have to create a time pass, before you can disable individual purchases."
     
    2126961"können."
    2127962
    2128 #: application/Controller/Admin/Settings.php:55
     963#: application/Controller/Admin/Pricing.php:828
     964msgid "Passes"
     965msgstr ""
     966
     967#: application/Controller/Admin/Pricing.php:829 views/backend/pricing.php:363
     968#: views/backend/pricing.php:412
     969msgid "Pass"
     970msgstr "Pass"
     971
     972#: application/Controller/Admin/Pricing.php:839
     973msgid "Laterpay Passes Post type Registration issue."
     974msgstr ""
     975
     976#: application/Controller/Admin/Settings.php:55
    2129977#: application/Controller/Admin/Settings.php:72
    2130978msgid "LaterPay Advanced Settings"
    2131979msgstr "LaterPay – Erweiterte Einstellungen"
    2132980
    2133 #: application/Controller/Admin/Settings.php:105
     981#: application/Controller/Admin/Settings.php:103
    2134982msgid "LaterPay Colors"
    2135983msgstr "LaterPay Farben"
    2136984
    2137 #: application/Controller/Admin/Settings.php:112
     985#: application/Controller/Admin/Settings.php:110
    2138986msgid "Main Color"
    2139987msgstr "Hauptfarbe"
    2140988
    2141 #: application/Controller/Admin/Settings.php:126
     989#: application/Controller/Admin/Settings.php:115
     990msgid "Main color for clickable elements. (Default: #01a99d)"
     991msgstr ""
     992
     993#: application/Controller/Admin/Settings.php:124
    2142994msgid "Hover Color"
    2143995msgstr "Hover Farbe"
    2144996
    2145 #: application/Controller/Admin/Settings.php:146
     997#: application/Controller/Admin/Settings.php:129
     998msgid "Hover color for clickable elements. (Default: #01766e)"
     999msgstr ""
     1000
     1001#: application/Controller/Admin/Settings.php:144
    21461002msgid "You can customize the colors of clickable LaterPay elements."
    21471003msgstr "Sie können die Farben von klickbaren LaterPay Elementen anpassen."
    21481004
    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
    21891006msgid "Caching Compatibility Mode"
    21901007msgstr "Caching-Kompatibilitätsmodus"
    21911008
    2192 #: application/Controller/Admin/Settings.php:225
     1009#: application/Controller/Admin/Settings.php:164
    21931010msgid "Caching Compatibility"
    21941011msgstr "Caching-Kompatibilität"
    21951012
    2196 #: application/Controller/Admin/Settings.php:233
     1013#: application/Controller/Admin/Settings.php:172
    21971014msgid "I am using a caching plugin (e.g. WP Super Cache or Cachify)"
    21981015msgstr "Ich verwende ein Caching-Plugin (z. B. WP Super Cache oder Cachify)"
    21991016
    2200 #: application/Controller/Admin/Settings.php:247
     1017#: application/Controller/Admin/Settings.php:186
    22011018msgid ""
    22021019"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."
     1022msgstr ""
     1023
     1024#: application/Controller/Admin/Settings.php:189
     1025msgid ""
     1026"In caching compatibility mode the plugin works\n"
     1027"           like this:"
     1028msgstr ""
     1029
     1030#: application/Controller/Admin/Settings.php:192
     1031msgid ""
     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."
     1034msgstr ""
     1035
     1036#: application/Controller/Admin/Settings.php:195
     1037msgid ""
     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."
     1042msgstr ""
     1043
     1044#: application/Controller/Admin/Settings.php:209
    22261045msgid "LaterPay-enabled Post Types"
    22271046msgstr "LaterPay Post-Types"
    22281047
    2229 #: application/Controller/Admin/Settings.php:272
     1048#: application/Controller/Admin/Settings.php:216
    22301049msgid "Enabled Post Types"
    22311050msgstr "Aktivierte Post-Types"
    22321051
    2233 #: application/Controller/Admin/Settings.php:288
     1052#: application/Controller/Admin/Settings.php:232
    22341053msgid ""
    22351054"Please choose, which standard and custom post types should be sellable with "
     
    22391058"verfügbar sein soll."
    22401059
    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
    22561061msgid ""
    22571062"Please choose, if you want to show the time passes widget on free posts, or "
     
    22611066"kostenlosen Beiträgen anzeigen möchten."
    22621067
    2263 #: application/Controller/Admin/Settings.php:341
    2264 #: application/Controller/Admin/Settings.php:348
     1068#: application/Controller/Admin/Settings.php:255
     1069#: application/Controller/Admin/Settings.php:262
    22651070msgid "Require login"
    22661071msgstr "Login erforderlich"
    22671072
    2268 #: application/Controller/Admin/Settings.php:356
     1073#: application/Controller/Admin/Settings.php:270
    22691074msgid "Require the user to log in to LaterPay before a \"Pay Later\" purchase."
    22701075msgstr ""
     
    22721077"einzuloggen."
    22731078
    2274 #: application/Controller/Admin/Settings.php:370
     1079#: application/Controller/Admin/Settings.php:284
    22751080msgid ""
    22761081"Please choose if you want to require a login for \"Pay Later\" purchases."
     
    22791084"sein soll."
    22801085
    2281 #: application/Controller/Admin/Settings.php:383
     1086#: application/Controller/Admin/Settings.php:296
    22821087msgid "Gift Codes Limit"
    22831088msgstr "Einschränkungen für Geschenkgutscheine"
    22841089
    2285 #: application/Controller/Admin/Settings.php:390
     1090#: application/Controller/Admin/Settings.php:303
    22861091msgid "Times Redeemable"
    22871092msgstr "Maximal einlösbar"
    22881093
    2289 #: application/Controller/Admin/Settings.php:410
     1094#: application/Controller/Admin/Settings.php:323
    22901095msgid ""
    22911096"Specify, how many times a gift code can be redeemed for the associated time "
     
    22951100"eingelöst werden kann."
    22961101
    2297 #: application/Controller/Admin/Settings.php:450
     1102#: application/Controller/Admin/Settings.php:363
    22981103msgid "Automatically Generated Teaser Content"
    22991104msgstr "Automatisch erzeugter Teaser"
    23001105
    2301 #: application/Controller/Admin/Settings.php:457
     1106#: application/Controller/Admin/Settings.php:370
    23021107msgid "Teaser Content Word Count"
    23031108msgstr "Teaser-Länge"
    23041109
    2305 #: application/Controller/Admin/Settings.php:464
     1110#: application/Controller/Admin/Settings.php:377
    23061111msgid "Number of words extracted from paid posts as teaser content."
    23071112msgstr "Anzahl der Wörter aus dem Volltext, die als Teaser verwendet werden."
    23081113
    2309 #: application/Controller/Admin/Settings.php:478
     1114#: application/Controller/Admin/Settings.php:391
    23101115msgid ""
    23111116"The LaterPay WordPress plugin automatically generates teaser content for "
    23121117"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."
     1119msgstr ""
     1120
     1121#: application/Controller/Admin/Settings.php:394
     1122msgid ""
     1123"While technically possible, setting this parameter to zero is\n"
     1124"            HIGHLY DISCOURAGED."
     1125msgstr ""
     1126
     1127#: application/Controller/Admin/Settings.php:397
     1128msgid ""
     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."
     1131msgstr ""
     1132
     1133#: application/Controller/Admin/Settings.php:410
    23271134msgid "Content Preview under Overlay"
    23281135msgstr "Beitragsvorschau unter Overlay"
    23291136
    2330 #: application/Controller/Admin/Settings.php:501
     1137#: application/Controller/Admin/Settings.php:417
    23311138msgid "Percentage of Post Content"
    23321139msgstr "Anteil des Volltextes"
    23331140
    2334 #: application/Controller/Admin/Settings.php:508
     1141#: application/Controller/Admin/Settings.php:424
    23351142#, php-format
    23361143msgid ""
     
    23421149"die ersten 20% des Volltextes unter dem Overlay an.\""
    23431150
    2344 #: application/Controller/Admin/Settings.php:515
     1151#: application/Controller/Admin/Settings.php:431
    23451152msgid "Minimum Number of Words"
    23461153msgstr "Mindestanzahl Wörter"
    23471154
    2348 #: application/Controller/Admin/Settings.php:522
     1155#: application/Controller/Admin/Settings.php:438
    23491156msgid ""
    23501157"Applied if number of words as percentage of the total number of words is "
     
    23551162"als dieser Wert."
    23561163
    2357 #: application/Controller/Admin/Settings.php:529
     1164#: application/Controller/Admin/Settings.php:445
    23581165msgid "Maximum Number of Words"
    23591166msgstr "Höchstanzahl Wörter"
    23601167
    2361 #: application/Controller/Admin/Settings.php:536
     1168#: application/Controller/Admin/Settings.php:452
    23621169msgid ""
    23631170"Applied if number of words as percentage of the total number of words "
     
    23681175"dieser Wert."
    23691176
    2370 #: application/Controller/Admin/Settings.php:553
     1177#: application/Controller/Admin/Settings.php:469
    23711178msgid ""
    23721179"In the appearance tab, you can choose to preview your paid posts with the "
    23731180"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."
     1183msgstr ""
     1184
     1185#: application/Controller/Admin/Settings.php:472
     1186msgid ""
     1187"The following three parameters give you fine-grained control over the length "
     1188"of this excerpt."
     1189msgstr ""
     1190
     1191#: application/Controller/Admin/Settings.php:474
     1192msgid "These settings do not affect the teaser content in any way."
     1193msgstr ""
     1194
     1195#: application/Controller/Admin/Settings.php:521
    23881196msgid "Unlimited Access to Paid Content"
    23891197msgstr "Unbegrenzter Zugriff auf Bezahlinhalte"
    23901198
    2391 #: application/Controller/Admin/Settings.php:634
     1199#: application/Controller/Admin/Settings.php:552
    23921200msgid ""
    23931201"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."
     1203msgstr ""
     1204
     1205#: application/Controller/Admin/Settings.php:554
     1206msgid ""
     1207"This feature can be useful e.g. for giving free access to existing "
     1208"subscribers."
     1209msgstr ""
     1210
     1211#: application/Controller/Admin/Settings.php:556
     1212msgid ""
     1213"We recommend the plugin 'User Role Editor' for adding custom roles to "
     1214"WordPress."
     1215msgstr ""
     1216
     1217#: application/Controller/Admin/Settings.php:562
    24091218msgid "User Role"
    24101219msgstr "Nutzerrolle"
    24111220
    2412 #: application/Controller/Admin/Settings.php:645
     1221#: application/Controller/Admin/Settings.php:564
    24131222msgid "Unlimited Access to Categories"
    24141223msgstr "Unbeschränkter Zugriff auf die Kategorien"
    24151224
    2416 #: application/Controller/Admin/Settings.php:650
     1225#: application/Controller/Admin/Settings.php:569
    24171226msgid "Please add a custom role first."
    24181227msgstr "Bitte erstellen Sie erst eine eigene Nutzerrolle."
    24191228
    2420 #: application/Controller/Admin/Settings.php:944
     1229#: application/Controller/Admin/Settings.php:864
    24211230msgid "LaterPay API Settings"
    24221231msgstr "LaterPay API-Einstellungen"
    24231232
    2424 #: application/Controller/Admin/Settings.php:953
     1233#: application/Controller/Admin/Settings.php:873
    24251234msgid "Fallback Behavior"
    24261235msgstr "Fallback-Verhalten"
    24271236
    2428 #: application/Controller/Admin/Settings.php:970
     1237#: application/Controller/Admin/Settings.php:890
    24291238msgid "Enabled on home page"
    24301239msgstr "LaterPay auf Startseite aktivieren"
    24311240
    2432 #: application/Controller/Admin/Settings.php:978
     1241#: application/Controller/Admin/Settings.php:898
    24331242msgid "I want to enable requests to LaterPay API on home page"
    24341243msgstr "Ich möchte LaterPay API Aufrufe auf der Startseite erlauben"
    24351244
    2436 #: application/Controller/Admin/Settings.php:992
     1245#: application/Controller/Admin/Settings.php:912
    24371246msgid ""
    24381247"Define fallback behavior in case LaterPay API is not responding and option "
     
    24431252"soll."
    24441253
    2445 #: application/Controller/Admin/Settings.php:1005
     1254#: application/Controller/Admin/Settings.php:925
    24461255msgid "Do nothing"
    24471256msgstr "Nichts tun"
    24481257
    2449 #: application/Controller/Admin/Settings.php:1006
     1258#: application/Controller/Admin/Settings.php:926
    24501259msgid ""
    24511260"No user can access premium content while the LaterPay API is not responding."
     
    24541263"erreichbar ist."
    24551264
    2456 #: application/Controller/Admin/Settings.php:1010
     1265#: application/Controller/Admin/Settings.php:930
    24571266msgid "Give full access"
    24581267msgstr "Vollzugriff gewähren"
    24591268
    2460 #: application/Controller/Admin/Settings.php:1011
     1269#: application/Controller/Admin/Settings.php:931
    24611270msgid ""
    24621271"All users have full access to premium content in order to not disappoint "
     
    24661275"bisherige Käufer nicht zu verärgern)."
    24671276
    2468 #: application/Controller/Admin/Settings.php:1015
     1277#: application/Controller/Admin/Settings.php:935
    24691278msgid "Hide premium content"
    24701279msgstr "Bezahlinhalte ausblenden"
    24711280
    2472 #: application/Controller/Admin/Settings.php:1016
     1281#: application/Controller/Admin/Settings.php:936
    24731282msgid "Premium content is hidden from users. Direct access would be blocked."
    24741283msgstr "Bezahlinhalte werden ausgeblendet, der Direktzugriff wird verweigert."
    24751284
    2476 #: application/Controller/Admin/Settings.php:1029
    2477 #: application/Controller/Admin/Settings.php:1038
     1285#: application/Controller/Admin/Settings.php:949
     1286#: application/Controller/Admin/Settings.php:958
    24781287msgid "LaterPay Pro Merchant"
    24791288msgstr "LaterPay Pro Händlerkonto"
    24801289
    2481 #: application/Controller/Admin/Settings.php:1034
     1290#: application/Controller/Admin/Settings.php:954
    24821291msgid ""
    24831292"Only choose this option, if you have a LaterPay Pro merchant account. "
     
    24921301"dass Sie diese Option aktivieren möchten?"
    24931302
    2494 #: application/Controller/Admin/Settings.php:1046
     1303#: application/Controller/Admin/Settings.php:966
    24951304msgid "I have a LaterPay Pro merchant account."
    24961305msgstr "Ich habe ein LaterPay Pro Händlerkonto."
    24971306
    2498 #: application/Controller/Admin/Settings.php:1061
     1307#: application/Controller/Admin/Settings.php:981
    24991308msgid "Please choose, if you have a LaterPay Pro merchant account."
    25001309msgstr "Bitte aktivieren, wenn Sie ein LaterPay Pro Händlerkonto besitzen."
    25011310
    2502 #: views/frontend/partials/widget/time-passes.php:28
     1311#: application/Controller/Frontend/Post.php:553
     1312msgid "In Live mode, your visitors would now see the LaterPay purchase dialog."
     1313msgstr ""
     1314"Im Live-Modus würden Ihre Besucher jetzt den LaterPay Kaufdialog sehen."
     1315
     1316#: application/Controller/Frontend/Post.php:554
     1317msgid "Voucher code accepted."
     1318msgstr "Gutschein-Code akzeptiert."
     1319
     1320#: application/Controller/Frontend/Post.php:555
     1321msgid " is not a valid voucher code!"
     1322msgstr " ist kein gültiger Gutschein-Code!"
     1323
     1324#: application/Controller/Frontend/Post.php:556
     1325msgid "Please enter a six-digit voucher code."
     1326msgstr "Bitte geben Sie einen sechsstelligen Gutschein-Code ein."
     1327
     1328#: application/Controller/Frontend/Post.php:557
     1329msgid "An error occurred. Please try again."
     1330msgstr "Ein Fehler ist aufgetreten. Bitte versuchen Sie es erneut."
     1331
     1332#: application/Controller/Frontend/Post.php:559
     1333#: application/Module/Purchase.php:176
     1334msgid "Buy Now, Pay Later"
     1335msgstr "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
     1340msgid "Buy Now"
     1341msgstr "Jetzt kaufen"
     1342
     1343#: application/Controller/Frontend/Post.php:561
     1344msgid "Subscribe Now"
     1345msgstr "Jetzt abonnieren"
     1346
     1347#: application/Controller/Frontend/Post.php:668
     1348msgid ""
     1349"&mdash; Visit the post to buy its full content for {price} {currency} "
     1350"&mdash; {teaser_content}"
     1351msgstr ""
     1352"&mdash; Kaufen Sie den vollständigen Inhalt für {price} {currency} &mdash; "
     1353"{teaser_content}"
     1354
     1355#: application/Controller/Frontend/PreviewMode.php:156
     1356#: application/Controller/Frontend/PreviewMode.php:240
     1357msgid "Updated."
     1358msgstr "Aktualisiert."
     1359
     1360#: application/Controller/Frontend/PreviewMode.php:214
     1361#: application/Module/Appearance.php:191
     1362msgid "You don't have sufficient user capabilities to do this."
     1363msgstr "Sie haben nicht die erforderlichen Berechtigungen für diese Aktion."
     1364
     1365#: application/Controller/Frontend/Shortcode.php:91
     1366msgid "Download now"
     1367msgstr "Jetzt herunterladen"
     1368
     1369#: application/Controller/Frontend/Shortcode.php:96
     1370msgid "Watch now"
     1371msgstr "Jetzt ansehen"
     1372
     1373#: application/Controller/Frontend/Shortcode.php:101
     1374msgid "Listen now"
     1375msgstr "Jetzt anhören"
     1376
     1377#: application/Controller/Frontend/Shortcode.php:105
     1378msgid "Read now"
     1379msgstr "Jetzt lesen"
     1380
     1381#: application/Controller/Frontend/Shortcode.php:185
     1382msgid "Wrong time pass id."
     1383msgstr "Ungültige Zeitpass-ID."
     1384
     1385#: application/Controller/Install.php:76
     1386#, php-format
     1387msgid ""
     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>"
     1390msgstr ""
     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
     1395msgid ""
     1396"The LaterPay plugin could not be installed. Please fix the reported issues "
     1397"and try again."
     1398msgstr ""
     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
     1404msgid "%s: <code>%s</code> not found"
     1405msgstr "%s: <code>%s</code> nicht gefunden"
     1406
     1407#: application/Core/Exception/FormValidation.php:18
     1408#, php-format
     1409msgid "Form \"%s\" validation failed."
     1410msgstr "Formatvalidierung \"%s\" fehlgeschlagen."
     1411
     1412#: application/Core/Exception/InvalidIncomingData.php:14
     1413#, php-format
     1414msgid "\"%s\" param missed or has incorrect value"
     1415msgstr "Der Parameter \"%s\" fehlt oder hat einen ungültigen Wert."
     1416
     1417#: application/Core/Exception/PostNotFound.php:14
     1418#, php-format
     1419msgid "Post with id \"%s\" not exist"
     1420msgstr "Es existiert kein Beitrag mit der ID \"%s\"."
     1421
     1422#: application/Helper/Appearance.php:22 application/Helper/Appearance.php:52
     1423msgid "Read now, pay later"
     1424msgstr "Jetzt lesen, später zahlen"
     1425
     1426#: application/Helper/Post.php:300
     1427msgid "(more&hellip;)"
     1428msgstr ""
     1429
     1430#: application/Helper/Subscription.php:33
     1431msgid "1 Month Subscription"
     1432msgstr "Monatsabo"
     1433
     1434#: application/Helper/Subscription.php:34
     1435msgid "1 month access to all content on this website (cancellable anytime)"
     1436msgstr "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
     1440msgid "access to"
     1441msgstr "Zugriff auf"
     1442
     1443#: application/Helper/Subscription.php:78 application/Helper/TimePass.php:184
     1444msgid "for"
     1445msgstr "für"
     1446
     1447#: application/Helper/TimePass.php:32
     1448msgid "24-Hour Pass"
     1449msgstr "24-Stunden-Pass"
     1450
     1451#: application/Helper/TimePass.php:33
     1452msgid "24 hours access to all content on this website"
     1453msgstr "24 Stunden Zugang zu allen Inhalten dieser Website"
     1454
     1455#: application/Helper/TimePass.php:80
     1456msgid "Hour"
     1457msgstr "Stunde"
     1458
     1459#: application/Helper/TimePass.php:81
     1460msgid "Day"
     1461msgstr "Tag"
     1462
     1463#: application/Helper/TimePass.php:82
     1464msgid "Week"
     1465msgstr "Woche"
     1466
     1467#: application/Helper/TimePass.php:83
     1468msgid "Month"
     1469msgstr "Monat"
     1470
     1471#: application/Helper/TimePass.php:84
     1472msgid "Year"
     1473msgstr "Jahr"
     1474
     1475#: application/Helper/TimePass.php:89
     1476msgid "Hours"
     1477msgstr "Stunden"
     1478
     1479#: application/Helper/TimePass.php:90
     1480msgid "Days"
     1481msgstr "Tage"
     1482
     1483#: application/Helper/TimePass.php:91
     1484msgid "Weeks"
     1485msgstr "Wochen"
     1486
     1487#: application/Helper/TimePass.php:92
     1488msgid "Months"
     1489msgstr "Monate"
     1490
     1491#: application/Helper/TimePass.php:93
     1492msgid "Years"
     1493msgstr "Jahre"
     1494
     1495#: application/Helper/TimePass.php:116
     1496msgid "later"
     1497msgstr "später"
     1498
     1499#: application/Helper/TimePass.php:117
     1500msgid "immediately"
     1501msgstr "sofort"
     1502
     1503#: application/Helper/TimePass.php:138
     1504msgid "All content"
     1505msgstr "Alle Inhalte"
     1506
     1507#: application/Helper/TimePass.php:139
     1508msgid "All content except for category"
     1509msgstr "Alle Inhalte außer in Kategorie"
     1510
     1511#: application/Helper/TimePass.php:140
     1512msgid "All content in category"
     1513msgstr "Alle Inhalte in Kategorie"
     1514
     1515#: application/Helper/View.php:217
     1516msgid "k"
     1517msgstr "t"
     1518
     1519#: application/Helper/View.php:250
     1520msgid "Problem with inserted shortcode:"
     1521msgstr "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
     1525msgid "I already bought this"
     1526msgstr "Bereits gekauft?"
     1527
     1528#: application/Module/Purchase.php:260 application/Module/TimePasses.php:368
     1529msgid "Read Now"
     1530msgstr "Jetzt lesen"
     1531
     1532#: application/Module/Purchase.php:262
     1533msgid "Read Now, Pay Later"
     1534msgstr "Jetzt lesen, später zahlen"
     1535
     1536#: application/Module/Purchase.php:272
     1537msgid ""
     1538"Buy this post now with LaterPay and <br>pay with a payment method you trust."
     1539msgstr ""
     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
     1545msgid "Read Immediately"
     1546msgstr "Sofort lesen"
     1547
     1548#: application/Module/Purchase.php:277
     1549msgid ""
     1550"Immediately access your purchase. <br>You only buy this post. No "
     1551"subscription, no fees."
     1552msgstr ""
     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
     1557msgid "Just agree to pay later.<br> No upfront registration and payment."
     1558msgstr ""
     1559"Stimmen Sie einfach zu, später zu zahlen.<br> Keine Vorabregistrierung. "
     1560"Keine Vorauszahlung."
     1561
     1562#: application/Module/Purchase.php:290
     1563msgid ""
     1564"Access your purchase immediately.<br> You are only buying this article, not "
     1565"a subscription."
     1566msgstr ""
     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
     1572msgid ""
     1573"Buy with LaterPay until you reach a total of %s %s.<br> Only then do you "
     1574"have to register and pay."
     1575msgstr ""
     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
     1580msgid "Buy a time pass to read the full content."
     1581msgstr "Kaufen Sie einen Zeitpass, um den gesamten Inhalt anzuzeigen."
     1582
     1583#: application/Module/TimePasses.php:340
     1584msgid "Wrong time pass id or no time passes specified."
     1585msgstr "Ungültige Zeitpass-ID oder keine Zeitpässe vorhanden."
     1586
     1587#: application/Module/TimePasses.php:371
     1588msgid "Buy Time Pass"
     1589msgstr "Zeitpass kaufen"
     1590
     1591#: application/Module/TimePasses.php:372
     1592msgid "Buy a LaterPay time pass and pay with a payment method you trust."
     1593msgstr ""
     1594"Kaufen Sie einen LaterPay Zeitpass und zahlen Sie mit einer Zahlungsmethode "
     1595"Ihres Vertrauens."
     1596
     1597#: application/Module/TimePasses.php:377
     1598msgid ""
     1599"Immediately access your content. <br>A time pass is not a subscription, it "
     1600"expires automatically."
     1601msgstr ""
     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
     1607msgid "Test mode"
     1608msgstr "Test-Modus"
     1609
     1610#: views/backend/account.php:22 views/backend/appearance.php:20
     1611#: views/backend/pricing.php:23
     1612msgid "Earn money in"
     1613msgstr ""
     1614
     1615#: views/backend/account.php:22 views/backend/appearance.php:20
     1616#: views/backend/pricing.php:23
     1617msgid "live mode"
     1618msgstr ""
     1619
     1620#: views/backend/account.php:35
     1621msgid "The LaterPay plugin is in"
     1622msgstr "Das LaterPay Plugin ist im"
     1623
     1624#: views/backend/account.php:51
     1625msgid "mode."
     1626msgstr "Modus."
     1627
     1628#: views/backend/account.php:55
     1629msgid "It is invisible"
     1630msgstr "Es ist für Besucher nicht sichtbar"
     1631
     1632#: views/backend/account.php:72
     1633msgid "visible to visitors."
     1634msgstr "sichtbar."
     1635
     1636#: views/backend/account.php:80
     1637msgid "Sandbox Environment"
     1638msgstr "Sandbox"
     1639
     1640#: views/backend/account.php:83
     1641msgid "for testing with simulated payments"
     1642msgstr "zu Testzwecken mit simulierten Zahlungen"
     1643
     1644#: views/backend/account.php:102
     1645msgid "Paste Sandbox Merchant ID here"
     1646msgstr "Sandbox Merchant ID hier einfügen"
     1647
     1648#: views/backend/account.php:103 views/backend/account.php:159
     1649msgid "Merchant ID"
     1650msgstr "Merchant ID"
     1651
     1652#: views/backend/account.php:122
     1653msgid "Paste Sandbox API Key here"
     1654msgstr "Sandbox API Key hier einfügen"
     1655
     1656#: views/backend/account.php:123 views/backend/account.php:179
     1657msgid "API Key"
     1658msgstr "API Key"
     1659
     1660#: views/backend/account.php:136
     1661msgid "Live Environment"
     1662msgstr "Live"
     1663
     1664#: views/backend/account.php:139
     1665msgid "for processing real financial transactions"
     1666msgstr "Produktivumgebung für echte Käufe und Zahlungen"
     1667
     1668#: views/backend/account.php:158
     1669msgid "Paste Live Merchant ID here"
     1670msgstr "Live Merchant ID hier einfügen"
     1671
     1672#: views/backend/account.php:178
     1673msgid "Paste Live API Key here"
     1674msgstr "Live API Key hier einfügen"
     1675
     1676#: views/backend/account.php:191
     1677msgid "Request Live API Credentials"
     1678msgstr "Live API Zugangsdaten anfordern"
     1679
     1680#: views/backend/account.php:201
     1681msgid "Region and Currency"
     1682msgstr "Ländergruppe und Währung"
     1683
     1684#: views/backend/account.php:203
     1685msgid "Select the region for your LaterPay merchant account"
     1686msgstr "Wählen Sie die Ländergruppe Ihres LaterPay Händlerkontos aus"
     1687
     1688#: views/backend/account.php:207
     1689msgid ""
     1690"Is the selling company or person based in Europe or in the United States?"
     1691msgstr ""
     1692
     1693#: views/backend/account.php:209
     1694msgid ""
     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."
     1697msgstr ""
     1698
     1699#: views/backend/account.php:211
     1700msgid ""
     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."
     1703msgstr ""
     1704
     1705#: views/backend/account.php:220
     1706msgid "Europe (EUR)"
     1707msgstr "Europa (EUR)"
     1708
     1709#: views/backend/account.php:221
     1710msgid "United States (USD)"
     1711msgstr "USA (USD)"
     1712
     1713#: views/backend/account.php:228
     1714msgid "Important:"
     1715msgstr ""
     1716
     1717#: views/backend/account.php:230
     1718msgid " The minimum value for \"Pay Now\" prices in the U.S. region is"
     1719msgstr ""
     1720
     1721#: views/backend/account.php:232
     1722msgid "$1.99"
     1723msgstr ""
     1724
     1725#: views/backend/account.php:235
     1726msgid ""
     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."
     1729msgstr ""
     1730
     1731#: views/backend/account.php:237
     1732msgid ""
     1733"If you haven't done any configuration yet, you can safely switch the region "
     1734"without further adjustments. "
     1735msgstr ""
     1736
     1737#: views/backend/appearance.php:33
     1738msgid "Content Preview for Paid Posts"
     1739msgstr "Vorschau für Bezahlinhalte"
     1740
     1741#: views/backend/appearance.php:47
     1742msgid "Teaser + Purchase Link"
     1743msgstr "Teaser + Kauflink"
     1744
     1745#: views/backend/appearance.php:56
     1746msgid "Teaser + Explanatory Overlay"
     1747msgstr "Teaser + erklärendes Overlay"
     1748
     1749#: views/backend/appearance.php:65
     1750msgid "Teaser + Purchase Overlay"
     1751msgstr "Teaser + Kauf-Overlay"
     1752
     1753#: views/backend/appearance.php:77
     1754msgid "Header"
     1755msgstr "Header"
     1756
     1757#: views/backend/appearance.php:82
     1758msgid "Header background color"
     1759msgstr "Hintergrundfarbe Header"
     1760
     1761#: views/backend/appearance.php:90
     1762msgid "Header title"
     1763msgstr "Überschrift"
     1764
     1765#: views/backend/appearance.php:98
     1766msgid "Purchase Options"
     1767msgstr "Kaufoptionen"
     1768
     1769#: views/backend/appearance.php:103
     1770msgid "Background color"
     1771msgstr "Hintergrundfarbe"
     1772
     1773#: views/backend/appearance.php:111
     1774msgid "Main text color"
     1775msgstr "Schriftfarbe Text"
     1776
     1777#: views/backend/appearance.php:119
     1778msgid "Description color text"
     1779msgstr "Schriftfarbe Beschreibungen"
     1780
     1781#: views/backend/appearance.php:127
     1782msgid "Purchase button background color"
     1783msgstr "Hintergrundfarbe Kaufbutton"
     1784
     1785#: views/backend/appearance.php:135
     1786msgid "Purchase button text color"
     1787msgstr "Schriftfarbe Kaufbutton"
     1788
     1789#: views/backend/appearance.php:143
     1790msgid "Link main color"
     1791msgstr "Schriftfarbe Links"
     1792
     1793#: views/backend/appearance.php:151
     1794msgid "Link hover color"
     1795msgstr "Hover-Schriftfarbe Links"
     1796
     1797#: views/backend/appearance.php:159
     1798msgid "Footer"
     1799msgstr "Footer"
     1800
     1801#: views/backend/appearance.php:164
     1802msgid "Show footer"
     1803msgstr "Footer anzeigen"
     1804
     1805#: views/backend/appearance.php:172
     1806msgid "Footer background color"
     1807msgstr "Hintergrundfarbe Footer"
     1808
     1809#: views/backend/appearance.php:182
     1810msgid "Preview"
     1811msgstr "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
     1817msgid "Save"
     1818msgstr "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
     1825msgid "Cancel"
     1826msgstr "Abbrechen"
     1827
     1828#: views/backend/appearance.php:192
     1829msgid "Restore Default Values"
     1830msgstr "Standardwerte wiederherstellen"
     1831
     1832#: views/backend/appearance.php:200
     1833msgid "Position of the LaterPay Purchase Button"
     1834msgstr "Position des LaterPay Buttons"
     1835
     1836#: views/backend/appearance.php:214 views/backend/appearance.php:251
     1837msgid "Standard position"
     1838msgstr "Standardposition"
     1839
     1840#: views/backend/appearance.php:223 views/backend/appearance.php:260
     1841msgid "Custom position"
     1842msgstr "Benutzerdefinierte Position"
     1843
     1844#: views/backend/appearance.php:228
     1845msgid ""
     1846"Call action 'laterpay_purchase_button' in your theme to render the LaterPay "
     1847"purchase button at that position."
     1848msgstr ""
     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
     1853msgid "Display of LaterPay Time Passes"
     1854msgstr "Position der LaterPay Zeitpässe"
     1855
     1856#: views/backend/appearance.php:265
     1857msgid ""
     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."
     1860msgstr ""
     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
     1866msgid "You don't have sufficient permissions to manage options for this site."
     1867msgstr ""
     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
     1872msgid "Welcome to LaterPay"
     1873msgstr "Willkommen bei LaterPay"
     1874
     1875#: views/backend/partials/pointer-scripts.php:13
     1876msgid "Set the most appropriate settings for you."
     1877msgstr "Passen Sie das LaterPay Plugin Ihren Bedürfnissen an."
     1878
     1879#: views/backend/partials/pointer-scripts.php:41
     1880msgid "Set a Price for this Post"
     1881msgstr "Preis für den Beitrag setzen"
     1882
     1883#: views/backend/partials/pointer-scripts.php:42
     1884msgid "Set an"
     1885msgstr ""
     1886
     1887#: views/backend/partials/pointer-scripts.php:43
     1888msgid " individual price "
     1889msgstr ""
     1890
     1891#: views/backend/partials/pointer-scripts.php:44
     1892msgid "for this post here. "
     1893msgstr ""
     1894
     1895#: views/backend/partials/pointer-scripts.php:45
     1896msgid "You can also apply"
     1897msgstr ""
     1898
     1899#: views/backend/partials/pointer-scripts.php:46
     1900msgid " advanced pricing "
     1901msgstr ""
     1902
     1903#: views/backend/partials/pointer-scripts.php:47
     1904msgid "by defining how the price changes over time."
     1905msgstr ""
     1906
     1907#: views/backend/partials/pointer-scripts.php:75
     1908msgid "Add Teaser Content"
     1909msgstr "Teaser zum Beitrag hinzufügen"
     1910
     1911#: views/backend/partials/pointer-scripts.php:76
     1912msgid ""
     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."
     1915msgstr ""
     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
     1920msgid "Pay Later: users pay purchased content later"
     1921msgstr "Später zahlen: Nutzer bezahlen gekaufte Inhalte später."
     1922
     1923#: views/backend/partials/post-pricing-form.php:36
     1924msgid "Pay Now: users pay purchased content immediately"
     1925msgstr "Sofort zahlen: Nutzer bezahlen gekaufte Inhalte sofort."
     1926
     1927#: views/backend/partials/post-pricing-form.php:49
     1928msgid "0.00"
     1929msgstr "0,00"
     1930
     1931#: views/backend/partials/post-pricing-form.php:66
     1932msgid "Individual Price"
     1933msgstr "Individueller Preis"
     1934
     1935#: views/backend/partials/post-pricing-form.php:71
     1936msgid "Category Default Price"
     1937msgstr "Kategorie- preis"
     1938
     1939#: views/backend/partials/post-pricing-form.php:78
     1940msgid "Global"
     1941msgstr ""
     1942
     1943#: views/backend/partials/post-pricing-form.php:78
     1944msgid "Default Price"
     1945msgstr ""
     1946
     1947#: views/backend/partials/post-pricing-form.php:115
     1948msgid "The dynamic pricing will"
     1949msgstr ""
     1950
     1951#: views/backend/partials/post-pricing-form.php:115
     1952msgid "start"
     1953msgstr ""
     1954
     1955#: views/backend/partials/post-pricing-form.php:115
     1956msgid ", once you have"
     1957msgstr ""
     1958
     1959#: views/backend/partials/post-pricing-form.php:115
     1960msgid "published"
     1961msgstr ""
     1962
     1963#: views/backend/partials/post-pricing-form.php:115
     1964msgid "this post."
     1965msgstr ""
     1966
     1967#: views/backend/partials/post-pricing-form.php:120
     1968msgid "Restart dynamic pricing"
     1969msgstr "Dynamische Preissetzung neu starten"
     1970
     1971#: views/backend/partials/purchase-overlay.php:23
     1972#: views/frontend/partials/widget/purchase-overlay.php:38
     1973msgid "This article"
     1974msgstr "Diesen Artikel"
     1975
     1976#: views/backend/partials/purchase-overlay.php:26
     1977msgid "An Amazing Article"
     1978msgstr ""
     1979
     1980#: views/backend/partials/purchase-overlay.php:41
     1981msgid "Week Pass"
     1982msgstr "Wochenpass"
     1983
     1984#: views/backend/partials/purchase-overlay.php:44
     1985msgid "7 days access to all paid content on this website (no subscription)"
     1986msgstr "7 Tage Zugriff auf alle Inhalte dieser Website (kein Abo)"
     1987
     1988#: views/backend/partials/purchase-overlay.php:59
     1989msgid "Month subscription"
     1990msgstr "Monatsabo"
     1991
     1992#: views/backend/partials/purchase-overlay.php:62
     1993msgid "30 days access to all paid content (cancellable anytime)"
     1994msgstr "1 Monat Zugriff auf alle Inhalte dieser Website (jederzeit kündbar)"
     1995
     1996#: views/backend/partials/purchase-overlay.php:72
     1997msgid "Buy now, pay later"
     1998msgstr "Jetzt kaufen, später zahlen"
     1999
     2000#: views/backend/partials/purchase-overlay.php:74
     2001#: views/frontend/partials/widget/purchase-overlay.php:129
     2002msgid "Redeem voucher"
     2003msgstr "Gutschein einlösen"
     2004
     2005#: views/backend/partials/purchase-overlay.php:89
     2006#: views/frontend/partials/widget/purchase-overlay.php:148
     2007msgid "Powered by"
     2008msgstr "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
     2013msgid "on this website"
     2014msgstr "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
     2021msgid "Buy now with LaterPay"
     2022msgstr "Jetzt mit LaterPay kaufen"
     2023
     2024#: views/backend/partials/subscription.php:35
     2025#: views/backend/partials/time-pass.php:43
     2026msgid "Terms"
     2027msgstr "Details"
     2028
     2029#: views/backend/partials/subscription.php:40
     2030#: views/backend/partials/time-pass.php:48
     2031msgid "Back"
     2032msgstr "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
     2037msgid "Validity"
     2038msgstr "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
     2043msgid "Access to"
     2044msgstr "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
     2049msgid "Renewal"
     2050msgstr "Verlängert sich"
     2051
     2052#: views/backend/partials/subscription.php:58
     2053#, php-format
     2054msgid "After %s %s"
     2055msgstr "Nach %s %s "
     2056
     2057#: views/backend/partials/subscription.php:68
     2058msgid "Cancellation"
     2059msgstr "Kündigung"
     2060
     2061#: views/backend/partials/subscription.php:70
     2062msgid "Cancellable anytime"
     2063msgstr "Jederzeit kündbar"
     2064
     2065#: views/backend/partials/time-pass.php:66
     2066#: views/frontend/partials/post/gift/gift-pass.php:53
     2067msgid "No automatic renewal"
     2068msgstr "Keine automatische Verlängerung"
     2069
     2070#: views/backend/pricing.php:36
     2071msgid "Posts can"
     2072msgstr "Beiträge können"
     2073
     2074#: views/backend/pricing.php:53
     2075msgid "cannot be purchased individually."
     2076msgstr "können nicht einzeln gekauft werden."
     2077
     2078#: views/backend/pricing.php:67
     2079msgid "Every post costs"
     2080msgstr "Jeder Artikel kostet"
     2081
     2082#: views/backend/pricing.php:87
     2083msgid "Edit Global Default Price"
     2084msgstr "Allgemeinen Standardpreis bearbeiten"
     2085
     2086#: views/backend/pricing.php:108 views/backend/pricing.php:213
     2087#: views/backend/pricing.php:318
     2088msgid "Revenue Model"
     2089msgstr "Erlösmodell"
     2090
     2091#: views/backend/pricing.php:115
     2092msgid "Pay&nbsp;Later"
     2093msgstr "Später zahlen"
     2094
     2095#: views/backend/pricing.php:143 views/backend/pricing.php:356
     2096#: views/backend/pricing.php:572
     2097msgid "Create"
     2098msgstr "Erstellen"
     2099
     2100#: views/backend/pricing.php:160 views/backend/pricing.php:268
     2101msgid "Every post in"
     2102msgstr "Jeder Beitrag in"
     2103
     2104#: views/backend/pricing.php:164 views/backend/pricing.php:271
     2105msgid "costs"
     2106msgstr "kostet"
     2107
     2108#: views/backend/pricing.php:185
     2109msgid "Edit Category Default Price"
     2110msgstr "Kategoriespezifischen Standardpreis bearbeiten"
     2111
     2112#: views/backend/pricing.php:192 views/backend/pricing.php:297
     2113msgid "Category"
     2114msgstr "Kategorie"
     2115
     2116#: views/backend/pricing.php:247
     2117msgid "Set prices by category"
     2118msgstr "Kategoriespezifische Standardpreise setzen"
     2119
     2120#: views/backend/pricing.php:252
     2121msgid ""
     2122"Category default prices are convenient for selling different categories of "
     2123"content at different standard prices."
     2124msgstr ""
     2125
     2126#: views/backend/pricing.php:252
     2127msgid "Individual prices can be set when editing a post."
     2128msgstr ""
     2129
     2130#: views/backend/pricing.php:256
     2131msgid "Click the \"Create\" button to set a default price for a category."
     2132msgstr ""
     2133"Klicken Sie auf den \"Erstellen\" Button, um einen Standardpreis für eine "
     2134"Kategorie zu setzen."
     2135
     2136#: views/backend/pricing.php:290
     2137msgid "Add a Category Default Price"
     2138msgstr "Kategoriespezifischen Standardpreis hinzufügen"
     2139
     2140#: views/backend/pricing.php:430
     2141msgid "The pass is valid for "
     2142msgstr "Dieser Pass gilt für "
     2143
     2144#: views/backend/pricing.php:450
     2145msgid "and grants"
     2146msgstr "und gibt"
     2147
     2148#: views/backend/pricing.php:477
     2149msgid "This pass costs"
     2150msgstr "Dieser Pass kostet"
     2151
     2152#: views/backend/pricing.php:485
     2153msgid "and the user has to"
     2154msgstr "und Nutzer müssen"
     2155
     2156#: views/backend/pricing.php:506 views/backend/pricing.php:677
     2157msgid "Title"
     2158msgstr "Titel"
     2159
     2160#: views/backend/pricing.php:517 views/backend/pricing.php:688
     2161msgid "Description"
     2162msgstr "Beschreibung"
     2163
     2164#: views/backend/pricing.php:530
     2165msgid "Offer this time pass at a reduced price of"
     2166msgstr "Diesen Zeitpass zu einem reduzierten Preis anbieten:"
     2167
     2168#: views/backend/pricing.php:538
     2169msgid "Generate voucher code"
     2170msgstr "Gutschein-Code erstellen"
     2171
     2172#: views/backend/pricing.php:558
     2173msgid "Sell bundles of content"
     2174msgstr "Zeitpässe verkaufen"
     2175
     2176#: views/backend/pricing.php:561
     2177msgid ""
     2178"With Time Passes you can sell time-limited access to a category or your "
     2179"entire site. Time Passes do not renew automatically."
     2180msgstr ""
     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
     2186msgid "Click the \"Create\" button to add a Time Pass."
     2187msgstr ""
     2188"Klicken Sie auf den \"Erstellen\" Button, um einen Zeitpass hinzuzufügen."
     2189
     2190#: views/backend/pricing.php:579 views/backend/pricing.php:599
     2191msgid "Sub"
     2192msgstr "Abo"
     2193
     2194#: views/backend/pricing.php:617
     2195msgid "The subscription costs"
     2196msgstr "Das Abo kostet"
     2197
     2198#: views/backend/pricing.php:626
     2199msgid ", grants "
     2200msgstr ", gibt"
     2201
     2202#: views/backend/pricing.php:654
     2203msgid "and renews every"
     2204msgstr "und verlängert sich nach"
     2205
     2206#: views/backend/pricing.php:711
     2207msgid "Sell subscriptions"
     2208msgstr "Abos verkaufen"
     2209
     2210#: views/backend/pricing.php:714
     2211msgid ""
     2212"Subscriptions work exactly like time passes, with a simple difference: They "
     2213"renew automatically."
     2214msgstr ""
     2215"Abos funktionieren genau wie Zeitpässe, mit einem einfachen Unterschied: Sie "
     2216"verlängern sich automatisch."
     2217
     2218#: views/backend/pricing.php:717
     2219msgid "Click the \"Create\" button to add a Subscription."
     2220msgstr "Klicken Sie auf den \"Erstellen\" Button, um ein Abo hinzuzufügen."
     2221
     2222#: views/backend/pricing.php:720
     2223msgid ""
     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."
     2227msgstr ""
     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
     2233msgid "Gift Code"
     2234msgstr "Gutschein-Code"
     2235
     2236#: views/frontend/partials/post/gift/gift-actions.php:21
     2237msgid "Redeem at"
     2238msgstr "Einlösen auf"
     2239
    25032240#: views/frontend/partials/post/gift/redeem-form.php:10
     2241#: views/frontend/partials/widget/time-passes.php:32
    25042242msgid "Code"
    25052243msgstr "Code"
    25062244
    2507 #: views/frontend/partials/widget/time-passes.php:29
    25082245#: views/frontend/partials/post/gift/redeem-form.php:11
     2246#: views/frontend/partials/widget/time-passes.php:33
    25092247msgid "Redeem"
    25102248msgstr "Einlösen"
    25112249
    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
     2251msgid "Post Preview Mode"
     2252msgstr "Vorschau-Modus"
     2253
     2254#: views/frontend/partials/post/select-preview-mode-tab.php:17
     2255msgid "Preview post as"
     2256msgstr "Vorschau für"
     2257
     2258#: views/frontend/partials/post/select-preview-mode-tab.php:17
     2259msgid "Admin"
     2260msgstr "Admin"
     2261
     2262#: views/frontend/partials/post/select-preview-mode-tab.php:37
     2263msgid "Visitor"
     2264msgstr "Besucher"
     2265
     2266#: views/frontend/partials/post/shortcode-purchase-link.php:10
     2267msgid "View"
     2268msgstr "Anzeigen"
     2269
     2270#: views/frontend/partials/widget/explanatory-overlay.php:12
     2271#: views/frontend/partials/widget/purchase-overlay.php:12
     2272msgid ""
     2273"Thanks for reading this short excerpt from the paid post! Fancy buying it to "
     2274"read all of it?"
     2275msgstr ""
     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
     2282msgid "Buy now for"
     2283msgstr "Jetzt kaufen für"
     2284
     2285#: views/frontend/partials/widget/purchase-link.php:36
     2286msgid "and pay later"
     2287msgstr "und später bezahlen"
     2288
     2289#: views/frontend/partials/widget/purchase-overlay.php:114
     2290msgid "Enter Voucher Code"
     2291msgstr "Code eingeben"
     2292
     2293#: views/frontend/partials/widget/purchase-overlay.php:124
     2294msgid "Redeem Voucher Code"
     2295msgstr "Gutschein-Code einlösen"
    25152296
    25162297#: views/frontend/partials/widget/time-passes-link.php:8
     
    25222303msgstr "Zeitpass kaufen"
    25232304
    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
     2306msgid "Redeem Voucher >"
     2307msgstr "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 &hellip;]"
     2586#~ "[laterpay_premium_download &hellip;]</dfn>[/laterpay_box_wrapper]"
     2587#~ msgstr ""
     2588#~ "[laterpay_box_wrapper]<dfn>[laterpay_premium_download &hellip;]"
     2589#~ "[laterpay_premium_download &hellip;]</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  
    55 * 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.
    66 * Author: LaterPay GmbH, Mihail Turalenka and Aliaksandr Vahura
    7  * Version: 0.11.0
     7 * Version: 0.12.0
    88 * Author URI: https://laterpay.net/
    99 * Textdomain: laterpay
  • laterpay/trunk/views/backend/pricing.php

    r1898231 r1923931  
    717717                        <?php esc_html_e( 'Click the "Create" button to add a Subscription.', 'laterpay' ); ?>
    718718                    </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>
    722719                </div>
    723720            </div>
Note: See TracChangeset for help on using the changeset viewer.