Changeset 2965729
- Timestamp:
- 09/12/2023 08:41:20 AM (19 months ago)
- 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 96 96 } 97 97 98 .personioposition_page_personioPositions th#state { 99 width: 72px; 100 } 101 98 102 .personio-dialog-no-close .ui-dialog-titlebar-close { 99 103 display: none; -
personio-integration-light/tags/2.4.1/classes/class-cli.php
r2903217 r2965729 1 1 <?php 2 /** 3 * File for cli-commands of this plugin. 4 * 5 * @package personio-integration-light 6 */ 2 7 3 8 namespace personioIntegration; … … 30 35 public function deleteAll(): void 31 36 { 37 // log this event. 38 $logs = new Log(); 39 $logs->addLog( 'WP CLI-command deleteAll has been used.', 'success' ); 40 32 41 // delete taxonomies 33 42 $this->deleteTaxonomies(); … … 43 52 * @noinspection PhpUnused 44 53 */ 45 public function deletePositions( ): void54 public function deletePositions( array $args ): void 46 55 { 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. 47 66 $this->deletePositionsFromDb(); 48 67 } … … 55 74 * @since 1.0.0 56 75 */ 57 public function resetPlugin( $deleteData = []): void76 public function resetPlugin( array $deleteData = array() ): void 58 77 { 59 78 (new installer)->removeAllData( $deleteData ); -
personio-integration-light/tags/2.4.1/classes/class-helper-cli.php
r2903217 r2965729 10 10 * @return void 11 11 */ 12 private function deletePositionsFromDb() {12 private function deletePositionsFromDb(): void { 13 13 $positionsObject = Positions::get_instance(); 14 14 $positions = $positionsObject->getPositions(); … … 16 16 $progress = helper::isCLI() ? \WP_CLI\Utils\make_progress_bar( 'Delete all local positions', $positionCount ) : false; 17 17 foreach( $positions as $position ) { 18 // get personioId for log 19 $personioId = $position->getPersonioId(); 20 21 // delete it 18 // delete it. 22 19 wp_delete_post($position->ID, true); 23 24 // log in debug-mode25 if( get_option('personioIntegration_debug', 0) == 1 ) {26 $log = new Log();27 $log->addLog('Position '.$personioId.' has been deleted.', 'success');28 }29 20 30 21 // show progress … … 53 44 * @noinspection SqlResolve 54 45 */ 55 private function deleteTaxonomies() 46 private function deleteTaxonomies(): void 56 47 { 57 48 global $wpdb; -
personio-integration-light/tags/2.4.1/classes/class-import.php
r2962403 r2965729 70 70 // marker if result should do nothing. 71 71 $doNothing = false; 72 73 // get actual live positions. 74 $positions_obj = Positions::get_instance(); 75 $positions_count = $positions_obj->getPositionsCount(); 72 76 73 77 // enable xml-error-handling. … … 106 110 if( 200 === $httpStatus ) { 107 111 108 // check if last modified timestamp has been changed 112 // check if last modified timestamp has been changed. 109 113 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 } 115 122 } 116 123 … … 131 138 // check if md5-hash has been changed. 132 139 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 } 138 148 } 139 149 … … 195 205 } 196 206 207 // log ok. 208 $this->logSuccess(sprintf( "%d positions in language %s imported.", count($importedPositions), $key ) ); 209 197 210 // show progress. 198 211 !$progress ?: $progress->tick(); … … 248 261 delete_transient('personio_integration_no_position_imported'); 249 262 } 250 251 // log ok.252 $this->logSuccess($languageCount . " languages grabbed, " . count($importedPositions) . " positions imported.");253 263 } 254 264 else { -
personio-integration-light/tags/2.4.1/classes/class-position.php
r2962403 r2965729 155 155 ]; 156 156 $results = new WP_Query($query); 157 $posts = [];157 $posts = array(); 158 158 foreach( $results->posts as $postId ) { 159 // optional filter the post-ID 159 // optional filter the post-ID. 160 160 if( apply_filters('personio_integration_import_single_position_filter_existing', $postId, $this->lang) ) { 161 161 $posts[] = $postId; … … 163 163 } 164 164 if( count($posts) == 1 ) { 165 // get the post-id to update its data 165 // get the post-id to update its data. 166 166 $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. 168 168 $this->data['menu_order'] = get_post_field('menu_order', $results->posts[0]); 169 169 } 170 170 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. 174 174 foreach( $posts as $postId ) { 175 175 wp_delete_post($postId); 176 176 } 177 177 178 // set ID to 0 178 // set ID to 0. 179 179 $this->data['ID'] = 0; 180 180 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'); 185 183 } 186 184 else { 187 // set ID to 0 185 // set ID to 0. 188 186 $this->data['ID'] = 0; 189 187 } 190 188 } 191 189 else { 192 // set ID to 0 190 // set ID to 0. 193 191 $this->data['ID'] = 0; 194 192 } -
personio-integration-light/tags/2.4.1/inc/admin.php
r2962403 r2965729 1 1 <?php 2 /** 3 * File for functions to run in wp-admin only. 4 * 5 * @package wp-personio-integration 6 */ 2 7 3 8 use personioIntegration\helper; … … 14 19 function personio_integration_add_styles_and_js_admin(): void 15 20 { 16 // admin-specific styles 21 // admin-specific styles. 17 22 wp_enqueue_style('personio_integration-admin-css', 18 23 plugin_dir_url(WP_PERSONIO_INTEGRATION_PLUGIN) . '/admin/styles.css', … … 21 26 ); 22 27 23 // admin- and backend-styles for attribute-type-output 28 // admin- and backend-styles for attribute-type-output. 24 29 wp_enqueue_style( 25 30 'personio_integration-styles', … … 29 34 ); 30 35 31 // backend-JS 36 // backend-JS. 32 37 wp_enqueue_script( 'personio_integration-admin-js', 33 38 plugins_url( '/admin/js.js' , WP_PERSONIO_INTEGRATION_PLUGIN ), … … 36 41 ); 37 42 38 // add php-vars to our js-script 43 // add php-vars to our js-script. 39 44 wp_localize_script( 'personio_integration-admin-js', 'customJsVars', [ 40 45 'ajax_url' => admin_url( 'admin-ajax.php' ), … … 67 72 ); 68 73 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'] ) ) { 71 76 $wp_scripts = wp_scripts(); 72 77 wp_enqueue_script('jquery-ui-progressbar'); … … 115 120 { 116 121 $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' ); } 118 123 $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' ); } 120 125 if( count($positionsList) == 0 ) { 121 126 echo '<p>'.__('Actually there are no positions imported from Personio.', 'wp-personio-integration').'</p>'; … … 900 905 } 901 906 add_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 */ 913 function 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 } 920 add_action( 'admin_init', 'personio_integration_admin_add_importer' ); -
personio-integration-light/tags/2.4.1/inc/init.php
r2962403 r2965729 3 3 use personioIntegration\helper; 4 4 use personioIntegration\Import; 5 use personioIntegration\Log; 5 6 use personioIntegration\Position; 6 7 use personioIntegration\Positions; … … 628 629 return $_term; 629 630 } 631 632 /** 633 * Log every deletion of a position. 634 * 635 * @param $post_id 636 * @return void 637 */ 638 function 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 } 652 add_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 4 4 use personioIntegration\helper; 5 5 use personioIntegration\Import; 6 use personioIntegration\Log; 6 7 7 8 /** … … 172 173 check_ajax_referer( 'wp-personio-integration-delete', 'nonce' ); 173 174 174 // do not delete positions if import is running atm 175 // do not delete positions if import is running atm. 175 176 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. 180 182 set_transient('personio_integration_delete_run', 1); 181 183 } … … 184 186 } 185 187 186 // redirect user 188 // redirect user. 187 189 wp_redirect($_SERVER['HTTP_REFERER']); 188 190 } -
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 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WP Personio Integration Light 2.4. 0\n"5 "Project-Id-Version: WP Personio Integration Light 2.4.1\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/personio-" 7 7 "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" 10 10 "Last-Translator: \n" 11 11 "Language-Team: \n" … … 82 82 #. translators: %1$s is replaced with "string" 83 83 #: classes/class-helper.php:91 classes/class-helper.php:148 84 #: classes/class-helper.php:171 inc/admin.php: 47 inc/settings/import.php:20084 #: classes/class-helper.php:171 inc/admin.php:52 inc/settings/import.php:202 85 85 msgid "Run import" 86 86 msgstr "Führe Import jetzt aus" 87 87 88 88 #. translators: %1$s is replaced with "string", %2$s is replaced with "string" 89 #: classes/class-helper.php:98 inc/admin.php:5 389 #: classes/class-helper.php:98 inc/admin.php:58 90 90 msgid "" 91 91 "<strong>The import has been manually run.</strong> Please check the list of " … … 616 616 617 617 #. 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: 194618 #: classes/class-import.php:204 619 619 msgid "" 620 620 "Personio URL for language %1$s not available. Returned HTTP-Status %2$d. " … … 625 625 "erreichbar ist." 626 626 627 #: classes/class-import.php:2 88627 #: classes/class-import.php:298 628 628 msgid "Error during Personio Positions Import" 629 629 msgstr "Fehler beim Personio Positions Import" 630 630 631 #: classes/class-import.php:2 89631 #: classes/class-import.php:299 632 632 msgid "" 633 633 "The following error occurred when importing positions provided by Personio:" … … 636 636 "folgender Fehler aufgetreten:" 637 637 638 #: classes/class-import.php: 290638 #: classes/class-import.php:300 639 639 msgid "Sent by the plugin Personio Integration" 640 640 msgstr "Gesendet vom Plugin Personio Integration" … … 667 667 "Stellt ein Widget zur Verfügung, um eine Liste der von Stellen anzuzeigen." 668 668 669 #: classes/class-positionswidget.php:24 inc/init.php:30 3669 #: classes/class-positionswidget.php:24 inc/init.php:304 670 670 #: blocks/list/build/index.js:1 671 671 msgid "Personio Positions" … … 692 692 msgstr "Sortieren nach" 693 693 694 #: classes/class-positionswidget.php:56 inc/init.php:36 4694 #: classes/class-positionswidget.php:56 inc/init.php:365 695 695 #: blocks/list/build/index.js:1 696 696 msgid "title" … … 775 775 msgstr "Gibt deine offenen Stellen aus." 776 776 777 #: inc/admin.php:4 2777 #: inc/admin.php:47 778 778 msgid "Get Personio Integration Pro" 779 779 msgstr "Get Personio Integration Pro" 780 780 781 #: inc/admin.php: 46781 #: inc/admin.php:51 782 782 msgid "Reset sorting" 783 783 msgstr "Sortierung zurücksetzen" 784 784 785 #: inc/admin.php: 48785 #: inc/admin.php:53 786 786 msgid "Import is running" 787 787 msgstr "Import läuft aktuell" 788 788 789 #: inc/admin.php: 49789 #: inc/admin.php:54 790 790 msgid "Please wait" 791 791 msgstr "Bitte warten" 792 792 793 #: inc/admin.php:5 0 inc/settings/import.php:201793 #: inc/admin.php:55 inc/settings/import.php:203 794 794 msgid "" 795 795 "Performing the import could take a few minutes. If a timeout occurs, a " … … 801 801 "möglich. Dann sollte der automatische Import verwendet werden." 802 802 803 #: inc/admin.php: 65803 #: inc/admin.php:70 804 804 msgid "OK" 805 805 msgstr "OK" 806 806 807 #: inc/admin.php:10 0807 #: inc/admin.php:105 808 808 msgid "Positions imported from Personio" 809 809 msgstr "Von Personio importierte Stellen" 810 810 811 #: inc/admin.php:12 1811 #: inc/admin.php:126 812 812 msgid "Actually there are no positions imported from Personio." 813 813 msgstr "Derzeit gibt es keine aus Personio importierten Stellen." 814 814 815 815 #. translators: %1$d will be replaced by the count of positions 816 #: inc/admin.php:1 37816 #: inc/admin.php:142 817 817 msgid "Show all %1$d positions" 818 818 msgstr "Zeige alle %1$d Stellen" 819 819 820 #: inc/admin.php:19 4820 #: inc/admin.php:199 821 821 msgid "Dismiss this notice." 822 822 msgstr "Hinweis ausblenden." 823 823 824 #: inc/admin.php:22 4 inc/admin.php:810824 #: inc/admin.php:229 inc/admin.php:815 825 825 msgid "PersonioID" 826 826 msgstr "PersonioID" 827 827 828 #: inc/admin.php:27 2inc/settings/settings.php:81828 #: inc/admin.php:277 inc/settings/settings.php:81 829 829 #: blocks/details/build/index.js:1 blocks/list/build/index.js:1 830 830 #: blocks/show/build/index.js:1 … … 832 832 msgstr "Einstellungen" 833 833 834 #: inc/admin.php:3 59834 #: inc/admin.php:364 835 835 msgid "Edit" 836 836 msgstr "Bearbeiten" 837 837 838 #: inc/admin.php: 799838 #: inc/admin.php:804 839 839 msgid "Show Personio position data" 840 840 msgstr "Zeige Daten dieser Stelle" 841 841 842 #: inc/admin.php:81 1842 #: inc/admin.php:816 843 843 msgid "Title" 844 844 msgstr "Titel" 845 845 846 #: inc/admin.php:81 2blocks/description/build/index.js:1846 #: inc/admin.php:817 blocks/description/build/index.js:1 847 847 #: blocks/description/src/index.js:37 848 848 msgid "Description" … … 850 850 851 851 #. translators: %1$s will be replaced by the URL for Personio 852 #: inc/admin.php:83 2852 #: inc/admin.php:837 853 853 msgid "" 854 854 "At this point we show you the imported data of your open position <i>%1$s</" … … 860 860 "target=\"_blank\">Personio-Konto (öffnet neues Fenster)</a>." 861 861 862 #: inc/admin.php:88 3862 #: inc/admin.php:888 863 863 msgid "No data" 864 864 msgstr "Keine Daten" 865 866 #: inc/admin.php:915 867 msgid "Personio" 868 msgstr "Personio" 869 870 #: inc/admin.php:916 871 msgid "Import positions from Personio" 872 msgstr "Import von Stellen von Personio" 865 873 866 874 #: inc/frontend.php:53 … … 872 880 msgstr "Die gegebene Id ist keine gültige Stellen-Id." 873 881 874 #: inc/init.php:3 2 inc/init.php:34882 #: inc/init.php:33 inc/init.php:35 875 883 #: templates/archive-personioposition-shortcode.php:36 876 884 msgid "Positions" 877 885 msgstr "Stellen" 878 886 879 #: inc/init.php:3 3templates/single-personioposition-shortcode.php:17887 #: inc/init.php:34 templates/single-personioposition-shortcode.php:17 880 888 msgid "Position" 881 889 msgstr "Stelle" 882 890 883 #: inc/init.php:3 5891 #: inc/init.php:36 884 892 msgid "Parent Position" 885 893 msgstr "Eltern Stelle" 886 894 887 #: inc/init.php:3 6895 #: inc/init.php:37 888 896 msgid "All Positions" 889 897 msgstr "Alle offene Stellen" 890 898 891 #: inc/init.php:3 7899 #: inc/init.php:38 892 900 msgid "View Position in frontend" 893 901 msgstr "Zeige Stelle im Frontend" 894 902 895 #: inc/init.php:3 8903 #: inc/init.php:39 896 904 msgid "View Positions" 897 905 msgstr "Zeige Stellen an" 898 906 899 #: inc/init.php: 39907 #: inc/init.php:40 900 908 msgid "View Position in backend" 901 909 msgstr "Zeige Stelle im Backend" 902 910 903 #: inc/init.php:4 0911 #: inc/init.php:41 904 912 msgid "Search Position" 905 913 msgstr "Suche nach Stellen" 906 914 907 #: inc/init.php:4 1915 #: inc/init.php:42 908 916 msgid "Not Found" 909 917 msgstr "Nicht gefunden" 910 918 911 #: inc/init.php:4 2919 #: inc/init.php:43 912 920 msgid "Not found in Trash" 913 921 msgstr "In Papierkorb nicht gefunden" 914 922 915 #: inc/init.php:26 8923 #: inc/init.php:269 916 924 msgid "every 5th Minute" 917 925 msgstr "jede 5. Minute" 918 926 919 #: inc/init.php:343 blocks/details/build/index.js:1 920 #: blocks/show/build/index.js:1 927 #: inc/init.php:344 921 928 msgid "recruiting category" 922 929 msgstr "Kategorie" 923 930 924 #: inc/init.php:344 blocks/details/build/index.js:1 925 #: blocks/show/build/index.js:1 931 #: inc/init.php:345 926 932 msgid "schedule" 927 933 msgstr "Arbeitszeit" 928 934 929 #: inc/init.php:345 blocks/details/build/index.js:1 930 #: blocks/show/build/index.js:1 935 #: inc/init.php:346 931 936 msgid "office" 932 937 msgstr "Standort" 933 938 934 #: inc/init.php:346 blocks/details/build/index.js:1 935 #: blocks/show/build/index.js:1 939 #: inc/init.php:347 936 940 msgid "department" 937 941 msgstr "Abteilung" 938 942 939 #: inc/init.php:34 7943 #: inc/init.php:348 940 944 msgid "employment types" 941 945 msgstr "Anstellungsarten" 942 946 943 #: inc/init.php:348 blocks/details/build/index.js:1 944 #: blocks/show/build/index.js:1 947 #: inc/init.php:349 945 948 msgid "seniority" 946 949 msgstr "Dienstalter" 947 950 948 #: inc/init.php:349 blocks/details/build/index.js:1 949 #: blocks/show/build/index.js:1 951 #: inc/init.php:350 950 952 msgid "experience" 951 953 msgstr "Berufserfahrung" 952 954 953 #: inc/init.php:350 blocks/details/build/index.js:1 954 #: blocks/show/build/index.js:1 955 #: inc/init.php:351 955 956 msgid "occupation" 956 957 msgstr "Beschäftigung" 957 958 958 #: inc/init.php:36 5959 #: inc/init.php:366 959 960 msgid "details" 960 961 msgstr "Stellendetails" 961 962 962 #: inc/init.php:36 6963 #: inc/init.php:367 963 964 msgid "content" 964 965 msgstr "Inhalt" 965 966 966 #: inc/init.php:36 7967 #: inc/init.php:368 967 968 msgid "application link" 968 969 msgstr "Link zum Bewerbungsformular" 969 970 970 #: inc/init.php:55 6templates/parts/term-filter-select.php:15971 #: inc/init.php:557 templates/parts/term-filter-select.php:15 971 972 #: blocks/show/build/index.js:1 972 973 msgid "Please choose" … … 1120 1121 msgstr "Bitte eine gültige URL eintragen." 1121 1122 1122 #: inc/settings/import.php:2 11123 #: inc/settings/import.php:22 1123 1124 msgid "Import" 1124 1125 msgstr "Import" 1125 1126 1126 #: inc/settings/import.php:6 61127 #: inc/settings/import.php:67 1127 1128 msgid "Import of positions from Personio" 1128 1129 msgstr "Import von Stellen von Personio" 1129 1130 1130 #: inc/settings/import.php:7 41131 #: inc/settings/import.php:75 1131 1132 msgid "Start import now" 1132 1133 msgstr "Starte Import jetzt" 1133 1134 1134 #: inc/settings/import.php:8 71135 #: inc/settings/import.php:88 1135 1136 msgid "Delete positions" 1136 1137 msgstr "Stellen löschen" 1137 1138 1138 #: inc/settings/import.php:10 01139 #: inc/settings/import.php:101 1139 1140 msgid "Enable automatic import" 1140 1141 msgstr "Aktiviere automatischen Import" 1141 1142 1142 #: inc/settings/import.php:10 71143 #: inc/settings/import.php:108 1143 1144 msgid "" 1144 1145 "If enabled, new positions stored in Personio will be retrieved automatically " … … 1150 1151 1151 1152 #. translators: %1$s is replaced with "string" 1152 #: inc/settings/import.php:11 01153 #: inc/settings/import.php:111 1153 1154 msgid "" 1154 1155 "Use more import options with the %s. Among other things, you get the " … … 1160 1161 "sehr große Stellen-Listen durchzuführen." 1161 1162 1162 #: inc/settings/import.php:20 1 inc/settings/import.php:2331163 #: inc/settings/import.php:203 inc/settings/import.php:235 1163 1164 msgid "Hint" 1164 1165 msgstr "Hinweis" 1165 1166 1166 #: inc/settings/import.php:20 61167 #: inc/settings/import.php:208 1167 1168 msgid "The import is already running. Please wait some moments." 1168 1169 msgstr "Der Import läuft aktuell. Bitte einen Moment warten." 1169 1170 1170 #: inc/settings/import.php:2 181171 #: inc/settings/import.php:220 1171 1172 msgid "Cancel running import" 1172 1173 msgstr "Laufenden Import abbrechen" 1173 1174 1174 #: inc/settings/import.php:23 21175 #: inc/settings/import.php:234 1175 1176 msgid "Delete all positions" 1176 1177 msgstr "Entferne alle Stellen" 1177 1178 1178 #: inc/settings/import.php:23 31179 #: inc/settings/import.php:235 1179 1180 msgid "Removes all actual imported positions." 1180 1181 msgstr "Entfernt alle aktuell importierten Stellen." 1181 1182 1182 #: inc/settings/import.php:23 71183 #: inc/settings/import.php:239 1183 1184 msgid "There are currently no imported positions." 1184 1185 msgstr "Es sind aktuell keine Stellen importiert." … … 1391 1392 "Stellt einen Gutenberg-Block zur Ausgabe einer einzelnen Stelle, verwaltet " 1392 1393 "bei Personio, bereit." 1394 1395 #: blocks/details/build/index.js:1 blocks/show/build/index.js:1 1396 msgid "Category" 1397 msgstr "Kategorie" 1398 1399 #: blocks/details/build/index.js:1 blocks/show/build/index.js:1 1400 msgid "Contract type" 1401 msgstr "Vertragstyp" 1402 1403 #: blocks/details/build/index.js:1 blocks/show/build/index.js:1 1404 msgid "Location" 1405 msgstr "Standort" 1406 1407 #: blocks/details/build/index.js:1 blocks/show/build/index.js:1 1408 msgid "Department" 1409 msgstr "Abteilung" 1410 1411 #: blocks/details/build/index.js:1 blocks/show/build/index.js:1 1412 msgid "Experience" 1413 msgstr "Erfahrung" 1414 1415 #: blocks/details/build/index.js:1 blocks/show/build/index.js:1 1416 msgid "Years of experience" 1417 msgstr "Berufserfahrung in Jahren" 1418 1419 #: blocks/details/build/index.js:1 blocks/show/build/index.js:1 1420 msgid "Job type" 1421 msgstr "Stellentyp" 1393 1422 1394 1423 #: 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 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WP Personio Integration Light 2.4. 0\n"5 "Project-Id-Version: WP Personio Integration Light 2.4.1\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/personio-" 7 7 "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" 10 10 "Last-Translator: \n" 11 11 "Language-Team: \n" … … 82 82 #. translators: %1$s is replaced with "string" 83 83 #: classes/class-helper.php:91 classes/class-helper.php:148 84 #: classes/class-helper.php:171 inc/admin.php: 47 inc/settings/import.php:20084 #: classes/class-helper.php:171 inc/admin.php:52 inc/settings/import.php:202 85 85 msgid "Run import" 86 86 msgstr "Jetzt Import ausführen" 87 87 88 88 #. translators: %1$s is replaced with "string", %2$s is replaced with "string" 89 #: classes/class-helper.php:98 inc/admin.php:5 389 #: classes/class-helper.php:98 inc/admin.php:58 90 90 msgid "" 91 91 "<strong>The import has been manually run.</strong> Please check the list of " … … 618 618 619 619 #. 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: 194620 #: classes/class-import.php:204 621 621 msgid "" 622 622 "Personio URL for language %1$s not available. Returned HTTP-Status %2$d. " … … 627 627 "ist." 628 628 629 #: classes/class-import.php:2 88629 #: classes/class-import.php:298 630 630 msgid "Error during Personio Positions Import" 631 631 msgstr "Fehler beim Personio Positions Import" 632 632 633 #: classes/class-import.php:2 89633 #: classes/class-import.php:299 634 634 msgid "" 635 635 "The following error occurred when importing positions provided by Personio:" … … 638 638 "folgender Fehler aufgetreten:" 639 639 640 #: classes/class-import.php: 290640 #: classes/class-import.php:300 641 641 msgid "Sent by the plugin Personio Integration" 642 642 msgstr "Gesendet vom Plugin Personio Integration" … … 669 669 "Stellt ein Widget zur Verfügung, um eine Liste der von Stellen anzuzeigen." 670 670 671 #: classes/class-positionswidget.php:24 inc/init.php:30 3671 #: classes/class-positionswidget.php:24 inc/init.php:304 672 672 #: blocks/list/build/index.js:1 673 673 msgid "Personio Positions" … … 694 694 msgstr "Sortieren nach" 695 695 696 #: classes/class-positionswidget.php:56 inc/init.php:36 4696 #: classes/class-positionswidget.php:56 inc/init.php:365 697 697 #: blocks/list/build/index.js:1 698 698 msgid "title" … … 777 777 msgstr "Gibt deine offenen Stellen aus." 778 778 779 #: inc/admin.php:4 2779 #: inc/admin.php:47 780 780 msgid "Get Personio Integration Pro" 781 781 msgstr "Get Personio Integration Pro" 782 782 783 #: inc/admin.php: 46783 #: inc/admin.php:51 784 784 msgid "Reset sorting" 785 785 msgstr "Sortierung zurücksetzen" 786 786 787 #: inc/admin.php: 48787 #: inc/admin.php:53 788 788 msgid "Import is running" 789 789 msgstr "Import läuft" 790 790 791 #: inc/admin.php: 49791 #: inc/admin.php:54 792 792 msgid "Please wait" 793 793 msgstr "Bitte warten" 794 794 795 #: inc/admin.php:5 0 inc/settings/import.php:201795 #: inc/admin.php:55 inc/settings/import.php:203 796 796 msgid "" 797 797 "Performing the import could take a few minutes. If a timeout occurs, a " … … 803 803 "möglich. Dann sollte der automatische Import verwendet werden." 804 804 805 #: inc/admin.php: 65805 #: inc/admin.php:70 806 806 msgid "OK" 807 807 msgstr "OK" 808 808 809 #: inc/admin.php:10 0809 #: inc/admin.php:105 810 810 msgid "Positions imported from Personio" 811 811 msgstr "Von Personio importierte Stellen" 812 812 813 #: inc/admin.php:12 1813 #: inc/admin.php:126 814 814 msgid "Actually there are no positions imported from Personio." 815 815 msgstr "Derzeit gibt es keine aus Personio importierten Stellen." 816 816 817 817 #. translators: %1$d will be replaced by the count of positions 818 #: inc/admin.php:1 37818 #: inc/admin.php:142 819 819 msgid "Show all %1$d positions" 820 820 msgstr "Zeige alle %1$d Stellen" 821 821 822 #: inc/admin.php:19 4822 #: inc/admin.php:199 823 823 msgid "Dismiss this notice." 824 824 msgstr "Hinweis ausblenden." 825 825 826 #: inc/admin.php:22 4 inc/admin.php:810826 #: inc/admin.php:229 inc/admin.php:815 827 827 msgid "PersonioID" 828 828 msgstr "PersonioID" 829 829 830 #: inc/admin.php:27 2inc/settings/settings.php:81830 #: inc/admin.php:277 inc/settings/settings.php:81 831 831 #: blocks/details/build/index.js:1 blocks/list/build/index.js:1 832 832 #: blocks/show/build/index.js:1 … … 834 834 msgstr "Einstellungen" 835 835 836 #: inc/admin.php:3 59836 #: inc/admin.php:364 837 837 msgid "Edit" 838 838 msgstr "Bearbeiten" 839 839 840 #: inc/admin.php: 799840 #: inc/admin.php:804 841 841 msgid "Show Personio position data" 842 842 msgstr "Zeige Daten dieser Stelle" 843 843 844 #: inc/admin.php:81 1844 #: inc/admin.php:816 845 845 msgid "Title" 846 846 msgstr "Titel" 847 847 848 #: inc/admin.php:81 2blocks/description/build/index.js:1848 #: inc/admin.php:817 blocks/description/build/index.js:1 849 849 #: blocks/description/src/index.js:37 850 850 msgid "Description" … … 852 852 853 853 #. translators: %1$s will be replaced by the URL for Personio 854 #: inc/admin.php:83 2854 #: inc/admin.php:837 855 855 msgid "" 856 856 "At this point we show you the imported data of your open position <i>%1$s</" … … 862 862 "\"%2$s\" target=\"_blank\">Personio-Konto (öffnet neues Fenster)</a>." 863 863 864 #: inc/admin.php:88 3864 #: inc/admin.php:888 865 865 msgid "No data" 866 866 msgstr "Keine Daten" 867 868 #: inc/admin.php:915 869 msgid "Personio" 870 msgstr "Personio" 871 872 #: inc/admin.php:916 873 msgid "Import positions from Personio" 874 msgstr "Import von Stellen von Personio" 867 875 868 876 #: inc/frontend.php:53 … … 874 882 msgstr "Die gegebene Id ist keine gültige Stellen-Id." 875 883 876 #: inc/init.php:3 2 inc/init.php:34884 #: inc/init.php:33 inc/init.php:35 877 885 #: templates/archive-personioposition-shortcode.php:36 878 886 msgid "Positions" 879 887 msgstr "Stellen" 880 888 881 #: inc/init.php:3 3templates/single-personioposition-shortcode.php:17889 #: inc/init.php:34 templates/single-personioposition-shortcode.php:17 882 890 msgid "Position" 883 891 msgstr "Stelle" 884 892 885 #: inc/init.php:3 5893 #: inc/init.php:36 886 894 msgid "Parent Position" 887 895 msgstr "Eltern Stelle" 888 896 889 #: inc/init.php:3 6897 #: inc/init.php:37 890 898 msgid "All Positions" 891 899 msgstr "Alle offene Stellen" 892 900 893 #: inc/init.php:3 7901 #: inc/init.php:38 894 902 msgid "View Position in frontend" 895 903 msgstr "Zeige Stelle im Frontend" 896 904 897 #: inc/init.php:3 8905 #: inc/init.php:39 898 906 msgid "View Positions" 899 907 msgstr "Zeige Stellen an" 900 908 901 #: inc/init.php: 39909 #: inc/init.php:40 902 910 msgid "View Position in backend" 903 911 msgstr "Zeige Stelle im Backend" 904 912 905 #: inc/init.php:4 0913 #: inc/init.php:41 906 914 msgid "Search Position" 907 915 msgstr "Suche nach Stellen" 908 916 909 #: inc/init.php:4 1917 #: inc/init.php:42 910 918 msgid "Not Found" 911 919 msgstr "Nicht gefunden" 912 920 913 #: inc/init.php:4 2921 #: inc/init.php:43 914 922 msgid "Not found in Trash" 915 923 msgstr "In Papierkorb nicht gefunden" 916 924 917 #: inc/init.php:26 8925 #: inc/init.php:269 918 926 msgid "every 5th Minute" 919 927 msgstr "jede 5. Minute" 920 928 921 #: inc/init.php:343 blocks/details/build/index.js:1 922 #: blocks/show/build/index.js:1 929 #: inc/init.php:344 923 930 msgid "recruiting category" 924 931 msgstr "Kategorie" 925 932 926 #: inc/init.php:344 blocks/details/build/index.js:1 927 #: blocks/show/build/index.js:1 933 #: inc/init.php:345 928 934 msgid "schedule" 929 935 msgstr "Arbeitszeit" 930 936 931 #: inc/init.php:345 blocks/details/build/index.js:1 932 #: blocks/show/build/index.js:1 937 #: inc/init.php:346 933 938 msgid "office" 934 939 msgstr "Standort" 935 940 936 #: inc/init.php:346 blocks/details/build/index.js:1 937 #: blocks/show/build/index.js:1 941 #: inc/init.php:347 938 942 msgid "department" 939 943 msgstr "Abteilung" 940 944 941 #: inc/init.php:34 7945 #: inc/init.php:348 942 946 msgid "employment types" 943 947 msgstr "Anstellungsarten" 944 948 945 #: inc/init.php:348 blocks/details/build/index.js:1 946 #: blocks/show/build/index.js:1 949 #: inc/init.php:349 947 950 msgid "seniority" 948 951 msgstr "Dienstalter" 949 952 950 #: inc/init.php:349 blocks/details/build/index.js:1 951 #: blocks/show/build/index.js:1 953 #: inc/init.php:350 952 954 msgid "experience" 953 955 msgstr "Berufserfahrung" 954 956 955 #: inc/init.php:350 blocks/details/build/index.js:1 956 #: blocks/show/build/index.js:1 957 #: inc/init.php:351 957 958 msgid "occupation" 958 959 msgstr "Beschäftigung" 959 960 960 #: inc/init.php:36 5961 #: inc/init.php:366 961 962 msgid "details" 962 963 msgstr "Stellendetails" 963 964 964 #: inc/init.php:36 6965 #: inc/init.php:367 965 966 msgid "content" 966 967 msgstr "Inhalt" 967 968 968 #: inc/init.php:36 7969 #: inc/init.php:368 969 970 msgid "application link" 970 971 msgstr "Link zum Bewerbungsformular" 971 972 972 #: inc/init.php:55 6templates/parts/term-filter-select.php:15973 #: inc/init.php:557 templates/parts/term-filter-select.php:15 973 974 #: blocks/show/build/index.js:1 974 975 msgid "Please choose" … … 1122 1123 msgstr "Bitte eine gültige URL eintragen." 1123 1124 1124 #: inc/settings/import.php:2 11125 #: inc/settings/import.php:22 1125 1126 msgid "Import" 1126 1127 msgstr "Import" 1127 1128 1128 #: inc/settings/import.php:6 61129 #: inc/settings/import.php:67 1129 1130 msgid "Import of positions from Personio" 1130 1131 msgstr "Import von Stellen von Personio" 1131 1132 1132 #: inc/settings/import.php:7 41133 #: inc/settings/import.php:75 1133 1134 msgid "Start import now" 1134 1135 msgstr "Starte Import jetzt" 1135 1136 1136 #: inc/settings/import.php:8 71137 #: inc/settings/import.php:88 1137 1138 msgid "Delete positions" 1138 1139 msgstr "Stellen löschen" 1139 1140 1140 #: inc/settings/import.php:10 01141 #: inc/settings/import.php:101 1141 1142 msgid "Enable automatic import" 1142 1143 msgstr "Aktiviere automatischen Import" 1143 1144 1144 #: inc/settings/import.php:10 71145 #: inc/settings/import.php:108 1145 1146 msgid "" 1146 1147 "If enabled, new positions stored in Personio will be retrieved automatically " … … 1152 1153 1153 1154 #. translators: %1$s is replaced with "string" 1154 #: inc/settings/import.php:11 01155 #: inc/settings/import.php:111 1155 1156 msgid "" 1156 1157 "Use more import options with the %s. Among other things, you get the " … … 1162 1163 "sehr große Stellen-Listen durchzuführen." 1163 1164 1164 #: inc/settings/import.php:20 1 inc/settings/import.php:2331165 #: inc/settings/import.php:203 inc/settings/import.php:235 1165 1166 msgid "Hint" 1166 1167 msgstr "Hinweis" 1167 1168 1168 #: inc/settings/import.php:20 61169 #: inc/settings/import.php:208 1169 1170 msgid "The import is already running. Please wait some moments." 1170 1171 msgstr "Ein Import läuft aktuell. Bitte warten Sie einen Moment." 1171 1172 1172 #: inc/settings/import.php:2 181173 #: inc/settings/import.php:220 1173 1174 msgid "Cancel running import" 1174 1175 msgstr "Laufenden Import abbrechen" 1175 1176 1176 #: inc/settings/import.php:23 21177 #: inc/settings/import.php:234 1177 1178 msgid "Delete all positions" 1178 1179 msgstr "Entferne alle Stellen" 1179 1180 1180 #: inc/settings/import.php:23 31181 #: inc/settings/import.php:235 1181 1182 msgid "Removes all actual imported positions." 1182 1183 msgstr "Entfernt alle aktuell importierten Stellen." 1183 1184 1184 #: inc/settings/import.php:23 71185 #: inc/settings/import.php:239 1185 1186 msgid "There are currently no imported positions." 1186 1187 msgstr "Es sind aktuell keine Stellen importiert." … … 1393 1394 "Stellt einen Gutenberg-Block zur Ausgabe einer einzelnen Stelle, verwaltet " 1394 1395 "bei Personio, bereit." 1396 1397 #: blocks/details/build/index.js:1 blocks/show/build/index.js:1 1398 msgid "Category" 1399 msgstr "Kategorie" 1400 1401 #: blocks/details/build/index.js:1 blocks/show/build/index.js:1 1402 msgid "Contract type" 1403 msgstr "Vertragstyp" 1404 1405 #: blocks/details/build/index.js:1 blocks/show/build/index.js:1 1406 msgid "Location" 1407 msgstr "Standort" 1408 1409 #: blocks/details/build/index.js:1 blocks/show/build/index.js:1 1410 msgid "Department" 1411 msgstr "Abteilung" 1412 1413 #: blocks/details/build/index.js:1 blocks/show/build/index.js:1 1414 msgid "Experience" 1415 msgstr "Erfahrung" 1416 1417 #: blocks/details/build/index.js:1 blocks/show/build/index.js:1 1418 msgid "Years of experience" 1419 msgstr "Berufserfahrung in Jahren" 1420 1421 #: blocks/details/build/index.js:1 blocks/show/build/index.js:1 1422 msgid "Job type" 1423 msgstr "Stellentyp" 1395 1424 1396 1425 #: blocks/details/build/index.js:1 -
personio-integration-light/tags/2.4.1/languages/wp-personio-integration.pot
r2962403 r2965729 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Personio Integration Light 2.4. 0\n"5 "Project-Id-Version: Personio Integration Light 2.4.1\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/personio-integration-light\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "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" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.6.0\n" … … 84 84 #: classes/class-helper.php:148 85 85 #: classes/class-helper.php:171 86 #: inc/admin.php: 4787 #: inc/settings/import.php:20 086 #: inc/admin.php:52 87 #: inc/settings/import.php:202 88 88 msgid "Run import" 89 89 msgstr "" … … 91 91 #. translators: %1$s is replaced with "string", %2$s is replaced with "string" 92 92 #: classes/class-helper.php:98 93 #: inc/admin.php:5 393 #: inc/admin.php:58 94 94 msgid "<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>." 95 95 msgstr "" … … 521 521 522 522 #. 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: 194523 #: classes/class-import.php:204 524 524 msgid "Personio URL for language %1$s not available. Returned HTTP-Status %2$d. Please check the URL you configured and if it is available." 525 525 msgstr "" 526 526 527 #: classes/class-import.php:2 88527 #: classes/class-import.php:298 528 528 msgid "Error during Personio Positions Import" 529 529 msgstr "" 530 530 531 #: classes/class-import.php:2 89531 #: classes/class-import.php:299 532 532 msgid "The following error occurred when importing positions provided by Personio:" 533 533 msgstr "" 534 534 535 #: classes/class-import.php: 290535 #: classes/class-import.php:300 536 536 msgid "Sent by the plugin Personio Integration" 537 537 msgstr "" … … 565 565 566 566 #: classes/class-positionswidget.php:24 567 #: inc/init.php:30 3567 #: inc/init.php:304 568 568 #: blocks/list/build/index.js:1 569 569 msgid "Personio Positions" … … 595 595 596 596 #: classes/class-positionswidget.php:56 597 #: inc/init.php:36 4597 #: inc/init.php:365 598 598 #: blocks/list/build/index.js:1 599 599 msgid "title" … … 697 697 msgstr "" 698 698 699 #: inc/admin.php:4 2699 #: inc/admin.php:47 700 700 msgid "Get Personio Integration Pro" 701 701 msgstr "" 702 702 703 #: inc/admin.php: 46703 #: inc/admin.php:51 704 704 msgid "Reset sorting" 705 705 msgstr "" 706 706 707 #: inc/admin.php: 48707 #: inc/admin.php:53 708 708 msgid "Import is running" 709 709 msgstr "" 710 710 711 #: inc/admin.php: 49711 #: inc/admin.php:54 712 712 msgid "Please wait" 713 713 msgstr "" 714 714 715 #: inc/admin.php:5 0716 #: inc/settings/import.php:20 1715 #: inc/admin.php:55 716 #: inc/settings/import.php:203 717 717 msgid "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." 718 718 msgstr "" 719 719 720 #: inc/admin.php: 65720 #: inc/admin.php:70 721 721 msgid "OK" 722 722 msgstr "" 723 723 724 #: inc/admin.php:10 0724 #: inc/admin.php:105 725 725 msgid "Positions imported from Personio" 726 726 msgstr "" 727 727 728 #: inc/admin.php:12 1728 #: inc/admin.php:126 729 729 msgid "Actually there are no positions imported from Personio." 730 730 msgstr "" 731 731 732 732 #. translators: %1$d will be replaced by the count of positions 733 #: inc/admin.php:1 37733 #: inc/admin.php:142 734 734 msgid "Show all %1$d positions" 735 735 msgstr "" 736 736 737 #: inc/admin.php:19 4737 #: inc/admin.php:199 738 738 msgid "Dismiss this notice." 739 739 msgstr "" 740 740 741 #: inc/admin.php:22 4742 #: inc/admin.php:81 0741 #: inc/admin.php:229 742 #: inc/admin.php:815 743 743 msgid "PersonioID" 744 744 msgstr "" 745 745 746 #: inc/admin.php:27 2746 #: inc/admin.php:277 747 747 #: inc/settings/settings.php:81 748 748 #: blocks/details/build/index.js:1 … … 752 752 msgstr "" 753 753 754 #: inc/admin.php:3 59754 #: inc/admin.php:364 755 755 msgid "Edit" 756 756 msgstr "" 757 757 758 #: inc/admin.php: 799758 #: inc/admin.php:804 759 759 msgid "Show Personio position data" 760 760 msgstr "" 761 761 762 #: inc/admin.php:81 1762 #: inc/admin.php:816 763 763 msgid "Title" 764 764 msgstr "" 765 765 766 #: inc/admin.php:81 2766 #: inc/admin.php:817 767 767 #: blocks/description/build/index.js:1 768 768 #: blocks/description/src/index.js:37 … … 771 771 772 772 #. translators: %1$s will be replaced by the URL for Personio 773 #: inc/admin.php:83 2773 #: inc/admin.php:837 774 774 msgid "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>." 775 775 msgstr "" 776 776 777 #: inc/admin.php:88 3777 #: inc/admin.php:888 778 778 msgid "No data" 779 msgstr "" 780 781 #: inc/admin.php:915 782 msgid "Personio" 783 msgstr "" 784 785 #: inc/admin.php:916 786 msgid "Import positions from Personio" 779 787 msgstr "" 780 788 … … 787 795 msgstr "" 788 796 789 #: inc/init.php:3 2790 #: inc/init.php:3 4797 #: inc/init.php:33 798 #: inc/init.php:35 791 799 #: templates/archive-personioposition-shortcode.php:36 792 800 msgid "Positions" 793 801 msgstr "" 794 802 795 #: inc/init.php:3 3803 #: inc/init.php:34 796 804 #: templates/single-personioposition-shortcode.php:17 797 805 msgid "Position" 798 806 msgstr "" 799 807 800 #: inc/init.php:3 5808 #: inc/init.php:36 801 809 msgid "Parent Position" 802 810 msgstr "" 803 811 804 #: inc/init.php:3 6812 #: inc/init.php:37 805 813 msgid "All Positions" 806 814 msgstr "" 807 815 808 #: inc/init.php:3 7816 #: inc/init.php:38 809 817 msgid "View Position in frontend" 810 818 msgstr "" 811 819 812 #: inc/init.php:3 8820 #: inc/init.php:39 813 821 msgid "View Positions" 814 822 msgstr "" 815 823 816 #: inc/init.php: 39824 #: inc/init.php:40 817 825 msgid "View Position in backend" 818 826 msgstr "" 819 827 820 #: inc/init.php:4 0828 #: inc/init.php:41 821 829 msgid "Search Position" 822 830 msgstr "" 823 831 824 #: inc/init.php:4 1832 #: inc/init.php:42 825 833 msgid "Not Found" 826 834 msgstr "" 827 835 828 #: inc/init.php:4 2836 #: inc/init.php:43 829 837 msgid "Not found in Trash" 830 838 msgstr "" 831 839 832 #: inc/init.php:26 8840 #: inc/init.php:269 833 841 msgid "every 5th Minute" 834 842 msgstr "" 835 843 836 #: inc/init.php:343 837 #: blocks/details/build/index.js:1 838 #: blocks/show/build/index.js:1 844 #: inc/init.php:344 839 845 msgid "recruiting category" 840 846 msgstr "" 841 847 842 #: inc/init.php:344 843 #: blocks/details/build/index.js:1 844 #: blocks/show/build/index.js:1 848 #: inc/init.php:345 845 849 msgid "schedule" 846 850 msgstr "" 847 851 848 #: inc/init.php:345 849 #: blocks/details/build/index.js:1 850 #: blocks/show/build/index.js:1 852 #: inc/init.php:346 851 853 msgid "office" 852 854 msgstr "" 853 855 854 #: inc/init.php:346 855 #: blocks/details/build/index.js:1 856 #: blocks/show/build/index.js:1 856 #: inc/init.php:347 857 857 msgid "department" 858 858 msgstr "" 859 859 860 #: inc/init.php:34 7860 #: inc/init.php:348 861 861 msgid "employment types" 862 862 msgstr "" 863 863 864 #: inc/init.php:348 865 #: blocks/details/build/index.js:1 866 #: blocks/show/build/index.js:1 864 #: inc/init.php:349 867 865 msgid "seniority" 868 866 msgstr "" 869 867 870 #: inc/init.php:349 871 #: blocks/details/build/index.js:1 872 #: blocks/show/build/index.js:1 868 #: inc/init.php:350 873 869 msgid "experience" 874 870 msgstr "" 875 871 876 #: inc/init.php:350 877 #: blocks/details/build/index.js:1 878 #: blocks/show/build/index.js:1 872 #: inc/init.php:351 879 873 msgid "occupation" 880 874 msgstr "" 881 875 882 #: inc/init.php:36 5876 #: inc/init.php:366 883 877 msgid "details" 884 878 msgstr "" 885 879 886 #: inc/init.php:36 6880 #: inc/init.php:367 887 881 msgid "content" 888 882 msgstr "" 889 883 890 #: inc/init.php:36 7884 #: inc/init.php:368 891 885 msgid "application link" 892 886 msgstr "" 893 887 894 #: inc/init.php:55 6888 #: inc/init.php:557 895 889 #: templates/parts/term-filter-select.php:15 896 890 #: blocks/show/build/index.js:1 … … 1022 1016 msgstr "" 1023 1017 1024 #: inc/settings/import.php:2 11018 #: inc/settings/import.php:22 1025 1019 msgid "Import" 1026 1020 msgstr "" 1027 1021 1028 #: inc/settings/import.php:6 61022 #: inc/settings/import.php:67 1029 1023 msgid "Import of positions from Personio" 1030 1024 msgstr "" 1031 1025 1032 #: inc/settings/import.php:7 41026 #: inc/settings/import.php:75 1033 1027 msgid "Start import now" 1034 1028 msgstr "" 1035 1029 1036 #: inc/settings/import.php:8 71030 #: inc/settings/import.php:88 1037 1031 msgid "Delete positions" 1038 1032 msgstr "" 1039 1033 1040 #: inc/settings/import.php:10 01034 #: inc/settings/import.php:101 1041 1035 msgid "Enable automatic import" 1042 1036 msgstr "" 1043 1037 1044 #: inc/settings/import.php:10 71038 #: inc/settings/import.php:108 1045 1039 msgid "If enabled, new positions stored in Personio will be retrieved automatically daily.<br>If disabled, new positions are retrieved manually only." 1046 1040 msgstr "" 1047 1041 1048 1042 #. translators: %1$s is replaced with "string" 1049 #: inc/settings/import.php:11 01043 #: inc/settings/import.php:111 1050 1044 msgid "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." 1051 1045 msgstr "" 1052 1046 1053 #: inc/settings/import.php:20 11054 #: inc/settings/import.php:23 31047 #: inc/settings/import.php:203 1048 #: inc/settings/import.php:235 1055 1049 msgid "Hint" 1056 1050 msgstr "" 1057 1051 1058 #: inc/settings/import.php:20 61052 #: inc/settings/import.php:208 1059 1053 msgid "The import is already running. Please wait some moments." 1060 1054 msgstr "" 1061 1055 1062 #: inc/settings/import.php:2 181056 #: inc/settings/import.php:220 1063 1057 msgid "Cancel running import" 1064 1058 msgstr "" 1065 1059 1066 #: inc/settings/import.php:23 21060 #: inc/settings/import.php:234 1067 1061 msgid "Delete all positions" 1068 1062 msgstr "" 1069 1063 1070 #: inc/settings/import.php:23 31064 #: inc/settings/import.php:235 1071 1065 msgid "Removes all actual imported positions." 1072 1066 msgstr "" 1073 1067 1074 #: inc/settings/import.php:23 71068 #: inc/settings/import.php:239 1075 1069 msgid "There are currently no imported positions." 1076 1070 msgstr "" … … 1240 1234 #: blocks/details/build/index.js:1 1241 1235 msgid "Provides a Gutenberg Block to details of a single position managed by Personio." 1236 msgstr "" 1237 1238 #: blocks/details/build/index.js:1 1239 #: blocks/show/build/index.js:1 1240 msgid "Category" 1241 msgstr "" 1242 1243 #: blocks/details/build/index.js:1 1244 #: blocks/show/build/index.js:1 1245 msgid "Contract type" 1246 msgstr "" 1247 1248 #: blocks/details/build/index.js:1 1249 #: blocks/show/build/index.js:1 1250 msgid "Location" 1251 msgstr "" 1252 1253 #: blocks/details/build/index.js:1 1254 #: blocks/show/build/index.js:1 1255 msgid "Department" 1256 msgstr "" 1257 1258 #: blocks/details/build/index.js:1 1259 #: blocks/show/build/index.js:1 1260 msgid "Experience" 1261 msgstr "" 1262 1263 #: blocks/details/build/index.js:1 1264 #: blocks/show/build/index.js:1 1265 msgid "Years of experience" 1266 msgstr "" 1267 1268 #: blocks/details/build/index.js:1 1269 #: blocks/show/build/index.js:1 1270 msgid "Job type" 1242 1271 msgstr "" 1243 1272 -
personio-integration-light/tags/2.4.1/personio-integration-light.php
r2962403 r2965729 5 5 * Requires at least: 5.9 6 6 * Requires PHP: 7.4 7 * Version: 2.4. 07 * Version: 2.4.1 8 8 * Author: laOlaWeb 9 9 * Author URI: https://laolaweb.com … … 16 16 17 17 // set version number 18 const WP_PERSONIO_INTEGRATION_VERSION = '2.4. 0';18 const WP_PERSONIO_INTEGRATION_VERSION = '2.4.1'; 19 19 20 20 // save plugin-path -
personio-integration-light/tags/2.4.1/readme.txt
r2962403 r2965729 7 7 License: GPL-2.0-or-later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html 9 Stable tag: 2.4. 09 Stable tag: 2.4.1 10 10 11 11 == Description == … … 275 275 * Updated dependencies for Gutenberg-scripts 276 276 * 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 96 96 } 97 97 98 .personioposition_page_personioPositions th#state { 99 width: 72px; 100 } 101 98 102 .personio-dialog-no-close .ui-dialog-titlebar-close { 99 103 display: none; -
personio-integration-light/trunk/classes/class-cli.php
r2903217 r2965729 1 1 <?php 2 /** 3 * File for cli-commands of this plugin. 4 * 5 * @package personio-integration-light 6 */ 2 7 3 8 namespace personioIntegration; … … 30 35 public function deleteAll(): void 31 36 { 37 // log this event. 38 $logs = new Log(); 39 $logs->addLog( 'WP CLI-command deleteAll has been used.', 'success' ); 40 32 41 // delete taxonomies 33 42 $this->deleteTaxonomies(); … … 43 52 * @noinspection PhpUnused 44 53 */ 45 public function deletePositions( ): void54 public function deletePositions( array $args ): void 46 55 { 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. 47 66 $this->deletePositionsFromDb(); 48 67 } … … 55 74 * @since 1.0.0 56 75 */ 57 public function resetPlugin( $deleteData = []): void76 public function resetPlugin( array $deleteData = array() ): void 58 77 { 59 78 (new installer)->removeAllData( $deleteData ); -
personio-integration-light/trunk/classes/class-helper-cli.php
r2903217 r2965729 10 10 * @return void 11 11 */ 12 private function deletePositionsFromDb() {12 private function deletePositionsFromDb(): void { 13 13 $positionsObject = Positions::get_instance(); 14 14 $positions = $positionsObject->getPositions(); … … 16 16 $progress = helper::isCLI() ? \WP_CLI\Utils\make_progress_bar( 'Delete all local positions', $positionCount ) : false; 17 17 foreach( $positions as $position ) { 18 // get personioId for log 19 $personioId = $position->getPersonioId(); 20 21 // delete it 18 // delete it. 22 19 wp_delete_post($position->ID, true); 23 24 // log in debug-mode25 if( get_option('personioIntegration_debug', 0) == 1 ) {26 $log = new Log();27 $log->addLog('Position '.$personioId.' has been deleted.', 'success');28 }29 20 30 21 // show progress … … 53 44 * @noinspection SqlResolve 54 45 */ 55 private function deleteTaxonomies() 46 private function deleteTaxonomies(): void 56 47 { 57 48 global $wpdb; -
personio-integration-light/trunk/classes/class-import.php
r2962403 r2965729 70 70 // marker if result should do nothing. 71 71 $doNothing = false; 72 73 // get actual live positions. 74 $positions_obj = Positions::get_instance(); 75 $positions_count = $positions_obj->getPositionsCount(); 72 76 73 77 // enable xml-error-handling. … … 106 110 if( 200 === $httpStatus ) { 107 111 108 // check if last modified timestamp has been changed 112 // check if last modified timestamp has been changed. 109 113 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 } 115 122 } 116 123 … … 131 138 // check if md5-hash has been changed. 132 139 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 } 138 148 } 139 149 … … 195 205 } 196 206 207 // log ok. 208 $this->logSuccess(sprintf( "%d positions in language %s imported.", count($importedPositions), $key ) ); 209 197 210 // show progress. 198 211 !$progress ?: $progress->tick(); … … 248 261 delete_transient('personio_integration_no_position_imported'); 249 262 } 250 251 // log ok.252 $this->logSuccess($languageCount . " languages grabbed, " . count($importedPositions) . " positions imported.");253 263 } 254 264 else { -
personio-integration-light/trunk/classes/class-position.php
r2962403 r2965729 155 155 ]; 156 156 $results = new WP_Query($query); 157 $posts = [];157 $posts = array(); 158 158 foreach( $results->posts as $postId ) { 159 // optional filter the post-ID 159 // optional filter the post-ID. 160 160 if( apply_filters('personio_integration_import_single_position_filter_existing', $postId, $this->lang) ) { 161 161 $posts[] = $postId; … … 163 163 } 164 164 if( count($posts) == 1 ) { 165 // get the post-id to update its data 165 // get the post-id to update its data. 166 166 $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. 168 168 $this->data['menu_order'] = get_post_field('menu_order', $results->posts[0]); 169 169 } 170 170 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. 174 174 foreach( $posts as $postId ) { 175 175 wp_delete_post($postId); 176 176 } 177 177 178 // set ID to 0 178 // set ID to 0. 179 179 $this->data['ID'] = 0; 180 180 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'); 185 183 } 186 184 else { 187 // set ID to 0 185 // set ID to 0. 188 186 $this->data['ID'] = 0; 189 187 } 190 188 } 191 189 else { 192 // set ID to 0 190 // set ID to 0. 193 191 $this->data['ID'] = 0; 194 192 } -
personio-integration-light/trunk/inc/admin.php
r2962403 r2965729 1 1 <?php 2 /** 3 * File for functions to run in wp-admin only. 4 * 5 * @package wp-personio-integration 6 */ 2 7 3 8 use personioIntegration\helper; … … 14 19 function personio_integration_add_styles_and_js_admin(): void 15 20 { 16 // admin-specific styles 21 // admin-specific styles. 17 22 wp_enqueue_style('personio_integration-admin-css', 18 23 plugin_dir_url(WP_PERSONIO_INTEGRATION_PLUGIN) . '/admin/styles.css', … … 21 26 ); 22 27 23 // admin- and backend-styles for attribute-type-output 28 // admin- and backend-styles for attribute-type-output. 24 29 wp_enqueue_style( 25 30 'personio_integration-styles', … … 29 34 ); 30 35 31 // backend-JS 36 // backend-JS. 32 37 wp_enqueue_script( 'personio_integration-admin-js', 33 38 plugins_url( '/admin/js.js' , WP_PERSONIO_INTEGRATION_PLUGIN ), … … 36 41 ); 37 42 38 // add php-vars to our js-script 43 // add php-vars to our js-script. 39 44 wp_localize_script( 'personio_integration-admin-js', 'customJsVars', [ 40 45 'ajax_url' => admin_url( 'admin-ajax.php' ), … … 67 72 ); 68 73 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'] ) ) { 71 76 $wp_scripts = wp_scripts(); 72 77 wp_enqueue_script('jquery-ui-progressbar'); … … 115 120 { 116 121 $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' ); } 118 123 $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' ); } 120 125 if( count($positionsList) == 0 ) { 121 126 echo '<p>'.__('Actually there are no positions imported from Personio.', 'wp-personio-integration').'</p>'; … … 900 905 } 901 906 add_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 */ 913 function 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 } 920 add_action( 'admin_init', 'personio_integration_admin_add_importer' ); -
personio-integration-light/trunk/inc/init.php
r2962403 r2965729 3 3 use personioIntegration\helper; 4 4 use personioIntegration\Import; 5 use personioIntegration\Log; 5 6 use personioIntegration\Position; 6 7 use personioIntegration\Positions; … … 628 629 return $_term; 629 630 } 631 632 /** 633 * Log every deletion of a position. 634 * 635 * @param $post_id 636 * @return void 637 */ 638 function 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 } 652 add_action( 'before_delete_post', 'personio_integration_action_to_delete_position', 10, 1 ); -
personio-integration-light/trunk/inc/settings/import.php
r2903217 r2965729 4 4 use personioIntegration\helper; 5 5 use personioIntegration\Import; 6 use personioIntegration\Log; 6 7 7 8 /** … … 172 173 check_ajax_referer( 'wp-personio-integration-delete', 'nonce' ); 173 174 174 // do not delete positions if import is running atm 175 // do not delete positions if import is running atm. 175 176 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. 180 182 set_transient('personio_integration_delete_run', 1); 181 183 } … … 184 186 } 185 187 186 // redirect user 188 // redirect user. 187 189 wp_redirect($_SERVER['HTTP_REFERER']); 188 190 } -
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 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WP Personio Integration Light 2.4. 0\n"5 "Project-Id-Version: WP Personio Integration Light 2.4.1\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/personio-" 7 7 "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" 10 10 "Last-Translator: \n" 11 11 "Language-Team: \n" … … 82 82 #. translators: %1$s is replaced with "string" 83 83 #: classes/class-helper.php:91 classes/class-helper.php:148 84 #: classes/class-helper.php:171 inc/admin.php: 47 inc/settings/import.php:20084 #: classes/class-helper.php:171 inc/admin.php:52 inc/settings/import.php:202 85 85 msgid "Run import" 86 86 msgstr "Führe Import jetzt aus" 87 87 88 88 #. translators: %1$s is replaced with "string", %2$s is replaced with "string" 89 #: classes/class-helper.php:98 inc/admin.php:5 389 #: classes/class-helper.php:98 inc/admin.php:58 90 90 msgid "" 91 91 "<strong>The import has been manually run.</strong> Please check the list of " … … 616 616 617 617 #. 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: 194618 #: classes/class-import.php:204 619 619 msgid "" 620 620 "Personio URL for language %1$s not available. Returned HTTP-Status %2$d. " … … 625 625 "erreichbar ist." 626 626 627 #: classes/class-import.php:2 88627 #: classes/class-import.php:298 628 628 msgid "Error during Personio Positions Import" 629 629 msgstr "Fehler beim Personio Positions Import" 630 630 631 #: classes/class-import.php:2 89631 #: classes/class-import.php:299 632 632 msgid "" 633 633 "The following error occurred when importing positions provided by Personio:" … … 636 636 "folgender Fehler aufgetreten:" 637 637 638 #: classes/class-import.php: 290638 #: classes/class-import.php:300 639 639 msgid "Sent by the plugin Personio Integration" 640 640 msgstr "Gesendet vom Plugin Personio Integration" … … 667 667 "Stellt ein Widget zur Verfügung, um eine Liste der von Stellen anzuzeigen." 668 668 669 #: classes/class-positionswidget.php:24 inc/init.php:30 3669 #: classes/class-positionswidget.php:24 inc/init.php:304 670 670 #: blocks/list/build/index.js:1 671 671 msgid "Personio Positions" … … 692 692 msgstr "Sortieren nach" 693 693 694 #: classes/class-positionswidget.php:56 inc/init.php:36 4694 #: classes/class-positionswidget.php:56 inc/init.php:365 695 695 #: blocks/list/build/index.js:1 696 696 msgid "title" … … 775 775 msgstr "Gibt deine offenen Stellen aus." 776 776 777 #: inc/admin.php:4 2777 #: inc/admin.php:47 778 778 msgid "Get Personio Integration Pro" 779 779 msgstr "Get Personio Integration Pro" 780 780 781 #: inc/admin.php: 46781 #: inc/admin.php:51 782 782 msgid "Reset sorting" 783 783 msgstr "Sortierung zurücksetzen" 784 784 785 #: inc/admin.php: 48785 #: inc/admin.php:53 786 786 msgid "Import is running" 787 787 msgstr "Import läuft aktuell" 788 788 789 #: inc/admin.php: 49789 #: inc/admin.php:54 790 790 msgid "Please wait" 791 791 msgstr "Bitte warten" 792 792 793 #: inc/admin.php:5 0 inc/settings/import.php:201793 #: inc/admin.php:55 inc/settings/import.php:203 794 794 msgid "" 795 795 "Performing the import could take a few minutes. If a timeout occurs, a " … … 801 801 "möglich. Dann sollte der automatische Import verwendet werden." 802 802 803 #: inc/admin.php: 65803 #: inc/admin.php:70 804 804 msgid "OK" 805 805 msgstr "OK" 806 806 807 #: inc/admin.php:10 0807 #: inc/admin.php:105 808 808 msgid "Positions imported from Personio" 809 809 msgstr "Von Personio importierte Stellen" 810 810 811 #: inc/admin.php:12 1811 #: inc/admin.php:126 812 812 msgid "Actually there are no positions imported from Personio." 813 813 msgstr "Derzeit gibt es keine aus Personio importierten Stellen." 814 814 815 815 #. translators: %1$d will be replaced by the count of positions 816 #: inc/admin.php:1 37816 #: inc/admin.php:142 817 817 msgid "Show all %1$d positions" 818 818 msgstr "Zeige alle %1$d Stellen" 819 819 820 #: inc/admin.php:19 4820 #: inc/admin.php:199 821 821 msgid "Dismiss this notice." 822 822 msgstr "Hinweis ausblenden." 823 823 824 #: inc/admin.php:22 4 inc/admin.php:810824 #: inc/admin.php:229 inc/admin.php:815 825 825 msgid "PersonioID" 826 826 msgstr "PersonioID" 827 827 828 #: inc/admin.php:27 2inc/settings/settings.php:81828 #: inc/admin.php:277 inc/settings/settings.php:81 829 829 #: blocks/details/build/index.js:1 blocks/list/build/index.js:1 830 830 #: blocks/show/build/index.js:1 … … 832 832 msgstr "Einstellungen" 833 833 834 #: inc/admin.php:3 59834 #: inc/admin.php:364 835 835 msgid "Edit" 836 836 msgstr "Bearbeiten" 837 837 838 #: inc/admin.php: 799838 #: inc/admin.php:804 839 839 msgid "Show Personio position data" 840 840 msgstr "Zeige Daten dieser Stelle" 841 841 842 #: inc/admin.php:81 1842 #: inc/admin.php:816 843 843 msgid "Title" 844 844 msgstr "Titel" 845 845 846 #: inc/admin.php:81 2blocks/description/build/index.js:1846 #: inc/admin.php:817 blocks/description/build/index.js:1 847 847 #: blocks/description/src/index.js:37 848 848 msgid "Description" … … 850 850 851 851 #. translators: %1$s will be replaced by the URL for Personio 852 #: inc/admin.php:83 2852 #: inc/admin.php:837 853 853 msgid "" 854 854 "At this point we show you the imported data of your open position <i>%1$s</" … … 860 860 "target=\"_blank\">Personio-Konto (öffnet neues Fenster)</a>." 861 861 862 #: inc/admin.php:88 3862 #: inc/admin.php:888 863 863 msgid "No data" 864 864 msgstr "Keine Daten" 865 866 #: inc/admin.php:915 867 msgid "Personio" 868 msgstr "Personio" 869 870 #: inc/admin.php:916 871 msgid "Import positions from Personio" 872 msgstr "Import von Stellen von Personio" 865 873 866 874 #: inc/frontend.php:53 … … 872 880 msgstr "Die gegebene Id ist keine gültige Stellen-Id." 873 881 874 #: inc/init.php:3 2 inc/init.php:34882 #: inc/init.php:33 inc/init.php:35 875 883 #: templates/archive-personioposition-shortcode.php:36 876 884 msgid "Positions" 877 885 msgstr "Stellen" 878 886 879 #: inc/init.php:3 3templates/single-personioposition-shortcode.php:17887 #: inc/init.php:34 templates/single-personioposition-shortcode.php:17 880 888 msgid "Position" 881 889 msgstr "Stelle" 882 890 883 #: inc/init.php:3 5891 #: inc/init.php:36 884 892 msgid "Parent Position" 885 893 msgstr "Eltern Stelle" 886 894 887 #: inc/init.php:3 6895 #: inc/init.php:37 888 896 msgid "All Positions" 889 897 msgstr "Alle offene Stellen" 890 898 891 #: inc/init.php:3 7899 #: inc/init.php:38 892 900 msgid "View Position in frontend" 893 901 msgstr "Zeige Stelle im Frontend" 894 902 895 #: inc/init.php:3 8903 #: inc/init.php:39 896 904 msgid "View Positions" 897 905 msgstr "Zeige Stellen an" 898 906 899 #: inc/init.php: 39907 #: inc/init.php:40 900 908 msgid "View Position in backend" 901 909 msgstr "Zeige Stelle im Backend" 902 910 903 #: inc/init.php:4 0911 #: inc/init.php:41 904 912 msgid "Search Position" 905 913 msgstr "Suche nach Stellen" 906 914 907 #: inc/init.php:4 1915 #: inc/init.php:42 908 916 msgid "Not Found" 909 917 msgstr "Nicht gefunden" 910 918 911 #: inc/init.php:4 2919 #: inc/init.php:43 912 920 msgid "Not found in Trash" 913 921 msgstr "In Papierkorb nicht gefunden" 914 922 915 #: inc/init.php:26 8923 #: inc/init.php:269 916 924 msgid "every 5th Minute" 917 925 msgstr "jede 5. Minute" 918 926 919 #: inc/init.php:343 blocks/details/build/index.js:1 920 #: blocks/show/build/index.js:1 927 #: inc/init.php:344 921 928 msgid "recruiting category" 922 929 msgstr "Kategorie" 923 930 924 #: inc/init.php:344 blocks/details/build/index.js:1 925 #: blocks/show/build/index.js:1 931 #: inc/init.php:345 926 932 msgid "schedule" 927 933 msgstr "Arbeitszeit" 928 934 929 #: inc/init.php:345 blocks/details/build/index.js:1 930 #: blocks/show/build/index.js:1 935 #: inc/init.php:346 931 936 msgid "office" 932 937 msgstr "Standort" 933 938 934 #: inc/init.php:346 blocks/details/build/index.js:1 935 #: blocks/show/build/index.js:1 939 #: inc/init.php:347 936 940 msgid "department" 937 941 msgstr "Abteilung" 938 942 939 #: inc/init.php:34 7943 #: inc/init.php:348 940 944 msgid "employment types" 941 945 msgstr "Anstellungsarten" 942 946 943 #: inc/init.php:348 blocks/details/build/index.js:1 944 #: blocks/show/build/index.js:1 947 #: inc/init.php:349 945 948 msgid "seniority" 946 949 msgstr "Dienstalter" 947 950 948 #: inc/init.php:349 blocks/details/build/index.js:1 949 #: blocks/show/build/index.js:1 951 #: inc/init.php:350 950 952 msgid "experience" 951 953 msgstr "Berufserfahrung" 952 954 953 #: inc/init.php:350 blocks/details/build/index.js:1 954 #: blocks/show/build/index.js:1 955 #: inc/init.php:351 955 956 msgid "occupation" 956 957 msgstr "Beschäftigung" 957 958 958 #: inc/init.php:36 5959 #: inc/init.php:366 959 960 msgid "details" 960 961 msgstr "Stellendetails" 961 962 962 #: inc/init.php:36 6963 #: inc/init.php:367 963 964 msgid "content" 964 965 msgstr "Inhalt" 965 966 966 #: inc/init.php:36 7967 #: inc/init.php:368 967 968 msgid "application link" 968 969 msgstr "Link zum Bewerbungsformular" 969 970 970 #: inc/init.php:55 6templates/parts/term-filter-select.php:15971 #: inc/init.php:557 templates/parts/term-filter-select.php:15 971 972 #: blocks/show/build/index.js:1 972 973 msgid "Please choose" … … 1120 1121 msgstr "Bitte eine gültige URL eintragen." 1121 1122 1122 #: inc/settings/import.php:2 11123 #: inc/settings/import.php:22 1123 1124 msgid "Import" 1124 1125 msgstr "Import" 1125 1126 1126 #: inc/settings/import.php:6 61127 #: inc/settings/import.php:67 1127 1128 msgid "Import of positions from Personio" 1128 1129 msgstr "Import von Stellen von Personio" 1129 1130 1130 #: inc/settings/import.php:7 41131 #: inc/settings/import.php:75 1131 1132 msgid "Start import now" 1132 1133 msgstr "Starte Import jetzt" 1133 1134 1134 #: inc/settings/import.php:8 71135 #: inc/settings/import.php:88 1135 1136 msgid "Delete positions" 1136 1137 msgstr "Stellen löschen" 1137 1138 1138 #: inc/settings/import.php:10 01139 #: inc/settings/import.php:101 1139 1140 msgid "Enable automatic import" 1140 1141 msgstr "Aktiviere automatischen Import" 1141 1142 1142 #: inc/settings/import.php:10 71143 #: inc/settings/import.php:108 1143 1144 msgid "" 1144 1145 "If enabled, new positions stored in Personio will be retrieved automatically " … … 1150 1151 1151 1152 #. translators: %1$s is replaced with "string" 1152 #: inc/settings/import.php:11 01153 #: inc/settings/import.php:111 1153 1154 msgid "" 1154 1155 "Use more import options with the %s. Among other things, you get the " … … 1160 1161 "sehr große Stellen-Listen durchzuführen." 1161 1162 1162 #: inc/settings/import.php:20 1 inc/settings/import.php:2331163 #: inc/settings/import.php:203 inc/settings/import.php:235 1163 1164 msgid "Hint" 1164 1165 msgstr "Hinweis" 1165 1166 1166 #: inc/settings/import.php:20 61167 #: inc/settings/import.php:208 1167 1168 msgid "The import is already running. Please wait some moments." 1168 1169 msgstr "Der Import läuft aktuell. Bitte einen Moment warten." 1169 1170 1170 #: inc/settings/import.php:2 181171 #: inc/settings/import.php:220 1171 1172 msgid "Cancel running import" 1172 1173 msgstr "Laufenden Import abbrechen" 1173 1174 1174 #: inc/settings/import.php:23 21175 #: inc/settings/import.php:234 1175 1176 msgid "Delete all positions" 1176 1177 msgstr "Entferne alle Stellen" 1177 1178 1178 #: inc/settings/import.php:23 31179 #: inc/settings/import.php:235 1179 1180 msgid "Removes all actual imported positions." 1180 1181 msgstr "Entfernt alle aktuell importierten Stellen." 1181 1182 1182 #: inc/settings/import.php:23 71183 #: inc/settings/import.php:239 1183 1184 msgid "There are currently no imported positions." 1184 1185 msgstr "Es sind aktuell keine Stellen importiert." … … 1391 1392 "Stellt einen Gutenberg-Block zur Ausgabe einer einzelnen Stelle, verwaltet " 1392 1393 "bei Personio, bereit." 1394 1395 #: blocks/details/build/index.js:1 blocks/show/build/index.js:1 1396 msgid "Category" 1397 msgstr "Kategorie" 1398 1399 #: blocks/details/build/index.js:1 blocks/show/build/index.js:1 1400 msgid "Contract type" 1401 msgstr "Vertragstyp" 1402 1403 #: blocks/details/build/index.js:1 blocks/show/build/index.js:1 1404 msgid "Location" 1405 msgstr "Standort" 1406 1407 #: blocks/details/build/index.js:1 blocks/show/build/index.js:1 1408 msgid "Department" 1409 msgstr "Abteilung" 1410 1411 #: blocks/details/build/index.js:1 blocks/show/build/index.js:1 1412 msgid "Experience" 1413 msgstr "Erfahrung" 1414 1415 #: blocks/details/build/index.js:1 blocks/show/build/index.js:1 1416 msgid "Years of experience" 1417 msgstr "Berufserfahrung in Jahren" 1418 1419 #: blocks/details/build/index.js:1 blocks/show/build/index.js:1 1420 msgid "Job type" 1421 msgstr "Stellentyp" 1393 1422 1394 1423 #: 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 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: WP Personio Integration Light 2.4. 0\n"5 "Project-Id-Version: WP Personio Integration Light 2.4.1\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/personio-" 7 7 "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" 10 10 "Last-Translator: \n" 11 11 "Language-Team: \n" … … 82 82 #. translators: %1$s is replaced with "string" 83 83 #: classes/class-helper.php:91 classes/class-helper.php:148 84 #: classes/class-helper.php:171 inc/admin.php: 47 inc/settings/import.php:20084 #: classes/class-helper.php:171 inc/admin.php:52 inc/settings/import.php:202 85 85 msgid "Run import" 86 86 msgstr "Jetzt Import ausführen" 87 87 88 88 #. translators: %1$s is replaced with "string", %2$s is replaced with "string" 89 #: classes/class-helper.php:98 inc/admin.php:5 389 #: classes/class-helper.php:98 inc/admin.php:58 90 90 msgid "" 91 91 "<strong>The import has been manually run.</strong> Please check the list of " … … 618 618 619 619 #. 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: 194620 #: classes/class-import.php:204 621 621 msgid "" 622 622 "Personio URL for language %1$s not available. Returned HTTP-Status %2$d. " … … 627 627 "ist." 628 628 629 #: classes/class-import.php:2 88629 #: classes/class-import.php:298 630 630 msgid "Error during Personio Positions Import" 631 631 msgstr "Fehler beim Personio Positions Import" 632 632 633 #: classes/class-import.php:2 89633 #: classes/class-import.php:299 634 634 msgid "" 635 635 "The following error occurred when importing positions provided by Personio:" … … 638 638 "folgender Fehler aufgetreten:" 639 639 640 #: classes/class-import.php: 290640 #: classes/class-import.php:300 641 641 msgid "Sent by the plugin Personio Integration" 642 642 msgstr "Gesendet vom Plugin Personio Integration" … … 669 669 "Stellt ein Widget zur Verfügung, um eine Liste der von Stellen anzuzeigen." 670 670 671 #: classes/class-positionswidget.php:24 inc/init.php:30 3671 #: classes/class-positionswidget.php:24 inc/init.php:304 672 672 #: blocks/list/build/index.js:1 673 673 msgid "Personio Positions" … … 694 694 msgstr "Sortieren nach" 695 695 696 #: classes/class-positionswidget.php:56 inc/init.php:36 4696 #: classes/class-positionswidget.php:56 inc/init.php:365 697 697 #: blocks/list/build/index.js:1 698 698 msgid "title" … … 777 777 msgstr "Gibt deine offenen Stellen aus." 778 778 779 #: inc/admin.php:4 2779 #: inc/admin.php:47 780 780 msgid "Get Personio Integration Pro" 781 781 msgstr "Get Personio Integration Pro" 782 782 783 #: inc/admin.php: 46783 #: inc/admin.php:51 784 784 msgid "Reset sorting" 785 785 msgstr "Sortierung zurücksetzen" 786 786 787 #: inc/admin.php: 48787 #: inc/admin.php:53 788 788 msgid "Import is running" 789 789 msgstr "Import läuft" 790 790 791 #: inc/admin.php: 49791 #: inc/admin.php:54 792 792 msgid "Please wait" 793 793 msgstr "Bitte warten" 794 794 795 #: inc/admin.php:5 0 inc/settings/import.php:201795 #: inc/admin.php:55 inc/settings/import.php:203 796 796 msgid "" 797 797 "Performing the import could take a few minutes. If a timeout occurs, a " … … 803 803 "möglich. Dann sollte der automatische Import verwendet werden." 804 804 805 #: inc/admin.php: 65805 #: inc/admin.php:70 806 806 msgid "OK" 807 807 msgstr "OK" 808 808 809 #: inc/admin.php:10 0809 #: inc/admin.php:105 810 810 msgid "Positions imported from Personio" 811 811 msgstr "Von Personio importierte Stellen" 812 812 813 #: inc/admin.php:12 1813 #: inc/admin.php:126 814 814 msgid "Actually there are no positions imported from Personio." 815 815 msgstr "Derzeit gibt es keine aus Personio importierten Stellen." 816 816 817 817 #. translators: %1$d will be replaced by the count of positions 818 #: inc/admin.php:1 37818 #: inc/admin.php:142 819 819 msgid "Show all %1$d positions" 820 820 msgstr "Zeige alle %1$d Stellen" 821 821 822 #: inc/admin.php:19 4822 #: inc/admin.php:199 823 823 msgid "Dismiss this notice." 824 824 msgstr "Hinweis ausblenden." 825 825 826 #: inc/admin.php:22 4 inc/admin.php:810826 #: inc/admin.php:229 inc/admin.php:815 827 827 msgid "PersonioID" 828 828 msgstr "PersonioID" 829 829 830 #: inc/admin.php:27 2inc/settings/settings.php:81830 #: inc/admin.php:277 inc/settings/settings.php:81 831 831 #: blocks/details/build/index.js:1 blocks/list/build/index.js:1 832 832 #: blocks/show/build/index.js:1 … … 834 834 msgstr "Einstellungen" 835 835 836 #: inc/admin.php:3 59836 #: inc/admin.php:364 837 837 msgid "Edit" 838 838 msgstr "Bearbeiten" 839 839 840 #: inc/admin.php: 799840 #: inc/admin.php:804 841 841 msgid "Show Personio position data" 842 842 msgstr "Zeige Daten dieser Stelle" 843 843 844 #: inc/admin.php:81 1844 #: inc/admin.php:816 845 845 msgid "Title" 846 846 msgstr "Titel" 847 847 848 #: inc/admin.php:81 2blocks/description/build/index.js:1848 #: inc/admin.php:817 blocks/description/build/index.js:1 849 849 #: blocks/description/src/index.js:37 850 850 msgid "Description" … … 852 852 853 853 #. translators: %1$s will be replaced by the URL for Personio 854 #: inc/admin.php:83 2854 #: inc/admin.php:837 855 855 msgid "" 856 856 "At this point we show you the imported data of your open position <i>%1$s</" … … 862 862 "\"%2$s\" target=\"_blank\">Personio-Konto (öffnet neues Fenster)</a>." 863 863 864 #: inc/admin.php:88 3864 #: inc/admin.php:888 865 865 msgid "No data" 866 866 msgstr "Keine Daten" 867 868 #: inc/admin.php:915 869 msgid "Personio" 870 msgstr "Personio" 871 872 #: inc/admin.php:916 873 msgid "Import positions from Personio" 874 msgstr "Import von Stellen von Personio" 867 875 868 876 #: inc/frontend.php:53 … … 874 882 msgstr "Die gegebene Id ist keine gültige Stellen-Id." 875 883 876 #: inc/init.php:3 2 inc/init.php:34884 #: inc/init.php:33 inc/init.php:35 877 885 #: templates/archive-personioposition-shortcode.php:36 878 886 msgid "Positions" 879 887 msgstr "Stellen" 880 888 881 #: inc/init.php:3 3templates/single-personioposition-shortcode.php:17889 #: inc/init.php:34 templates/single-personioposition-shortcode.php:17 882 890 msgid "Position" 883 891 msgstr "Stelle" 884 892 885 #: inc/init.php:3 5893 #: inc/init.php:36 886 894 msgid "Parent Position" 887 895 msgstr "Eltern Stelle" 888 896 889 #: inc/init.php:3 6897 #: inc/init.php:37 890 898 msgid "All Positions" 891 899 msgstr "Alle offene Stellen" 892 900 893 #: inc/init.php:3 7901 #: inc/init.php:38 894 902 msgid "View Position in frontend" 895 903 msgstr "Zeige Stelle im Frontend" 896 904 897 #: inc/init.php:3 8905 #: inc/init.php:39 898 906 msgid "View Positions" 899 907 msgstr "Zeige Stellen an" 900 908 901 #: inc/init.php: 39909 #: inc/init.php:40 902 910 msgid "View Position in backend" 903 911 msgstr "Zeige Stelle im Backend" 904 912 905 #: inc/init.php:4 0913 #: inc/init.php:41 906 914 msgid "Search Position" 907 915 msgstr "Suche nach Stellen" 908 916 909 #: inc/init.php:4 1917 #: inc/init.php:42 910 918 msgid "Not Found" 911 919 msgstr "Nicht gefunden" 912 920 913 #: inc/init.php:4 2921 #: inc/init.php:43 914 922 msgid "Not found in Trash" 915 923 msgstr "In Papierkorb nicht gefunden" 916 924 917 #: inc/init.php:26 8925 #: inc/init.php:269 918 926 msgid "every 5th Minute" 919 927 msgstr "jede 5. Minute" 920 928 921 #: inc/init.php:343 blocks/details/build/index.js:1 922 #: blocks/show/build/index.js:1 929 #: inc/init.php:344 923 930 msgid "recruiting category" 924 931 msgstr "Kategorie" 925 932 926 #: inc/init.php:344 blocks/details/build/index.js:1 927 #: blocks/show/build/index.js:1 933 #: inc/init.php:345 928 934 msgid "schedule" 929 935 msgstr "Arbeitszeit" 930 936 931 #: inc/init.php:345 blocks/details/build/index.js:1 932 #: blocks/show/build/index.js:1 937 #: inc/init.php:346 933 938 msgid "office" 934 939 msgstr "Standort" 935 940 936 #: inc/init.php:346 blocks/details/build/index.js:1 937 #: blocks/show/build/index.js:1 941 #: inc/init.php:347 938 942 msgid "department" 939 943 msgstr "Abteilung" 940 944 941 #: inc/init.php:34 7945 #: inc/init.php:348 942 946 msgid "employment types" 943 947 msgstr "Anstellungsarten" 944 948 945 #: inc/init.php:348 blocks/details/build/index.js:1 946 #: blocks/show/build/index.js:1 949 #: inc/init.php:349 947 950 msgid "seniority" 948 951 msgstr "Dienstalter" 949 952 950 #: inc/init.php:349 blocks/details/build/index.js:1 951 #: blocks/show/build/index.js:1 953 #: inc/init.php:350 952 954 msgid "experience" 953 955 msgstr "Berufserfahrung" 954 956 955 #: inc/init.php:350 blocks/details/build/index.js:1 956 #: blocks/show/build/index.js:1 957 #: inc/init.php:351 957 958 msgid "occupation" 958 959 msgstr "Beschäftigung" 959 960 960 #: inc/init.php:36 5961 #: inc/init.php:366 961 962 msgid "details" 962 963 msgstr "Stellendetails" 963 964 964 #: inc/init.php:36 6965 #: inc/init.php:367 965 966 msgid "content" 966 967 msgstr "Inhalt" 967 968 968 #: inc/init.php:36 7969 #: inc/init.php:368 969 970 msgid "application link" 970 971 msgstr "Link zum Bewerbungsformular" 971 972 972 #: inc/init.php:55 6templates/parts/term-filter-select.php:15973 #: inc/init.php:557 templates/parts/term-filter-select.php:15 973 974 #: blocks/show/build/index.js:1 974 975 msgid "Please choose" … … 1122 1123 msgstr "Bitte eine gültige URL eintragen." 1123 1124 1124 #: inc/settings/import.php:2 11125 #: inc/settings/import.php:22 1125 1126 msgid "Import" 1126 1127 msgstr "Import" 1127 1128 1128 #: inc/settings/import.php:6 61129 #: inc/settings/import.php:67 1129 1130 msgid "Import of positions from Personio" 1130 1131 msgstr "Import von Stellen von Personio" 1131 1132 1132 #: inc/settings/import.php:7 41133 #: inc/settings/import.php:75 1133 1134 msgid "Start import now" 1134 1135 msgstr "Starte Import jetzt" 1135 1136 1136 #: inc/settings/import.php:8 71137 #: inc/settings/import.php:88 1137 1138 msgid "Delete positions" 1138 1139 msgstr "Stellen löschen" 1139 1140 1140 #: inc/settings/import.php:10 01141 #: inc/settings/import.php:101 1141 1142 msgid "Enable automatic import" 1142 1143 msgstr "Aktiviere automatischen Import" 1143 1144 1144 #: inc/settings/import.php:10 71145 #: inc/settings/import.php:108 1145 1146 msgid "" 1146 1147 "If enabled, new positions stored in Personio will be retrieved automatically " … … 1152 1153 1153 1154 #. translators: %1$s is replaced with "string" 1154 #: inc/settings/import.php:11 01155 #: inc/settings/import.php:111 1155 1156 msgid "" 1156 1157 "Use more import options with the %s. Among other things, you get the " … … 1162 1163 "sehr große Stellen-Listen durchzuführen." 1163 1164 1164 #: inc/settings/import.php:20 1 inc/settings/import.php:2331165 #: inc/settings/import.php:203 inc/settings/import.php:235 1165 1166 msgid "Hint" 1166 1167 msgstr "Hinweis" 1167 1168 1168 #: inc/settings/import.php:20 61169 #: inc/settings/import.php:208 1169 1170 msgid "The import is already running. Please wait some moments." 1170 1171 msgstr "Ein Import läuft aktuell. Bitte warten Sie einen Moment." 1171 1172 1172 #: inc/settings/import.php:2 181173 #: inc/settings/import.php:220 1173 1174 msgid "Cancel running import" 1174 1175 msgstr "Laufenden Import abbrechen" 1175 1176 1176 #: inc/settings/import.php:23 21177 #: inc/settings/import.php:234 1177 1178 msgid "Delete all positions" 1178 1179 msgstr "Entferne alle Stellen" 1179 1180 1180 #: inc/settings/import.php:23 31181 #: inc/settings/import.php:235 1181 1182 msgid "Removes all actual imported positions." 1182 1183 msgstr "Entfernt alle aktuell importierten Stellen." 1183 1184 1184 #: inc/settings/import.php:23 71185 #: inc/settings/import.php:239 1185 1186 msgid "There are currently no imported positions." 1186 1187 msgstr "Es sind aktuell keine Stellen importiert." … … 1393 1394 "Stellt einen Gutenberg-Block zur Ausgabe einer einzelnen Stelle, verwaltet " 1394 1395 "bei Personio, bereit." 1396 1397 #: blocks/details/build/index.js:1 blocks/show/build/index.js:1 1398 msgid "Category" 1399 msgstr "Kategorie" 1400 1401 #: blocks/details/build/index.js:1 blocks/show/build/index.js:1 1402 msgid "Contract type" 1403 msgstr "Vertragstyp" 1404 1405 #: blocks/details/build/index.js:1 blocks/show/build/index.js:1 1406 msgid "Location" 1407 msgstr "Standort" 1408 1409 #: blocks/details/build/index.js:1 blocks/show/build/index.js:1 1410 msgid "Department" 1411 msgstr "Abteilung" 1412 1413 #: blocks/details/build/index.js:1 blocks/show/build/index.js:1 1414 msgid "Experience" 1415 msgstr "Erfahrung" 1416 1417 #: blocks/details/build/index.js:1 blocks/show/build/index.js:1 1418 msgid "Years of experience" 1419 msgstr "Berufserfahrung in Jahren" 1420 1421 #: blocks/details/build/index.js:1 blocks/show/build/index.js:1 1422 msgid "Job type" 1423 msgstr "Stellentyp" 1395 1424 1396 1425 #: blocks/details/build/index.js:1 -
personio-integration-light/trunk/languages/wp-personio-integration.pot
r2962403 r2965729 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: Personio Integration Light 2.4. 0\n"5 "Project-Id-Version: Personio Integration Light 2.4.1\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/personio-integration-light\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "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" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.6.0\n" … … 84 84 #: classes/class-helper.php:148 85 85 #: classes/class-helper.php:171 86 #: inc/admin.php: 4787 #: inc/settings/import.php:20 086 #: inc/admin.php:52 87 #: inc/settings/import.php:202 88 88 msgid "Run import" 89 89 msgstr "" … … 91 91 #. translators: %1$s is replaced with "string", %2$s is replaced with "string" 92 92 #: classes/class-helper.php:98 93 #: inc/admin.php:5 393 #: inc/admin.php:58 94 94 msgid "<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>." 95 95 msgstr "" … … 521 521 522 522 #. 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: 194523 #: classes/class-import.php:204 524 524 msgid "Personio URL for language %1$s not available. Returned HTTP-Status %2$d. Please check the URL you configured and if it is available." 525 525 msgstr "" 526 526 527 #: classes/class-import.php:2 88527 #: classes/class-import.php:298 528 528 msgid "Error during Personio Positions Import" 529 529 msgstr "" 530 530 531 #: classes/class-import.php:2 89531 #: classes/class-import.php:299 532 532 msgid "The following error occurred when importing positions provided by Personio:" 533 533 msgstr "" 534 534 535 #: classes/class-import.php: 290535 #: classes/class-import.php:300 536 536 msgid "Sent by the plugin Personio Integration" 537 537 msgstr "" … … 565 565 566 566 #: classes/class-positionswidget.php:24 567 #: inc/init.php:30 3567 #: inc/init.php:304 568 568 #: blocks/list/build/index.js:1 569 569 msgid "Personio Positions" … … 595 595 596 596 #: classes/class-positionswidget.php:56 597 #: inc/init.php:36 4597 #: inc/init.php:365 598 598 #: blocks/list/build/index.js:1 599 599 msgid "title" … … 697 697 msgstr "" 698 698 699 #: inc/admin.php:4 2699 #: inc/admin.php:47 700 700 msgid "Get Personio Integration Pro" 701 701 msgstr "" 702 702 703 #: inc/admin.php: 46703 #: inc/admin.php:51 704 704 msgid "Reset sorting" 705 705 msgstr "" 706 706 707 #: inc/admin.php: 48707 #: inc/admin.php:53 708 708 msgid "Import is running" 709 709 msgstr "" 710 710 711 #: inc/admin.php: 49711 #: inc/admin.php:54 712 712 msgid "Please wait" 713 713 msgstr "" 714 714 715 #: inc/admin.php:5 0716 #: inc/settings/import.php:20 1715 #: inc/admin.php:55 716 #: inc/settings/import.php:203 717 717 msgid "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." 718 718 msgstr "" 719 719 720 #: inc/admin.php: 65720 #: inc/admin.php:70 721 721 msgid "OK" 722 722 msgstr "" 723 723 724 #: inc/admin.php:10 0724 #: inc/admin.php:105 725 725 msgid "Positions imported from Personio" 726 726 msgstr "" 727 727 728 #: inc/admin.php:12 1728 #: inc/admin.php:126 729 729 msgid "Actually there are no positions imported from Personio." 730 730 msgstr "" 731 731 732 732 #. translators: %1$d will be replaced by the count of positions 733 #: inc/admin.php:1 37733 #: inc/admin.php:142 734 734 msgid "Show all %1$d positions" 735 735 msgstr "" 736 736 737 #: inc/admin.php:19 4737 #: inc/admin.php:199 738 738 msgid "Dismiss this notice." 739 739 msgstr "" 740 740 741 #: inc/admin.php:22 4742 #: inc/admin.php:81 0741 #: inc/admin.php:229 742 #: inc/admin.php:815 743 743 msgid "PersonioID" 744 744 msgstr "" 745 745 746 #: inc/admin.php:27 2746 #: inc/admin.php:277 747 747 #: inc/settings/settings.php:81 748 748 #: blocks/details/build/index.js:1 … … 752 752 msgstr "" 753 753 754 #: inc/admin.php:3 59754 #: inc/admin.php:364 755 755 msgid "Edit" 756 756 msgstr "" 757 757 758 #: inc/admin.php: 799758 #: inc/admin.php:804 759 759 msgid "Show Personio position data" 760 760 msgstr "" 761 761 762 #: inc/admin.php:81 1762 #: inc/admin.php:816 763 763 msgid "Title" 764 764 msgstr "" 765 765 766 #: inc/admin.php:81 2766 #: inc/admin.php:817 767 767 #: blocks/description/build/index.js:1 768 768 #: blocks/description/src/index.js:37 … … 771 771 772 772 #. translators: %1$s will be replaced by the URL for Personio 773 #: inc/admin.php:83 2773 #: inc/admin.php:837 774 774 msgid "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>." 775 775 msgstr "" 776 776 777 #: inc/admin.php:88 3777 #: inc/admin.php:888 778 778 msgid "No data" 779 msgstr "" 780 781 #: inc/admin.php:915 782 msgid "Personio" 783 msgstr "" 784 785 #: inc/admin.php:916 786 msgid "Import positions from Personio" 779 787 msgstr "" 780 788 … … 787 795 msgstr "" 788 796 789 #: inc/init.php:3 2790 #: inc/init.php:3 4797 #: inc/init.php:33 798 #: inc/init.php:35 791 799 #: templates/archive-personioposition-shortcode.php:36 792 800 msgid "Positions" 793 801 msgstr "" 794 802 795 #: inc/init.php:3 3803 #: inc/init.php:34 796 804 #: templates/single-personioposition-shortcode.php:17 797 805 msgid "Position" 798 806 msgstr "" 799 807 800 #: inc/init.php:3 5808 #: inc/init.php:36 801 809 msgid "Parent Position" 802 810 msgstr "" 803 811 804 #: inc/init.php:3 6812 #: inc/init.php:37 805 813 msgid "All Positions" 806 814 msgstr "" 807 815 808 #: inc/init.php:3 7816 #: inc/init.php:38 809 817 msgid "View Position in frontend" 810 818 msgstr "" 811 819 812 #: inc/init.php:3 8820 #: inc/init.php:39 813 821 msgid "View Positions" 814 822 msgstr "" 815 823 816 #: inc/init.php: 39824 #: inc/init.php:40 817 825 msgid "View Position in backend" 818 826 msgstr "" 819 827 820 #: inc/init.php:4 0828 #: inc/init.php:41 821 829 msgid "Search Position" 822 830 msgstr "" 823 831 824 #: inc/init.php:4 1832 #: inc/init.php:42 825 833 msgid "Not Found" 826 834 msgstr "" 827 835 828 #: inc/init.php:4 2836 #: inc/init.php:43 829 837 msgid "Not found in Trash" 830 838 msgstr "" 831 839 832 #: inc/init.php:26 8840 #: inc/init.php:269 833 841 msgid "every 5th Minute" 834 842 msgstr "" 835 843 836 #: inc/init.php:343 837 #: blocks/details/build/index.js:1 838 #: blocks/show/build/index.js:1 844 #: inc/init.php:344 839 845 msgid "recruiting category" 840 846 msgstr "" 841 847 842 #: inc/init.php:344 843 #: blocks/details/build/index.js:1 844 #: blocks/show/build/index.js:1 848 #: inc/init.php:345 845 849 msgid "schedule" 846 850 msgstr "" 847 851 848 #: inc/init.php:345 849 #: blocks/details/build/index.js:1 850 #: blocks/show/build/index.js:1 852 #: inc/init.php:346 851 853 msgid "office" 852 854 msgstr "" 853 855 854 #: inc/init.php:346 855 #: blocks/details/build/index.js:1 856 #: blocks/show/build/index.js:1 856 #: inc/init.php:347 857 857 msgid "department" 858 858 msgstr "" 859 859 860 #: inc/init.php:34 7860 #: inc/init.php:348 861 861 msgid "employment types" 862 862 msgstr "" 863 863 864 #: inc/init.php:348 865 #: blocks/details/build/index.js:1 866 #: blocks/show/build/index.js:1 864 #: inc/init.php:349 867 865 msgid "seniority" 868 866 msgstr "" 869 867 870 #: inc/init.php:349 871 #: blocks/details/build/index.js:1 872 #: blocks/show/build/index.js:1 868 #: inc/init.php:350 873 869 msgid "experience" 874 870 msgstr "" 875 871 876 #: inc/init.php:350 877 #: blocks/details/build/index.js:1 878 #: blocks/show/build/index.js:1 872 #: inc/init.php:351 879 873 msgid "occupation" 880 874 msgstr "" 881 875 882 #: inc/init.php:36 5876 #: inc/init.php:366 883 877 msgid "details" 884 878 msgstr "" 885 879 886 #: inc/init.php:36 6880 #: inc/init.php:367 887 881 msgid "content" 888 882 msgstr "" 889 883 890 #: inc/init.php:36 7884 #: inc/init.php:368 891 885 msgid "application link" 892 886 msgstr "" 893 887 894 #: inc/init.php:55 6888 #: inc/init.php:557 895 889 #: templates/parts/term-filter-select.php:15 896 890 #: blocks/show/build/index.js:1 … … 1022 1016 msgstr "" 1023 1017 1024 #: inc/settings/import.php:2 11018 #: inc/settings/import.php:22 1025 1019 msgid "Import" 1026 1020 msgstr "" 1027 1021 1028 #: inc/settings/import.php:6 61022 #: inc/settings/import.php:67 1029 1023 msgid "Import of positions from Personio" 1030 1024 msgstr "" 1031 1025 1032 #: inc/settings/import.php:7 41026 #: inc/settings/import.php:75 1033 1027 msgid "Start import now" 1034 1028 msgstr "" 1035 1029 1036 #: inc/settings/import.php:8 71030 #: inc/settings/import.php:88 1037 1031 msgid "Delete positions" 1038 1032 msgstr "" 1039 1033 1040 #: inc/settings/import.php:10 01034 #: inc/settings/import.php:101 1041 1035 msgid "Enable automatic import" 1042 1036 msgstr "" 1043 1037 1044 #: inc/settings/import.php:10 71038 #: inc/settings/import.php:108 1045 1039 msgid "If enabled, new positions stored in Personio will be retrieved automatically daily.<br>If disabled, new positions are retrieved manually only." 1046 1040 msgstr "" 1047 1041 1048 1042 #. translators: %1$s is replaced with "string" 1049 #: inc/settings/import.php:11 01043 #: inc/settings/import.php:111 1050 1044 msgid "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." 1051 1045 msgstr "" 1052 1046 1053 #: inc/settings/import.php:20 11054 #: inc/settings/import.php:23 31047 #: inc/settings/import.php:203 1048 #: inc/settings/import.php:235 1055 1049 msgid "Hint" 1056 1050 msgstr "" 1057 1051 1058 #: inc/settings/import.php:20 61052 #: inc/settings/import.php:208 1059 1053 msgid "The import is already running. Please wait some moments." 1060 1054 msgstr "" 1061 1055 1062 #: inc/settings/import.php:2 181056 #: inc/settings/import.php:220 1063 1057 msgid "Cancel running import" 1064 1058 msgstr "" 1065 1059 1066 #: inc/settings/import.php:23 21060 #: inc/settings/import.php:234 1067 1061 msgid "Delete all positions" 1068 1062 msgstr "" 1069 1063 1070 #: inc/settings/import.php:23 31064 #: inc/settings/import.php:235 1071 1065 msgid "Removes all actual imported positions." 1072 1066 msgstr "" 1073 1067 1074 #: inc/settings/import.php:23 71068 #: inc/settings/import.php:239 1075 1069 msgid "There are currently no imported positions." 1076 1070 msgstr "" … … 1240 1234 #: blocks/details/build/index.js:1 1241 1235 msgid "Provides a Gutenberg Block to details of a single position managed by Personio." 1236 msgstr "" 1237 1238 #: blocks/details/build/index.js:1 1239 #: blocks/show/build/index.js:1 1240 msgid "Category" 1241 msgstr "" 1242 1243 #: blocks/details/build/index.js:1 1244 #: blocks/show/build/index.js:1 1245 msgid "Contract type" 1246 msgstr "" 1247 1248 #: blocks/details/build/index.js:1 1249 #: blocks/show/build/index.js:1 1250 msgid "Location" 1251 msgstr "" 1252 1253 #: blocks/details/build/index.js:1 1254 #: blocks/show/build/index.js:1 1255 msgid "Department" 1256 msgstr "" 1257 1258 #: blocks/details/build/index.js:1 1259 #: blocks/show/build/index.js:1 1260 msgid "Experience" 1261 msgstr "" 1262 1263 #: blocks/details/build/index.js:1 1264 #: blocks/show/build/index.js:1 1265 msgid "Years of experience" 1266 msgstr "" 1267 1268 #: blocks/details/build/index.js:1 1269 #: blocks/show/build/index.js:1 1270 msgid "Job type" 1242 1271 msgstr "" 1243 1272 -
personio-integration-light/trunk/personio-integration-light.php
r2962403 r2965729 5 5 * Requires at least: 5.9 6 6 * Requires PHP: 7.4 7 * Version: 2.4. 07 * Version: 2.4.1 8 8 * Author: laOlaWeb 9 9 * Author URI: https://laolaweb.com … … 16 16 17 17 // set version number 18 const WP_PERSONIO_INTEGRATION_VERSION = '2.4. 0';18 const WP_PERSONIO_INTEGRATION_VERSION = '2.4.1'; 19 19 20 20 // save plugin-path -
personio-integration-light/trunk/readme.txt
r2962403 r2965729 7 7 License: GPL-2.0-or-later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html 9 Stable tag: 2.4. 09 Stable tag: 2.4.1 10 10 11 11 == Description == … … 275 275 * Updated dependencies for Gutenberg-scripts 276 276 * 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.