Plugin Directory

Changeset 2965729


Ignore:
Timestamp:
09/12/2023 08:41:20 AM (19 months ago)
Author:
laolaweb
Message:

Release 2.4.1

Location:
personio-integration-light
Files:
30 added
50 edited
1 copied

Legend:

Unmodified
Added
Removed
  • personio-integration-light/tags/2.4.1/admin/styles.css

    r2962403 r2965729  
    9696}
    9797
     98.personioposition_page_personioPositions th#state {
     99    width: 72px;
     100}
     101
    98102.personio-dialog-no-close .ui-dialog-titlebar-close {
    99103    display: none;
  • personio-integration-light/tags/2.4.1/classes/class-cli.php

    r2903217 r2965729  
    11<?php
     2/**
     3 * File for cli-commands of this plugin.
     4 *
     5 * @package personio-integration-light
     6 */
    27
    38namespace personioIntegration;
     
    3035    public function deleteAll(): void
    3136    {
     37        // log this event.
     38        $logs = new Log();
     39        $logs->addLog( 'WP CLI-command deleteAll has been used.', 'success' );
     40
    3241        // delete taxonomies
    3342        $this->deleteTaxonomies();
     
    4352     * @noinspection PhpUnused
    4453     */
    45     public function deletePositions(): void
     54    public function deletePositions( array $args ): void
    4655    {
     56        // set arguments if empty.
     57        if( empty($args) ) {
     58            $args = array( 'WP CLI-command deletePositions', '' );
     59        }
     60
     61        // log this event.
     62        $logs = new Log();
     63        $logs->addLog( sprintf( '%s has been used%s.', $args[0], $args[1] ), 'success' );
     64
     65        // delete them.
    4766        $this->deletePositionsFromDb();
    4867    }
     
    5574     * @since  1.0.0
    5675     */
    57     public function resetPlugin( $deleteData = [] ): void
     76    public function resetPlugin( array $deleteData = array() ): void
    5877    {
    5978        (new installer)->removeAllData( $deleteData );
  • personio-integration-light/tags/2.4.1/classes/class-helper-cli.php

    r2903217 r2965729  
    1010     * @return void
    1111     */
    12     private function deletePositionsFromDb() {
     12    private function deletePositionsFromDb(): void {
    1313        $positionsObject = Positions::get_instance();
    1414        $positions = $positionsObject->getPositions();
     
    1616        $progress = helper::isCLI() ? \WP_CLI\Utils\make_progress_bar( 'Delete all local positions', $positionCount ) : false;
    1717        foreach( $positions as $position ) {
    18             // get personioId for log
    19             $personioId = $position->getPersonioId();
    20 
    21             // delete it
     18            // delete it.
    2219            wp_delete_post($position->ID, true);
    23 
    24             // log in debug-mode
    25             if( get_option('personioIntegration_debug', 0) == 1 ) {
    26                 $log = new Log();
    27                 $log->addLog('Position '.$personioId.' has been deleted.', 'success');
    28             }
    2920
    3021            // show progress
     
    5344     * @noinspection SqlResolve
    5445     */
    55     private function deleteTaxonomies()
     46    private function deleteTaxonomies(): void
    5647    {
    5748        global $wpdb;
  • personio-integration-light/tags/2.4.1/classes/class-import.php

    r2962403 r2965729  
    7070        // marker if result should do nothing.
    7171        $doNothing = false;
     72
     73        // get actual live positions.
     74        $positions_obj = Positions::get_instance();
     75        $positions_count = $positions_obj->getPositionsCount();
    7276
    7377        // enable xml-error-handling.
     
    106110                if( 200 === $httpStatus ) {
    107111
    108                     // check if last modified timestamp has been changed
     112                    // check if last modified timestamp has been changed.
    109113                    if( $lastModifiedTimestamp === absint(get_option(WP_PERSONIO_INTEGRATION_OPTION_IMPORT_TIMESTAMP . $key, 0)) && !$this->_debug ) {
    110                         // timestamp did not change -> do nothing.
    111                         update_option(WP_PERSONIO_OPTION_COUNT, ++$count);
    112                         $doNothing = true;
    113                         !$progress ?: $progress->tick();
    114                         continue;
     114                        // timestamp did not change -> do nothing if we already have positions in the DB.
     115                        if( $positions_count > 0 ) {
     116                            update_option(WP_PERSONIO_OPTION_COUNT, ++$count);
     117                            $doNothing = true;
     118                            $this->logSuccess(sprintf( 'No changes in positions for language %s according to the timestamp we get from Personio. No import run.', $key ) );
     119                            !$progress ?: $progress->tick();
     120                            continue;
     121                        }
    115122                    }
    116123
     
    131138                    // check if md5-hash has been changed.
    132139                    if( $md5hash == get_option(WP_PERSONIO_INTEGRATION_OPTION_IMPORT_MD5 . $key, '') && !$this->_debug ) {
    133                         // md5-hash did not change -> do nothing.
    134                         update_option(WP_PERSONIO_OPTION_COUNT, ++$count);
    135                         $doNothing = true;
    136                         !$progress ?: $progress->tick();
    137                         continue;
     140                        // md5-hash did not change -> do nothing if we already have positions in the DB.
     141                        if( $positions_count > 0 ) {
     142                            update_option(WP_PERSONIO_OPTION_COUNT, ++$count);
     143                            $doNothing = true;
     144                            $this->logSuccess(sprintf('No changes in positions for language %s according to the content we get from Personio. No import run.', $key));
     145                            !$progress ?: $progress->tick();
     146                            continue;
     147                        }
    138148                    }
    139149
     
    195205                }
    196206
     207                // log ok.
     208                $this->logSuccess(sprintf( "%d positions in language %s imported.", count($importedPositions), $key ) );
     209
    197210                // show progress.
    198211                !$progress ?: $progress->tick();
     
    248261                delete_transient('personio_integration_no_position_imported');
    249262            }
    250 
    251             // log ok.
    252             $this->logSuccess($languageCount . " languages grabbed, " . count($importedPositions) . " positions imported.");
    253263        }
    254264        else {
  • personio-integration-light/tags/2.4.1/classes/class-position.php

    r2962403 r2965729  
    155155            ];
    156156            $results = new WP_Query($query);
    157             $posts = [];
     157            $posts = array();
    158158            foreach( $results->posts as $postId ) {
    159                 // optional filter the post-ID
     159                // optional filter the post-ID.
    160160                if( apply_filters('personio_integration_import_single_position_filter_existing', $postId, $this->lang) ) {
    161161                    $posts[] = $postId;
     
    163163            }
    164164            if( count($posts) == 1 ) {
    165                 // get the post-id to update its data
     165                // get the post-id to update its data.
    166166                $this->data['ID'] = $results->posts[0];
    167                 // get the menu_order to obtain its value during update
     167                // get the menu_order to obtain its value during update.
    168168                $this->data['menu_order'] = get_post_field('menu_order', $results->posts[0]);
    169169            }
    170170            elseif( count($posts) > 1 ) {
    171                 // something is wrong
    172                 // -> delete all entries with this personioId
    173                 // -> it will be saved as new entry after this
     171                // something is wrong.
     172                // -> delete all entries with this personioId.
     173                // -> it will be saved as new entry after this.
    174174                foreach( $posts as $postId ) {
    175175                    wp_delete_post($postId);
    176176                }
    177177
    178                 // set ID to 0
     178                // set ID to 0.
    179179                $this->data['ID'] = 0;
    180180
    181                 // log this event
    182                 if( false !== $this->_debug ) {
    183                     $this->_log->addLog('PersonioId '.$this->data['personioId'].' existed in database multiple times. Cleanup done.', 'error');
    184                 }
     181                // log this event.
     182                $this->_log->addLog('PersonioId '.$this->data['personioId'].' existed in database multiple times. Cleanup done.', 'error');
    185183            }
    186184            else {
    187                 // set ID to 0
     185                // set ID to 0.
    188186                $this->data['ID'] = 0;
    189187            }
    190188        }
    191189        else {
    192             // set ID to 0
     190            // set ID to 0.
    193191            $this->data['ID'] = 0;
    194192        }
  • personio-integration-light/tags/2.4.1/inc/admin.php

    r2962403 r2965729  
    11<?php
     2/**
     3 * File for functions to run in wp-admin only.
     4 *
     5 * @package wp-personio-integration
     6 */
    27
    38use personioIntegration\helper;
     
    1419function personio_integration_add_styles_and_js_admin(): void
    1520{
    16     // admin-specific styles
     21    // admin-specific styles.
    1722    wp_enqueue_style('personio_integration-admin-css',
    1823        plugin_dir_url(WP_PERSONIO_INTEGRATION_PLUGIN) . '/admin/styles.css',
     
    2126    );
    2227
    23     // admin- and backend-styles for attribute-type-output
     28    // admin- and backend-styles for attribute-type-output.
    2429    wp_enqueue_style(
    2530        'personio_integration-styles',
     
    2934    );
    3035
    31     // backend-JS
     36    // backend-JS.
    3237    wp_enqueue_script( 'personio_integration-admin-js',
    3338        plugins_url( '/admin/js.js' , WP_PERSONIO_INTEGRATION_PLUGIN ),
     
    3641    );
    3742
    38     // add php-vars to our js-script
     43    // add php-vars to our js-script.
    3944    wp_localize_script( 'personio_integration-admin-js', 'customJsVars', [
    4045            'ajax_url' => admin_url( 'admin-ajax.php' ),
     
    6772    );
    6873
    69     // embed necessary scripts for progressbar
    70     if( !empty($_GET["post_type"]) && $_GET["post_type"] === WP_PERSONIO_INTEGRATION_CPT ) {
     74    // embed necessary scripts for progressbar.
     75    if( ( !empty($_GET["post_type"]) && $_GET["post_type"] === WP_PERSONIO_INTEGRATION_CPT ) || ( !empty($_GET['import']) && 'personio-integration-importer' === $_GET['import'] ) ) {
    7176        $wp_scripts = wp_scripts();
    7277        wp_enqueue_script('jquery-ui-progressbar');
     
    115120{
    116121    $positionsObj = Positions::get_instance();
    117     remove_filter( 'pre_get_posts', 'personio_integration_set_ordering' );
     122    if( function_exists('personio_integration_set_ordering') ) { remove_filter( 'pre_get_posts', 'personio_integration_set_ordering' ); }
    118123    $positionsList = $positionsObj->getPositions(3, array('sortby' => 'date', 'sort' => 'DESC'));
    119     add_filter( 'pre_get_posts', 'personio_integration_set_ordering' );
     124    if( function_exists('personio_integration_set_ordering') ) { add_filter( 'pre_get_posts', 'personio_integration_set_ordering' ); }
    120125    if( count($positionsList) == 0 ) {
    121126        echo '<p>'.__('Actually there are no positions imported from Personio.', 'wp-personio-integration').'</p>';
     
    900905}
    901906add_filter( 'easy_language_possible_post_types', 'personio_integration_admin_remove_easy_language_support' );
     907
     908/**
     909 * Add custom importer for positions under Tools > Import.
     910 *
     911 * @return void
     912 */
     913function personio_integration_admin_add_importer(): void {
     914    register_importer( 'personio-integration-importer',
     915        __( 'Personio', 'wp-personio-integration' ),
     916        __( 'Import positions from Personio', 'wp-personio-integration' ),
     917        'personio_integration_admin_add_menu_content_importexport'
     918    );
     919}
     920add_action( 'admin_init', 'personio_integration_admin_add_importer' );
  • personio-integration-light/tags/2.4.1/inc/init.php

    r2962403 r2965729  
    33use personioIntegration\helper;
    44use personioIntegration\Import;
     5use personioIntegration\Log;
    56use personioIntegration\Position;
    67use personioIntegration\Positions;
     
    628629    return $_term;
    629630}
     631
     632/**
     633 * Log every deletion of a position.
     634 *
     635 * @param $post_id
     636 * @return void
     637 */
     638function personio_integration_action_to_delete_position( $post_id ): void {
     639    // bail if this is not our own cpt.
     640    if( WP_PERSONIO_INTEGRATION_CPT !== get_post_type($post_id) ) {
     641        return;
     642    }
     643
     644    // get position.
     645    $positions_obj = Positions::get_instance();
     646    $position_obj = $positions_obj->get_position( $post_id );
     647
     648    // log deletion.
     649    $log = new Log();
     650    $log->addLog('Position '.$position_obj->getPersonioId().' has been deleted.', 'success');
     651}
     652add_action( 'before_delete_post', 'personio_integration_action_to_delete_position', 10, 1 );
  • personio-integration-light/tags/2.4.1/inc/settings/import.php

    r2903217 r2965729  
    44use personioIntegration\helper;
    55use personioIntegration\Import;
     6use personioIntegration\Log;
    67
    78/**
     
    172173    check_ajax_referer( 'wp-personio-integration-delete', 'nonce' );
    173174
    174     // do not delete positions if import is running atm
     175    // do not delete positions if import is running atm.
    175176    if( get_option(WP_PERSONIO_INTEGRATION_IMPORT_RUNNING, 0 ) == 0 ) {
    176         // delete positions
    177         (new cli())->deletePositions();
    178 
    179         // add hint
     177        // delete positions.
     178        $user = wp_get_current_user();
     179        (new cli())->deletePositions( array( 'Delete all positions button', ' by '.$user->display_name ) );
     180
     181        // add hint.
    180182        set_transient('personio_integration_delete_run', 1);
    181183    }
     
    184186    }
    185187
    186     // redirect user
     188    // redirect user.
    187189    wp_redirect($_SERVER['HTTP_REFERER']);
    188190}
  • personio-integration-light/tags/2.4.1/languages/wp-personio-integration-de_DE-60918b809a41223430f43d8c337e4241.json

    r2962403 r2965729  
    1 {"translation-revision-date":"2023-09-01 15:43+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/list\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"select-box":["Auswahl-Box"],"list of links":["Linkliste"],"date":["Datum"],"Personio Positions":["Personio Stellen"],"amount":["Anzahl"],"ascending":["aufsteigend"],"descending":["absteigend"],"Sort by":["Sortieren nach"],"title":["Titel"],"Group by":["Gruppieren nach"],"Show title":["Zeige Titel an"],"Settings":["Einstellungen"],"Choose details":["W\u00e4hle Stellendetails"],"Filter":["Filter"],"Choose filter":["W\u00e4hle Filter"],"Provides a Gutenberg Block to show a list of positions provided by Personio.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Stellen von Personio bereit."],"Show filter":["Zeige Filter an"],"Type of filter":["Filter-Typ"],"Sort direction":["Sortierrichtung"],"Link title":["Verlinke den Titel"],"show excerpt":["zeige Stellendetails"],"View content":["Zeige Inhalt an"],"View application link":["Zeige Link zum Bewerbungsformular an"]}}}
     1{"translation-revision-date":"2023-09-12 10:27+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/list\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"select-box":["Auswahl-Box"],"list of links":["Linkliste"],"date":["Datum"],"Personio Positions":["Personio Stellen"],"amount":["Anzahl"],"ascending":["aufsteigend"],"descending":["absteigend"],"Sort by":["Sortieren nach"],"title":["Titel"],"Group by":["Gruppieren nach"],"Show title":["Zeige Titel an"],"Settings":["Einstellungen"],"Choose details":["W\u00e4hle Stellendetails"],"Filter":["Filter"],"Choose filter":["W\u00e4hle Filter"],"Provides a Gutenberg Block to show a list of positions provided by Personio.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Stellen von Personio bereit."],"Show filter":["Zeige Filter an"],"Type of filter":["Filter-Typ"],"Sort direction":["Sortierrichtung"],"Link title":["Verlinke den Titel"],"show excerpt":["zeige Stellendetails"],"View content":["Zeige Inhalt an"],"View application link":["Zeige Link zum Bewerbungsformular an"]}}}
  • personio-integration-light/tags/2.4.1/languages/wp-personio-integration-de_DE-90f17078fbe60cc40854b0ced7af8520.json

    r2962403 r2965729  
    1 {"translation-revision-date":"2023-09-01 15:43+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/application-button\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Personio Application link":["Personio Bewerbungslink"],"Provides a Gutenberg Block to show the application button for single position.":["Stellt einen Gutenberg-Block zur Verf\u00fcgung, um den Bewerbungslink f\u00fcr eine einzelne Stelle anzuzeigen."]}}}
     1{"translation-revision-date":"2023-09-12 10:27+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/application-button\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Personio Application link":["Personio Bewerbungslink"],"Provides a Gutenberg Block to show the application button for single position.":["Stellt einen Gutenberg-Block zur Verf\u00fcgung, um den Bewerbungslink f\u00fcr eine einzelne Stelle anzuzeigen."]}}}
  • personio-integration-light/tags/2.4.1/languages/wp-personio-integration-de_DE-ae5917978e5cc73b9f3c2617ad34a276.json

    r2962403 r2965729  
    1 {"translation-revision-date":"2023-09-01 15:43+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/filter-list\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Filter":["Filter"],"Personio List Filter":["Personio Listenfilter"],"Provides a Gutenberg block to show filter as link-based dropdown-list for Personio Positions.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Links zu Filtern von Stellen von Personio bereit."],"Choose filter":["W\u00e4hle Filter"],"Hide filter title":["Verstecke den Filtertitel"],"Hide reset link":["Verstecke den Zur\u00fccksetzen-Link"],"Space between filters":["Abstand zwischen den Filtern"]}}}
     1{"translation-revision-date":"2023-09-12 10:27+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/filter-list\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Filter":["Filter"],"Personio List Filter":["Personio Listenfilter"],"Provides a Gutenberg block to show filter as link-based dropdown-list for Personio Positions.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Links zu Filtern von Stellen von Personio bereit."],"Choose filter":["W\u00e4hle Filter"],"Hide filter title":["Verstecke den Filtertitel"],"Hide reset link":["Verstecke den Zur\u00fccksetzen-Link"],"Space between filters":["Abstand zwischen den Filtern"]}}}
  • personio-integration-light/tags/2.4.1/languages/wp-personio-integration-de_DE-bf0a71f47c0263b0b996e02116fd7e15.json

    r2962403 r2965729  
    1 {"translation-revision-date":"2023-09-01 15:43+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/filter-select\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Filter":["Filter"],"Choose filter":["W\u00e4hle Filter"],"Hide filter title":["Verstecke den Filtertitel"],"Hide reset link":["Verstecke den Zur\u00fccksetzen-Link"],"Personio Select Filter":["Personio Select-Filter"],"Provides a Gutenberg block to show filter as dropdown-list for Personio Positions.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Select-Boxen zu Filtern von Stellen von Personio bereit."],"Hide submit button":["Verstecke den Absenden-Button"]}}}
     1{"translation-revision-date":"2023-09-12 10:27+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/filter-select\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Filter":["Filter"],"Choose filter":["W\u00e4hle Filter"],"Hide filter title":["Verstecke den Filtertitel"],"Hide reset link":["Verstecke den Zur\u00fccksetzen-Link"],"Personio Select Filter":["Personio Select-Filter"],"Provides a Gutenberg block to show filter as dropdown-list for Personio Positions.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Select-Boxen zu Filtern von Stellen von Personio bereit."],"Hide submit button":["Verstecke den Absenden-Button"]}}}
  • personio-integration-light/tags/2.4.1/languages/wp-personio-integration-de_DE-e45331e79bc58afa309b9291e6555a16.json

    r2962403 r2965729  
    1 {"translation-revision-date":"2023-09-01 15:43+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/show\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"link title":["verlinke den Titel"],"Personio Position":["Personio Stelle"],"Select position":["Anzuzeigende Stelle w\u00e4hlen"],"Settings":["Einstellungen"],"recruiting category":["Kategorie"],"schedule":["Arbeitszeit"],"office":["Standort"],"department":["Abteilung"],"seniority":["Dienstalter"],"experience":["Berufserfahrung"],"occupation":["Besch\u00e4ftigung"],"Please choose":["Bitte w\u00e4hlen"],"Choose details":["W\u00e4hle Stellendetails"],"show excerpt":["zeige Stellendetails"],"Provides a Gutenberg Block to show a position provided by personio.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Stellen von Personio bereit."],"show title":["zeige Titel an"],"view content":["zeige Inhalt an"],"view application link":["zeige Link zum Bewerbungsformular an"]}}}
     1{"translation-revision-date":"2023-09-12 10:27+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/show\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"link title":["verlinke den Titel"],"Personio Position":["Personio Stelle"],"Select position":["Anzuzeigende Stelle w\u00e4hlen"],"Settings":["Einstellungen"],"Please choose":["Bitte w\u00e4hlen"],"Choose details":["W\u00e4hle Stellendetails"],"Category":["Kategorie"],"Contract type":["Vertragstyp"],"Location":["Standort"],"Department":["Abteilung"],"Experience":["Erfahrung"],"Years of experience":["Berufserfahrung in Jahren"],"Job type":["Stellentyp"],"show excerpt":["zeige Stellendetails"],"Provides a Gutenberg Block to show a position provided by personio.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Stellen von Personio bereit."],"show title":["zeige Titel an"],"view content":["zeige Inhalt an"],"view application link":["zeige Link zum Bewerbungsformular an"]}}}
  • personio-integration-light/tags/2.4.1/languages/wp-personio-integration-de_DE.po

    r2962403 r2965729  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WP Personio Integration Light 2.4.0\n"
     5"Project-Id-Version: WP Personio Integration Light 2.4.1\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/personio-"
    77"integration-light\n"
    8 "POT-Creation-Date: 2023-09-01T15:42:37+02:00\n"
    9 "PO-Revision-Date: 2023-09-01 15:43+0200\n"
     8"POT-Creation-Date: 2023-09-12T10:25:58+02:00\n"
     9"PO-Revision-Date: 2023-09-12 10:27+0200\n"
    1010"Last-Translator: \n"
    1111"Language-Team: \n"
     
    8282#. translators: %1$s is replaced with "string"
    8383#: classes/class-helper.php:91 classes/class-helper.php:148
    84 #: classes/class-helper.php:171 inc/admin.php:47 inc/settings/import.php:200
     84#: classes/class-helper.php:171 inc/admin.php:52 inc/settings/import.php:202
    8585msgid "Run import"
    8686msgstr "Führe Import jetzt aus"
    8787
    8888#. translators: %1$s is replaced with "string", %2$s is replaced with "string"
    89 #: classes/class-helper.php:98 inc/admin.php:53
     89#: classes/class-helper.php:98 inc/admin.php:58
    9090msgid ""
    9191"<strong>The import has been manually run.</strong> Please check the list of "
     
    616616
    617617#. translators: %1$s will be replaced by the name of a language, %2$d will be replaced by HTTP-Status (like 404)
    618 #: classes/class-import.php:194
     618#: classes/class-import.php:204
    619619msgid ""
    620620"Personio URL for language %1$s not available. Returned HTTP-Status %2$d. "
     
    625625"erreichbar ist."
    626626
    627 #: classes/class-import.php:288
     627#: classes/class-import.php:298
    628628msgid "Error during Personio Positions Import"
    629629msgstr "Fehler beim Personio Positions Import"
    630630
    631 #: classes/class-import.php:289
     631#: classes/class-import.php:299
    632632msgid ""
    633633"The following error occurred when importing positions provided by Personio:"
     
    636636"folgender Fehler aufgetreten:"
    637637
    638 #: classes/class-import.php:290
     638#: classes/class-import.php:300
    639639msgid "Sent by the plugin Personio Integration"
    640640msgstr "Gesendet vom Plugin Personio Integration"
     
    667667"Stellt ein Widget zur Verfügung, um eine Liste der von Stellen anzuzeigen."
    668668
    669 #: classes/class-positionswidget.php:24 inc/init.php:303
     669#: classes/class-positionswidget.php:24 inc/init.php:304
    670670#: blocks/list/build/index.js:1
    671671msgid "Personio Positions"
     
    692692msgstr "Sortieren nach"
    693693
    694 #: classes/class-positionswidget.php:56 inc/init.php:364
     694#: classes/class-positionswidget.php:56 inc/init.php:365
    695695#: blocks/list/build/index.js:1
    696696msgid "title"
     
    775775msgstr "Gibt deine offenen Stellen aus."
    776776
    777 #: inc/admin.php:42
     777#: inc/admin.php:47
    778778msgid "Get Personio Integration Pro"
    779779msgstr "Get Personio Integration Pro"
    780780
    781 #: inc/admin.php:46
     781#: inc/admin.php:51
    782782msgid "Reset sorting"
    783783msgstr "Sortierung zurücksetzen"
    784784
    785 #: inc/admin.php:48
     785#: inc/admin.php:53
    786786msgid "Import is running"
    787787msgstr "Import läuft aktuell"
    788788
    789 #: inc/admin.php:49
     789#: inc/admin.php:54
    790790msgid "Please wait"
    791791msgstr "Bitte warten"
    792792
    793 #: inc/admin.php:50 inc/settings/import.php:201
     793#: inc/admin.php:55 inc/settings/import.php:203
    794794msgid ""
    795795"Performing the import could take a few minutes. If a timeout occurs, a "
     
    801801"möglich. Dann sollte der automatische Import verwendet werden."
    802802
    803 #: inc/admin.php:65
     803#: inc/admin.php:70
    804804msgid "OK"
    805805msgstr "OK"
    806806
    807 #: inc/admin.php:100
     807#: inc/admin.php:105
    808808msgid "Positions imported from Personio"
    809809msgstr "Von Personio importierte Stellen"
    810810
    811 #: inc/admin.php:121
     811#: inc/admin.php:126
    812812msgid "Actually there are no positions imported from Personio."
    813813msgstr "Derzeit gibt es keine aus Personio importierten Stellen."
    814814
    815815#. translators: %1$d will be replaced by the count of positions
    816 #: inc/admin.php:137
     816#: inc/admin.php:142
    817817msgid "Show all %1$d positions"
    818818msgstr "Zeige alle %1$d Stellen"
    819819
    820 #: inc/admin.php:194
     820#: inc/admin.php:199
    821821msgid "Dismiss this notice."
    822822msgstr "Hinweis ausblenden."
    823823
    824 #: inc/admin.php:224 inc/admin.php:810
     824#: inc/admin.php:229 inc/admin.php:815
    825825msgid "PersonioID"
    826826msgstr "PersonioID"
    827827
    828 #: inc/admin.php:272 inc/settings/settings.php:81
     828#: inc/admin.php:277 inc/settings/settings.php:81
    829829#: blocks/details/build/index.js:1 blocks/list/build/index.js:1
    830830#: blocks/show/build/index.js:1
     
    832832msgstr "Einstellungen"
    833833
    834 #: inc/admin.php:359
     834#: inc/admin.php:364
    835835msgid "Edit"
    836836msgstr "Bearbeiten"
    837837
    838 #: inc/admin.php:799
     838#: inc/admin.php:804
    839839msgid "Show Personio position data"
    840840msgstr "Zeige Daten dieser Stelle"
    841841
    842 #: inc/admin.php:811
     842#: inc/admin.php:816
    843843msgid "Title"
    844844msgstr "Titel"
    845845
    846 #: inc/admin.php:812 blocks/description/build/index.js:1
     846#: inc/admin.php:817 blocks/description/build/index.js:1
    847847#: blocks/description/src/index.js:37
    848848msgid "Description"
     
    850850
    851851#. translators: %1$s will be replaced by the URL for Personio
    852 #: inc/admin.php:832
     852#: inc/admin.php:837
    853853msgid ""
    854854"At this point we show you the imported data of your open position <i>%1$s</"
     
    860860"target=\"_blank\">Personio-Konto (öffnet neues Fenster)</a>."
    861861
    862 #: inc/admin.php:883
     862#: inc/admin.php:888
    863863msgid "No data"
    864864msgstr "Keine Daten"
     865
     866#: inc/admin.php:915
     867msgid "Personio"
     868msgstr "Personio"
     869
     870#: inc/admin.php:916
     871msgid "Import positions from Personio"
     872msgstr "Import von Stellen von Personio"
    865873
    866874#: inc/frontend.php:53
     
    872880msgstr "Die gegebene Id ist keine gültige Stellen-Id."
    873881
    874 #: inc/init.php:32 inc/init.php:34
     882#: inc/init.php:33 inc/init.php:35
    875883#: templates/archive-personioposition-shortcode.php:36
    876884msgid "Positions"
    877885msgstr "Stellen"
    878886
    879 #: inc/init.php:33 templates/single-personioposition-shortcode.php:17
     887#: inc/init.php:34 templates/single-personioposition-shortcode.php:17
    880888msgid "Position"
    881889msgstr "Stelle"
    882890
    883 #: inc/init.php:35
     891#: inc/init.php:36
    884892msgid "Parent Position"
    885893msgstr "Eltern Stelle"
    886894
    887 #: inc/init.php:36
     895#: inc/init.php:37
    888896msgid "All Positions"
    889897msgstr "Alle offene Stellen"
    890898
    891 #: inc/init.php:37
     899#: inc/init.php:38
    892900msgid "View Position in frontend"
    893901msgstr "Zeige Stelle im Frontend"
    894902
    895 #: inc/init.php:38
     903#: inc/init.php:39
    896904msgid "View Positions"
    897905msgstr "Zeige Stellen an"
    898906
    899 #: inc/init.php:39
     907#: inc/init.php:40
    900908msgid "View Position in backend"
    901909msgstr "Zeige Stelle im Backend"
    902910
    903 #: inc/init.php:40
     911#: inc/init.php:41
    904912msgid "Search Position"
    905913msgstr "Suche nach Stellen"
    906914
    907 #: inc/init.php:41
     915#: inc/init.php:42
    908916msgid "Not Found"
    909917msgstr "Nicht gefunden"
    910918
    911 #: inc/init.php:42
     919#: inc/init.php:43
    912920msgid "Not found in Trash"
    913921msgstr "In Papierkorb nicht gefunden"
    914922
    915 #: inc/init.php:268
     923#: inc/init.php:269
    916924msgid "every 5th Minute"
    917925msgstr "jede 5. Minute"
    918926
    919 #: inc/init.php:343 blocks/details/build/index.js:1
    920 #: blocks/show/build/index.js:1
     927#: inc/init.php:344
    921928msgid "recruiting category"
    922929msgstr "Kategorie"
    923930
    924 #: inc/init.php:344 blocks/details/build/index.js:1
    925 #: blocks/show/build/index.js:1
     931#: inc/init.php:345
    926932msgid "schedule"
    927933msgstr "Arbeitszeit"
    928934
    929 #: inc/init.php:345 blocks/details/build/index.js:1
    930 #: blocks/show/build/index.js:1
     935#: inc/init.php:346
    931936msgid "office"
    932937msgstr "Standort"
    933938
    934 #: inc/init.php:346 blocks/details/build/index.js:1
    935 #: blocks/show/build/index.js:1
     939#: inc/init.php:347
    936940msgid "department"
    937941msgstr "Abteilung"
    938942
    939 #: inc/init.php:347
     943#: inc/init.php:348
    940944msgid "employment types"
    941945msgstr "Anstellungsarten"
    942946
    943 #: inc/init.php:348 blocks/details/build/index.js:1
    944 #: blocks/show/build/index.js:1
     947#: inc/init.php:349
    945948msgid "seniority"
    946949msgstr "Dienstalter"
    947950
    948 #: inc/init.php:349 blocks/details/build/index.js:1
    949 #: blocks/show/build/index.js:1
     951#: inc/init.php:350
    950952msgid "experience"
    951953msgstr "Berufserfahrung"
    952954
    953 #: inc/init.php:350 blocks/details/build/index.js:1
    954 #: blocks/show/build/index.js:1
     955#: inc/init.php:351
    955956msgid "occupation"
    956957msgstr "Beschäftigung"
    957958
    958 #: inc/init.php:365
     959#: inc/init.php:366
    959960msgid "details"
    960961msgstr "Stellendetails"
    961962
    962 #: inc/init.php:366
     963#: inc/init.php:367
    963964msgid "content"
    964965msgstr "Inhalt"
    965966
    966 #: inc/init.php:367
     967#: inc/init.php:368
    967968msgid "application link"
    968969msgstr "Link zum Bewerbungsformular"
    969970
    970 #: inc/init.php:556 templates/parts/term-filter-select.php:15
     971#: inc/init.php:557 templates/parts/term-filter-select.php:15
    971972#: blocks/show/build/index.js:1
    972973msgid "Please choose"
     
    11201121msgstr "Bitte eine gültige URL eintragen."
    11211122
    1122 #: inc/settings/import.php:21
     1123#: inc/settings/import.php:22
    11231124msgid "Import"
    11241125msgstr "Import"
    11251126
    1126 #: inc/settings/import.php:66
     1127#: inc/settings/import.php:67
    11271128msgid "Import of positions from Personio"
    11281129msgstr "Import von Stellen von Personio"
    11291130
    1130 #: inc/settings/import.php:74
     1131#: inc/settings/import.php:75
    11311132msgid "Start import now"
    11321133msgstr "Starte Import jetzt"
    11331134
    1134 #: inc/settings/import.php:87
     1135#: inc/settings/import.php:88
    11351136msgid "Delete positions"
    11361137msgstr "Stellen löschen"
    11371138
    1138 #: inc/settings/import.php:100
     1139#: inc/settings/import.php:101
    11391140msgid "Enable automatic import"
    11401141msgstr "Aktiviere automatischen Import"
    11411142
    1142 #: inc/settings/import.php:107
     1143#: inc/settings/import.php:108
    11431144msgid ""
    11441145"If enabled, new positions stored in Personio will be retrieved automatically "
     
    11501151
    11511152#. translators: %1$s is replaced with "string"
    1152 #: inc/settings/import.php:110
     1153#: inc/settings/import.php:111
    11531154msgid ""
    11541155"Use more import options with the %s. Among other things, you get the "
     
    11601161"sehr große Stellen-Listen durchzuführen."
    11611162
    1162 #: inc/settings/import.php:201 inc/settings/import.php:233
     1163#: inc/settings/import.php:203 inc/settings/import.php:235
    11631164msgid "Hint"
    11641165msgstr "Hinweis"
    11651166
    1166 #: inc/settings/import.php:206
     1167#: inc/settings/import.php:208
    11671168msgid "The import is already running. Please wait some moments."
    11681169msgstr "Der Import läuft aktuell. Bitte einen Moment warten."
    11691170
    1170 #: inc/settings/import.php:218
     1171#: inc/settings/import.php:220
    11711172msgid "Cancel running import"
    11721173msgstr "Laufenden Import abbrechen"
    11731174
    1174 #: inc/settings/import.php:232
     1175#: inc/settings/import.php:234
    11751176msgid "Delete all positions"
    11761177msgstr "Entferne alle Stellen"
    11771178
    1178 #: inc/settings/import.php:233
     1179#: inc/settings/import.php:235
    11791180msgid "Removes all actual imported positions."
    11801181msgstr "Entfernt alle aktuell importierten Stellen."
    11811182
    1182 #: inc/settings/import.php:237
     1183#: inc/settings/import.php:239
    11831184msgid "There are currently no imported positions."
    11841185msgstr "Es sind aktuell keine Stellen importiert."
     
    13911392"Stellt einen Gutenberg-Block zur Ausgabe einer einzelnen Stelle, verwaltet "
    13921393"bei Personio, bereit."
     1394
     1395#: blocks/details/build/index.js:1 blocks/show/build/index.js:1
     1396msgid "Category"
     1397msgstr "Kategorie"
     1398
     1399#: blocks/details/build/index.js:1 blocks/show/build/index.js:1
     1400msgid "Contract type"
     1401msgstr "Vertragstyp"
     1402
     1403#: blocks/details/build/index.js:1 blocks/show/build/index.js:1
     1404msgid "Location"
     1405msgstr "Standort"
     1406
     1407#: blocks/details/build/index.js:1 blocks/show/build/index.js:1
     1408msgid "Department"
     1409msgstr "Abteilung"
     1410
     1411#: blocks/details/build/index.js:1 blocks/show/build/index.js:1
     1412msgid "Experience"
     1413msgstr "Erfahrung"
     1414
     1415#: blocks/details/build/index.js:1 blocks/show/build/index.js:1
     1416msgid "Years of experience"
     1417msgstr "Berufserfahrung in Jahren"
     1418
     1419#: blocks/details/build/index.js:1 blocks/show/build/index.js:1
     1420msgid "Job type"
     1421msgstr "Stellentyp"
    13931422
    13941423#: blocks/details/build/index.js:1
  • personio-integration-light/tags/2.4.1/languages/wp-personio-integration-de_DE_formal-60918b809a41223430f43d8c337e4241.json

    r2962403 r2965729  
    1 {"translation-revision-date":"2023-09-01 15:43+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/list\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"select-box":["Auswahl-Box"],"list of links":["Linkliste"],"date":["Datum"],"Personio Positions":["Personio Stellen"],"amount":["Anzahl"],"ascending":["aufsteigend"],"descending":["absteigend"],"Sort by":["Sortieren nach"],"title":["Titel"],"Group by":["Gruppieren nach"],"Show title":["Zeige Titel an"],"Settings":["Einstellungen"],"Choose details":["W\u00e4hle Stellendetails"],"Filter":["Filter"],"Choose filter":["W\u00e4hle Filter-Typ"],"Provides a Gutenberg Block to show a list of positions provided by Personio.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Stellen von Personio bereit."],"Show filter":["Zeige Filter an"],"Type of filter":["Filter-Typ"],"Sort direction":["Sortierrichtung"],"Link title":["Verlinke den Titel"],"show excerpt":["zeige Stellendetails"],"View content":["Zeige Inhalt an"],"View application link":["Zeige Link zum Bewerbungsformular an"]}}}
     1{"translation-revision-date":"2023-09-12 10:27+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/list\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"select-box":["Auswahl-Box"],"list of links":["Linkliste"],"date":["Datum"],"Personio Positions":["Personio Stellen"],"amount":["Anzahl"],"ascending":["aufsteigend"],"descending":["absteigend"],"Sort by":["Sortieren nach"],"title":["Titel"],"Group by":["Gruppieren nach"],"Show title":["Zeige Titel an"],"Settings":["Einstellungen"],"Choose details":["W\u00e4hle Stellendetails"],"Filter":["Filter"],"Choose filter":["W\u00e4hle Filter-Typ"],"Provides a Gutenberg Block to show a list of positions provided by Personio.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Stellen von Personio bereit."],"Show filter":["Zeige Filter an"],"Type of filter":["Filter-Typ"],"Sort direction":["Sortierrichtung"],"Link title":["Verlinke den Titel"],"show excerpt":["zeige Stellendetails"],"View content":["Zeige Inhalt an"],"View application link":["Zeige Link zum Bewerbungsformular an"]}}}
  • personio-integration-light/tags/2.4.1/languages/wp-personio-integration-de_DE_formal-90f17078fbe60cc40854b0ced7af8520.json

    r2962403 r2965729  
    1 {"translation-revision-date":"2023-09-01 15:43+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/application-button\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Personio Application link":["Personio Bewerbungslink"],"Provides a Gutenberg Block to show the application button for single position.":["Stellt einen Gutenberg-Block zur Verf\u00fcgung, um den Bewerbungslink f\u00fcr eine einzelne Position anzuzeigen."]}}}
     1{"translation-revision-date":"2023-09-12 10:27+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/application-button\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Personio Application link":["Personio Bewerbungslink"],"Provides a Gutenberg Block to show the application button for single position.":["Stellt einen Gutenberg-Block zur Verf\u00fcgung, um den Bewerbungslink f\u00fcr eine einzelne Position anzuzeigen."]}}}
  • personio-integration-light/tags/2.4.1/languages/wp-personio-integration-de_DE_formal-ae5917978e5cc73b9f3c2617ad34a276.json

    r2962403 r2965729  
    1 {"translation-revision-date":"2023-09-01 15:43+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/filter-list\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Filter":["Filter"],"Personio List Filter":["Personio Listenfilter"],"Provides a Gutenberg block to show filter as link-based dropdown-list for Personio Positions.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Links zu Filtern von Stellen von Personio bereit."],"Choose filter":["W\u00e4hle Filter-Typ"],"Hide filter title":["Verstecke den Filtertitel"],"Hide reset link":["Verstecke den Zur\u00fccksetzen-Link"],"Space between filters":["Abstand zwischen den Filtern"]}}}
     1{"translation-revision-date":"2023-09-12 10:27+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/filter-list\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Filter":["Filter"],"Personio List Filter":["Personio Listenfilter"],"Provides a Gutenberg block to show filter as link-based dropdown-list for Personio Positions.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Links zu Filtern von Stellen von Personio bereit."],"Choose filter":["W\u00e4hle Filter-Typ"],"Hide filter title":["Verstecke den Filtertitel"],"Hide reset link":["Verstecke den Zur\u00fccksetzen-Link"],"Space between filters":["Abstand zwischen den Filtern"]}}}
  • personio-integration-light/tags/2.4.1/languages/wp-personio-integration-de_DE_formal-bf0a71f47c0263b0b996e02116fd7e15.json

    r2962403 r2965729  
    1 {"translation-revision-date":"2023-09-01 15:43+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/filter-select\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Filter":["Filter"],"Choose filter":["W\u00e4hle Filter-Typ"],"Hide filter title":["Verstecke den Filtertitel"],"Hide reset link":["Verstecke den Zur\u00fccksetzen-Link"],"Personio Select Filter":["Personio Select-Filter"],"Provides a Gutenberg block to show filter as dropdown-list for Personio Positions.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Select-Boxen zu Filtern von Stellen von Personio bereit."],"Hide submit button":["Verstecke den Absenden-Button"]}}}
     1{"translation-revision-date":"2023-09-12 10:27+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/filter-select\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Filter":["Filter"],"Choose filter":["W\u00e4hle Filter-Typ"],"Hide filter title":["Verstecke den Filtertitel"],"Hide reset link":["Verstecke den Zur\u00fccksetzen-Link"],"Personio Select Filter":["Personio Select-Filter"],"Provides a Gutenberg block to show filter as dropdown-list for Personio Positions.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Select-Boxen zu Filtern von Stellen von Personio bereit."],"Hide submit button":["Verstecke den Absenden-Button"]}}}
  • personio-integration-light/tags/2.4.1/languages/wp-personio-integration-de_DE_formal-e45331e79bc58afa309b9291e6555a16.json

    r2962403 r2965729  
    1 {"translation-revision-date":"2023-09-01 15:43+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/show\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"link title":["verlinke den Titel"],"Personio Position":["Personio Stelle"],"Select position":["Anzuzeigende Stelle w\u00e4hlen"],"Settings":["Einstellungen"],"recruiting category":["Kategorie"],"schedule":["Arbeitszeit"],"office":["Standort"],"department":["Abteilung"],"seniority":["Dienstalter"],"experience":["Berufserfahrung"],"occupation":["Besch\u00e4ftigung"],"Please choose":["Bitte w\u00e4hlen"],"Choose details":["W\u00e4hle Stellendetails"],"show excerpt":["zeige Stellendetails"],"Provides a Gutenberg Block to show a position provided by personio.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Stellen von Personio bereit."],"show title":["zeige Titel an"],"view content":["zeige Inhalt an"],"view application link":["zeige Link zum Bewerbungsformular an"]}}}
     1{"translation-revision-date":"2023-09-12 10:27+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/show\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"link title":["verlinke den Titel"],"Personio Position":["Personio Stelle"],"Select position":["Anzuzeigende Stelle w\u00e4hlen"],"Settings":["Einstellungen"],"Please choose":["Bitte w\u00e4hlen"],"Choose details":["W\u00e4hle Stellendetails"],"Category":["Kategorie"],"Contract type":["Vertragstyp"],"Location":["Standort"],"Department":["Abteilung"],"Experience":["Erfahrung"],"Years of experience":["Berufserfahrung in Jahren"],"Job type":["Stellentyp"],"show excerpt":["zeige Stellendetails"],"Provides a Gutenberg Block to show a position provided by personio.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Stellen von Personio bereit."],"show title":["zeige Titel an"],"view content":["zeige Inhalt an"],"view application link":["zeige Link zum Bewerbungsformular an"]}}}
  • personio-integration-light/tags/2.4.1/languages/wp-personio-integration-de_DE_formal.po

    r2962403 r2965729  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WP Personio Integration Light 2.4.0\n"
     5"Project-Id-Version: WP Personio Integration Light 2.4.1\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/personio-"
    77"integration-light\n"
    8 "POT-Creation-Date: 2023-09-01T15:42:37+02:00\n"
    9 "PO-Revision-Date: 2023-09-01 15:43+0200\n"
     8"POT-Creation-Date: 2023-09-12T10:25:58+02:00\n"
     9"PO-Revision-Date: 2023-09-12 10:27+0200\n"
    1010"Last-Translator: \n"
    1111"Language-Team: \n"
     
    8282#. translators: %1$s is replaced with "string"
    8383#: classes/class-helper.php:91 classes/class-helper.php:148
    84 #: classes/class-helper.php:171 inc/admin.php:47 inc/settings/import.php:200
     84#: classes/class-helper.php:171 inc/admin.php:52 inc/settings/import.php:202
    8585msgid "Run import"
    8686msgstr "Jetzt Import ausführen"
    8787
    8888#. translators: %1$s is replaced with "string", %2$s is replaced with "string"
    89 #: classes/class-helper.php:98 inc/admin.php:53
     89#: classes/class-helper.php:98 inc/admin.php:58
    9090msgid ""
    9191"<strong>The import has been manually run.</strong> Please check the list of "
     
    618618
    619619#. translators: %1$s will be replaced by the name of a language, %2$d will be replaced by HTTP-Status (like 404)
    620 #: classes/class-import.php:194
     620#: classes/class-import.php:204
    621621msgid ""
    622622"Personio URL for language %1$s not available. Returned HTTP-Status %2$d. "
     
    627627"ist."
    628628
    629 #: classes/class-import.php:288
     629#: classes/class-import.php:298
    630630msgid "Error during Personio Positions Import"
    631631msgstr "Fehler beim Personio Positions Import"
    632632
    633 #: classes/class-import.php:289
     633#: classes/class-import.php:299
    634634msgid ""
    635635"The following error occurred when importing positions provided by Personio:"
     
    638638"folgender Fehler aufgetreten:"
    639639
    640 #: classes/class-import.php:290
     640#: classes/class-import.php:300
    641641msgid "Sent by the plugin Personio Integration"
    642642msgstr "Gesendet vom Plugin Personio Integration"
     
    669669"Stellt ein Widget zur Verfügung, um eine Liste der von Stellen anzuzeigen."
    670670
    671 #: classes/class-positionswidget.php:24 inc/init.php:303
     671#: classes/class-positionswidget.php:24 inc/init.php:304
    672672#: blocks/list/build/index.js:1
    673673msgid "Personio Positions"
     
    694694msgstr "Sortieren nach"
    695695
    696 #: classes/class-positionswidget.php:56 inc/init.php:364
     696#: classes/class-positionswidget.php:56 inc/init.php:365
    697697#: blocks/list/build/index.js:1
    698698msgid "title"
     
    777777msgstr "Gibt deine offenen Stellen aus."
    778778
    779 #: inc/admin.php:42
     779#: inc/admin.php:47
    780780msgid "Get Personio Integration Pro"
    781781msgstr "Get Personio Integration Pro"
    782782
    783 #: inc/admin.php:46
     783#: inc/admin.php:51
    784784msgid "Reset sorting"
    785785msgstr "Sortierung zurücksetzen"
    786786
    787 #: inc/admin.php:48
     787#: inc/admin.php:53
    788788msgid "Import is running"
    789789msgstr "Import läuft"
    790790
    791 #: inc/admin.php:49
     791#: inc/admin.php:54
    792792msgid "Please wait"
    793793msgstr "Bitte warten"
    794794
    795 #: inc/admin.php:50 inc/settings/import.php:201
     795#: inc/admin.php:55 inc/settings/import.php:203
    796796msgid ""
    797797"Performing the import could take a few minutes. If a timeout occurs, a "
     
    803803"möglich. Dann sollte der automatische Import verwendet werden."
    804804
    805 #: inc/admin.php:65
     805#: inc/admin.php:70
    806806msgid "OK"
    807807msgstr "OK"
    808808
    809 #: inc/admin.php:100
     809#: inc/admin.php:105
    810810msgid "Positions imported from Personio"
    811811msgstr "Von Personio importierte Stellen"
    812812
    813 #: inc/admin.php:121
     813#: inc/admin.php:126
    814814msgid "Actually there are no positions imported from Personio."
    815815msgstr "Derzeit gibt es keine aus Personio importierten Stellen."
    816816
    817817#. translators: %1$d will be replaced by the count of positions
    818 #: inc/admin.php:137
     818#: inc/admin.php:142
    819819msgid "Show all %1$d positions"
    820820msgstr "Zeige alle %1$d Stellen"
    821821
    822 #: inc/admin.php:194
     822#: inc/admin.php:199
    823823msgid "Dismiss this notice."
    824824msgstr "Hinweis ausblenden."
    825825
    826 #: inc/admin.php:224 inc/admin.php:810
     826#: inc/admin.php:229 inc/admin.php:815
    827827msgid "PersonioID"
    828828msgstr "PersonioID"
    829829
    830 #: inc/admin.php:272 inc/settings/settings.php:81
     830#: inc/admin.php:277 inc/settings/settings.php:81
    831831#: blocks/details/build/index.js:1 blocks/list/build/index.js:1
    832832#: blocks/show/build/index.js:1
     
    834834msgstr "Einstellungen"
    835835
    836 #: inc/admin.php:359
     836#: inc/admin.php:364
    837837msgid "Edit"
    838838msgstr "Bearbeiten"
    839839
    840 #: inc/admin.php:799
     840#: inc/admin.php:804
    841841msgid "Show Personio position data"
    842842msgstr "Zeige Daten dieser Stelle"
    843843
    844 #: inc/admin.php:811
     844#: inc/admin.php:816
    845845msgid "Title"
    846846msgstr "Titel"
    847847
    848 #: inc/admin.php:812 blocks/description/build/index.js:1
     848#: inc/admin.php:817 blocks/description/build/index.js:1
    849849#: blocks/description/src/index.js:37
    850850msgid "Description"
     
    852852
    853853#. translators: %1$s will be replaced by the URL for Personio
    854 #: inc/admin.php:832
     854#: inc/admin.php:837
    855855msgid ""
    856856"At this point we show you the imported data of your open position <i>%1$s</"
     
    862862"\"%2$s\" target=\"_blank\">Personio-Konto (öffnet neues Fenster)</a>."
    863863
    864 #: inc/admin.php:883
     864#: inc/admin.php:888
    865865msgid "No data"
    866866msgstr "Keine Daten"
     867
     868#: inc/admin.php:915
     869msgid "Personio"
     870msgstr "Personio"
     871
     872#: inc/admin.php:916
     873msgid "Import positions from Personio"
     874msgstr "Import von Stellen von Personio"
    867875
    868876#: inc/frontend.php:53
     
    874882msgstr "Die gegebene Id ist keine gültige Stellen-Id."
    875883
    876 #: inc/init.php:32 inc/init.php:34
     884#: inc/init.php:33 inc/init.php:35
    877885#: templates/archive-personioposition-shortcode.php:36
    878886msgid "Positions"
    879887msgstr "Stellen"
    880888
    881 #: inc/init.php:33 templates/single-personioposition-shortcode.php:17
     889#: inc/init.php:34 templates/single-personioposition-shortcode.php:17
    882890msgid "Position"
    883891msgstr "Stelle"
    884892
    885 #: inc/init.php:35
     893#: inc/init.php:36
    886894msgid "Parent Position"
    887895msgstr "Eltern Stelle"
    888896
    889 #: inc/init.php:36
     897#: inc/init.php:37
    890898msgid "All Positions"
    891899msgstr "Alle offene Stellen"
    892900
    893 #: inc/init.php:37
     901#: inc/init.php:38
    894902msgid "View Position in frontend"
    895903msgstr "Zeige Stelle im Frontend"
    896904
    897 #: inc/init.php:38
     905#: inc/init.php:39
    898906msgid "View Positions"
    899907msgstr "Zeige Stellen an"
    900908
    901 #: inc/init.php:39
     909#: inc/init.php:40
    902910msgid "View Position in backend"
    903911msgstr "Zeige Stelle im Backend"
    904912
    905 #: inc/init.php:40
     913#: inc/init.php:41
    906914msgid "Search Position"
    907915msgstr "Suche nach Stellen"
    908916
    909 #: inc/init.php:41
     917#: inc/init.php:42
    910918msgid "Not Found"
    911919msgstr "Nicht gefunden"
    912920
    913 #: inc/init.php:42
     921#: inc/init.php:43
    914922msgid "Not found in Trash"
    915923msgstr "In Papierkorb nicht gefunden"
    916924
    917 #: inc/init.php:268
     925#: inc/init.php:269
    918926msgid "every 5th Minute"
    919927msgstr "jede 5. Minute"
    920928
    921 #: inc/init.php:343 blocks/details/build/index.js:1
    922 #: blocks/show/build/index.js:1
     929#: inc/init.php:344
    923930msgid "recruiting category"
    924931msgstr "Kategorie"
    925932
    926 #: inc/init.php:344 blocks/details/build/index.js:1
    927 #: blocks/show/build/index.js:1
     933#: inc/init.php:345
    928934msgid "schedule"
    929935msgstr "Arbeitszeit"
    930936
    931 #: inc/init.php:345 blocks/details/build/index.js:1
    932 #: blocks/show/build/index.js:1
     937#: inc/init.php:346
    933938msgid "office"
    934939msgstr "Standort"
    935940
    936 #: inc/init.php:346 blocks/details/build/index.js:1
    937 #: blocks/show/build/index.js:1
     941#: inc/init.php:347
    938942msgid "department"
    939943msgstr "Abteilung"
    940944
    941 #: inc/init.php:347
     945#: inc/init.php:348
    942946msgid "employment types"
    943947msgstr "Anstellungsarten"
    944948
    945 #: inc/init.php:348 blocks/details/build/index.js:1
    946 #: blocks/show/build/index.js:1
     949#: inc/init.php:349
    947950msgid "seniority"
    948951msgstr "Dienstalter"
    949952
    950 #: inc/init.php:349 blocks/details/build/index.js:1
    951 #: blocks/show/build/index.js:1
     953#: inc/init.php:350
    952954msgid "experience"
    953955msgstr "Berufserfahrung"
    954956
    955 #: inc/init.php:350 blocks/details/build/index.js:1
    956 #: blocks/show/build/index.js:1
     957#: inc/init.php:351
    957958msgid "occupation"
    958959msgstr "Beschäftigung"
    959960
    960 #: inc/init.php:365
     961#: inc/init.php:366
    961962msgid "details"
    962963msgstr "Stellendetails"
    963964
    964 #: inc/init.php:366
     965#: inc/init.php:367
    965966msgid "content"
    966967msgstr "Inhalt"
    967968
    968 #: inc/init.php:367
     969#: inc/init.php:368
    969970msgid "application link"
    970971msgstr "Link zum Bewerbungsformular"
    971972
    972 #: inc/init.php:556 templates/parts/term-filter-select.php:15
     973#: inc/init.php:557 templates/parts/term-filter-select.php:15
    973974#: blocks/show/build/index.js:1
    974975msgid "Please choose"
     
    11221123msgstr "Bitte eine gültige URL eintragen."
    11231124
    1124 #: inc/settings/import.php:21
     1125#: inc/settings/import.php:22
    11251126msgid "Import"
    11261127msgstr "Import"
    11271128
    1128 #: inc/settings/import.php:66
     1129#: inc/settings/import.php:67
    11291130msgid "Import of positions from Personio"
    11301131msgstr "Import von Stellen von Personio"
    11311132
    1132 #: inc/settings/import.php:74
     1133#: inc/settings/import.php:75
    11331134msgid "Start import now"
    11341135msgstr "Starte Import jetzt"
    11351136
    1136 #: inc/settings/import.php:87
     1137#: inc/settings/import.php:88
    11371138msgid "Delete positions"
    11381139msgstr "Stellen löschen"
    11391140
    1140 #: inc/settings/import.php:100
     1141#: inc/settings/import.php:101
    11411142msgid "Enable automatic import"
    11421143msgstr "Aktiviere automatischen Import"
    11431144
    1144 #: inc/settings/import.php:107
     1145#: inc/settings/import.php:108
    11451146msgid ""
    11461147"If enabled, new positions stored in Personio will be retrieved automatically "
     
    11521153
    11531154#. translators: %1$s is replaced with "string"
    1154 #: inc/settings/import.php:110
     1155#: inc/settings/import.php:111
    11551156msgid ""
    11561157"Use more import options with the %s. Among other things, you get the "
     
    11621163"sehr große Stellen-Listen durchzuführen."
    11631164
    1164 #: inc/settings/import.php:201 inc/settings/import.php:233
     1165#: inc/settings/import.php:203 inc/settings/import.php:235
    11651166msgid "Hint"
    11661167msgstr "Hinweis"
    11671168
    1168 #: inc/settings/import.php:206
     1169#: inc/settings/import.php:208
    11691170msgid "The import is already running. Please wait some moments."
    11701171msgstr "Ein Import läuft aktuell. Bitte warten Sie einen Moment."
    11711172
    1172 #: inc/settings/import.php:218
     1173#: inc/settings/import.php:220
    11731174msgid "Cancel running import"
    11741175msgstr "Laufenden Import abbrechen"
    11751176
    1176 #: inc/settings/import.php:232
     1177#: inc/settings/import.php:234
    11771178msgid "Delete all positions"
    11781179msgstr "Entferne alle Stellen"
    11791180
    1180 #: inc/settings/import.php:233
     1181#: inc/settings/import.php:235
    11811182msgid "Removes all actual imported positions."
    11821183msgstr "Entfernt alle aktuell importierten Stellen."
    11831184
    1184 #: inc/settings/import.php:237
     1185#: inc/settings/import.php:239
    11851186msgid "There are currently no imported positions."
    11861187msgstr "Es sind aktuell keine Stellen importiert."
     
    13931394"Stellt einen Gutenberg-Block zur Ausgabe einer einzelnen Stelle, verwaltet "
    13941395"bei Personio, bereit."
     1396
     1397#: blocks/details/build/index.js:1 blocks/show/build/index.js:1
     1398msgid "Category"
     1399msgstr "Kategorie"
     1400
     1401#: blocks/details/build/index.js:1 blocks/show/build/index.js:1
     1402msgid "Contract type"
     1403msgstr "Vertragstyp"
     1404
     1405#: blocks/details/build/index.js:1 blocks/show/build/index.js:1
     1406msgid "Location"
     1407msgstr "Standort"
     1408
     1409#: blocks/details/build/index.js:1 blocks/show/build/index.js:1
     1410msgid "Department"
     1411msgstr "Abteilung"
     1412
     1413#: blocks/details/build/index.js:1 blocks/show/build/index.js:1
     1414msgid "Experience"
     1415msgstr "Erfahrung"
     1416
     1417#: blocks/details/build/index.js:1 blocks/show/build/index.js:1
     1418msgid "Years of experience"
     1419msgstr "Berufserfahrung in Jahren"
     1420
     1421#: blocks/details/build/index.js:1 blocks/show/build/index.js:1
     1422msgid "Job type"
     1423msgstr "Stellentyp"
    13951424
    13961425#: blocks/details/build/index.js:1
  • personio-integration-light/tags/2.4.1/languages/wp-personio-integration.pot

    r2962403 r2965729  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Personio Integration Light 2.4.0\n"
     5"Project-Id-Version: Personio Integration Light 2.4.1\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/personio-integration-light\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2023-09-01T15:42:37+02:00\n"
     12"POT-Creation-Date: 2023-09-12T10:25:58+02:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.6.0\n"
     
    8484#: classes/class-helper.php:148
    8585#: classes/class-helper.php:171
    86 #: inc/admin.php:47
    87 #: inc/settings/import.php:200
     86#: inc/admin.php:52
     87#: inc/settings/import.php:202
    8888msgid "Run import"
    8989msgstr ""
     
    9191#. translators: %1$s is replaced with "string", %2$s is replaced with "string"
    9292#: classes/class-helper.php:98
    93 #: inc/admin.php:53
     93#: inc/admin.php:58
    9494msgid "<strong>The import has been manually run.</strong> Please check the list of positions <a href=\"%1$s\">in backend</a> and <a href=\"%2$s\">frontend</a>."
    9595msgstr ""
     
    521521
    522522#. translators: %1$s will be replaced by the name of a language, %2$d will be replaced by HTTP-Status (like 404)
    523 #: classes/class-import.php:194
     523#: classes/class-import.php:204
    524524msgid "Personio URL for language %1$s not available. Returned HTTP-Status %2$d. Please check the URL you configured and if it is available."
    525525msgstr ""
    526526
    527 #: classes/class-import.php:288
     527#: classes/class-import.php:298
    528528msgid "Error during Personio Positions Import"
    529529msgstr ""
    530530
    531 #: classes/class-import.php:289
     531#: classes/class-import.php:299
    532532msgid "The following error occurred when importing positions provided by Personio:"
    533533msgstr ""
    534534
    535 #: classes/class-import.php:290
     535#: classes/class-import.php:300
    536536msgid "Sent by the plugin Personio Integration"
    537537msgstr ""
     
    565565
    566566#: classes/class-positionswidget.php:24
    567 #: inc/init.php:303
     567#: inc/init.php:304
    568568#: blocks/list/build/index.js:1
    569569msgid "Personio Positions"
     
    595595
    596596#: classes/class-positionswidget.php:56
    597 #: inc/init.php:364
     597#: inc/init.php:365
    598598#: blocks/list/build/index.js:1
    599599msgid "title"
     
    697697msgstr ""
    698698
    699 #: inc/admin.php:42
     699#: inc/admin.php:47
    700700msgid "Get Personio Integration Pro"
    701701msgstr ""
    702702
    703 #: inc/admin.php:46
     703#: inc/admin.php:51
    704704msgid "Reset sorting"
    705705msgstr ""
    706706
    707 #: inc/admin.php:48
     707#: inc/admin.php:53
    708708msgid "Import is running"
    709709msgstr ""
    710710
    711 #: inc/admin.php:49
     711#: inc/admin.php:54
    712712msgid "Please wait"
    713713msgstr ""
    714714
    715 #: inc/admin.php:50
    716 #: inc/settings/import.php:201
     715#: inc/admin.php:55
     716#: inc/settings/import.php:203
    717717msgid "Performing the import could take a few minutes. If a timeout occurs, a manual import is not possible this way. Then the automatic import should be used."
    718718msgstr ""
    719719
    720 #: inc/admin.php:65
     720#: inc/admin.php:70
    721721msgid "OK"
    722722msgstr ""
    723723
    724 #: inc/admin.php:100
     724#: inc/admin.php:105
    725725msgid "Positions imported from Personio"
    726726msgstr ""
    727727
    728 #: inc/admin.php:121
     728#: inc/admin.php:126
    729729msgid "Actually there are no positions imported from Personio."
    730730msgstr ""
    731731
    732732#. translators: %1$d will be replaced by the count of positions
    733 #: inc/admin.php:137
     733#: inc/admin.php:142
    734734msgid "Show all %1$d positions"
    735735msgstr ""
    736736
    737 #: inc/admin.php:194
     737#: inc/admin.php:199
    738738msgid "Dismiss this notice."
    739739msgstr ""
    740740
    741 #: inc/admin.php:224
    742 #: inc/admin.php:810
     741#: inc/admin.php:229
     742#: inc/admin.php:815
    743743msgid "PersonioID"
    744744msgstr ""
    745745
    746 #: inc/admin.php:272
     746#: inc/admin.php:277
    747747#: inc/settings/settings.php:81
    748748#: blocks/details/build/index.js:1
     
    752752msgstr ""
    753753
    754 #: inc/admin.php:359
     754#: inc/admin.php:364
    755755msgid "Edit"
    756756msgstr ""
    757757
    758 #: inc/admin.php:799
     758#: inc/admin.php:804
    759759msgid "Show Personio position data"
    760760msgstr ""
    761761
    762 #: inc/admin.php:811
     762#: inc/admin.php:816
    763763msgid "Title"
    764764msgstr ""
    765765
    766 #: inc/admin.php:812
     766#: inc/admin.php:817
    767767#: blocks/description/build/index.js:1
    768768#: blocks/description/src/index.js:37
     
    771771
    772772#. translators: %1$s will be replaced by the URL for Personio
    773 #: inc/admin.php:832
     773#: inc/admin.php:837
    774774msgid "At this point we show you the imported data of your open position <i>%1$s</i>. Please edit the job details in your <a href=\"%2$s\" target=\"_blank\">Personio account (opens new window)</a>."
    775775msgstr ""
    776776
    777 #: inc/admin.php:883
     777#: inc/admin.php:888
    778778msgid "No data"
     779msgstr ""
     780
     781#: inc/admin.php:915
     782msgid "Personio"
     783msgstr ""
     784
     785#: inc/admin.php:916
     786msgid "Import positions from Personio"
    779787msgstr ""
    780788
     
    787795msgstr ""
    788796
    789 #: inc/init.php:32
    790 #: inc/init.php:34
     797#: inc/init.php:33
     798#: inc/init.php:35
    791799#: templates/archive-personioposition-shortcode.php:36
    792800msgid "Positions"
    793801msgstr ""
    794802
    795 #: inc/init.php:33
     803#: inc/init.php:34
    796804#: templates/single-personioposition-shortcode.php:17
    797805msgid "Position"
    798806msgstr ""
    799807
    800 #: inc/init.php:35
     808#: inc/init.php:36
    801809msgid "Parent Position"
    802810msgstr ""
    803811
    804 #: inc/init.php:36
     812#: inc/init.php:37
    805813msgid "All Positions"
    806814msgstr ""
    807815
    808 #: inc/init.php:37
     816#: inc/init.php:38
    809817msgid "View Position in frontend"
    810818msgstr ""
    811819
    812 #: inc/init.php:38
     820#: inc/init.php:39
    813821msgid "View Positions"
    814822msgstr ""
    815823
    816 #: inc/init.php:39
     824#: inc/init.php:40
    817825msgid "View Position in backend"
    818826msgstr ""
    819827
    820 #: inc/init.php:40
     828#: inc/init.php:41
    821829msgid "Search Position"
    822830msgstr ""
    823831
    824 #: inc/init.php:41
     832#: inc/init.php:42
    825833msgid "Not Found"
    826834msgstr ""
    827835
    828 #: inc/init.php:42
     836#: inc/init.php:43
    829837msgid "Not found in Trash"
    830838msgstr ""
    831839
    832 #: inc/init.php:268
     840#: inc/init.php:269
    833841msgid "every 5th Minute"
    834842msgstr ""
    835843
    836 #: inc/init.php:343
    837 #: blocks/details/build/index.js:1
    838 #: blocks/show/build/index.js:1
     844#: inc/init.php:344
    839845msgid "recruiting category"
    840846msgstr ""
    841847
    842 #: inc/init.php:344
    843 #: blocks/details/build/index.js:1
    844 #: blocks/show/build/index.js:1
     848#: inc/init.php:345
    845849msgid "schedule"
    846850msgstr ""
    847851
    848 #: inc/init.php:345
    849 #: blocks/details/build/index.js:1
    850 #: blocks/show/build/index.js:1
     852#: inc/init.php:346
    851853msgid "office"
    852854msgstr ""
    853855
    854 #: inc/init.php:346
    855 #: blocks/details/build/index.js:1
    856 #: blocks/show/build/index.js:1
     856#: inc/init.php:347
    857857msgid "department"
    858858msgstr ""
    859859
    860 #: inc/init.php:347
     860#: inc/init.php:348
    861861msgid "employment types"
    862862msgstr ""
    863863
    864 #: inc/init.php:348
    865 #: blocks/details/build/index.js:1
    866 #: blocks/show/build/index.js:1
     864#: inc/init.php:349
    867865msgid "seniority"
    868866msgstr ""
    869867
    870 #: inc/init.php:349
    871 #: blocks/details/build/index.js:1
    872 #: blocks/show/build/index.js:1
     868#: inc/init.php:350
    873869msgid "experience"
    874870msgstr ""
    875871
    876 #: inc/init.php:350
    877 #: blocks/details/build/index.js:1
    878 #: blocks/show/build/index.js:1
     872#: inc/init.php:351
    879873msgid "occupation"
    880874msgstr ""
    881875
    882 #: inc/init.php:365
     876#: inc/init.php:366
    883877msgid "details"
    884878msgstr ""
    885879
    886 #: inc/init.php:366
     880#: inc/init.php:367
    887881msgid "content"
    888882msgstr ""
    889883
    890 #: inc/init.php:367
     884#: inc/init.php:368
    891885msgid "application link"
    892886msgstr ""
    893887
    894 #: inc/init.php:556
     888#: inc/init.php:557
    895889#: templates/parts/term-filter-select.php:15
    896890#: blocks/show/build/index.js:1
     
    10221016msgstr ""
    10231017
    1024 #: inc/settings/import.php:21
     1018#: inc/settings/import.php:22
    10251019msgid "Import"
    10261020msgstr ""
    10271021
    1028 #: inc/settings/import.php:66
     1022#: inc/settings/import.php:67
    10291023msgid "Import of positions from Personio"
    10301024msgstr ""
    10311025
    1032 #: inc/settings/import.php:74
     1026#: inc/settings/import.php:75
    10331027msgid "Start import now"
    10341028msgstr ""
    10351029
    1036 #: inc/settings/import.php:87
     1030#: inc/settings/import.php:88
    10371031msgid "Delete positions"
    10381032msgstr ""
    10391033
    1040 #: inc/settings/import.php:100
     1034#: inc/settings/import.php:101
    10411035msgid "Enable automatic import"
    10421036msgstr ""
    10431037
    1044 #: inc/settings/import.php:107
     1038#: inc/settings/import.php:108
    10451039msgid "If enabled, new positions stored in Personio will be retrieved automatically daily.<br>If disabled, new positions are retrieved manually only."
    10461040msgstr ""
    10471041
    10481042#. translators: %1$s is replaced with "string"
    1049 #: inc/settings/import.php:110
     1043#: inc/settings/import.php:111
    10501044msgid "Use more import options with the %s. Among other things, you get the possibility to change the time interval for imports and partial imports of very large position lists."
    10511045msgstr ""
    10521046
    1053 #: inc/settings/import.php:201
    1054 #: inc/settings/import.php:233
     1047#: inc/settings/import.php:203
     1048#: inc/settings/import.php:235
    10551049msgid "Hint"
    10561050msgstr ""
    10571051
    1058 #: inc/settings/import.php:206
     1052#: inc/settings/import.php:208
    10591053msgid "The import is already running. Please wait some moments."
    10601054msgstr ""
    10611055
    1062 #: inc/settings/import.php:218
     1056#: inc/settings/import.php:220
    10631057msgid "Cancel running import"
    10641058msgstr ""
    10651059
    1066 #: inc/settings/import.php:232
     1060#: inc/settings/import.php:234
    10671061msgid "Delete all positions"
    10681062msgstr ""
    10691063
    1070 #: inc/settings/import.php:233
     1064#: inc/settings/import.php:235
    10711065msgid "Removes all actual imported positions."
    10721066msgstr ""
    10731067
    1074 #: inc/settings/import.php:237
     1068#: inc/settings/import.php:239
    10751069msgid "There are currently no imported positions."
    10761070msgstr ""
     
    12401234#: blocks/details/build/index.js:1
    12411235msgid "Provides a Gutenberg Block to details of a single position managed by Personio."
     1236msgstr ""
     1237
     1238#: blocks/details/build/index.js:1
     1239#: blocks/show/build/index.js:1
     1240msgid "Category"
     1241msgstr ""
     1242
     1243#: blocks/details/build/index.js:1
     1244#: blocks/show/build/index.js:1
     1245msgid "Contract type"
     1246msgstr ""
     1247
     1248#: blocks/details/build/index.js:1
     1249#: blocks/show/build/index.js:1
     1250msgid "Location"
     1251msgstr ""
     1252
     1253#: blocks/details/build/index.js:1
     1254#: blocks/show/build/index.js:1
     1255msgid "Department"
     1256msgstr ""
     1257
     1258#: blocks/details/build/index.js:1
     1259#: blocks/show/build/index.js:1
     1260msgid "Experience"
     1261msgstr ""
     1262
     1263#: blocks/details/build/index.js:1
     1264#: blocks/show/build/index.js:1
     1265msgid "Years of experience"
     1266msgstr ""
     1267
     1268#: blocks/details/build/index.js:1
     1269#: blocks/show/build/index.js:1
     1270msgid "Job type"
    12421271msgstr ""
    12431272
  • personio-integration-light/tags/2.4.1/personio-integration-light.php

    r2962403 r2965729  
    55 * Requires at least: 5.9
    66 * Requires PHP:      7.4
    7  * Version:           2.4.0
     7 * Version:           2.4.1
    88 * Author:            laOlaWeb
    99 * Author URI:        https://laolaweb.com
     
    1616
    1717// set version number
    18 const WP_PERSONIO_INTEGRATION_VERSION = '2.4.0';
     18const WP_PERSONIO_INTEGRATION_VERSION = '2.4.1';
    1919
    2020// save plugin-path
  • personio-integration-light/tags/2.4.1/readme.txt

    r2962403 r2965729  
    77License: GPL-2.0-or-later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
    9 Stable tag: 2.4.0
     9Stable tag: 2.4.1
    1010
    1111== Description ==
     
    275275* Updated dependencies for Gutenberg-scripts
    276276* Fixed reading of employment type
     277
     278= 2.4.1 =
     279* Added WPML settings to prevent translation of our own post types and taxonomies
     280* Added our own importer under Tools > Importer
     281* Run import even if the Personio timestamp has not been changed but no positions are in local database
     282* Extended log for deletion of positions
     283* Optimized log-styling
     284* Updated translations
     285* Fixed missing files for Block Editor in WordPress-SVN
     286* Fixed error in dashboard if pro-plugin is not active
  • personio-integration-light/trunk/admin/styles.css

    r2962403 r2965729  
    9696}
    9797
     98.personioposition_page_personioPositions th#state {
     99    width: 72px;
     100}
     101
    98102.personio-dialog-no-close .ui-dialog-titlebar-close {
    99103    display: none;
  • personio-integration-light/trunk/classes/class-cli.php

    r2903217 r2965729  
    11<?php
     2/**
     3 * File for cli-commands of this plugin.
     4 *
     5 * @package personio-integration-light
     6 */
    27
    38namespace personioIntegration;
     
    3035    public function deleteAll(): void
    3136    {
     37        // log this event.
     38        $logs = new Log();
     39        $logs->addLog( 'WP CLI-command deleteAll has been used.', 'success' );
     40
    3241        // delete taxonomies
    3342        $this->deleteTaxonomies();
     
    4352     * @noinspection PhpUnused
    4453     */
    45     public function deletePositions(): void
     54    public function deletePositions( array $args ): void
    4655    {
     56        // set arguments if empty.
     57        if( empty($args) ) {
     58            $args = array( 'WP CLI-command deletePositions', '' );
     59        }
     60
     61        // log this event.
     62        $logs = new Log();
     63        $logs->addLog( sprintf( '%s has been used%s.', $args[0], $args[1] ), 'success' );
     64
     65        // delete them.
    4766        $this->deletePositionsFromDb();
    4867    }
     
    5574     * @since  1.0.0
    5675     */
    57     public function resetPlugin( $deleteData = [] ): void
     76    public function resetPlugin( array $deleteData = array() ): void
    5877    {
    5978        (new installer)->removeAllData( $deleteData );
  • personio-integration-light/trunk/classes/class-helper-cli.php

    r2903217 r2965729  
    1010     * @return void
    1111     */
    12     private function deletePositionsFromDb() {
     12    private function deletePositionsFromDb(): void {
    1313        $positionsObject = Positions::get_instance();
    1414        $positions = $positionsObject->getPositions();
     
    1616        $progress = helper::isCLI() ? \WP_CLI\Utils\make_progress_bar( 'Delete all local positions', $positionCount ) : false;
    1717        foreach( $positions as $position ) {
    18             // get personioId for log
    19             $personioId = $position->getPersonioId();
    20 
    21             // delete it
     18            // delete it.
    2219            wp_delete_post($position->ID, true);
    23 
    24             // log in debug-mode
    25             if( get_option('personioIntegration_debug', 0) == 1 ) {
    26                 $log = new Log();
    27                 $log->addLog('Position '.$personioId.' has been deleted.', 'success');
    28             }
    2920
    3021            // show progress
     
    5344     * @noinspection SqlResolve
    5445     */
    55     private function deleteTaxonomies()
     46    private function deleteTaxonomies(): void
    5647    {
    5748        global $wpdb;
  • personio-integration-light/trunk/classes/class-import.php

    r2962403 r2965729  
    7070        // marker if result should do nothing.
    7171        $doNothing = false;
     72
     73        // get actual live positions.
     74        $positions_obj = Positions::get_instance();
     75        $positions_count = $positions_obj->getPositionsCount();
    7276
    7377        // enable xml-error-handling.
     
    106110                if( 200 === $httpStatus ) {
    107111
    108                     // check if last modified timestamp has been changed
     112                    // check if last modified timestamp has been changed.
    109113                    if( $lastModifiedTimestamp === absint(get_option(WP_PERSONIO_INTEGRATION_OPTION_IMPORT_TIMESTAMP . $key, 0)) && !$this->_debug ) {
    110                         // timestamp did not change -> do nothing.
    111                         update_option(WP_PERSONIO_OPTION_COUNT, ++$count);
    112                         $doNothing = true;
    113                         !$progress ?: $progress->tick();
    114                         continue;
     114                        // timestamp did not change -> do nothing if we already have positions in the DB.
     115                        if( $positions_count > 0 ) {
     116                            update_option(WP_PERSONIO_OPTION_COUNT, ++$count);
     117                            $doNothing = true;
     118                            $this->logSuccess(sprintf( 'No changes in positions for language %s according to the timestamp we get from Personio. No import run.', $key ) );
     119                            !$progress ?: $progress->tick();
     120                            continue;
     121                        }
    115122                    }
    116123
     
    131138                    // check if md5-hash has been changed.
    132139                    if( $md5hash == get_option(WP_PERSONIO_INTEGRATION_OPTION_IMPORT_MD5 . $key, '') && !$this->_debug ) {
    133                         // md5-hash did not change -> do nothing.
    134                         update_option(WP_PERSONIO_OPTION_COUNT, ++$count);
    135                         $doNothing = true;
    136                         !$progress ?: $progress->tick();
    137                         continue;
     140                        // md5-hash did not change -> do nothing if we already have positions in the DB.
     141                        if( $positions_count > 0 ) {
     142                            update_option(WP_PERSONIO_OPTION_COUNT, ++$count);
     143                            $doNothing = true;
     144                            $this->logSuccess(sprintf('No changes in positions for language %s according to the content we get from Personio. No import run.', $key));
     145                            !$progress ?: $progress->tick();
     146                            continue;
     147                        }
    138148                    }
    139149
     
    195205                }
    196206
     207                // log ok.
     208                $this->logSuccess(sprintf( "%d positions in language %s imported.", count($importedPositions), $key ) );
     209
    197210                // show progress.
    198211                !$progress ?: $progress->tick();
     
    248261                delete_transient('personio_integration_no_position_imported');
    249262            }
    250 
    251             // log ok.
    252             $this->logSuccess($languageCount . " languages grabbed, " . count($importedPositions) . " positions imported.");
    253263        }
    254264        else {
  • personio-integration-light/trunk/classes/class-position.php

    r2962403 r2965729  
    155155            ];
    156156            $results = new WP_Query($query);
    157             $posts = [];
     157            $posts = array();
    158158            foreach( $results->posts as $postId ) {
    159                 // optional filter the post-ID
     159                // optional filter the post-ID.
    160160                if( apply_filters('personio_integration_import_single_position_filter_existing', $postId, $this->lang) ) {
    161161                    $posts[] = $postId;
     
    163163            }
    164164            if( count($posts) == 1 ) {
    165                 // get the post-id to update its data
     165                // get the post-id to update its data.
    166166                $this->data['ID'] = $results->posts[0];
    167                 // get the menu_order to obtain its value during update
     167                // get the menu_order to obtain its value during update.
    168168                $this->data['menu_order'] = get_post_field('menu_order', $results->posts[0]);
    169169            }
    170170            elseif( count($posts) > 1 ) {
    171                 // something is wrong
    172                 // -> delete all entries with this personioId
    173                 // -> it will be saved as new entry after this
     171                // something is wrong.
     172                // -> delete all entries with this personioId.
     173                // -> it will be saved as new entry after this.
    174174                foreach( $posts as $postId ) {
    175175                    wp_delete_post($postId);
    176176                }
    177177
    178                 // set ID to 0
     178                // set ID to 0.
    179179                $this->data['ID'] = 0;
    180180
    181                 // log this event
    182                 if( false !== $this->_debug ) {
    183                     $this->_log->addLog('PersonioId '.$this->data['personioId'].' existed in database multiple times. Cleanup done.', 'error');
    184                 }
     181                // log this event.
     182                $this->_log->addLog('PersonioId '.$this->data['personioId'].' existed in database multiple times. Cleanup done.', 'error');
    185183            }
    186184            else {
    187                 // set ID to 0
     185                // set ID to 0.
    188186                $this->data['ID'] = 0;
    189187            }
    190188        }
    191189        else {
    192             // set ID to 0
     190            // set ID to 0.
    193191            $this->data['ID'] = 0;
    194192        }
  • personio-integration-light/trunk/inc/admin.php

    r2962403 r2965729  
    11<?php
     2/**
     3 * File for functions to run in wp-admin only.
     4 *
     5 * @package wp-personio-integration
     6 */
    27
    38use personioIntegration\helper;
     
    1419function personio_integration_add_styles_and_js_admin(): void
    1520{
    16     // admin-specific styles
     21    // admin-specific styles.
    1722    wp_enqueue_style('personio_integration-admin-css',
    1823        plugin_dir_url(WP_PERSONIO_INTEGRATION_PLUGIN) . '/admin/styles.css',
     
    2126    );
    2227
    23     // admin- and backend-styles for attribute-type-output
     28    // admin- and backend-styles for attribute-type-output.
    2429    wp_enqueue_style(
    2530        'personio_integration-styles',
     
    2934    );
    3035
    31     // backend-JS
     36    // backend-JS.
    3237    wp_enqueue_script( 'personio_integration-admin-js',
    3338        plugins_url( '/admin/js.js' , WP_PERSONIO_INTEGRATION_PLUGIN ),
     
    3641    );
    3742
    38     // add php-vars to our js-script
     43    // add php-vars to our js-script.
    3944    wp_localize_script( 'personio_integration-admin-js', 'customJsVars', [
    4045            'ajax_url' => admin_url( 'admin-ajax.php' ),
     
    6772    );
    6873
    69     // embed necessary scripts for progressbar
    70     if( !empty($_GET["post_type"]) && $_GET["post_type"] === WP_PERSONIO_INTEGRATION_CPT ) {
     74    // embed necessary scripts for progressbar.
     75    if( ( !empty($_GET["post_type"]) && $_GET["post_type"] === WP_PERSONIO_INTEGRATION_CPT ) || ( !empty($_GET['import']) && 'personio-integration-importer' === $_GET['import'] ) ) {
    7176        $wp_scripts = wp_scripts();
    7277        wp_enqueue_script('jquery-ui-progressbar');
     
    115120{
    116121    $positionsObj = Positions::get_instance();
    117     remove_filter( 'pre_get_posts', 'personio_integration_set_ordering' );
     122    if( function_exists('personio_integration_set_ordering') ) { remove_filter( 'pre_get_posts', 'personio_integration_set_ordering' ); }
    118123    $positionsList = $positionsObj->getPositions(3, array('sortby' => 'date', 'sort' => 'DESC'));
    119     add_filter( 'pre_get_posts', 'personio_integration_set_ordering' );
     124    if( function_exists('personio_integration_set_ordering') ) { add_filter( 'pre_get_posts', 'personio_integration_set_ordering' ); }
    120125    if( count($positionsList) == 0 ) {
    121126        echo '<p>'.__('Actually there are no positions imported from Personio.', 'wp-personio-integration').'</p>';
     
    900905}
    901906add_filter( 'easy_language_possible_post_types', 'personio_integration_admin_remove_easy_language_support' );
     907
     908/**
     909 * Add custom importer for positions under Tools > Import.
     910 *
     911 * @return void
     912 */
     913function personio_integration_admin_add_importer(): void {
     914    register_importer( 'personio-integration-importer',
     915        __( 'Personio', 'wp-personio-integration' ),
     916        __( 'Import positions from Personio', 'wp-personio-integration' ),
     917        'personio_integration_admin_add_menu_content_importexport'
     918    );
     919}
     920add_action( 'admin_init', 'personio_integration_admin_add_importer' );
  • personio-integration-light/trunk/inc/init.php

    r2962403 r2965729  
    33use personioIntegration\helper;
    44use personioIntegration\Import;
     5use personioIntegration\Log;
    56use personioIntegration\Position;
    67use personioIntegration\Positions;
     
    628629    return $_term;
    629630}
     631
     632/**
     633 * Log every deletion of a position.
     634 *
     635 * @param $post_id
     636 * @return void
     637 */
     638function personio_integration_action_to_delete_position( $post_id ): void {
     639    // bail if this is not our own cpt.
     640    if( WP_PERSONIO_INTEGRATION_CPT !== get_post_type($post_id) ) {
     641        return;
     642    }
     643
     644    // get position.
     645    $positions_obj = Positions::get_instance();
     646    $position_obj = $positions_obj->get_position( $post_id );
     647
     648    // log deletion.
     649    $log = new Log();
     650    $log->addLog('Position '.$position_obj->getPersonioId().' has been deleted.', 'success');
     651}
     652add_action( 'before_delete_post', 'personio_integration_action_to_delete_position', 10, 1 );
  • personio-integration-light/trunk/inc/settings/import.php

    r2903217 r2965729  
    44use personioIntegration\helper;
    55use personioIntegration\Import;
     6use personioIntegration\Log;
    67
    78/**
     
    172173    check_ajax_referer( 'wp-personio-integration-delete', 'nonce' );
    173174
    174     // do not delete positions if import is running atm
     175    // do not delete positions if import is running atm.
    175176    if( get_option(WP_PERSONIO_INTEGRATION_IMPORT_RUNNING, 0 ) == 0 ) {
    176         // delete positions
    177         (new cli())->deletePositions();
    178 
    179         // add hint
     177        // delete positions.
     178        $user = wp_get_current_user();
     179        (new cli())->deletePositions( array( 'Delete all positions button', ' by '.$user->display_name ) );
     180
     181        // add hint.
    180182        set_transient('personio_integration_delete_run', 1);
    181183    }
     
    184186    }
    185187
    186     // redirect user
     188    // redirect user.
    187189    wp_redirect($_SERVER['HTTP_REFERER']);
    188190}
  • personio-integration-light/trunk/languages/wp-personio-integration-de_DE-60918b809a41223430f43d8c337e4241.json

    r2962403 r2965729  
    1 {"translation-revision-date":"2023-09-01 15:43+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/list\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"select-box":["Auswahl-Box"],"list of links":["Linkliste"],"date":["Datum"],"Personio Positions":["Personio Stellen"],"amount":["Anzahl"],"ascending":["aufsteigend"],"descending":["absteigend"],"Sort by":["Sortieren nach"],"title":["Titel"],"Group by":["Gruppieren nach"],"Show title":["Zeige Titel an"],"Settings":["Einstellungen"],"Choose details":["W\u00e4hle Stellendetails"],"Filter":["Filter"],"Choose filter":["W\u00e4hle Filter"],"Provides a Gutenberg Block to show a list of positions provided by Personio.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Stellen von Personio bereit."],"Show filter":["Zeige Filter an"],"Type of filter":["Filter-Typ"],"Sort direction":["Sortierrichtung"],"Link title":["Verlinke den Titel"],"show excerpt":["zeige Stellendetails"],"View content":["Zeige Inhalt an"],"View application link":["Zeige Link zum Bewerbungsformular an"]}}}
     1{"translation-revision-date":"2023-09-12 10:27+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/list\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"select-box":["Auswahl-Box"],"list of links":["Linkliste"],"date":["Datum"],"Personio Positions":["Personio Stellen"],"amount":["Anzahl"],"ascending":["aufsteigend"],"descending":["absteigend"],"Sort by":["Sortieren nach"],"title":["Titel"],"Group by":["Gruppieren nach"],"Show title":["Zeige Titel an"],"Settings":["Einstellungen"],"Choose details":["W\u00e4hle Stellendetails"],"Filter":["Filter"],"Choose filter":["W\u00e4hle Filter"],"Provides a Gutenberg Block to show a list of positions provided by Personio.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Stellen von Personio bereit."],"Show filter":["Zeige Filter an"],"Type of filter":["Filter-Typ"],"Sort direction":["Sortierrichtung"],"Link title":["Verlinke den Titel"],"show excerpt":["zeige Stellendetails"],"View content":["Zeige Inhalt an"],"View application link":["Zeige Link zum Bewerbungsformular an"]}}}
  • personio-integration-light/trunk/languages/wp-personio-integration-de_DE-90f17078fbe60cc40854b0ced7af8520.json

    r2962403 r2965729  
    1 {"translation-revision-date":"2023-09-01 15:43+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/application-button\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Personio Application link":["Personio Bewerbungslink"],"Provides a Gutenberg Block to show the application button for single position.":["Stellt einen Gutenberg-Block zur Verf\u00fcgung, um den Bewerbungslink f\u00fcr eine einzelne Stelle anzuzeigen."]}}}
     1{"translation-revision-date":"2023-09-12 10:27+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/application-button\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Personio Application link":["Personio Bewerbungslink"],"Provides a Gutenberg Block to show the application button for single position.":["Stellt einen Gutenberg-Block zur Verf\u00fcgung, um den Bewerbungslink f\u00fcr eine einzelne Stelle anzuzeigen."]}}}
  • personio-integration-light/trunk/languages/wp-personio-integration-de_DE-ae5917978e5cc73b9f3c2617ad34a276.json

    r2962403 r2965729  
    1 {"translation-revision-date":"2023-09-01 15:43+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/filter-list\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Filter":["Filter"],"Personio List Filter":["Personio Listenfilter"],"Provides a Gutenberg block to show filter as link-based dropdown-list for Personio Positions.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Links zu Filtern von Stellen von Personio bereit."],"Choose filter":["W\u00e4hle Filter"],"Hide filter title":["Verstecke den Filtertitel"],"Hide reset link":["Verstecke den Zur\u00fccksetzen-Link"],"Space between filters":["Abstand zwischen den Filtern"]}}}
     1{"translation-revision-date":"2023-09-12 10:27+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/filter-list\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Filter":["Filter"],"Personio List Filter":["Personio Listenfilter"],"Provides a Gutenberg block to show filter as link-based dropdown-list for Personio Positions.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Links zu Filtern von Stellen von Personio bereit."],"Choose filter":["W\u00e4hle Filter"],"Hide filter title":["Verstecke den Filtertitel"],"Hide reset link":["Verstecke den Zur\u00fccksetzen-Link"],"Space between filters":["Abstand zwischen den Filtern"]}}}
  • personio-integration-light/trunk/languages/wp-personio-integration-de_DE-bf0a71f47c0263b0b996e02116fd7e15.json

    r2962403 r2965729  
    1 {"translation-revision-date":"2023-09-01 15:43+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/filter-select\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Filter":["Filter"],"Choose filter":["W\u00e4hle Filter"],"Hide filter title":["Verstecke den Filtertitel"],"Hide reset link":["Verstecke den Zur\u00fccksetzen-Link"],"Personio Select Filter":["Personio Select-Filter"],"Provides a Gutenberg block to show filter as dropdown-list for Personio Positions.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Select-Boxen zu Filtern von Stellen von Personio bereit."],"Hide submit button":["Verstecke den Absenden-Button"]}}}
     1{"translation-revision-date":"2023-09-12 10:27+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/filter-select\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Filter":["Filter"],"Choose filter":["W\u00e4hle Filter"],"Hide filter title":["Verstecke den Filtertitel"],"Hide reset link":["Verstecke den Zur\u00fccksetzen-Link"],"Personio Select Filter":["Personio Select-Filter"],"Provides a Gutenberg block to show filter as dropdown-list for Personio Positions.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Select-Boxen zu Filtern von Stellen von Personio bereit."],"Hide submit button":["Verstecke den Absenden-Button"]}}}
  • personio-integration-light/trunk/languages/wp-personio-integration-de_DE-e45331e79bc58afa309b9291e6555a16.json

    r2962403 r2965729  
    1 {"translation-revision-date":"2023-09-01 15:43+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/show\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"link title":["verlinke den Titel"],"Personio Position":["Personio Stelle"],"Select position":["Anzuzeigende Stelle w\u00e4hlen"],"Settings":["Einstellungen"],"recruiting category":["Kategorie"],"schedule":["Arbeitszeit"],"office":["Standort"],"department":["Abteilung"],"seniority":["Dienstalter"],"experience":["Berufserfahrung"],"occupation":["Besch\u00e4ftigung"],"Please choose":["Bitte w\u00e4hlen"],"Choose details":["W\u00e4hle Stellendetails"],"show excerpt":["zeige Stellendetails"],"Provides a Gutenberg Block to show a position provided by personio.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Stellen von Personio bereit."],"show title":["zeige Titel an"],"view content":["zeige Inhalt an"],"view application link":["zeige Link zum Bewerbungsformular an"]}}}
     1{"translation-revision-date":"2023-09-12 10:27+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/show\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"link title":["verlinke den Titel"],"Personio Position":["Personio Stelle"],"Select position":["Anzuzeigende Stelle w\u00e4hlen"],"Settings":["Einstellungen"],"Please choose":["Bitte w\u00e4hlen"],"Choose details":["W\u00e4hle Stellendetails"],"Category":["Kategorie"],"Contract type":["Vertragstyp"],"Location":["Standort"],"Department":["Abteilung"],"Experience":["Erfahrung"],"Years of experience":["Berufserfahrung in Jahren"],"Job type":["Stellentyp"],"show excerpt":["zeige Stellendetails"],"Provides a Gutenberg Block to show a position provided by personio.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Stellen von Personio bereit."],"show title":["zeige Titel an"],"view content":["zeige Inhalt an"],"view application link":["zeige Link zum Bewerbungsformular an"]}}}
  • personio-integration-light/trunk/languages/wp-personio-integration-de_DE.po

    r2962403 r2965729  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WP Personio Integration Light 2.4.0\n"
     5"Project-Id-Version: WP Personio Integration Light 2.4.1\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/personio-"
    77"integration-light\n"
    8 "POT-Creation-Date: 2023-09-01T15:42:37+02:00\n"
    9 "PO-Revision-Date: 2023-09-01 15:43+0200\n"
     8"POT-Creation-Date: 2023-09-12T10:25:58+02:00\n"
     9"PO-Revision-Date: 2023-09-12 10:27+0200\n"
    1010"Last-Translator: \n"
    1111"Language-Team: \n"
     
    8282#. translators: %1$s is replaced with "string"
    8383#: classes/class-helper.php:91 classes/class-helper.php:148
    84 #: classes/class-helper.php:171 inc/admin.php:47 inc/settings/import.php:200
     84#: classes/class-helper.php:171 inc/admin.php:52 inc/settings/import.php:202
    8585msgid "Run import"
    8686msgstr "Führe Import jetzt aus"
    8787
    8888#. translators: %1$s is replaced with "string", %2$s is replaced with "string"
    89 #: classes/class-helper.php:98 inc/admin.php:53
     89#: classes/class-helper.php:98 inc/admin.php:58
    9090msgid ""
    9191"<strong>The import has been manually run.</strong> Please check the list of "
     
    616616
    617617#. translators: %1$s will be replaced by the name of a language, %2$d will be replaced by HTTP-Status (like 404)
    618 #: classes/class-import.php:194
     618#: classes/class-import.php:204
    619619msgid ""
    620620"Personio URL for language %1$s not available. Returned HTTP-Status %2$d. "
     
    625625"erreichbar ist."
    626626
    627 #: classes/class-import.php:288
     627#: classes/class-import.php:298
    628628msgid "Error during Personio Positions Import"
    629629msgstr "Fehler beim Personio Positions Import"
    630630
    631 #: classes/class-import.php:289
     631#: classes/class-import.php:299
    632632msgid ""
    633633"The following error occurred when importing positions provided by Personio:"
     
    636636"folgender Fehler aufgetreten:"
    637637
    638 #: classes/class-import.php:290
     638#: classes/class-import.php:300
    639639msgid "Sent by the plugin Personio Integration"
    640640msgstr "Gesendet vom Plugin Personio Integration"
     
    667667"Stellt ein Widget zur Verfügung, um eine Liste der von Stellen anzuzeigen."
    668668
    669 #: classes/class-positionswidget.php:24 inc/init.php:303
     669#: classes/class-positionswidget.php:24 inc/init.php:304
    670670#: blocks/list/build/index.js:1
    671671msgid "Personio Positions"
     
    692692msgstr "Sortieren nach"
    693693
    694 #: classes/class-positionswidget.php:56 inc/init.php:364
     694#: classes/class-positionswidget.php:56 inc/init.php:365
    695695#: blocks/list/build/index.js:1
    696696msgid "title"
     
    775775msgstr "Gibt deine offenen Stellen aus."
    776776
    777 #: inc/admin.php:42
     777#: inc/admin.php:47
    778778msgid "Get Personio Integration Pro"
    779779msgstr "Get Personio Integration Pro"
    780780
    781 #: inc/admin.php:46
     781#: inc/admin.php:51
    782782msgid "Reset sorting"
    783783msgstr "Sortierung zurücksetzen"
    784784
    785 #: inc/admin.php:48
     785#: inc/admin.php:53
    786786msgid "Import is running"
    787787msgstr "Import läuft aktuell"
    788788
    789 #: inc/admin.php:49
     789#: inc/admin.php:54
    790790msgid "Please wait"
    791791msgstr "Bitte warten"
    792792
    793 #: inc/admin.php:50 inc/settings/import.php:201
     793#: inc/admin.php:55 inc/settings/import.php:203
    794794msgid ""
    795795"Performing the import could take a few minutes. If a timeout occurs, a "
     
    801801"möglich. Dann sollte der automatische Import verwendet werden."
    802802
    803 #: inc/admin.php:65
     803#: inc/admin.php:70
    804804msgid "OK"
    805805msgstr "OK"
    806806
    807 #: inc/admin.php:100
     807#: inc/admin.php:105
    808808msgid "Positions imported from Personio"
    809809msgstr "Von Personio importierte Stellen"
    810810
    811 #: inc/admin.php:121
     811#: inc/admin.php:126
    812812msgid "Actually there are no positions imported from Personio."
    813813msgstr "Derzeit gibt es keine aus Personio importierten Stellen."
    814814
    815815#. translators: %1$d will be replaced by the count of positions
    816 #: inc/admin.php:137
     816#: inc/admin.php:142
    817817msgid "Show all %1$d positions"
    818818msgstr "Zeige alle %1$d Stellen"
    819819
    820 #: inc/admin.php:194
     820#: inc/admin.php:199
    821821msgid "Dismiss this notice."
    822822msgstr "Hinweis ausblenden."
    823823
    824 #: inc/admin.php:224 inc/admin.php:810
     824#: inc/admin.php:229 inc/admin.php:815
    825825msgid "PersonioID"
    826826msgstr "PersonioID"
    827827
    828 #: inc/admin.php:272 inc/settings/settings.php:81
     828#: inc/admin.php:277 inc/settings/settings.php:81
    829829#: blocks/details/build/index.js:1 blocks/list/build/index.js:1
    830830#: blocks/show/build/index.js:1
     
    832832msgstr "Einstellungen"
    833833
    834 #: inc/admin.php:359
     834#: inc/admin.php:364
    835835msgid "Edit"
    836836msgstr "Bearbeiten"
    837837
    838 #: inc/admin.php:799
     838#: inc/admin.php:804
    839839msgid "Show Personio position data"
    840840msgstr "Zeige Daten dieser Stelle"
    841841
    842 #: inc/admin.php:811
     842#: inc/admin.php:816
    843843msgid "Title"
    844844msgstr "Titel"
    845845
    846 #: inc/admin.php:812 blocks/description/build/index.js:1
     846#: inc/admin.php:817 blocks/description/build/index.js:1
    847847#: blocks/description/src/index.js:37
    848848msgid "Description"
     
    850850
    851851#. translators: %1$s will be replaced by the URL for Personio
    852 #: inc/admin.php:832
     852#: inc/admin.php:837
    853853msgid ""
    854854"At this point we show you the imported data of your open position <i>%1$s</"
     
    860860"target=\"_blank\">Personio-Konto (öffnet neues Fenster)</a>."
    861861
    862 #: inc/admin.php:883
     862#: inc/admin.php:888
    863863msgid "No data"
    864864msgstr "Keine Daten"
     865
     866#: inc/admin.php:915
     867msgid "Personio"
     868msgstr "Personio"
     869
     870#: inc/admin.php:916
     871msgid "Import positions from Personio"
     872msgstr "Import von Stellen von Personio"
    865873
    866874#: inc/frontend.php:53
     
    872880msgstr "Die gegebene Id ist keine gültige Stellen-Id."
    873881
    874 #: inc/init.php:32 inc/init.php:34
     882#: inc/init.php:33 inc/init.php:35
    875883#: templates/archive-personioposition-shortcode.php:36
    876884msgid "Positions"
    877885msgstr "Stellen"
    878886
    879 #: inc/init.php:33 templates/single-personioposition-shortcode.php:17
     887#: inc/init.php:34 templates/single-personioposition-shortcode.php:17
    880888msgid "Position"
    881889msgstr "Stelle"
    882890
    883 #: inc/init.php:35
     891#: inc/init.php:36
    884892msgid "Parent Position"
    885893msgstr "Eltern Stelle"
    886894
    887 #: inc/init.php:36
     895#: inc/init.php:37
    888896msgid "All Positions"
    889897msgstr "Alle offene Stellen"
    890898
    891 #: inc/init.php:37
     899#: inc/init.php:38
    892900msgid "View Position in frontend"
    893901msgstr "Zeige Stelle im Frontend"
    894902
    895 #: inc/init.php:38
     903#: inc/init.php:39
    896904msgid "View Positions"
    897905msgstr "Zeige Stellen an"
    898906
    899 #: inc/init.php:39
     907#: inc/init.php:40
    900908msgid "View Position in backend"
    901909msgstr "Zeige Stelle im Backend"
    902910
    903 #: inc/init.php:40
     911#: inc/init.php:41
    904912msgid "Search Position"
    905913msgstr "Suche nach Stellen"
    906914
    907 #: inc/init.php:41
     915#: inc/init.php:42
    908916msgid "Not Found"
    909917msgstr "Nicht gefunden"
    910918
    911 #: inc/init.php:42
     919#: inc/init.php:43
    912920msgid "Not found in Trash"
    913921msgstr "In Papierkorb nicht gefunden"
    914922
    915 #: inc/init.php:268
     923#: inc/init.php:269
    916924msgid "every 5th Minute"
    917925msgstr "jede 5. Minute"
    918926
    919 #: inc/init.php:343 blocks/details/build/index.js:1
    920 #: blocks/show/build/index.js:1
     927#: inc/init.php:344
    921928msgid "recruiting category"
    922929msgstr "Kategorie"
    923930
    924 #: inc/init.php:344 blocks/details/build/index.js:1
    925 #: blocks/show/build/index.js:1
     931#: inc/init.php:345
    926932msgid "schedule"
    927933msgstr "Arbeitszeit"
    928934
    929 #: inc/init.php:345 blocks/details/build/index.js:1
    930 #: blocks/show/build/index.js:1
     935#: inc/init.php:346
    931936msgid "office"
    932937msgstr "Standort"
    933938
    934 #: inc/init.php:346 blocks/details/build/index.js:1
    935 #: blocks/show/build/index.js:1
     939#: inc/init.php:347
    936940msgid "department"
    937941msgstr "Abteilung"
    938942
    939 #: inc/init.php:347
     943#: inc/init.php:348
    940944msgid "employment types"
    941945msgstr "Anstellungsarten"
    942946
    943 #: inc/init.php:348 blocks/details/build/index.js:1
    944 #: blocks/show/build/index.js:1
     947#: inc/init.php:349
    945948msgid "seniority"
    946949msgstr "Dienstalter"
    947950
    948 #: inc/init.php:349 blocks/details/build/index.js:1
    949 #: blocks/show/build/index.js:1
     951#: inc/init.php:350
    950952msgid "experience"
    951953msgstr "Berufserfahrung"
    952954
    953 #: inc/init.php:350 blocks/details/build/index.js:1
    954 #: blocks/show/build/index.js:1
     955#: inc/init.php:351
    955956msgid "occupation"
    956957msgstr "Beschäftigung"
    957958
    958 #: inc/init.php:365
     959#: inc/init.php:366
    959960msgid "details"
    960961msgstr "Stellendetails"
    961962
    962 #: inc/init.php:366
     963#: inc/init.php:367
    963964msgid "content"
    964965msgstr "Inhalt"
    965966
    966 #: inc/init.php:367
     967#: inc/init.php:368
    967968msgid "application link"
    968969msgstr "Link zum Bewerbungsformular"
    969970
    970 #: inc/init.php:556 templates/parts/term-filter-select.php:15
     971#: inc/init.php:557 templates/parts/term-filter-select.php:15
    971972#: blocks/show/build/index.js:1
    972973msgid "Please choose"
     
    11201121msgstr "Bitte eine gültige URL eintragen."
    11211122
    1122 #: inc/settings/import.php:21
     1123#: inc/settings/import.php:22
    11231124msgid "Import"
    11241125msgstr "Import"
    11251126
    1126 #: inc/settings/import.php:66
     1127#: inc/settings/import.php:67
    11271128msgid "Import of positions from Personio"
    11281129msgstr "Import von Stellen von Personio"
    11291130
    1130 #: inc/settings/import.php:74
     1131#: inc/settings/import.php:75
    11311132msgid "Start import now"
    11321133msgstr "Starte Import jetzt"
    11331134
    1134 #: inc/settings/import.php:87
     1135#: inc/settings/import.php:88
    11351136msgid "Delete positions"
    11361137msgstr "Stellen löschen"
    11371138
    1138 #: inc/settings/import.php:100
     1139#: inc/settings/import.php:101
    11391140msgid "Enable automatic import"
    11401141msgstr "Aktiviere automatischen Import"
    11411142
    1142 #: inc/settings/import.php:107
     1143#: inc/settings/import.php:108
    11431144msgid ""
    11441145"If enabled, new positions stored in Personio will be retrieved automatically "
     
    11501151
    11511152#. translators: %1$s is replaced with "string"
    1152 #: inc/settings/import.php:110
     1153#: inc/settings/import.php:111
    11531154msgid ""
    11541155"Use more import options with the %s. Among other things, you get the "
     
    11601161"sehr große Stellen-Listen durchzuführen."
    11611162
    1162 #: inc/settings/import.php:201 inc/settings/import.php:233
     1163#: inc/settings/import.php:203 inc/settings/import.php:235
    11631164msgid "Hint"
    11641165msgstr "Hinweis"
    11651166
    1166 #: inc/settings/import.php:206
     1167#: inc/settings/import.php:208
    11671168msgid "The import is already running. Please wait some moments."
    11681169msgstr "Der Import läuft aktuell. Bitte einen Moment warten."
    11691170
    1170 #: inc/settings/import.php:218
     1171#: inc/settings/import.php:220
    11711172msgid "Cancel running import"
    11721173msgstr "Laufenden Import abbrechen"
    11731174
    1174 #: inc/settings/import.php:232
     1175#: inc/settings/import.php:234
    11751176msgid "Delete all positions"
    11761177msgstr "Entferne alle Stellen"
    11771178
    1178 #: inc/settings/import.php:233
     1179#: inc/settings/import.php:235
    11791180msgid "Removes all actual imported positions."
    11801181msgstr "Entfernt alle aktuell importierten Stellen."
    11811182
    1182 #: inc/settings/import.php:237
     1183#: inc/settings/import.php:239
    11831184msgid "There are currently no imported positions."
    11841185msgstr "Es sind aktuell keine Stellen importiert."
     
    13911392"Stellt einen Gutenberg-Block zur Ausgabe einer einzelnen Stelle, verwaltet "
    13921393"bei Personio, bereit."
     1394
     1395#: blocks/details/build/index.js:1 blocks/show/build/index.js:1
     1396msgid "Category"
     1397msgstr "Kategorie"
     1398
     1399#: blocks/details/build/index.js:1 blocks/show/build/index.js:1
     1400msgid "Contract type"
     1401msgstr "Vertragstyp"
     1402
     1403#: blocks/details/build/index.js:1 blocks/show/build/index.js:1
     1404msgid "Location"
     1405msgstr "Standort"
     1406
     1407#: blocks/details/build/index.js:1 blocks/show/build/index.js:1
     1408msgid "Department"
     1409msgstr "Abteilung"
     1410
     1411#: blocks/details/build/index.js:1 blocks/show/build/index.js:1
     1412msgid "Experience"
     1413msgstr "Erfahrung"
     1414
     1415#: blocks/details/build/index.js:1 blocks/show/build/index.js:1
     1416msgid "Years of experience"
     1417msgstr "Berufserfahrung in Jahren"
     1418
     1419#: blocks/details/build/index.js:1 blocks/show/build/index.js:1
     1420msgid "Job type"
     1421msgstr "Stellentyp"
    13931422
    13941423#: blocks/details/build/index.js:1
  • personio-integration-light/trunk/languages/wp-personio-integration-de_DE_formal-60918b809a41223430f43d8c337e4241.json

    r2962403 r2965729  
    1 {"translation-revision-date":"2023-09-01 15:43+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/list\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"select-box":["Auswahl-Box"],"list of links":["Linkliste"],"date":["Datum"],"Personio Positions":["Personio Stellen"],"amount":["Anzahl"],"ascending":["aufsteigend"],"descending":["absteigend"],"Sort by":["Sortieren nach"],"title":["Titel"],"Group by":["Gruppieren nach"],"Show title":["Zeige Titel an"],"Settings":["Einstellungen"],"Choose details":["W\u00e4hle Stellendetails"],"Filter":["Filter"],"Choose filter":["W\u00e4hle Filter-Typ"],"Provides a Gutenberg Block to show a list of positions provided by Personio.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Stellen von Personio bereit."],"Show filter":["Zeige Filter an"],"Type of filter":["Filter-Typ"],"Sort direction":["Sortierrichtung"],"Link title":["Verlinke den Titel"],"show excerpt":["zeige Stellendetails"],"View content":["Zeige Inhalt an"],"View application link":["Zeige Link zum Bewerbungsformular an"]}}}
     1{"translation-revision-date":"2023-09-12 10:27+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/list\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"select-box":["Auswahl-Box"],"list of links":["Linkliste"],"date":["Datum"],"Personio Positions":["Personio Stellen"],"amount":["Anzahl"],"ascending":["aufsteigend"],"descending":["absteigend"],"Sort by":["Sortieren nach"],"title":["Titel"],"Group by":["Gruppieren nach"],"Show title":["Zeige Titel an"],"Settings":["Einstellungen"],"Choose details":["W\u00e4hle Stellendetails"],"Filter":["Filter"],"Choose filter":["W\u00e4hle Filter-Typ"],"Provides a Gutenberg Block to show a list of positions provided by Personio.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Stellen von Personio bereit."],"Show filter":["Zeige Filter an"],"Type of filter":["Filter-Typ"],"Sort direction":["Sortierrichtung"],"Link title":["Verlinke den Titel"],"show excerpt":["zeige Stellendetails"],"View content":["Zeige Inhalt an"],"View application link":["Zeige Link zum Bewerbungsformular an"]}}}
  • personio-integration-light/trunk/languages/wp-personio-integration-de_DE_formal-90f17078fbe60cc40854b0ced7af8520.json

    r2962403 r2965729  
    1 {"translation-revision-date":"2023-09-01 15:43+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/application-button\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Personio Application link":["Personio Bewerbungslink"],"Provides a Gutenberg Block to show the application button for single position.":["Stellt einen Gutenberg-Block zur Verf\u00fcgung, um den Bewerbungslink f\u00fcr eine einzelne Position anzuzeigen."]}}}
     1{"translation-revision-date":"2023-09-12 10:27+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/application-button\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Personio Application link":["Personio Bewerbungslink"],"Provides a Gutenberg Block to show the application button for single position.":["Stellt einen Gutenberg-Block zur Verf\u00fcgung, um den Bewerbungslink f\u00fcr eine einzelne Position anzuzeigen."]}}}
  • personio-integration-light/trunk/languages/wp-personio-integration-de_DE_formal-ae5917978e5cc73b9f3c2617ad34a276.json

    r2962403 r2965729  
    1 {"translation-revision-date":"2023-09-01 15:43+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/filter-list\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Filter":["Filter"],"Personio List Filter":["Personio Listenfilter"],"Provides a Gutenberg block to show filter as link-based dropdown-list for Personio Positions.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Links zu Filtern von Stellen von Personio bereit."],"Choose filter":["W\u00e4hle Filter-Typ"],"Hide filter title":["Verstecke den Filtertitel"],"Hide reset link":["Verstecke den Zur\u00fccksetzen-Link"],"Space between filters":["Abstand zwischen den Filtern"]}}}
     1{"translation-revision-date":"2023-09-12 10:27+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/filter-list\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Filter":["Filter"],"Personio List Filter":["Personio Listenfilter"],"Provides a Gutenberg block to show filter as link-based dropdown-list for Personio Positions.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Links zu Filtern von Stellen von Personio bereit."],"Choose filter":["W\u00e4hle Filter-Typ"],"Hide filter title":["Verstecke den Filtertitel"],"Hide reset link":["Verstecke den Zur\u00fccksetzen-Link"],"Space between filters":["Abstand zwischen den Filtern"]}}}
  • personio-integration-light/trunk/languages/wp-personio-integration-de_DE_formal-bf0a71f47c0263b0b996e02116fd7e15.json

    r2962403 r2965729  
    1 {"translation-revision-date":"2023-09-01 15:43+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/filter-select\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Filter":["Filter"],"Choose filter":["W\u00e4hle Filter-Typ"],"Hide filter title":["Verstecke den Filtertitel"],"Hide reset link":["Verstecke den Zur\u00fccksetzen-Link"],"Personio Select Filter":["Personio Select-Filter"],"Provides a Gutenberg block to show filter as dropdown-list for Personio Positions.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Select-Boxen zu Filtern von Stellen von Personio bereit."],"Hide submit button":["Verstecke den Absenden-Button"]}}}
     1{"translation-revision-date":"2023-09-12 10:27+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/filter-select\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Filter":["Filter"],"Choose filter":["W\u00e4hle Filter-Typ"],"Hide filter title":["Verstecke den Filtertitel"],"Hide reset link":["Verstecke den Zur\u00fccksetzen-Link"],"Personio Select Filter":["Personio Select-Filter"],"Provides a Gutenberg block to show filter as dropdown-list for Personio Positions.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Select-Boxen zu Filtern von Stellen von Personio bereit."],"Hide submit button":["Verstecke den Absenden-Button"]}}}
  • personio-integration-light/trunk/languages/wp-personio-integration-de_DE_formal-e45331e79bc58afa309b9291e6555a16.json

    r2962403 r2965729  
    1 {"translation-revision-date":"2023-09-01 15:43+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/show\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"link title":["verlinke den Titel"],"Personio Position":["Personio Stelle"],"Select position":["Anzuzeigende Stelle w\u00e4hlen"],"Settings":["Einstellungen"],"recruiting category":["Kategorie"],"schedule":["Arbeitszeit"],"office":["Standort"],"department":["Abteilung"],"seniority":["Dienstalter"],"experience":["Berufserfahrung"],"occupation":["Besch\u00e4ftigung"],"Please choose":["Bitte w\u00e4hlen"],"Choose details":["W\u00e4hle Stellendetails"],"show excerpt":["zeige Stellendetails"],"Provides a Gutenberg Block to show a position provided by personio.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Stellen von Personio bereit."],"show title":["zeige Titel an"],"view content":["zeige Inhalt an"],"view application link":["zeige Link zum Bewerbungsformular an"]}}}
     1{"translation-revision-date":"2023-09-12 10:27+0200","generator":"WP-CLI\/2.6.0","source":"blocks\/show\/build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"link title":["verlinke den Titel"],"Personio Position":["Personio Stelle"],"Select position":["Anzuzeigende Stelle w\u00e4hlen"],"Settings":["Einstellungen"],"Please choose":["Bitte w\u00e4hlen"],"Choose details":["W\u00e4hle Stellendetails"],"Category":["Kategorie"],"Contract type":["Vertragstyp"],"Location":["Standort"],"Department":["Abteilung"],"Experience":["Erfahrung"],"Years of experience":["Berufserfahrung in Jahren"],"Job type":["Stellentyp"],"show excerpt":["zeige Stellendetails"],"Provides a Gutenberg Block to show a position provided by personio.":["Stellt einen Gutenberg-Block zur Ausgabe einer Liste von Stellen von Personio bereit."],"show title":["zeige Titel an"],"view content":["zeige Inhalt an"],"view application link":["zeige Link zum Bewerbungsformular an"]}}}
  • personio-integration-light/trunk/languages/wp-personio-integration-de_DE_formal.po

    r2962403 r2965729  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WP Personio Integration Light 2.4.0\n"
     5"Project-Id-Version: WP Personio Integration Light 2.4.1\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/personio-"
    77"integration-light\n"
    8 "POT-Creation-Date: 2023-09-01T15:42:37+02:00\n"
    9 "PO-Revision-Date: 2023-09-01 15:43+0200\n"
     8"POT-Creation-Date: 2023-09-12T10:25:58+02:00\n"
     9"PO-Revision-Date: 2023-09-12 10:27+0200\n"
    1010"Last-Translator: \n"
    1111"Language-Team: \n"
     
    8282#. translators: %1$s is replaced with "string"
    8383#: classes/class-helper.php:91 classes/class-helper.php:148
    84 #: classes/class-helper.php:171 inc/admin.php:47 inc/settings/import.php:200
     84#: classes/class-helper.php:171 inc/admin.php:52 inc/settings/import.php:202
    8585msgid "Run import"
    8686msgstr "Jetzt Import ausführen"
    8787
    8888#. translators: %1$s is replaced with "string", %2$s is replaced with "string"
    89 #: classes/class-helper.php:98 inc/admin.php:53
     89#: classes/class-helper.php:98 inc/admin.php:58
    9090msgid ""
    9191"<strong>The import has been manually run.</strong> Please check the list of "
     
    618618
    619619#. translators: %1$s will be replaced by the name of a language, %2$d will be replaced by HTTP-Status (like 404)
    620 #: classes/class-import.php:194
     620#: classes/class-import.php:204
    621621msgid ""
    622622"Personio URL for language %1$s not available. Returned HTTP-Status %2$d. "
     
    627627"ist."
    628628
    629 #: classes/class-import.php:288
     629#: classes/class-import.php:298
    630630msgid "Error during Personio Positions Import"
    631631msgstr "Fehler beim Personio Positions Import"
    632632
    633 #: classes/class-import.php:289
     633#: classes/class-import.php:299
    634634msgid ""
    635635"The following error occurred when importing positions provided by Personio:"
     
    638638"folgender Fehler aufgetreten:"
    639639
    640 #: classes/class-import.php:290
     640#: classes/class-import.php:300
    641641msgid "Sent by the plugin Personio Integration"
    642642msgstr "Gesendet vom Plugin Personio Integration"
     
    669669"Stellt ein Widget zur Verfügung, um eine Liste der von Stellen anzuzeigen."
    670670
    671 #: classes/class-positionswidget.php:24 inc/init.php:303
     671#: classes/class-positionswidget.php:24 inc/init.php:304
    672672#: blocks/list/build/index.js:1
    673673msgid "Personio Positions"
     
    694694msgstr "Sortieren nach"
    695695
    696 #: classes/class-positionswidget.php:56 inc/init.php:364
     696#: classes/class-positionswidget.php:56 inc/init.php:365
    697697#: blocks/list/build/index.js:1
    698698msgid "title"
     
    777777msgstr "Gibt deine offenen Stellen aus."
    778778
    779 #: inc/admin.php:42
     779#: inc/admin.php:47
    780780msgid "Get Personio Integration Pro"
    781781msgstr "Get Personio Integration Pro"
    782782
    783 #: inc/admin.php:46
     783#: inc/admin.php:51
    784784msgid "Reset sorting"
    785785msgstr "Sortierung zurücksetzen"
    786786
    787 #: inc/admin.php:48
     787#: inc/admin.php:53
    788788msgid "Import is running"
    789789msgstr "Import läuft"
    790790
    791 #: inc/admin.php:49
     791#: inc/admin.php:54
    792792msgid "Please wait"
    793793msgstr "Bitte warten"
    794794
    795 #: inc/admin.php:50 inc/settings/import.php:201
     795#: inc/admin.php:55 inc/settings/import.php:203
    796796msgid ""
    797797"Performing the import could take a few minutes. If a timeout occurs, a "
     
    803803"möglich. Dann sollte der automatische Import verwendet werden."
    804804
    805 #: inc/admin.php:65
     805#: inc/admin.php:70
    806806msgid "OK"
    807807msgstr "OK"
    808808
    809 #: inc/admin.php:100
     809#: inc/admin.php:105
    810810msgid "Positions imported from Personio"
    811811msgstr "Von Personio importierte Stellen"
    812812
    813 #: inc/admin.php:121
     813#: inc/admin.php:126
    814814msgid "Actually there are no positions imported from Personio."
    815815msgstr "Derzeit gibt es keine aus Personio importierten Stellen."
    816816
    817817#. translators: %1$d will be replaced by the count of positions
    818 #: inc/admin.php:137
     818#: inc/admin.php:142
    819819msgid "Show all %1$d positions"
    820820msgstr "Zeige alle %1$d Stellen"
    821821
    822 #: inc/admin.php:194
     822#: inc/admin.php:199
    823823msgid "Dismiss this notice."
    824824msgstr "Hinweis ausblenden."
    825825
    826 #: inc/admin.php:224 inc/admin.php:810
     826#: inc/admin.php:229 inc/admin.php:815
    827827msgid "PersonioID"
    828828msgstr "PersonioID"
    829829
    830 #: inc/admin.php:272 inc/settings/settings.php:81
     830#: inc/admin.php:277 inc/settings/settings.php:81
    831831#: blocks/details/build/index.js:1 blocks/list/build/index.js:1
    832832#: blocks/show/build/index.js:1
     
    834834msgstr "Einstellungen"
    835835
    836 #: inc/admin.php:359
     836#: inc/admin.php:364
    837837msgid "Edit"
    838838msgstr "Bearbeiten"
    839839
    840 #: inc/admin.php:799
     840#: inc/admin.php:804
    841841msgid "Show Personio position data"
    842842msgstr "Zeige Daten dieser Stelle"
    843843
    844 #: inc/admin.php:811
     844#: inc/admin.php:816
    845845msgid "Title"
    846846msgstr "Titel"
    847847
    848 #: inc/admin.php:812 blocks/description/build/index.js:1
     848#: inc/admin.php:817 blocks/description/build/index.js:1
    849849#: blocks/description/src/index.js:37
    850850msgid "Description"
     
    852852
    853853#. translators: %1$s will be replaced by the URL for Personio
    854 #: inc/admin.php:832
     854#: inc/admin.php:837
    855855msgid ""
    856856"At this point we show you the imported data of your open position <i>%1$s</"
     
    862862"\"%2$s\" target=\"_blank\">Personio-Konto (öffnet neues Fenster)</a>."
    863863
    864 #: inc/admin.php:883
     864#: inc/admin.php:888
    865865msgid "No data"
    866866msgstr "Keine Daten"
     867
     868#: inc/admin.php:915
     869msgid "Personio"
     870msgstr "Personio"
     871
     872#: inc/admin.php:916
     873msgid "Import positions from Personio"
     874msgstr "Import von Stellen von Personio"
    867875
    868876#: inc/frontend.php:53
     
    874882msgstr "Die gegebene Id ist keine gültige Stellen-Id."
    875883
    876 #: inc/init.php:32 inc/init.php:34
     884#: inc/init.php:33 inc/init.php:35
    877885#: templates/archive-personioposition-shortcode.php:36
    878886msgid "Positions"
    879887msgstr "Stellen"
    880888
    881 #: inc/init.php:33 templates/single-personioposition-shortcode.php:17
     889#: inc/init.php:34 templates/single-personioposition-shortcode.php:17
    882890msgid "Position"
    883891msgstr "Stelle"
    884892
    885 #: inc/init.php:35
     893#: inc/init.php:36
    886894msgid "Parent Position"
    887895msgstr "Eltern Stelle"
    888896
    889 #: inc/init.php:36
     897#: inc/init.php:37
    890898msgid "All Positions"
    891899msgstr "Alle offene Stellen"
    892900
    893 #: inc/init.php:37
     901#: inc/init.php:38
    894902msgid "View Position in frontend"
    895903msgstr "Zeige Stelle im Frontend"
    896904
    897 #: inc/init.php:38
     905#: inc/init.php:39
    898906msgid "View Positions"
    899907msgstr "Zeige Stellen an"
    900908
    901 #: inc/init.php:39
     909#: inc/init.php:40
    902910msgid "View Position in backend"
    903911msgstr "Zeige Stelle im Backend"
    904912
    905 #: inc/init.php:40
     913#: inc/init.php:41
    906914msgid "Search Position"
    907915msgstr "Suche nach Stellen"
    908916
    909 #: inc/init.php:41
     917#: inc/init.php:42
    910918msgid "Not Found"
    911919msgstr "Nicht gefunden"
    912920
    913 #: inc/init.php:42
     921#: inc/init.php:43
    914922msgid "Not found in Trash"
    915923msgstr "In Papierkorb nicht gefunden"
    916924
    917 #: inc/init.php:268
     925#: inc/init.php:269
    918926msgid "every 5th Minute"
    919927msgstr "jede 5. Minute"
    920928
    921 #: inc/init.php:343 blocks/details/build/index.js:1
    922 #: blocks/show/build/index.js:1
     929#: inc/init.php:344
    923930msgid "recruiting category"
    924931msgstr "Kategorie"
    925932
    926 #: inc/init.php:344 blocks/details/build/index.js:1
    927 #: blocks/show/build/index.js:1
     933#: inc/init.php:345
    928934msgid "schedule"
    929935msgstr "Arbeitszeit"
    930936
    931 #: inc/init.php:345 blocks/details/build/index.js:1
    932 #: blocks/show/build/index.js:1
     937#: inc/init.php:346
    933938msgid "office"
    934939msgstr "Standort"
    935940
    936 #: inc/init.php:346 blocks/details/build/index.js:1
    937 #: blocks/show/build/index.js:1
     941#: inc/init.php:347
    938942msgid "department"
    939943msgstr "Abteilung"
    940944
    941 #: inc/init.php:347
     945#: inc/init.php:348
    942946msgid "employment types"
    943947msgstr "Anstellungsarten"
    944948
    945 #: inc/init.php:348 blocks/details/build/index.js:1
    946 #: blocks/show/build/index.js:1
     949#: inc/init.php:349
    947950msgid "seniority"
    948951msgstr "Dienstalter"
    949952
    950 #: inc/init.php:349 blocks/details/build/index.js:1
    951 #: blocks/show/build/index.js:1
     953#: inc/init.php:350
    952954msgid "experience"
    953955msgstr "Berufserfahrung"
    954956
    955 #: inc/init.php:350 blocks/details/build/index.js:1
    956 #: blocks/show/build/index.js:1
     957#: inc/init.php:351
    957958msgid "occupation"
    958959msgstr "Beschäftigung"
    959960
    960 #: inc/init.php:365
     961#: inc/init.php:366
    961962msgid "details"
    962963msgstr "Stellendetails"
    963964
    964 #: inc/init.php:366
     965#: inc/init.php:367
    965966msgid "content"
    966967msgstr "Inhalt"
    967968
    968 #: inc/init.php:367
     969#: inc/init.php:368
    969970msgid "application link"
    970971msgstr "Link zum Bewerbungsformular"
    971972
    972 #: inc/init.php:556 templates/parts/term-filter-select.php:15
     973#: inc/init.php:557 templates/parts/term-filter-select.php:15
    973974#: blocks/show/build/index.js:1
    974975msgid "Please choose"
     
    11221123msgstr "Bitte eine gültige URL eintragen."
    11231124
    1124 #: inc/settings/import.php:21
     1125#: inc/settings/import.php:22
    11251126msgid "Import"
    11261127msgstr "Import"
    11271128
    1128 #: inc/settings/import.php:66
     1129#: inc/settings/import.php:67
    11291130msgid "Import of positions from Personio"
    11301131msgstr "Import von Stellen von Personio"
    11311132
    1132 #: inc/settings/import.php:74
     1133#: inc/settings/import.php:75
    11331134msgid "Start import now"
    11341135msgstr "Starte Import jetzt"
    11351136
    1136 #: inc/settings/import.php:87
     1137#: inc/settings/import.php:88
    11371138msgid "Delete positions"
    11381139msgstr "Stellen löschen"
    11391140
    1140 #: inc/settings/import.php:100
     1141#: inc/settings/import.php:101
    11411142msgid "Enable automatic import"
    11421143msgstr "Aktiviere automatischen Import"
    11431144
    1144 #: inc/settings/import.php:107
     1145#: inc/settings/import.php:108
    11451146msgid ""
    11461147"If enabled, new positions stored in Personio will be retrieved automatically "
     
    11521153
    11531154#. translators: %1$s is replaced with "string"
    1154 #: inc/settings/import.php:110
     1155#: inc/settings/import.php:111
    11551156msgid ""
    11561157"Use more import options with the %s. Among other things, you get the "
     
    11621163"sehr große Stellen-Listen durchzuführen."
    11631164
    1164 #: inc/settings/import.php:201 inc/settings/import.php:233
     1165#: inc/settings/import.php:203 inc/settings/import.php:235
    11651166msgid "Hint"
    11661167msgstr "Hinweis"
    11671168
    1168 #: inc/settings/import.php:206
     1169#: inc/settings/import.php:208
    11691170msgid "The import is already running. Please wait some moments."
    11701171msgstr "Ein Import läuft aktuell. Bitte warten Sie einen Moment."
    11711172
    1172 #: inc/settings/import.php:218
     1173#: inc/settings/import.php:220
    11731174msgid "Cancel running import"
    11741175msgstr "Laufenden Import abbrechen"
    11751176
    1176 #: inc/settings/import.php:232
     1177#: inc/settings/import.php:234
    11771178msgid "Delete all positions"
    11781179msgstr "Entferne alle Stellen"
    11791180
    1180 #: inc/settings/import.php:233
     1181#: inc/settings/import.php:235
    11811182msgid "Removes all actual imported positions."
    11821183msgstr "Entfernt alle aktuell importierten Stellen."
    11831184
    1184 #: inc/settings/import.php:237
     1185#: inc/settings/import.php:239
    11851186msgid "There are currently no imported positions."
    11861187msgstr "Es sind aktuell keine Stellen importiert."
     
    13931394"Stellt einen Gutenberg-Block zur Ausgabe einer einzelnen Stelle, verwaltet "
    13941395"bei Personio, bereit."
     1396
     1397#: blocks/details/build/index.js:1 blocks/show/build/index.js:1
     1398msgid "Category"
     1399msgstr "Kategorie"
     1400
     1401#: blocks/details/build/index.js:1 blocks/show/build/index.js:1
     1402msgid "Contract type"
     1403msgstr "Vertragstyp"
     1404
     1405#: blocks/details/build/index.js:1 blocks/show/build/index.js:1
     1406msgid "Location"
     1407msgstr "Standort"
     1408
     1409#: blocks/details/build/index.js:1 blocks/show/build/index.js:1
     1410msgid "Department"
     1411msgstr "Abteilung"
     1412
     1413#: blocks/details/build/index.js:1 blocks/show/build/index.js:1
     1414msgid "Experience"
     1415msgstr "Erfahrung"
     1416
     1417#: blocks/details/build/index.js:1 blocks/show/build/index.js:1
     1418msgid "Years of experience"
     1419msgstr "Berufserfahrung in Jahren"
     1420
     1421#: blocks/details/build/index.js:1 blocks/show/build/index.js:1
     1422msgid "Job type"
     1423msgstr "Stellentyp"
    13951424
    13961425#: blocks/details/build/index.js:1
  • personio-integration-light/trunk/languages/wp-personio-integration.pot

    r2962403 r2965729  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: Personio Integration Light 2.4.0\n"
     5"Project-Id-Version: Personio Integration Light 2.4.1\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/personio-integration-light\n"
    77"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2023-09-01T15:42:37+02:00\n"
     12"POT-Creation-Date: 2023-09-12T10:25:58+02:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1414"X-Generator: WP-CLI 2.6.0\n"
     
    8484#: classes/class-helper.php:148
    8585#: classes/class-helper.php:171
    86 #: inc/admin.php:47
    87 #: inc/settings/import.php:200
     86#: inc/admin.php:52
     87#: inc/settings/import.php:202
    8888msgid "Run import"
    8989msgstr ""
     
    9191#. translators: %1$s is replaced with "string", %2$s is replaced with "string"
    9292#: classes/class-helper.php:98
    93 #: inc/admin.php:53
     93#: inc/admin.php:58
    9494msgid "<strong>The import has been manually run.</strong> Please check the list of positions <a href=\"%1$s\">in backend</a> and <a href=\"%2$s\">frontend</a>."
    9595msgstr ""
     
    521521
    522522#. translators: %1$s will be replaced by the name of a language, %2$d will be replaced by HTTP-Status (like 404)
    523 #: classes/class-import.php:194
     523#: classes/class-import.php:204
    524524msgid "Personio URL for language %1$s not available. Returned HTTP-Status %2$d. Please check the URL you configured and if it is available."
    525525msgstr ""
    526526
    527 #: classes/class-import.php:288
     527#: classes/class-import.php:298
    528528msgid "Error during Personio Positions Import"
    529529msgstr ""
    530530
    531 #: classes/class-import.php:289
     531#: classes/class-import.php:299
    532532msgid "The following error occurred when importing positions provided by Personio:"
    533533msgstr ""
    534534
    535 #: classes/class-import.php:290
     535#: classes/class-import.php:300
    536536msgid "Sent by the plugin Personio Integration"
    537537msgstr ""
     
    565565
    566566#: classes/class-positionswidget.php:24
    567 #: inc/init.php:303
     567#: inc/init.php:304
    568568#: blocks/list/build/index.js:1
    569569msgid "Personio Positions"
     
    595595
    596596#: classes/class-positionswidget.php:56
    597 #: inc/init.php:364
     597#: inc/init.php:365
    598598#: blocks/list/build/index.js:1
    599599msgid "title"
     
    697697msgstr ""
    698698
    699 #: inc/admin.php:42
     699#: inc/admin.php:47
    700700msgid "Get Personio Integration Pro"
    701701msgstr ""
    702702
    703 #: inc/admin.php:46
     703#: inc/admin.php:51
    704704msgid "Reset sorting"
    705705msgstr ""
    706706
    707 #: inc/admin.php:48
     707#: inc/admin.php:53
    708708msgid "Import is running"
    709709msgstr ""
    710710
    711 #: inc/admin.php:49
     711#: inc/admin.php:54
    712712msgid "Please wait"
    713713msgstr ""
    714714
    715 #: inc/admin.php:50
    716 #: inc/settings/import.php:201
     715#: inc/admin.php:55
     716#: inc/settings/import.php:203
    717717msgid "Performing the import could take a few minutes. If a timeout occurs, a manual import is not possible this way. Then the automatic import should be used."
    718718msgstr ""
    719719
    720 #: inc/admin.php:65
     720#: inc/admin.php:70
    721721msgid "OK"
    722722msgstr ""
    723723
    724 #: inc/admin.php:100
     724#: inc/admin.php:105
    725725msgid "Positions imported from Personio"
    726726msgstr ""
    727727
    728 #: inc/admin.php:121
     728#: inc/admin.php:126
    729729msgid "Actually there are no positions imported from Personio."
    730730msgstr ""
    731731
    732732#. translators: %1$d will be replaced by the count of positions
    733 #: inc/admin.php:137
     733#: inc/admin.php:142
    734734msgid "Show all %1$d positions"
    735735msgstr ""
    736736
    737 #: inc/admin.php:194
     737#: inc/admin.php:199
    738738msgid "Dismiss this notice."
    739739msgstr ""
    740740
    741 #: inc/admin.php:224
    742 #: inc/admin.php:810
     741#: inc/admin.php:229
     742#: inc/admin.php:815
    743743msgid "PersonioID"
    744744msgstr ""
    745745
    746 #: inc/admin.php:272
     746#: inc/admin.php:277
    747747#: inc/settings/settings.php:81
    748748#: blocks/details/build/index.js:1
     
    752752msgstr ""
    753753
    754 #: inc/admin.php:359
     754#: inc/admin.php:364
    755755msgid "Edit"
    756756msgstr ""
    757757
    758 #: inc/admin.php:799
     758#: inc/admin.php:804
    759759msgid "Show Personio position data"
    760760msgstr ""
    761761
    762 #: inc/admin.php:811
     762#: inc/admin.php:816
    763763msgid "Title"
    764764msgstr ""
    765765
    766 #: inc/admin.php:812
     766#: inc/admin.php:817
    767767#: blocks/description/build/index.js:1
    768768#: blocks/description/src/index.js:37
     
    771771
    772772#. translators: %1$s will be replaced by the URL for Personio
    773 #: inc/admin.php:832
     773#: inc/admin.php:837
    774774msgid "At this point we show you the imported data of your open position <i>%1$s</i>. Please edit the job details in your <a href=\"%2$s\" target=\"_blank\">Personio account (opens new window)</a>."
    775775msgstr ""
    776776
    777 #: inc/admin.php:883
     777#: inc/admin.php:888
    778778msgid "No data"
     779msgstr ""
     780
     781#: inc/admin.php:915
     782msgid "Personio"
     783msgstr ""
     784
     785#: inc/admin.php:916
     786msgid "Import positions from Personio"
    779787msgstr ""
    780788
     
    787795msgstr ""
    788796
    789 #: inc/init.php:32
    790 #: inc/init.php:34
     797#: inc/init.php:33
     798#: inc/init.php:35
    791799#: templates/archive-personioposition-shortcode.php:36
    792800msgid "Positions"
    793801msgstr ""
    794802
    795 #: inc/init.php:33
     803#: inc/init.php:34
    796804#: templates/single-personioposition-shortcode.php:17
    797805msgid "Position"
    798806msgstr ""
    799807
    800 #: inc/init.php:35
     808#: inc/init.php:36
    801809msgid "Parent Position"
    802810msgstr ""
    803811
    804 #: inc/init.php:36
     812#: inc/init.php:37
    805813msgid "All Positions"
    806814msgstr ""
    807815
    808 #: inc/init.php:37
     816#: inc/init.php:38
    809817msgid "View Position in frontend"
    810818msgstr ""
    811819
    812 #: inc/init.php:38
     820#: inc/init.php:39
    813821msgid "View Positions"
    814822msgstr ""
    815823
    816 #: inc/init.php:39
     824#: inc/init.php:40
    817825msgid "View Position in backend"
    818826msgstr ""
    819827
    820 #: inc/init.php:40
     828#: inc/init.php:41
    821829msgid "Search Position"
    822830msgstr ""
    823831
    824 #: inc/init.php:41
     832#: inc/init.php:42
    825833msgid "Not Found"
    826834msgstr ""
    827835
    828 #: inc/init.php:42
     836#: inc/init.php:43
    829837msgid "Not found in Trash"
    830838msgstr ""
    831839
    832 #: inc/init.php:268
     840#: inc/init.php:269
    833841msgid "every 5th Minute"
    834842msgstr ""
    835843
    836 #: inc/init.php:343
    837 #: blocks/details/build/index.js:1
    838 #: blocks/show/build/index.js:1
     844#: inc/init.php:344
    839845msgid "recruiting category"
    840846msgstr ""
    841847
    842 #: inc/init.php:344
    843 #: blocks/details/build/index.js:1
    844 #: blocks/show/build/index.js:1
     848#: inc/init.php:345
    845849msgid "schedule"
    846850msgstr ""
    847851
    848 #: inc/init.php:345
    849 #: blocks/details/build/index.js:1
    850 #: blocks/show/build/index.js:1
     852#: inc/init.php:346
    851853msgid "office"
    852854msgstr ""
    853855
    854 #: inc/init.php:346
    855 #: blocks/details/build/index.js:1
    856 #: blocks/show/build/index.js:1
     856#: inc/init.php:347
    857857msgid "department"
    858858msgstr ""
    859859
    860 #: inc/init.php:347
     860#: inc/init.php:348
    861861msgid "employment types"
    862862msgstr ""
    863863
    864 #: inc/init.php:348
    865 #: blocks/details/build/index.js:1
    866 #: blocks/show/build/index.js:1
     864#: inc/init.php:349
    867865msgid "seniority"
    868866msgstr ""
    869867
    870 #: inc/init.php:349
    871 #: blocks/details/build/index.js:1
    872 #: blocks/show/build/index.js:1
     868#: inc/init.php:350
    873869msgid "experience"
    874870msgstr ""
    875871
    876 #: inc/init.php:350
    877 #: blocks/details/build/index.js:1
    878 #: blocks/show/build/index.js:1
     872#: inc/init.php:351
    879873msgid "occupation"
    880874msgstr ""
    881875
    882 #: inc/init.php:365
     876#: inc/init.php:366
    883877msgid "details"
    884878msgstr ""
    885879
    886 #: inc/init.php:366
     880#: inc/init.php:367
    887881msgid "content"
    888882msgstr ""
    889883
    890 #: inc/init.php:367
     884#: inc/init.php:368
    891885msgid "application link"
    892886msgstr ""
    893887
    894 #: inc/init.php:556
     888#: inc/init.php:557
    895889#: templates/parts/term-filter-select.php:15
    896890#: blocks/show/build/index.js:1
     
    10221016msgstr ""
    10231017
    1024 #: inc/settings/import.php:21
     1018#: inc/settings/import.php:22
    10251019msgid "Import"
    10261020msgstr ""
    10271021
    1028 #: inc/settings/import.php:66
     1022#: inc/settings/import.php:67
    10291023msgid "Import of positions from Personio"
    10301024msgstr ""
    10311025
    1032 #: inc/settings/import.php:74
     1026#: inc/settings/import.php:75
    10331027msgid "Start import now"
    10341028msgstr ""
    10351029
    1036 #: inc/settings/import.php:87
     1030#: inc/settings/import.php:88
    10371031msgid "Delete positions"
    10381032msgstr ""
    10391033
    1040 #: inc/settings/import.php:100
     1034#: inc/settings/import.php:101
    10411035msgid "Enable automatic import"
    10421036msgstr ""
    10431037
    1044 #: inc/settings/import.php:107
     1038#: inc/settings/import.php:108
    10451039msgid "If enabled, new positions stored in Personio will be retrieved automatically daily.<br>If disabled, new positions are retrieved manually only."
    10461040msgstr ""
    10471041
    10481042#. translators: %1$s is replaced with "string"
    1049 #: inc/settings/import.php:110
     1043#: inc/settings/import.php:111
    10501044msgid "Use more import options with the %s. Among other things, you get the possibility to change the time interval for imports and partial imports of very large position lists."
    10511045msgstr ""
    10521046
    1053 #: inc/settings/import.php:201
    1054 #: inc/settings/import.php:233
     1047#: inc/settings/import.php:203
     1048#: inc/settings/import.php:235
    10551049msgid "Hint"
    10561050msgstr ""
    10571051
    1058 #: inc/settings/import.php:206
     1052#: inc/settings/import.php:208
    10591053msgid "The import is already running. Please wait some moments."
    10601054msgstr ""
    10611055
    1062 #: inc/settings/import.php:218
     1056#: inc/settings/import.php:220
    10631057msgid "Cancel running import"
    10641058msgstr ""
    10651059
    1066 #: inc/settings/import.php:232
     1060#: inc/settings/import.php:234
    10671061msgid "Delete all positions"
    10681062msgstr ""
    10691063
    1070 #: inc/settings/import.php:233
     1064#: inc/settings/import.php:235
    10711065msgid "Removes all actual imported positions."
    10721066msgstr ""
    10731067
    1074 #: inc/settings/import.php:237
     1068#: inc/settings/import.php:239
    10751069msgid "There are currently no imported positions."
    10761070msgstr ""
     
    12401234#: blocks/details/build/index.js:1
    12411235msgid "Provides a Gutenberg Block to details of a single position managed by Personio."
     1236msgstr ""
     1237
     1238#: blocks/details/build/index.js:1
     1239#: blocks/show/build/index.js:1
     1240msgid "Category"
     1241msgstr ""
     1242
     1243#: blocks/details/build/index.js:1
     1244#: blocks/show/build/index.js:1
     1245msgid "Contract type"
     1246msgstr ""
     1247
     1248#: blocks/details/build/index.js:1
     1249#: blocks/show/build/index.js:1
     1250msgid "Location"
     1251msgstr ""
     1252
     1253#: blocks/details/build/index.js:1
     1254#: blocks/show/build/index.js:1
     1255msgid "Department"
     1256msgstr ""
     1257
     1258#: blocks/details/build/index.js:1
     1259#: blocks/show/build/index.js:1
     1260msgid "Experience"
     1261msgstr ""
     1262
     1263#: blocks/details/build/index.js:1
     1264#: blocks/show/build/index.js:1
     1265msgid "Years of experience"
     1266msgstr ""
     1267
     1268#: blocks/details/build/index.js:1
     1269#: blocks/show/build/index.js:1
     1270msgid "Job type"
    12421271msgstr ""
    12431272
  • personio-integration-light/trunk/personio-integration-light.php

    r2962403 r2965729  
    55 * Requires at least: 5.9
    66 * Requires PHP:      7.4
    7  * Version:           2.4.0
     7 * Version:           2.4.1
    88 * Author:            laOlaWeb
    99 * Author URI:        https://laolaweb.com
     
    1616
    1717// set version number
    18 const WP_PERSONIO_INTEGRATION_VERSION = '2.4.0';
     18const WP_PERSONIO_INTEGRATION_VERSION = '2.4.1';
    1919
    2020// save plugin-path
  • personio-integration-light/trunk/readme.txt

    r2962403 r2965729  
    77License: GPL-2.0-or-later
    88License URI: https://www.gnu.org/licenses/gpl-2.0.html
    9 Stable tag: 2.4.0
     9Stable tag: 2.4.1
    1010
    1111== Description ==
     
    275275* Updated dependencies for Gutenberg-scripts
    276276* Fixed reading of employment type
     277
     278= 2.4.1 =
     279* Added WPML settings to prevent translation of our own post types and taxonomies
     280* Added our own importer under Tools > Importer
     281* Run import even if the Personio timestamp has not been changed but no positions are in local database
     282* Extended log for deletion of positions
     283* Optimized log-styling
     284* Updated translations
     285* Fixed missing files for Block Editor in WordPress-SVN
     286* Fixed error in dashboard if pro-plugin is not active
Note: See TracChangeset for help on using the changeset viewer.