Plugin Directory

Changeset 2355532


Ignore:
Timestamp:
08/09/2020 11:32:28 AM (6 years ago)
Author:
beyondsoftware
Message:

version 2.2.1

Location:
beyondconnect/trunk
Files:
3 added
12 edited

Legend:

Unmodified
Added
Removed
  • beyondconnect/trunk/beyondConnect.php

    r2351951 r2355532  
    77Plugin URI: https://support.beyond-sw.com/hc/de/categories/360002442180
    88Description: beyondConnect connects WordPress with the beyond software services.
    9 Version: 2.2.0
     9Version: 2.2.1
    1010Author: Felix Stadelmann, beyond software
    1111Author URI: https://beyond-sw.com
  • beyondconnect/trunk/inc/Api/Callbacks/SettingsCallbacks.php

    r2351951 r2355532  
    6161
    6262        // Paymentgateways Setting Fields
    63         $output['PG_Url'] = isset($input['PG_Url']) ? rtrim($input['PG_Url'], '/') . '/' : '';
     63        $output['PG_Url'] = isset($input['PG_Url']) ? $input['PG_Url'] : '';
    6464        $output['PG_Username'] = isset($input['PG_Username']) ? $input['PG_Username'] : '';
    6565        $output['PG_Password'] = isset($input['PG_Password']) ? $input['PG_Password'] : '';
     
    7676        $output['ActivateUserManagement'] = isset($input['ActivateUserManagement']) ? true : false;
    7777        $output['FieldsToCheckAddressIntegrity'] = isset($input['FieldsToCheckAddressIntegrity']) ? $input['FieldsToCheckAddressIntegrity'] : '';
     78        $output['UrlUnsubscribeNewsletter'] = isset($input['UrlUnsubscribeNewsletter']) ? $input['UrlUnsubscribeNewsletter'] : '';
    7879
    7980        return $output;
  • beyondconnect/trunk/inc/Base/NinjaFormsController.php

    r2351951 r2355532  
    3636        $actions['BC_AddParent'] = new NinjaFormsActions_AddParent();
    3737        $actions['BC_AddAddress'] = new NinjaFormsActions_AddAddress();
     38        $actions['BC_AddAddressEmailNewsletter'] = new NinjaFormsActions_AddAddressEmailNewsletter();
    3839        $actions['BC_EditAddress'] = new NinjaFormsActions_EditAddress();
    3940        $actions['BC_AddRegistration'] = new NinjaFormsActions_AddRegistration();
     41
    4042
    4143        return $actions;
  • beyondconnect/trunk/inc/Base/PaymentController.php

    r2351951 r2355532  
    131131        wp_safe_redirect($_POST["redirect"]);
    132132    }
     133
    133134    public function buyaddSubscriptionToCart()
    134135    {
    135         if (!isset(wp_get_current_user()->user_login))
    136         {
     136        if (!isset(wp_get_current_user()->user_login)) {
    137137            wp_die('User not logged in');
    138138        }
     
    149149        }
    150150
    151         $offenerPosten = Beyond::getValues('OffenePosten(' . $response .')', '');
     151        $offenerPosten = Beyond::getValues('OffenePosten(' . $response . ')', '');
    152152
    153153        if (empty($offenerPosten[0]["offenePostenRowguid"])) {
     
    181181        wp_safe_redirect($_POST["redirect"]);
    182182    }
     183
    183184    public function removeFromCart()
    184185    {
     
    264265        $body->Payment->OrderId = $requestId;
    265266        $body->Notification->NotifyUrl .= '?requestId=' . $requestId;
    266         $body->Payment->Description = substr($description,0,1000);
     267        $body->Payment->Description = substr($description, 0, 1000);
    267268
    268269        $defaults = array(
  • beyondconnect/trunk/inc/Base/ShortcodesBaseController.php

    r2351951 r2355532  
    338338            else
    339339                return '<div class="bc_list_empty ' . $elementname . '">' . $wporg_atts['emptytext'] . '</div>';
    340         }
    341         else {
     340        } else {
    342341            if (empty($wporg_atts['filledtext']))
    343342                $o = '';
    344343            else
    345                 $o =  '<div class="bc_list_filled ' . $elementname . '">' . $wporg_atts['filledtext'] . '</div>';
     344                $o = '<div class="bc_list_filled ' . $elementname . '">' . $wporg_atts['filledtext'] . '</div>';
    346345        }
    347346
  • beyondconnect/trunk/inc/Base/ShortcodesSubscriptionsController.php

    r2351951 r2355532  
    9191        return '';
    9292    }
     93
    9394    public function beyondconnect_subscriptiontypes_list($atts = [], $content = null, $tag = '')
    9495    {
     
    109110        return '';
    110111    }
     112
    111113    public function beyondconnect_subscriptions_list_collapsible($atts = [], $content = null, $tag = '')
    112114    {
     
    122124        return $o;
    123125    }
     126
    124127    public function beyondconnect_subscriptiontypes_list_button_addtocart($atts = [], $content = null, $tag = '')
    125128    {
     
    138141        return $o;
    139142    }
     143
    140144    public function beyondconnect_subscriptions_list_popupable($atts = [], $content = null, $tag = '')
    141145    {
  • beyondconnect/trunk/inc/Beyond.php

    r2351951 r2355532  
    1212    public static function isGuid(string $guid): bool
    1313    {
    14         return preg_match('/^[0-9a-f]{8}-[0-9a-f]{4}-4[0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$/', $guid);
     14        return preg_match('/^[a-f\d]{8}(-[a-f\d]{4}){4}[a-f\d]{8}$/i', $guid);
    1515    }
    1616
     
    264264    public static function setValues(string $path, string $method, array $body, string $returnField, bool $onlyStatus)
    265265    {
    266         //error_log('BC OData Abfrage: ' . $path);
    267 
    268266        $option = get_option('beyondconnect_option');
    269267        $url = $option['Url'];
     
    274272        );
    275273
    276 
    277         $defaults = array(
    278             'method' => $method,
    279             'headers' => $header,
    280             'body' => json_encode($body),
    281         );
    282 
    283         $response = wp_remote_post($url . $path, $defaults);
     274        if ($method === 'DELETE')
     275        {
     276            $defaults = array(
     277                'method' => $method,
     278                'headers' => $header
     279            );
     280        }
     281        else {
     282            $defaults = array(
     283                'method' => $method,
     284                'headers' => $header,
     285                'body' => json_encode($body),
     286            );
     287        }
     288
     289        if ($method === 'DELETE')
     290        {
     291            $response = wp_remote_request($url . $path, $defaults);
     292            //$body = wp_remote_retrieve_body($response);
     293        }
     294        else
     295        {
     296            $response = wp_remote_post($url . $path, $defaults);
     297        }
    284298
    285299        if (is_wp_error($response)) {
  • beyondconnect/trunk/inc/Init.php

    r2351951 r2355532  
    2020            Pages\Shortcodes::class,
    2121            Base\SettingsLinks::class,
     22            Base\AddressController::class,
    2223            Base\AuthenticationController::class,
    2324            Base\NinjaFormsController::class,
  • beyondconnect/trunk/inc/Pages/Settings.php

    r2351951 r2355532  
    334334            )
    335335        );
     336        $args[] = array(
     337            'id' => 'UrlUnsubscribeNewsletter',
     338            'title' => __('Url for unsubscribe from newsletter', 'beyondconnect'),
     339            'callback' => array($this->callbacks, 'textField'),
     340            'page' => 'beyondconnect_options_page',
     341            'section' => 'beyondconnect_options_section',
     342            'args' => array(
     343                'option_name' => 'beyondconnect_option',
     344                'label_for' => 'UrlUnsubscribeNewsletter',
     345                'class' => 'ui-toggle'
     346            )
     347        );
     348
    336349        $this->settings->setFields($args);
    337350    }
  • beyondconnect/trunk/languages/beyondconnect-de_CH.po

    r2331141 r2355532  
    11msgid ""
     2
    23msgstr ""
     4
    35"Project-Id-Version: beyondConnect\n"
     6
    47"POT-Creation-Date: 2020-05-31 09:31+0200\n"
     8
    59"PO-Revision-Date: 2020-05-31 09:31+0200\n"
     10
    611"Last-Translator: \n"
     12
    713"Language-Team: \n"
     14
    815"Language: de_CH\n"
     16
    917"MIME-Version: 1.0\n"
     18
    1019"Content-Type: text/plain; charset=UTF-8\n"
     20
    1121"Content-Transfer-Encoding: 8bit\n"
     22
    1223"X-Generator: Poedit 2.3.1\n"
     24
    1325"X-Poedit-Basepath: ..\n"
     26
    1427"Plural-Forms: nplurals=2; plural=(n != 1);\n"
     28
    1529"X-Poedit-Flags-xgettext: --add-comments=translators:\n"
     30
    1631"X-Poedit-WPHeader: beyondConnect.php\n"
     32
    1733"X-Poedit-SourceCharset: UTF-8\n"
     34
    1835"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
     36
    1937"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
     38
    2039"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
     40
    2141"X-Poedit-SearchPath-0: .\n"
     42
    2243"X-Poedit-SearchPathExcluded-0: *.min.js\n"
     44
    2345"X-Poedit-SearchPathExcluded-1: vendor\n"
    2446
     47
     48
    2549#: inc/Api/Callbacks/SettingsCallbacks.php:13
     50
    2651msgid ""
     52
    2753"Set the connection details which you get from beyond software to connect "
     54
    2855"your WordPress with the service"
     56
    2957msgstr ""
     58
    3059"Geben Sie die Details zur Verbindung mit den Services von beyond software "
     60
    3161"ein, die Sie von beyond software erhalten haben."
    3262
     63
     64
    3365#: inc/Api/Callbacks/SettingsCallbacks.php:17
     66
    3467msgid ""
     68
    3569"Manage the Components of this Plugin by activating the checkboxes from the "
     70
    3671"following list."
     72
    3773msgstr ""
     74
    3875"Aktivieren Sie die Kontrollkästchen um die Komponenten des Plugins zu "
     76
    3977"verwalten."
    4078
     79
     80
    4181#: inc/Api/Callbacks/SettingsCallbacks.php:21
     82
    4283msgid ""
     84
    4385"Manage the Shortcodes of this Plugin by activating the checkboxes from the "
     86
    4487"following list."
     88
    4589msgstr ""
     90
    4691"Aktivieren Sie die Kontrollkästchen um die Shortcodes des Plugins zu "
     92
    4793"verwalten."
    4894
     95
     96
    4997#: inc/Api/Widgets/TeachersWidget.php:100
     98
    5099msgid "Title"
     100
    51101msgstr "Titel"
    52102
     103
     104
    53105#: inc/Api/Widgets/TeachersWidget.php:100
     106
    54107#: inc/Api/Widgets/TeachersWidget.php:106
     108
    55109#: inc/Api/Widgets/TeachersWidget.php:112
     110
    56111#: inc/Api/Widgets/TeachersWidget.php:118
     112
    57113#: inc/Api/Widgets/TeachersWidget.php:124
     114
    58115#: inc/Api/Widgets/TeachersWidget.php:130
     116
    59117#: inc/Api/Widgets/TeachersWidget.php:136
     118
    60119msgid ":"
     120
    61121msgstr ":"
    62122
     123
     124
    63125#: inc/Api/Widgets/TeachersWidget.php:106
     126
    64127msgid "Field to Display"
     128
    65129msgstr "Anzuzeigendes Feld"
    66130
     131
     132
    67133#: inc/Api/Widgets/TeachersWidget.php:112
     134
    68135msgid "Link of Field"
     136
    69137msgstr "Link des Feldes"
    70138
     139
     140
    71141#: inc/Api/Widgets/TeachersWidget.php:118
     142
    72143msgid "Filter"
     144
    73145msgstr "Filter"
    74146
     147
     148
    75149#: inc/Api/Widgets/TeachersWidget.php:124
     150
    76151msgid "Top"
     152
    77153msgstr "Top"
    78154
     155
     156
    79157#: inc/Api/Widgets/TeachersWidget.php:130
     158
    80159msgid "Skip"
     160
    81161msgstr "Überspringen"
    82162
     163
     164
    83165#: inc/Api/Widgets/TeachersWidget.php:136
     166
    84167msgid "Order by"
     168
    85169msgstr "Sortieren nach"
    86170
     171
     172
    87173#: inc/Base/BaseController.php:25
     174
    88175msgid "Activate Teachers Widget"
     176
    89177msgstr "Aktivieren Lehrer Widget"
    90178
     179
     180
    91181#: inc/Base/BaseController.php:28
     182
    92183msgid "Activate Shortcodes Helpers"
     184
    93185msgstr "Aktivieren Helper Shortcodes"
    94186
     187
     188
    95189#: inc/Base/BaseController.php:29
     190
    96191msgid "Activate Shortcodes Courses"
     192
    97193msgstr "Aktivieren Kurse Shortcodes"
    98194
     195
     196
    99197#: inc/Base/NinjaFormsActions_AddAddress.php:13
     198
    100199msgid "BC Add Address"
     200
    101201msgstr "BC Adresse hinzufügen"
    102202
     203
     204
    103205#: inc/Base/NinjaFormsActions_AddAddress.php:38
     206
    104207msgid "Error saving address"
     208
    105209msgstr "Fehler beim Speichern der Adresse"
    106210
     211
     212
    107213#: inc/Base/NinjaFormsActions_AddParent.php:13
     214
    108215msgid "BC Add Parent"
     216
    109217msgstr "BC Elternteil hinzufügen"
    110218
     219
     220
    111221#: inc/Base/NinjaFormsActions_AddParent.php:30
     222
    112223msgid "Error saving parent"
     224
    113225msgstr "Fehler eim Speichern des Elternteils"
    114226
     227
     228
    115229#: inc/Base/NinjaFormsActions_AddRegistration.php:13
     230
    116231msgid "BC Add Registration"
     232
    117233msgstr "BC Anmeldung hinzufügen"
    118234
     235
     236
    119237#: inc/Base/NinjaFormsActions_AddRegistration.php:43
     238
    120239msgid "Error saving registration"
     240
    121241msgstr "Fehler beim Speichern der Anmeldung"
    122242
     243
     244
    123245#: inc/Base/NinjaFormsAddAddressActionSettings.php:8
     246
    124247#: inc/Base/NinjaFormsAddRegistrationActionSettings.php:8
     248
    125249msgid "Linked Fields"
     250
    126251msgstr "Verknüpfte Felder"
    127252
     253
     254
    128255#: inc/Base/NinjaFormsAddAddressActionSettings.php:12
     256
    129257#: inc/Base/NinjaFormsAddRegistrationActionSettings.php:12
     258
    130259msgid "Choose linked fields."
     260
    131261msgstr "Wählen Sie verknüpfte Felder aus."
    132262
     263
     264
    133265#: inc/Base/NinjaFormsAddAddressActionSettings.php:13
     266
    134267#: inc/Base/NinjaFormsAddRegistrationActionSettings.php:13
     268
    135269msgid ""
     270
    136271"Linking property to connect with BeyondConnect fieldset. E.g. { name: john "
     272
    137273"doe }."
     274
    138275msgstr ""
     276
    139277"Verknüpfen der Eigenschaft zum Herstellen einer Verbindung mit BeyondConnect "
     278
    140279"fieldset. Z.B. name: john doe."
    141280
     281
     282
    142283#: inc/Base/NinjaFormsFieldSettings.php:9
     284
    143285msgid "BC Fieldset Property"
     286
    144287msgstr "BC Fieldset Eigenschaft"
    145288
     289
     290
    146291#: inc/Base/NinjaFormsFieldSettings.php:15
     292
    147293msgid "Courses - ID Title Date"
     294
    148295msgstr "Kurse - ID Titel Datum"
    149296
     297
     298
    150299#: inc/Base/NinjaFormsFieldSettings.php:19
     300
    151301msgid "Teacher - Firstname"
     302
    152303msgstr "Lehrer - Vorname"
    153304
     305
     306
    154307#: inc/Base/NinjaFormsFieldSettings.php:23
     308
    155309msgid "Teacher - Firstname Lastname"
     310
    156311msgstr "Lehrer - Vorname Nachname"
    157312
     313
     314
    158315#: inc/Base/NinjaFormsFieldSettings.php:27
     316
    159317msgid "Teacher - Lastname Firstname"
     318
    160319msgstr "Lehrer - Nachname Vorname"
    161320
     321
     322
    162323#: inc/Base/NinjaFormsFieldSettings.php:31
     324
    163325msgid "Select the property to connect with BeyondConnect fieldset."
     326
    164327msgstr ""
     328
    165329"Wählen Sie die Eigenschaft aus, für die Verbindung mit dem BeyondConnect "
     330
    166331"Fieldset."
    167332
     333
     334
    168335#: inc/Base/NinjaFormsFieldSettings.php:36
     336
    169337msgid "BC Select Text"
     338
    170339msgstr "BC Wähle Text"
    171340
     341
     342
    172343#: inc/Base/NinjaFormsFieldSettings.php:39
     344
    173345#: inc/Base/NinjaFormsFields_List.php:85
     346
    174347msgid "Select item"
     348
    175349msgstr "Bitte wählen"
    176350
     351
     352
    177353#: inc/Base/NinjaFormsFieldSettings.php:40
     354
    178355msgid "Type the text for ... select item ..."
     356
    179357msgstr "Text eingeben für  … bitte wählen …"
    180358
     359
     360
    181361#: inc/Base/NinjaFormsFields_List.php:22
     362
    182363msgid "BC List"
     364
    183365msgstr "BC Liste"
    184366
     367
     368
    185369#: inc/Pages/Dashboard.php:29 templates/dashboard.php:3
     370
    186371msgid "Dashboard"
     372
    187373msgstr "Kontrollzentrum"
    188374
     375
     376
    189377#: inc/Pages/Settings.php:41 inc/Pages/Settings.php:42 templates/settings.php:3
     378
    190379msgid "Settings"
     380
    191381msgstr "Einstellungen"
    192382
     383
     384
    193385#: inc/Pages/Settings.php:67 templates/settings.php:5
     386
    194387msgid "Connection Settings"
     388
    195389msgstr "Verbindungs-Einstellungen"
    196390
     391
     392
    197393#: inc/Pages/Settings.php:73 templates/settings.php:6
     394
    198395msgid "Widgets Settings"
     396
    199397msgstr "Widgets-Einstellungen"
    200398
     399
     400
    201401#: inc/Pages/Settings.php:79 templates/settings.php:7
     402
    202403msgid "Shortcodes Settings"
     404
    203405msgstr "Shortcodes Einstellungen"
    204406
     407
     408
    205409#: inc/Pages/Settings.php:134
     410
    206411msgid "Username"
     412
    207413msgstr "Benutzername"
    208414
     415
     416
    209417#: inc/Pages/Settings.php:146
     418
    210419msgid "Key/Password"
     420
    211421msgstr "Schlüssel/Passwort"
    212422
     423
     424
    213425#: inc/Pages/Shortcodes.php:37 inc/Pages/Shortcodes.php:38
     426
    214427#: templates/shortcodes.php:3
     428
    215429msgid "Shortcodes"
     430
    216431msgstr "Shortcodes"
    217432
     433
     434
    218435#: templates/dashboard.php:4
     436
    219437msgid "Availability Services"
     438
    220439msgstr "Verfügbarkeit Dienste"
    221440
     441
     442
    222443#: templates/dashboard.php:12
     444
    223445msgid "Status"
     446
    224447msgstr "Status"
    225448
     449
     450
    226451#: templates/dashboard.php:18
     452
    227453msgid "Entities: not found"
     454
    228455msgstr "Entitäten nicht gefunden"
    229456
     457
     458
    230459#: templates/shortcodes.php:5
     460
    231461msgid "Available Shortcodes"
     462
    232463msgstr "Verfügbare Shortcodes"
    233464
     465
     466
    234467#. Plugin Name of the plugin/theme
     468
    235469msgid "beyondConnect"
     470
    236471msgstr "beyondConnect"
    237472
     473
     474
    238475#. Plugin URI of the plugin/theme
     476
    239477msgid "https://support.beyond-sw.com/hc/de/categories/360002442180"
     478
    240479msgstr "https://support.beyond-sw.com/hc/de/categories/360002442180"
    241480
     481
     482
    242483#. Description of the plugin/theme
     484
    243485msgid "beyondConnect connects WordPress with the beyond software services."
     486
    244487msgstr ""
     488
    245489"beyondConnect verbindet WordPress mit den Services von beyond software."
    246490
     491
     492
    247493#. Author of the plugin/theme
     494
    248495msgid "Felix Stadelmann, beyond software"
     496
    249497msgstr "Felix Stadelmann, beyond software"
    250498
     499
     500
    251501#. Author URI of the plugin/theme
     502
    252503msgid "https://beyond-sw.com"
     504
    253505msgstr "https://beyond-sw.com"
    254506
     507
     508
    255509#~ msgid "Widget Settings"
     510
    256511#~ msgstr "Widget Einstellungen"
    257512
     513
     514
    258515#, fuzzy
     516
    259517#~| msgid "Shortcodes Manager"
     518
    260519#~ msgid "Shortcode Settings"
     520
    261521#~ msgstr "Shortcodes Manager"
    262522
     523
     524
    263525#~ msgid "Widgets Manager"
     526
    264527#~ msgstr "Widgets-Manager"
    265528
     529
     530
    266531#~ msgid "Save Registration - BeyondConnect"
     532
    267533#~ msgstr "Anmeldung speichern - BeyondConnect"
    268534
     535
     536
    269537#~ msgid "Subscriber Email"
     538
    270539#~ msgstr "Abonnenten-E-Mail"
    271540
     541
     542
    272543#~ msgid "Custom Fields"
     544
    273545#~ msgstr "Benutzerdefinierte Felder"
    274546
     547
     548
    275549#~ msgid "Add Tags"
     550
    276551#~ msgstr "Tags hinzufügen"
    277552
     553
     554
    278555#~ msgid "Remove Tags"
     556
    279557#~ msgstr "Schlagwörter entfernen"
    280558
     559
     560
    281561#~ msgid "Prospect"
     562
    282563#~ msgstr "Prospect"
    283564
     565
     566
    284567#~ msgid "Lifetime Value"
     568
    285569#~ msgstr "Kunden „Lifetime Value“"
    286570
     571
     572
    287573#~ msgid "title"
     574
    288575#~ msgstr "Titel"
    289576
     577
     578
    290579#~ msgid "field"
     580
    291581#~ msgstr "Feld"
    292582
     583
     584
    293585#~ msgid "link"
     586
    294587#~ msgstr "Link"
    295588
     589
     590
    296591#~ msgid "filter"
     592
    297593#~ msgstr "Filter"
    298594
     595
     596
    299597#~ msgid "orderby"
     598
    300599#~ msgstr "Sortieren nach"
    301600
     601
     602
    302603#, fuzzy
     604
    303605#~ msgid "Fehler beim Speichern der Adresse"
     606
    304607#~ msgstr "Fehler beim Speichern der Adresse"
    305608
     609
     610
    306611#, fuzzy
     612
    307613#~ msgid "Fehler beim Speichern des Elternteils"
     614
    308615#~ msgstr "Fehler beim Speichern der Adresse"
    309616
     617
     618
    310619#, fuzzy
     620
    311621#~ msgid "Adresse - Nachname1"
     622
    312623#~ msgstr "Adresse - Nachname1"
    313624
     625
     626
    314627#, fuzzy
     628
    315629#~ msgid "Adresse - Vorname1"
     630
    316631#~ msgstr "Adresse - Vorname1"
    317632
     633
     634
    318635#, fuzzy
     636
    319637#~ msgid "BC Textbox"
     638
    320639#~ msgstr "BC Textbox"
    321640
     641
     642
    322643#, fuzzy
     644
    323645#~ msgid "Fehler beim Speichern der Anmeldung"
     646
    324647#~ msgstr "Fehler beim Speichern der Anmeldung"
     648
  • beyondconnect/trunk/languages/beyondconnect-de_DE.po

    r2331141 r2355532  
    11msgid ""
     2
    23msgstr ""
     4
    35"Project-Id-Version: beyondConnect\n"
     6
    47"POT-Creation-Date: 2020-05-31 09:30+0200\n"
     8
    59"PO-Revision-Date: 2020-05-31 09:31+0200\n"
     10
    611"Last-Translator: \n"
     12
    713"Language-Team: \n"
     14
    815"Language: de_DE\n"
     16
    917"MIME-Version: 1.0\n"
     18
    1019"Content-Type: text/plain; charset=UTF-8\n"
     20
    1121"Content-Transfer-Encoding: 8bit\n"
     22
    1223"X-Generator: Poedit 2.3.1\n"
     24
    1325"X-Poedit-Basepath: ..\n"
     26
    1427"Plural-Forms: nplurals=2; plural=(n != 1);\n"
     28
    1529"X-Poedit-Flags-xgettext: --add-comments=translators:\n"
     30
    1631"X-Poedit-WPHeader: beyondConnect.php\n"
     32
    1733"X-Poedit-SourceCharset: UTF-8\n"
     34
    1835"X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
     36
    1937"esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
     38
    2039"_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
     40
    2141"X-Poedit-SearchPath-0: .\n"
     42
    2243"X-Poedit-SearchPathExcluded-0: *.min.js\n"
     44
    2345"X-Poedit-SearchPathExcluded-1: vendor\n"
    2446
     47
     48
    2549#: inc/Api/Callbacks/SettingsCallbacks.php:13
     50
    2651msgid ""
     52
    2753"Set the connection details which you get from beyond software to connect "
     54
    2855"your WordPress with the service"
     56
    2957msgstr ""
     58
    3059"Geben Sie die Details zur Verbindung mit den Services von beyond software "
     60
    3161"ein, die Sie von beyond software erhalten haben."
    3262
     63
     64
    3365#: inc/Api/Callbacks/SettingsCallbacks.php:17
     66
    3467msgid ""
     68
    3569"Manage the Components of this Plugin by activating the checkboxes from the "
     70
    3671"following list."
     72
    3773msgstr ""
     74
    3875"Aktivieren Sie die Kontrollkästchen um die Komponenten des Plugins zu "
     76
    3977"verwalten."
    4078
     79
     80
    4181#: inc/Api/Callbacks/SettingsCallbacks.php:21
     82
    4283msgid ""
     84
    4385"Manage the Shortcodes of this Plugin by activating the checkboxes from the "
     86
    4487"following list."
     88
    4589msgstr ""
     90
    4691"Aktivieren Sie die Kontrollkästchen um die Shortcodes des Plugins zu "
     92
    4793"verwalten."
    4894
     95
     96
    4997#: inc/Api/Widgets/TeachersWidget.php:100
     98
    5099msgid "Title"
     100
    51101msgstr "Titel"
    52102
     103
     104
    53105#: inc/Api/Widgets/TeachersWidget.php:100
     106
    54107#: inc/Api/Widgets/TeachersWidget.php:106
     108
    55109#: inc/Api/Widgets/TeachersWidget.php:112
     110
    56111#: inc/Api/Widgets/TeachersWidget.php:118
     112
    57113#: inc/Api/Widgets/TeachersWidget.php:124
     114
    58115#: inc/Api/Widgets/TeachersWidget.php:130
     116
    59117#: inc/Api/Widgets/TeachersWidget.php:136
     118
    60119msgid ":"
     120
    61121msgstr ":"
    62122
     123
     124
    63125#: inc/Api/Widgets/TeachersWidget.php:106
     126
    64127msgid "Field to Display"
     128
    65129msgstr "Anzuzeigendes Feld"
    66130
     131
     132
    67133#: inc/Api/Widgets/TeachersWidget.php:112
     134
    68135msgid "Link of Field"
     136
    69137msgstr "Link des Feldes"
    70138
     139
     140
    71141#: inc/Api/Widgets/TeachersWidget.php:118
     142
    72143msgid "Filter"
     144
    73145msgstr "Filter"
    74146
     147
     148
    75149#: inc/Api/Widgets/TeachersWidget.php:124
     150
    76151msgid "Top"
     152
    77153msgstr "Top"
    78154
     155
     156
    79157#: inc/Api/Widgets/TeachersWidget.php:130
     158
    80159msgid "Skip"
     160
    81161msgstr "Überspringen"
    82162
     163
     164
    83165#: inc/Api/Widgets/TeachersWidget.php:136
     166
    84167msgid "Order by"
     168
    85169msgstr "Sortieren nach"
    86170
     171
     172
    87173#: inc/Base/BaseController.php:25
     174
    88175msgid "Activate Teachers Widget"
     176
    89177msgstr "Aktivieren Lehrer Widget"
    90178
     179
     180
    91181#: inc/Base/BaseController.php:28
     182
    92183msgid "Activate Shortcodes Helpers"
     184
    93185msgstr "Aktivieren Helper Shortcodes"
    94186
     187
     188
    95189#: inc/Base/BaseController.php:29
     190
    96191msgid "Activate Shortcodes Courses"
     192
    97193msgstr "Aktivieren Kurse Shortcodes"
    98194
     195
     196
    99197#: inc/Base/NinjaFormsActions_AddAddress.php:13
     198
    100199msgid "BC Add Address"
     200
    101201msgstr "BC Adresse hinzufügen"
    102202
     203
     204
    103205#: inc/Base/NinjaFormsActions_AddAddress.php:38
     206
    104207msgid "Error saving address"
     208
    105209msgstr "Fehler beim Speichern der Adresse"
    106210
     211
     212
    107213#: inc/Base/NinjaFormsActions_AddParent.php:13
     214
    108215msgid "BC Add Parent"
     216
    109217msgstr "BC Elternteil hinzufügen"
    110218
     219
     220
    111221#: inc/Base/NinjaFormsActions_AddParent.php:30
     222
    112223msgid "Error saving parent"
     224
    113225msgstr "Fehler eim Speichern des Elternteils"
    114226
     227
     228
    115229#: inc/Base/NinjaFormsActions_AddRegistration.php:13
     230
    116231msgid "BC Add Registration"
     232
    117233msgstr "BC Anmeldung hinzufügen"
    118234
     235
     236
    119237#: inc/Base/NinjaFormsActions_AddRegistration.php:43
     238
    120239msgid "Error saving registration"
     240
    121241msgstr "Fehler beim Speichern der Anmeldung"
    122242
     243
     244
    123245#: inc/Base/NinjaFormsAddAddressActionSettings.php:8
     246
    124247#: inc/Base/NinjaFormsAddRegistrationActionSettings.php:8
     248
    125249msgid "Linked Fields"
     250
    126251msgstr "Verknüpfte Felder"
    127252
     253
     254
    128255#: inc/Base/NinjaFormsAddAddressActionSettings.php:12
     256
    129257#: inc/Base/NinjaFormsAddRegistrationActionSettings.php:12
     258
    130259msgid "Choose linked fields."
     260
    131261msgstr "Wählen Sie verknüpfte Felder aus."
    132262
     263
     264
    133265#: inc/Base/NinjaFormsAddAddressActionSettings.php:13
     266
    134267#: inc/Base/NinjaFormsAddRegistrationActionSettings.php:13
     268
    135269msgid ""
     270
    136271"Linking property to connect with BeyondConnect fieldset. E.g. { name: john "
     272
    137273"doe }."
     274
    138275msgstr ""
     276
    139277"Verknüpfen der Eigenschaft zum Herstellen einer Verbindung mit BeyondConnect "
     278
    140279"fieldset. Z.B. name: john doe."
    141280
     281
     282
    142283#: inc/Base/NinjaFormsFieldSettings.php:9
     284
    143285msgid "BC Fieldset Property"
     286
    144287msgstr "BC Fieldset Eigenschaft"
    145288
     289
     290
    146291#: inc/Base/NinjaFormsFieldSettings.php:15
     292
    147293msgid "Courses - ID Title Date"
     294
    148295msgstr "Kurse - ID Titel Datum"
    149296
     297
     298
    150299#: inc/Base/NinjaFormsFieldSettings.php:19
     300
    151301msgid "Teacher - Firstname"
     302
    152303msgstr "Lehrer - Vorname"
    153304
     305
     306
    154307#: inc/Base/NinjaFormsFieldSettings.php:23
     308
    155309msgid "Teacher - Firstname Lastname"
     310
    156311msgstr "Lehrer - Vorname Nachname"
    157312
     313
     314
    158315#: inc/Base/NinjaFormsFieldSettings.php:27
     316
    159317msgid "Teacher - Lastname Firstname"
     318
    160319msgstr "Lehrer - Nachname Vorname"
    161320
     321
     322
    162323#: inc/Base/NinjaFormsFieldSettings.php:31
     324
    163325msgid "Select the property to connect with BeyondConnect fieldset."
     326
    164327msgstr ""
     328
    165329"Wählen Sie die Eigenschaft aus, für die Verbindung mit dem BeyondConnect "
     330
    166331"Fieldset."
    167332
     333
     334
    168335#: inc/Base/NinjaFormsFieldSettings.php:36
     336
    169337msgid "BC Select Text"
     338
    170339msgstr "BC Wähle Text"
    171340
     341
     342
    172343#: inc/Base/NinjaFormsFieldSettings.php:39
     344
    173345#: inc/Base/NinjaFormsFields_List.php:85
     346
    174347msgid "Select item"
     348
    175349msgstr "Bitte wählen"
    176350
     351
     352
    177353#: inc/Base/NinjaFormsFieldSettings.php:40
     354
    178355msgid "Type the text for ... select item ..."
     356
    179357msgstr "Text eingeben für  … bitte wählen …"
    180358
     359
     360
    181361#: inc/Base/NinjaFormsFields_List.php:22
     362
    182363msgid "BC List"
     364
    183365msgstr "BC Liste"
    184366
     367
     368
    185369#: inc/Pages/Dashboard.php:29 templates/dashboard.php:3
     370
    186371msgid "Dashboard"
     372
    187373msgstr "Kontrollzentrum"
    188374
     375
     376
    189377#: inc/Pages/Settings.php:41 inc/Pages/Settings.php:42 templates/settings.php:3
     378
    190379msgid "Settings"
     380
    191381msgstr "Einstellungen"
    192382
     383
     384
    193385#: inc/Pages/Settings.php:67 templates/settings.php:5
     386
    194387msgid "Connection Settings"
     388
    195389msgstr "Verbindungs-Einstellungen"
    196390
     391
     392
    197393#: inc/Pages/Settings.php:73 templates/settings.php:6
     394
    198395msgid "Widgets Settings"
     396
    199397msgstr "Widgets-Einstellungen"
    200398
     399
     400
    201401#: inc/Pages/Settings.php:79 templates/settings.php:7
     402
    202403msgid "Shortcodes Settings"
     404
    203405msgstr "Shortcodes Einstellungen"
    204406
     407
     408
    205409#: inc/Pages/Settings.php:134
     410
    206411msgid "Username"
     412
    207413msgstr "Benutzername"
    208414
     415
     416
    209417#: inc/Pages/Settings.php:146
     418
    210419msgid "Key/Password"
     420
    211421msgstr "Schlüssel/Passwort"
    212422
     423
     424
    213425#: inc/Pages/Shortcodes.php:37 inc/Pages/Shortcodes.php:38
     426
    214427#: templates/shortcodes.php:3
     428
    215429msgid "Shortcodes"
     430
    216431msgstr "Shortcodes"
    217432
     433
     434
    218435#: templates/dashboard.php:4
     436
    219437msgid "Availability Services"
     438
    220439msgstr "Verfügbarkeit Dienste"
    221440
     441
     442
    222443#: templates/dashboard.php:12
     444
    223445msgid "Status"
     446
    224447msgstr "Status"
    225448
     449
     450
    226451#: templates/dashboard.php:18
     452
    227453msgid "Entities: not found"
     454
    228455msgstr "Entitäten nicht gefunden"
    229456
     457
     458
    230459#: templates/shortcodes.php:5
     460
    231461msgid "Available Shortcodes"
     462
    232463msgstr "Verfügbare Shortcodes"
    233464
     465
     466
    234467#. Plugin Name of the plugin/theme
     468
    235469msgid "beyondConnect"
     470
    236471msgstr "beyondConnect"
    237472
     473
     474
    238475#. Plugin URI of the plugin/theme
     476
    239477msgid "https://support.beyond-sw.com/hc/de/categories/360002442180"
     478
    240479msgstr "https://support.beyond-sw.com/hc/de/categories/360002442180"
    241480
     481
     482
    242483#. Description of the plugin/theme
     484
    243485msgid "beyondConnect connects WordPress with the beyond software services."
     486
    244487msgstr ""
     488
    245489"beyondConnect verbindet WordPress mit den Services von beyond software."
    246490
     491
     492
    247493#. Author of the plugin/theme
     494
    248495msgid "Felix Stadelmann, beyond software"
     496
    249497msgstr "Felix Stadelmann, beyond software"
    250498
     499
     500
    251501#. Author URI of the plugin/theme
     502
    252503msgid "https://beyond-sw.com"
     504
    253505msgstr "https://beyond-sw.com"
    254506
     507
     508
    255509#~ msgid "Widget Settings"
     510
    256511#~ msgstr "Widget Einstellungen"
    257512
     513
     514
    258515#, fuzzy
     516
    259517#~| msgid "Shortcodes Manager"
     518
    260519#~ msgid "Shortcode Settings"
     520
    261521#~ msgstr "Shortcodes Manager"
    262522
     523
     524
    263525#~ msgid "Widgets Manager"
     526
    264527#~ msgstr "Widgets-Manager"
    265528
     529
     530
    266531#~ msgid "Save Registration - BeyondConnect"
     532
    267533#~ msgstr "Anmeldung speichern - BeyondConnect"
    268534
     535
     536
    269537#~ msgid "Subscriber Email"
     538
    270539#~ msgstr "Abonnenten-E-Mail"
    271540
     541
     542
    272543#~ msgid "Custom Fields"
     544
    273545#~ msgstr "Benutzerdefinierte Felder"
    274546
     547
     548
    275549#~ msgid "Add Tags"
     550
    276551#~ msgstr "Tags hinzufügen"
    277552
     553
     554
    278555#~ msgid "Remove Tags"
     556
    279557#~ msgstr "Schlagwörter entfernen"
    280558
     559
     560
    281561#~ msgid "Prospect"
     562
    282563#~ msgstr "Prospect"
    283564
     565
     566
    284567#~ msgid "Lifetime Value"
     568
    285569#~ msgstr "Kunden „Lifetime Value“"
    286570
     571
     572
    287573#~ msgid "title"
     574
    288575#~ msgstr "Titel"
    289576
     577
     578
    290579#~ msgid "field"
     580
    291581#~ msgstr "Feld"
    292582
     583
     584
    293585#~ msgid "link"
     586
    294587#~ msgstr "Link"
    295588
     589
     590
    296591#~ msgid "filter"
     592
    297593#~ msgstr "Filter"
    298594
     595
     596
    299597#~ msgid "orderby"
     598
    300599#~ msgstr "Sortieren nach"
    301600
     601
     602
    302603#, fuzzy
     604
    303605#~ msgid "Fehler beim Speichern der Adresse"
     606
    304607#~ msgstr "Fehler beim Speichern der Adresse"
    305608
     609
     610
    306611#, fuzzy
     612
    307613#~ msgid "Fehler beim Speichern des Elternteils"
     614
    308615#~ msgstr "Fehler beim Speichern der Adresse"
    309616
     617
     618
    310619#, fuzzy
     620
    311621#~ msgid "Adresse - Nachname1"
     622
    312623#~ msgstr "Adresse - Nachname1"
    313624
     625
     626
    314627#, fuzzy
     628
    315629#~ msgid "Adresse - Vorname1"
     630
    316631#~ msgstr "Adresse - Vorname1"
    317632
     633
     634
    318635#, fuzzy
     636
    319637#~ msgid "BC Textbox"
     638
    320639#~ msgstr "BC Textbox"
    321640
     641
     642
    322643#, fuzzy
     644
    323645#~ msgid "Fehler beim Speichern der Anmeldung"
     646
    324647#~ msgstr "Fehler beim Speichern der Anmeldung"
     648
  • beyondconnect/trunk/readme.txt

    r2351951 r2355532  
    66Tested up to: 5.4.2
    77Requires PHP: 7.1
    8 Stable tag: 2.2.0
     8Stable tag: 2.2.1
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    2929
    3030== Changelog ==
     31= 2.2.1 =
     32* New functions added:
     33    * subscribeToNewsletter
     34    * unsubscribeFromNewsletter
     35* New Ninja Forms actions added:
     36    * add email to newsletter
     37* Bug fixes
    3138= 2.2.0 =
    3239* Support for SIX Saferpay payment added
Note: See TracChangeset for help on using the changeset viewer.