Plugin Directory

Changeset 2917876

Timestamp:
05/26/2023 03:52:13 PM (15 months ago)
Author:
gikaragia
Message:

Tagging version 1.40.2

Location:
wp-job-manager
Files:
12 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wp-job-manager/tags/1.40.2/changelog.txt

    r2911810 r2917876  
    11# WP Job Manager
     2
     3
     4
    25
    36## 1.40.1 - 2023-05-12
  • wp-job-manager/tags/1.40.2/includes/admin/class-wp-job-manager-settings.php

    r2911159 r2917876  
    154154                            'std'        => '0',
    155155                            'label'      => __( 'Filled Positions', 'wp-job-manager' ),
    156                             'cb_label'   => __( 'Hide filled positions in job archives/search', 'wp-job-manager' ),
    157                             'desc'       => __( 'Filled positions will not display in your archives or in search.', 'wp-job-manager' ),
     156                            'cb_label'   => __( 'Hide filled positions', 'wp-job-manager' ),
     157                            'desc'       => __( 'Filled positions will not display in your archives.', 'wp-job-manager' ),
    158158                            'type'       => 'checkbox',
    159159                            'attributes' => [],
     
    162162                            'name'       => 'job_manager_hide_expired',
    163163                            'std'        => get_option( 'job_manager_hide_expired_content' ) ? '1' : '0', // back compat.
    164                             'label'      => __( 'Expired Positions', 'wp-job-manager' ),
    165                             'cb_label'   => __( 'Hide expired positions in job archives/search', 'wp-job-manager' ),
    166                             'desc'       => __( 'Expired positions will not display in your archives or in search.', 'wp-job-manager' ),
     164                            'label'      => __( 's', 'wp-job-manager' ),
     165                            'cb_label'   => __( 'Hide expired s in job archives/search', 'wp-job-manager' ),
     166                            'desc'       => __( 'Expired .', 'wp-job-manager' ),
    167167                            'type'       => 'checkbox',
    168168                            'attributes' => [],
     
    171171                            'name'       => 'job_manager_hide_expired_content',
    172172                            'std'        => '1',
    173                             'label'      => __( 'Hide Expired Positions Content', 'wp-job-manager' ),
    174                             'cb_label'   => __( 'Hide content in expired single job position', 'wp-job-manager' ),
    175                             'desc'       => __( 'Your site will display the titles of expired positions, but not the content of the positions. Otherwise, expired positions display their full content minus the application area.', 'wp-job-manager' ),
     173                            'label'      => __( 'Hide Expired s Content', 'wp-job-manager' ),
     174                            'cb_label'   => __( 'Hide content in expired single job ', 'wp-job-manager' ),
     175                            'desc'       => __( 'Your site will display the titles of expired s display their full content minus the application area.', 'wp-job-manager' ),
    176176                            'type'       => 'checkbox',
    177177                            'attributes' => [],
  • wp-job-manager/tags/1.40.2/includes/class-wp-job-manager-post-types.php

    r2911159 r2917876  
    8787        add_action( 'transition_post_status', [ $this, 'track_job_submission' ], 10, 3 );
    8888
    89         add_action( 'parse_query', [ $this, 'maybe_hide_filled_expired_job_listings_from_search' ] );
    9089        add_action( 'parse_query', [ $this, 'add_feed_query_args' ] );
    9190
     
    651650        do_feed_rss2( false );
    652651        remove_filter( 'posts_search', 'get_job_listings_keyword_search' );
    653     }
    654 
    655     /**
    656      * Modifies WordPress Query of public search.
    657      *
    658      * @param WP_Query $query Query being processed.
    659      */
    660     public function maybe_hide_filled_expired_job_listings_from_search( $query ) {
    661         if ( ! $query->is_search() ) {
    662             return;
    663         }
    664 
    665         // Remove filled positions, if necessary.
    666         if ( 1 === absint( get_option( 'job_manager_hide_filled_positions' ) ) ) {
    667             $meta_query = $query->get( 'meta_query' );
    668 
    669             if ( ! is_array( $meta_query ) ) {
    670                 $meta_query = [];
    671             }
    672 
    673             $meta_query[] = [
    674                 'relation' => 'OR',
    675                 [
    676                     'key'     => '_filled',
    677                     'value'   => '0',
    678                     'compare' => '=',
    679                 ],
    680                 [
    681                     'key'     => '_filled',
    682                     'compare' => 'NOT EXISTS',
    683                 ],
    684             ];
    685 
    686             $query->set( 'meta_query', $meta_query );
    687         }
    688 
    689         // Remove expired positions, if necessary.
    690         if ( 1 === absint( get_option( 'job_manager_hide_expired' ) ) ) {
    691             $meta_query = $query->get( 'meta_query' );
    692 
    693             if ( ! is_array( $meta_query ) ) {
    694                 $meta_query = [];
    695             }
    696 
    697             $meta_query[] = [
    698                 'relation' => 'OR',
    699                 [
    700                     'key'     => '_job_expires',
    701                     'value'   => gmdate( 'Y-m-d' ),
    702                     'compare' => '>=',
    703                     'type'    => 'DATE',
    704                 ],
    705                 [
    706                     'key'     => '_job_expires',
    707                     'compare' => 'NOT EXISTS',
    708                 ],
    709             ];
    710 
    711             $query->set( 'meta_query', $meta_query );
    712         }
    713 
    714652    }
    715653
  • wp-job-manager/tags/1.40.2/languages/wp-job-manager.pot

    r2911810 r2917876  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WP Job Manager 1.40.1\n"
     5"Project-Id-Version: WP Job Manager 1.40.\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-job-manager/\n"
    77"Last-Translator: \n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2023-05-12T20:54:38+00:00\n"
     12"POT-Creation-Date: 2023-05-+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    14 "X-Generator: WP-CLI 2.7.1\n"
     14"X-Generator: WP-CLI 2.\n"
    1515"X-Domain: wp-job-manager\n"
    1616
     
    277277#: includes/admin/class-wp-job-manager-cpt.php:501
    278278#: includes/class-wp-job-manager-email-notifications.php:270
    279 #: includes/class-wp-job-manager-post-types.php:1560
     279#: includes/class-wp-job-manager-post-types.php:1
    280280#: includes/forms/class-wp-job-manager-form-submit-job.php:222
    281281#: includes/widgets/class-wp-job-manager-widget-recent-jobs.php:46
     
    347347#. translators: Placeholder %s is the singular label of the job listing post type.
    348348#: includes/admin/class-wp-job-manager-cpt.php:652
    349 #: includes/class-wp-job-manager-post-types.php:341
     349#: includes/class-wp-job-manager-post-types.php:34
    350350#: includes/class-wp-job-manager-shortcodes.php:443
    351351#: includes/class-wp-job-manager-shortcodes.php:476
     
    375375
    376376#: includes/admin/class-wp-job-manager-permalink-settings.php:108
    377 #: includes/class-wp-job-manager-post-types.php:1241
     377#: includes/class-wp-job-manager-post-types.php:1
    378378msgctxt "Job permalink - resave permalinks after changing this"
    379379msgid "job"
     
    381381
    382382#: includes/admin/class-wp-job-manager-permalink-settings.php:117
    383 #: includes/class-wp-job-manager-post-types.php:1242
     383#: includes/class-wp-job-manager-post-types.php:1
    384384msgctxt "Job category slug - resave permalinks after changing this"
    385385msgid "job-category"
     
    387387
    388388#: includes/admin/class-wp-job-manager-permalink-settings.php:126
    389 #: includes/class-wp-job-manager-post-types.php:1243
     389#: includes/class-wp-job-manager-post-types.php:1
    390390msgctxt "Job type slug - resave permalinks after changing this"
    391391msgid "job-type"
     
    438438
    439439#: includes/admin/class-wp-job-manager-settings.php:131
    440 #: includes/class-wp-job-manager-post-types.php:335
    441 #: includes/class-wp-job-manager-post-types.php:438
     440#: includes/class-wp-job-manager-post-types.php:33
     441#: includes/class-wp-job-manager-post-types.php:43
    442442msgid "Job Listings"
    443443msgstr ""
     
    472472
    473473#: includes/admin/class-wp-job-manager-settings.php:156
    474 msgid "Hide filled positions in job archives/search"
     474msgid "Hide filled positions"
    475475msgstr ""
    476476
    477477#: includes/admin/class-wp-job-manager-settings.php:157
    478 msgid "Filled positions will not display in your archives or in search."
     478msgid "Filled positions will not display in your archives."
    479479msgstr ""
    480480
    481481#: includes/admin/class-wp-job-manager-settings.php:164
    482 msgid "Expired Positions"
     482msgid "s"
    483483msgstr ""
    484484
    485485#: includes/admin/class-wp-job-manager-settings.php:165
    486 msgid "Hide expired positions in job archives/search"
     486msgid "Hide expired s in job archives/search"
    487487msgstr ""
    488488
    489489#: includes/admin/class-wp-job-manager-settings.php:166
    490 msgid "Expired positions will not display in your archives or in search."
     490msgid "Expired ."
    491491msgstr ""
    492492
    493493#: includes/admin/class-wp-job-manager-settings.php:173
    494 msgid "Hide Expired Positions Content"
     494msgid "Hide Expired s Content"
    495495msgstr ""
    496496
    497497#: includes/admin/class-wp-job-manager-settings.php:174
    498 msgid "Hide content in expired single job position"
     498msgid "Hide content in expired single job "
    499499msgstr ""
    500500
    501501#: includes/admin/class-wp-job-manager-settings.php:175
    502 msgid "Your site will display the titles of expired positions, but not the content of the positions. Otherwise, expired positions display their full content minus the application area."
     502msgid "Your site will display the titles of expired s display their full content minus the application area."
    503503msgstr ""
    504504
     
    564564
    565565#: includes/admin/class-wp-job-manager-settings.php:229
    566 #: includes/class-wp-job-manager-post-types.php:1653
     566#: includes/class-wp-job-manager-post-types.php:1
    567567#: includes/forms/class-wp-job-manager-form-submit-job.php:230
    568568msgid "Remote Position"
     
    578578
    579579#: includes/admin/class-wp-job-manager-settings.php:238
    580 #: includes/class-wp-job-manager-post-types.php:1662
     580#: includes/class-wp-job-manager-post-types.php:16
    581581#: includes/forms/class-wp-job-manager-form-submit-job.php:269
    582582msgid "Salary"
     
    592592
    593593#: includes/admin/class-wp-job-manager-settings.php:247
    594 #: includes/class-wp-job-manager-post-types.php:1672
     594#: includes/class-wp-job-manager-post-types.php:16
    595595#: includes/forms/class-wp-job-manager-form-submit-job.php:276
    596596msgid "Salary Currency"
     
    619619
    620620#: includes/admin/class-wp-job-manager-settings.php:260
    621 #: includes/class-wp-job-manager-post-types.php:1675
     621#: includes/class-wp-job-manager-post-types.php:16
    622622#: includes/forms/class-wp-job-manager-form-submit-job.php:279
    623623msgid "e.g. USD"
     
    625625
    626626#: includes/admin/class-wp-job-manager-settings.php:266
    627 #: includes/class-wp-job-manager-post-types.php:1683
     627#: includes/class-wp-job-manager-post-types.php:16
    628628#: includes/forms/class-wp-job-manager-form-submit-job.php:284
    629629msgid "Salary Unit"
     
    953953#: includes/admin/class-wp-job-manager-taxonomy-meta.php:110
    954954#: includes/admin/class-wp-job-manager-taxonomy-meta.php:129
    955 #: includes/class-wp-job-manager-post-types.php:294
     955#: includes/class-wp-job-manager-post-types.php:29
    956956msgid "Employment Type"
    957957msgstr ""
     
    12091209#. translators: Placeholder %s is the singular label of the job listing post type.
    12101210#: includes/class-wp-job-manager-data-exporter.php:51
    1211 #: includes/class-wp-job-manager-post-types.php:358
     1211#: includes/class-wp-job-manager-post-types.php:35
    12121212msgid "Company Logo"
    12131213msgstr ""
    12141214
    12151215#: includes/class-wp-job-manager-data-exporter.php:52
    1216 #: includes/class-wp-job-manager-post-types.php:1579
     1216#: includes/class-wp-job-manager-post-types.php:15
    12171217msgid "Company Name"
    12181218msgstr ""
    12191219
    12201220#: includes/class-wp-job-manager-data-exporter.php:53
    1221 #: includes/class-wp-job-manager-post-types.php:1587
     1221#: includes/class-wp-job-manager-post-types.php:15
    12221222msgid "Company Website"
    12231223msgstr ""
    12241224
    12251225#: includes/class-wp-job-manager-data-exporter.php:54
    1226 #: includes/class-wp-job-manager-post-types.php:1596
     1226#: includes/class-wp-job-manager-post-types.php:15
    12271227msgid "Company Tagline"
    12281228msgstr ""
    12291229
    12301230#: includes/class-wp-job-manager-data-exporter.php:55
    1231 #: includes/class-wp-job-manager-post-types.php:1604
     1231#: includes/class-wp-job-manager-post-types.php:1
    12321232msgid "Company Twitter"
    12331233msgstr ""
    12341234
    12351235#: includes/class-wp-job-manager-data-exporter.php:56
    1236 #: includes/class-wp-job-manager-post-types.php:1612
     1236#: includes/class-wp-job-manager-post-types.php:1
    12371237msgid "Company Video"
    12381238msgstr ""
     
    12751275
    12761276#: includes/class-wp-job-manager-email-notifications.php:279
    1277 #: includes/class-wp-job-manager-post-types.php:225
     1277#: includes/class-wp-job-manager-post-types.php:22
    12781278#: includes/forms/class-wp-job-manager-form-submit-job.php:237
    12791279msgid "Job type"
     
    12811281
    12821282#: includes/class-wp-job-manager-email-notifications.php:289
    1283 #: includes/class-wp-job-manager-post-types.php:161
     1283#: includes/class-wp-job-manager-post-types.php:16
    12841284#: includes/forms/class-wp-job-manager-form-submit-job.php:246
    12851285msgid "Job category"
     
    13401340msgstr ""
    13411341
    1342 #: includes/class-wp-job-manager-post-types.php:162
     1342#: includes/class-wp-job-manager-post-types.php:16
    13431343msgid "Job categories"
    13441344msgstr ""
     
    13471347#. translators: Placeholder %s is the plural label of the job listing job type taxonomy type.
    13481348#. translators: Placeholder %s is the singular label of the job listing post type.
    1349 #: includes/class-wp-job-manager-post-types.php:190
    1350 #: includes/class-wp-job-manager-post-types.php:253
    1351 #: includes/class-wp-job-manager-post-types.php:351
     1349#: includes/class-wp-job-manager-post-types.php:1
     1350#: includes/class-wp-job-manager-post-types.php:25
     1351#: includes/class-wp-job-manager-post-types.php:35
    13521352msgid "Search %s"
    13531353msgstr ""
     
    13561356#. translators: Placeholder %s is the plural label of the job listing job type taxonomy type.
    13571357#. translators: Placeholder %s is the plural label of the job listing post type.
    1358 #: includes/class-wp-job-manager-post-types.php:192
    1359 #: includes/class-wp-job-manager-post-types.php:255
    1360 #: includes/class-wp-job-manager-post-types.php:337
     1358#: includes/class-wp-job-manager-post-types.php:19
     1359#: includes/class-wp-job-manager-post-types.php:25
     1360#: includes/class-wp-job-manager-post-types.php:33
    13611361msgid "All %s"
    13621362msgstr ""
     
    13651365#. translators: Placeholder %s is the singular label of the job listing job type taxonomy type.
    13661366#. translators: Placeholder %s is the singular label of the job listing post type.
    1367 #: includes/class-wp-job-manager-post-types.php:194
    1368 #: includes/class-wp-job-manager-post-types.php:257
    1369 #: includes/class-wp-job-manager-post-types.php:357
     1367#: includes/class-wp-job-manager-post-types.php:19
     1368#: includes/class-wp-job-manager-post-types.php:25
     1369#: includes/class-wp-job-manager-post-types.php:35
    13701370msgid "Parent %s"
    13711371msgstr ""
     
    13731373#. translators: Placeholder %s is the singular label of the job listing category taxonomy type.
    13741374#. translators: Placeholder %s is the singular label of the job listing job type taxonomy type.
    1375 #: includes/class-wp-job-manager-post-types.php:196
    1376 #: includes/class-wp-job-manager-post-types.php:259
     1375#: includes/class-wp-job-manager-post-types.php:19
     1376#: includes/class-wp-job-manager-post-types.php:25
    13771377msgid "Parent %s:"
    13781378msgstr ""
     
    13811381#. translators: Placeholder %s is the singular label of the job listing job type taxonomy type.
    13821382#. translators: Placeholder %s is the singular label of the job listing post type.
    1383 #: includes/class-wp-job-manager-post-types.php:198
    1384 #: includes/class-wp-job-manager-post-types.php:261
    1385 #: includes/class-wp-job-manager-post-types.php:343
     1383#: includes/class-wp-job-manager-post-types.php:19
     1384#: includes/class-wp-job-manager-post-types.php:26
     1385#: includes/class-wp-job-manager-post-types.php:34
    13861386msgid "Edit %s"
    13871387msgstr ""
     
    13891389#. translators: Placeholder %s is the singular label of the job listing category taxonomy type.
    13901390#. translators: Placeholder %s is the singular label of the job listing job type taxonomy type.
    1391 #: includes/class-wp-job-manager-post-types.php:200
    1392 #: includes/class-wp-job-manager-post-types.php:263
     1391#: includes/class-wp-job-manager-post-types.php:
     1392#: includes/class-wp-job-manager-post-types.php:26
    13931393msgid "Update %s"
    13941394msgstr ""
     
    13961396#. translators: Placeholder %s is the singular label of the job listing category taxonomy type.
    13971397#. translators: Placeholder %s is the singular label of the job listing job type taxonomy type.
    1398 #: includes/class-wp-job-manager-post-types.php:202
    1399 #: includes/class-wp-job-manager-post-types.php:265
     1398#: includes/class-wp-job-manager-post-types.php:20
     1399#: includes/class-wp-job-manager-post-types.php:26
    14001400msgid "Add New %s"
    14011401msgstr ""
     
    14031403#. translators: Placeholder %s is the singular label of the job listing category taxonomy type.
    14041404#. translators: Placeholder %s is the singular label of the job listing job type taxonomy type.
    1405 #: includes/class-wp-job-manager-post-types.php:204
    1406 #: includes/class-wp-job-manager-post-types.php:267
     1405#: includes/class-wp-job-manager-post-types.php:20
     1406#: includes/class-wp-job-manager-post-types.php:26
    14071407msgid "New %s Name"
    14081408msgstr ""
    14091409
    1410 #: includes/class-wp-job-manager-post-types.php:226
     1410#: includes/class-wp-job-manager-post-types.php:22
    14111411msgid "Job types"
    14121412msgstr ""
    14131413
     1414
     1415
     1416
     1417
    14141418#: includes/class-wp-job-manager-post-types.php:304
    1415 msgid "Job"
    1416 msgstr ""
    1417 
    1418 #: includes/class-wp-job-manager-post-types.php:305
    14191419msgid "Jobs"
    14201420msgstr ""
    14211421
    14221422#. translators: Placeholder %s is the plural label of the job listing post type.
    1423 #: includes/class-wp-job-manager-post-types.php:338
     1423#: includes/class-wp-job-manager-post-types.php:33
    14241424msgid "Add New"
    14251425msgstr ""
    14261426
    14271427#. translators: Placeholder %s is the singular label of the job listing post type.
    1428 #: includes/class-wp-job-manager-post-types.php:340
     1428#: includes/class-wp-job-manager-post-types.php:3
    14291429msgid "Add %s"
    14301430msgstr ""
    14311431
    14321432#. translators: Placeholder %s is the singular label of the job listing post type.
    1433 #: includes/class-wp-job-manager-post-types.php:345
     1433#: includes/class-wp-job-manager-post-types.php:34
    14341434msgid "New %s"
    14351435msgstr ""
    14361436
    14371437#. translators: Placeholder %s is the singular label of the job listing post type.
    1438 #: includes/class-wp-job-manager-post-types.php:347
    1439 #: includes/class-wp-job-manager-post-types.php:349
     1438#: includes/class-wp-job-manager-post-types.php:34
     1439#: includes/class-wp-job-manager-post-types.php:34
    14401440msgid "View %s"
    14411441msgstr ""
    14421442
    14431443#. translators: Placeholder %s is the singular label of the job listing post type.
    1444 #: includes/class-wp-job-manager-post-types.php:353
     1444#: includes/class-wp-job-manager-post-types.php:35
    14451445msgid "No %s found"
    14461446msgstr ""
    14471447
    14481448#. translators: Placeholder %s is the plural label of the job listing post type.
    1449 #: includes/class-wp-job-manager-post-types.php:355
     1449#: includes/class-wp-job-manager-post-types.php:35
    14501450msgid "No %s found in trash"
    14511451msgstr ""
    14521452
     1453
     1454
     1455
     1456
    14531457#: includes/class-wp-job-manager-post-types.php:359
    1454 msgid "Set company logo"
     1458msgid " company logo"
    14551459msgstr ""
    14561460
    14571461#: includes/class-wp-job-manager-post-types.php:360
    1458 msgid "Remove company logo"
    1459 msgstr ""
    1460 
    1461 #: includes/class-wp-job-manager-post-types.php:361
    14621462msgid "Use as company logo"
    14631463msgstr ""
    14641464
    14651465#. translators: Placeholder %s is the plural label of the job listing post type.
    1466 #: includes/class-wp-job-manager-post-types.php:364
     1466#: includes/class-wp-job-manager-post-types.php:36
    14671467msgid "This is where you can create and manage %s."
    14681468msgstr ""
    14691469
    1470 #: includes/class-wp-job-manager-post-types.php:399
     1470#: includes/class-wp-job-manager-post-types.php:39
    14711471#: wp-job-manager-functions.php:360
    14721472msgctxt "post status"
     
    14751475
    14761476#. translators: Placeholder %s is the number of expired posts of this type.
    1477 #: includes/class-wp-job-manager-post-types.php:406
     1477#: includes/class-wp-job-manager-post-types.php:40
    14781478msgid "Expired <span class=\"count\">(%s)</span>"
    14791479msgid_plural "Expired <span class=\"count\">(%s)</span>"
     
    14811481msgstr[1] ""
    14821482
    1483 #: includes/class-wp-job-manager-post-types.php:412
     1483#: includes/class-wp-job-manager-post-types.php:41
    14841484#: wp-job-manager-functions.php:361
    14851485msgctxt "post status"
     
    14881488
    14891489#. translators: Placeholder %s is the number of posts in a preview state.
    1490 #: includes/class-wp-job-manager-post-types.php:418
     1490#: includes/class-wp-job-manager-post-types.php:41
    14911491msgid "Preview <span class=\"count\">(%s)</span>"
    14921492msgid_plural "Preview <span class=\"count\">(%s)</span>"
     
    14941494msgstr[1] ""
    14951495
    1496 #: includes/class-wp-job-manager-post-types.php:1225
     1496#: includes/class-wp-job-manager-post-types.php:1
    14971497msgctxt "Post type archive slug - resave permalinks after changing this"
    14981498msgid "jobs"
    14991499msgstr ""
    15001500
    1501 #: includes/class-wp-job-manager-post-types.php:1542
     1501#: includes/class-wp-job-manager-post-types.php:1
    15021502#: includes/forms/class-wp-job-manager-form-submit-job.php:199
    15031503msgid "Application email/URL"
    15041504msgstr ""
    15051505
    1506 #: includes/class-wp-job-manager-post-types.php:1543
     1506#: includes/class-wp-job-manager-post-types.php:1
    15071507#: includes/forms/class-wp-job-manager-form-submit-job.php:200
    15081508msgid "Enter an email address or website URL"
    15091509msgstr ""
    15101510
    1511 #: includes/class-wp-job-manager-post-types.php:1546
     1511#: includes/class-wp-job-manager-post-types.php:1
    15121512#: includes/forms/class-wp-job-manager-form-submit-job.php:189
    15131513msgid "Application email"
    15141514msgstr ""
    15151515
    1516 #: includes/class-wp-job-manager-post-types.php:1547
     1516#: includes/class-wp-job-manager-post-types.php:1
    15171517#: includes/forms/class-wp-job-manager-form-submit-job.php:190
    15181518msgid "you@example.com"
    15191519msgstr ""
    15201520
    1521 #: includes/class-wp-job-manager-post-types.php:1549
     1521#: includes/class-wp-job-manager-post-types.php:1
    15221522#: includes/forms/class-wp-job-manager-form-submit-job.php:194
    15231523msgid "Application URL"
    15241524msgstr ""
    15251525
    1526 #: includes/class-wp-job-manager-post-types.php:1550
     1526#: includes/class-wp-job-manager-post-types.php:1
    15271527#: includes/forms/class-wp-job-manager-form-submit-job.php:195
    15281528msgid "https://"
    15291529msgstr ""
    15301530
    1531 #: includes/class-wp-job-manager-post-types.php:1553
     1531#: includes/class-wp-job-manager-post-types.php:1
    15321532msgid "Job listing expires at the end of the day."
    15331533msgstr ""
    15341534
    1535 #: includes/class-wp-job-manager-post-types.php:1555
     1535#: includes/class-wp-job-manager-post-types.php:1
    15361536msgid "Job listing expires at the start of the day."
    15371537msgstr ""
    15381538
    1539 #: includes/class-wp-job-manager-post-types.php:1561
     1539#: includes/class-wp-job-manager-post-types.php:1
    15401540#: includes/forms/class-wp-job-manager-form-submit-job.php:226
    15411541msgid "e.g. \"London\""
    15421542msgstr ""
    15431543
    1544 #: includes/class-wp-job-manager-post-types.php:1562
     1544#: includes/class-wp-job-manager-post-types.php:15
    15451545msgid "Leave this blank if the location is not important."
    15461546msgstr ""
    15471547
     1548
     1549
     1550
     1551
     1552
     1553
     1554
     1555
     1556
     1557
     1558
     1559
     1560
     1561
     1562
     1563
     1564
     1565
     1566
     1567
     1568
     1569
     1570
     1571
    15481572#: includes/class-wp-job-manager-post-types.php:1571
    1549 msgid "This field is required for the \"application\" area to appear beneath the listing."
    1550 msgstr ""
    1551 
    1552 #: includes/class-wp-job-manager-post-types.php:1597
    1553 msgid "Brief description about the company"
    1554 msgstr ""
    1555 
    1556 #: includes/class-wp-job-manager-post-types.php:1613
    1557 msgid "URL to the company video"
    1558 msgstr ""
    1559 
    1560 #: includes/class-wp-job-manager-post-types.php:1622
    1561 msgid "Position Filled"
    1562 msgstr ""
    1563 
    1564 #: includes/class-wp-job-manager-post-types.php:1628
    1565 msgid "Filled listings will no longer accept applications."
    1566 msgstr ""
    1567 
    1568 #: includes/class-wp-job-manager-post-types.php:1631
    1569 msgid "Featured Listing"
    1570 msgstr ""
    1571 
    1572 #: includes/class-wp-job-manager-post-types.php:1633
    15731573msgid "Featured listings will be sticky during searches, and can be styled differently."
    15741574msgstr ""
    15751575
    1576 #: includes/class-wp-job-manager-post-types.php:1641
     1576#: includes/class-wp-job-manager-post-types.php:1
    15771577msgid "Listing Expiry Date"
    15781578msgstr ""
    15791579
    1580 #: includes/class-wp-job-manager-post-types.php:1654
     1580#: includes/class-wp-job-manager-post-types.php:1
    15811581#: includes/forms/class-wp-job-manager-form-submit-job.php:231
    15821582msgid "Select if this is a remote position."
    15831583msgstr ""
    15841584
    1585 #: includes/class-wp-job-manager-post-types.php:1664
     1585#: includes/class-wp-job-manager-post-types.php:16
    15861586#: includes/forms/class-wp-job-manager-form-submit-job.php:272
    15871587msgid "e.g. 20000"
    15881588msgstr ""
    15891589
    1590 #: includes/class-wp-job-manager-post-types.php:1666
     1590#: includes/class-wp-job-manager-post-types.php:16
    15911591msgid "Add a salary field, this field is optional."
    15921592msgstr ""
    15931593
    1594 #: includes/class-wp-job-manager-post-types.php:1677
     1594#: includes/class-wp-job-manager-post-types.php:16
    15951595#: includes/forms/class-wp-job-manager-form-submit-job.php:280
    15961596msgid "Add a salary currency, this field is optional. Leave it empty to use the default salary currency."
    15971597msgstr ""
    15981598
    1599 #: includes/class-wp-job-manager-post-types.php:1688
     1599#: includes/class-wp-job-manager-post-types.php:16
    16001600#: includes/forms/class-wp-job-manager-form-submit-job.php:287
    16011601msgid "Add a salary period unit, this field is optional. Leave it empty to use the default salary unit, if one is defined."
  • wp-job-manager/tags/1.40.2/readme.txt

    r2911810 r2917876  
    55Tested up to: 6.2
    66Requires PHP: 7.2
    7 Stable tag: 1.40.1
     7Stable tag: 1.40.
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    153153
    154154== Changelog ==
     155
     156
     157
    155158
    156159= 1.40.1 =
  • wp-job-manager/tags/1.40.2/wp-job-manager.php

    r2911810 r2917876  
    44 * Plugin URI: https://wpjobmanager.com/
    55 * Description: Manage job listings from the WordPress admin panel, and allow users to post jobs directly to your site.
    6  * Version: 1.40.1
     6 * Version: 1.40.
    77 * Author: Automattic
    88 * Author URI: https://wpjobmanager.com/
     
    2222
    2323// Define constants.
    24 define( 'JOB_MANAGER_VERSION', '1.40.1' );
     24define( 'JOB_MANAGER_VERSION', '1.40.' );
    2525define( 'JOB_MANAGER_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
    2626define( 'JOB_MANAGER_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
  • wp-job-manager/trunk/changelog.txt

    r2911810 r2917876  
    11# WP Job Manager
     2
     3
     4
    25
    36## 1.40.1 - 2023-05-12
  • wp-job-manager/trunk/includes/admin/class-wp-job-manager-settings.php

    r2911159 r2917876  
    154154                            'std'        => '0',
    155155                            'label'      => __( 'Filled Positions', 'wp-job-manager' ),
    156                             'cb_label'   => __( 'Hide filled positions in job archives/search', 'wp-job-manager' ),
    157                             'desc'       => __( 'Filled positions will not display in your archives or in search.', 'wp-job-manager' ),
     156                            'cb_label'   => __( 'Hide filled positions', 'wp-job-manager' ),
     157                            'desc'       => __( 'Filled positions will not display in your archives.', 'wp-job-manager' ),
    158158                            'type'       => 'checkbox',
    159159                            'attributes' => [],
     
    162162                            'name'       => 'job_manager_hide_expired',
    163163                            'std'        => get_option( 'job_manager_hide_expired_content' ) ? '1' : '0', // back compat.
    164                             'label'      => __( 'Expired Positions', 'wp-job-manager' ),
    165                             'cb_label'   => __( 'Hide expired positions in job archives/search', 'wp-job-manager' ),
    166                             'desc'       => __( 'Expired positions will not display in your archives or in search.', 'wp-job-manager' ),
     164                            'label'      => __( 's', 'wp-job-manager' ),
     165                            'cb_label'   => __( 'Hide expired s in job archives/search', 'wp-job-manager' ),
     166                            'desc'       => __( 'Expired .', 'wp-job-manager' ),
    167167                            'type'       => 'checkbox',
    168168                            'attributes' => [],
     
    171171                            'name'       => 'job_manager_hide_expired_content',
    172172                            'std'        => '1',
    173                             'label'      => __( 'Hide Expired Positions Content', 'wp-job-manager' ),
    174                             'cb_label'   => __( 'Hide content in expired single job position', 'wp-job-manager' ),
    175                             'desc'       => __( 'Your site will display the titles of expired positions, but not the content of the positions. Otherwise, expired positions display their full content minus the application area.', 'wp-job-manager' ),
     173                            'label'      => __( 'Hide Expired s Content', 'wp-job-manager' ),
     174                            'cb_label'   => __( 'Hide content in expired single job ', 'wp-job-manager' ),
     175                            'desc'       => __( 'Your site will display the titles of expired s display their full content minus the application area.', 'wp-job-manager' ),
    176176                            'type'       => 'checkbox',
    177177                            'attributes' => [],
  • wp-job-manager/trunk/includes/class-wp-job-manager-post-types.php

    r2911159 r2917876  
    8787        add_action( 'transition_post_status', [ $this, 'track_job_submission' ], 10, 3 );
    8888
    89         add_action( 'parse_query', [ $this, 'maybe_hide_filled_expired_job_listings_from_search' ] );
    9089        add_action( 'parse_query', [ $this, 'add_feed_query_args' ] );
    9190
     
    651650        do_feed_rss2( false );
    652651        remove_filter( 'posts_search', 'get_job_listings_keyword_search' );
    653     }
    654 
    655     /**
    656      * Modifies WordPress Query of public search.
    657      *
    658      * @param WP_Query $query Query being processed.
    659      */
    660     public function maybe_hide_filled_expired_job_listings_from_search( $query ) {
    661         if ( ! $query->is_search() ) {
    662             return;
    663         }
    664 
    665         // Remove filled positions, if necessary.
    666         if ( 1 === absint( get_option( 'job_manager_hide_filled_positions' ) ) ) {
    667             $meta_query = $query->get( 'meta_query' );
    668 
    669             if ( ! is_array( $meta_query ) ) {
    670                 $meta_query = [];
    671             }
    672 
    673             $meta_query[] = [
    674                 'relation' => 'OR',
    675                 [
    676                     'key'     => '_filled',
    677                     'value'   => '0',
    678                     'compare' => '=',
    679                 ],
    680                 [
    681                     'key'     => '_filled',
    682                     'compare' => 'NOT EXISTS',
    683                 ],
    684             ];
    685 
    686             $query->set( 'meta_query', $meta_query );
    687         }
    688 
    689         // Remove expired positions, if necessary.
    690         if ( 1 === absint( get_option( 'job_manager_hide_expired' ) ) ) {
    691             $meta_query = $query->get( 'meta_query' );
    692 
    693             if ( ! is_array( $meta_query ) ) {
    694                 $meta_query = [];
    695             }
    696 
    697             $meta_query[] = [
    698                 'relation' => 'OR',
    699                 [
    700                     'key'     => '_job_expires',
    701                     'value'   => gmdate( 'Y-m-d' ),
    702                     'compare' => '>=',
    703                     'type'    => 'DATE',
    704                 ],
    705                 [
    706                     'key'     => '_job_expires',
    707                     'compare' => 'NOT EXISTS',
    708                 ],
    709             ];
    710 
    711             $query->set( 'meta_query', $meta_query );
    712         }
    713 
    714652    }
    715653
  • wp-job-manager/trunk/languages/wp-job-manager.pot

    r2911810 r2917876  
    33msgid ""
    44msgstr ""
    5 "Project-Id-Version: WP Job Manager 1.40.1\n"
     5"Project-Id-Version: WP Job Manager 1.40.\n"
    66"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-job-manager/\n"
    77"Last-Translator: \n"
     
    1010"Content-Type: text/plain; charset=UTF-8\n"
    1111"Content-Transfer-Encoding: 8bit\n"
    12 "POT-Creation-Date: 2023-05-12T20:54:38+00:00\n"
     12"POT-Creation-Date: 2023-05-+00:00\n"
    1313"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    14 "X-Generator: WP-CLI 2.7.1\n"
     14"X-Generator: WP-CLI 2.\n"
    1515"X-Domain: wp-job-manager\n"
    1616
     
    277277#: includes/admin/class-wp-job-manager-cpt.php:501
    278278#: includes/class-wp-job-manager-email-notifications.php:270
    279 #: includes/class-wp-job-manager-post-types.php:1560
     279#: includes/class-wp-job-manager-post-types.php:1
    280280#: includes/forms/class-wp-job-manager-form-submit-job.php:222
    281281#: includes/widgets/class-wp-job-manager-widget-recent-jobs.php:46
     
    347347#. translators: Placeholder %s is the singular label of the job listing post type.
    348348#: includes/admin/class-wp-job-manager-cpt.php:652
    349 #: includes/class-wp-job-manager-post-types.php:341
     349#: includes/class-wp-job-manager-post-types.php:34
    350350#: includes/class-wp-job-manager-shortcodes.php:443
    351351#: includes/class-wp-job-manager-shortcodes.php:476
     
    375375
    376376#: includes/admin/class-wp-job-manager-permalink-settings.php:108
    377 #: includes/class-wp-job-manager-post-types.php:1241
     377#: includes/class-wp-job-manager-post-types.php:1
    378378msgctxt "Job permalink - resave permalinks after changing this"
    379379msgid "job"
     
    381381
    382382#: includes/admin/class-wp-job-manager-permalink-settings.php:117
    383 #: includes/class-wp-job-manager-post-types.php:1242
     383#: includes/class-wp-job-manager-post-types.php:1
    384384msgctxt "Job category slug - resave permalinks after changing this"
    385385msgid "job-category"
     
    387387
    388388#: includes/admin/class-wp-job-manager-permalink-settings.php:126
    389 #: includes/class-wp-job-manager-post-types.php:1243
     389#: includes/class-wp-job-manager-post-types.php:1
    390390msgctxt "Job type slug - resave permalinks after changing this"
    391391msgid "job-type"
     
    438438
    439439#: includes/admin/class-wp-job-manager-settings.php:131
    440 #: includes/class-wp-job-manager-post-types.php:335
    441 #: includes/class-wp-job-manager-post-types.php:438
     440#: includes/class-wp-job-manager-post-types.php:33
     441#: includes/class-wp-job-manager-post-types.php:43
    442442msgid "Job Listings"
    443443msgstr ""
     
    472472
    473473#: includes/admin/class-wp-job-manager-settings.php:156
    474 msgid "Hide filled positions in job archives/search"
     474msgid "Hide filled positions"
    475475msgstr ""
    476476
    477477#: includes/admin/class-wp-job-manager-settings.php:157
    478 msgid "Filled positions will not display in your archives or in search."
     478msgid "Filled positions will not display in your archives."
    479479msgstr ""
    480480
    481481#: includes/admin/class-wp-job-manager-settings.php:164
    482 msgid "Expired Positions"
     482msgid "s"
    483483msgstr ""
    484484
    485485#: includes/admin/class-wp-job-manager-settings.php:165
    486 msgid "Hide expired positions in job archives/search"
     486msgid "Hide expired s in job archives/search"
    487487msgstr ""
    488488
    489489#: includes/admin/class-wp-job-manager-settings.php:166
    490 msgid "Expired positions will not display in your archives or in search."
     490msgid "Expired ."
    491491msgstr ""
    492492
    493493#: includes/admin/class-wp-job-manager-settings.php:173
    494 msgid "Hide Expired Positions Content"
     494msgid "Hide Expired s Content"
    495495msgstr ""
    496496
    497497#: includes/admin/class-wp-job-manager-settings.php:174
    498 msgid "Hide content in expired single job position"
     498msgid "Hide content in expired single job "
    499499msgstr ""
    500500
    501501#: includes/admin/class-wp-job-manager-settings.php:175
    502 msgid "Your site will display the titles of expired positions, but not the content of the positions. Otherwise, expired positions display their full content minus the application area."
     502msgid "Your site will display the titles of expired s display their full content minus the application area."
    503503msgstr ""
    504504
     
    564564
    565565#: includes/admin/class-wp-job-manager-settings.php:229
    566 #: includes/class-wp-job-manager-post-types.php:1653
     566#: includes/class-wp-job-manager-post-types.php:1
    567567#: includes/forms/class-wp-job-manager-form-submit-job.php:230
    568568msgid "Remote Position"
     
    578578
    579579#: includes/admin/class-wp-job-manager-settings.php:238
    580 #: includes/class-wp-job-manager-post-types.php:1662
     580#: includes/class-wp-job-manager-post-types.php:16
    581581#: includes/forms/class-wp-job-manager-form-submit-job.php:269
    582582msgid "Salary"
     
    592592
    593593#: includes/admin/class-wp-job-manager-settings.php:247
    594 #: includes/class-wp-job-manager-post-types.php:1672
     594#: includes/class-wp-job-manager-post-types.php:16
    595595#: includes/forms/class-wp-job-manager-form-submit-job.php:276
    596596msgid "Salary Currency"
     
    619619
    620620#: includes/admin/class-wp-job-manager-settings.php:260
    621 #: includes/class-wp-job-manager-post-types.php:1675
     621#: includes/class-wp-job-manager-post-types.php:16
    622622#: includes/forms/class-wp-job-manager-form-submit-job.php:279
    623623msgid "e.g. USD"
     
    625625
    626626#: includes/admin/class-wp-job-manager-settings.php:266
    627 #: includes/class-wp-job-manager-post-types.php:1683
     627#: includes/class-wp-job-manager-post-types.php:16
    628628#: includes/forms/class-wp-job-manager-form-submit-job.php:284
    629629msgid "Salary Unit"
     
    953953#: includes/admin/class-wp-job-manager-taxonomy-meta.php:110
    954954#: includes/admin/class-wp-job-manager-taxonomy-meta.php:129
    955 #: includes/class-wp-job-manager-post-types.php:294
     955#: includes/class-wp-job-manager-post-types.php:29
    956956msgid "Employment Type"
    957957msgstr ""
     
    12091209#. translators: Placeholder %s is the singular label of the job listing post type.
    12101210#: includes/class-wp-job-manager-data-exporter.php:51
    1211 #: includes/class-wp-job-manager-post-types.php:358
     1211#: includes/class-wp-job-manager-post-types.php:35
    12121212msgid "Company Logo"
    12131213msgstr ""
    12141214
    12151215#: includes/class-wp-job-manager-data-exporter.php:52
    1216 #: includes/class-wp-job-manager-post-types.php:1579
     1216#: includes/class-wp-job-manager-post-types.php:15
    12171217msgid "Company Name"
    12181218msgstr ""
    12191219
    12201220#: includes/class-wp-job-manager-data-exporter.php:53
    1221 #: includes/class-wp-job-manager-post-types.php:1587
     1221#: includes/class-wp-job-manager-post-types.php:15
    12221222msgid "Company Website"
    12231223msgstr ""
    12241224
    12251225#: includes/class-wp-job-manager-data-exporter.php:54
    1226 #: includes/class-wp-job-manager-post-types.php:1596
     1226#: includes/class-wp-job-manager-post-types.php:15
    12271227msgid "Company Tagline"
    12281228msgstr ""
    12291229
    12301230#: includes/class-wp-job-manager-data-exporter.php:55
    1231 #: includes/class-wp-job-manager-post-types.php:1604
     1231#: includes/class-wp-job-manager-post-types.php:1
    12321232msgid "Company Twitter"
    12331233msgstr ""
    12341234
    12351235#: includes/class-wp-job-manager-data-exporter.php:56
    1236 #: includes/class-wp-job-manager-post-types.php:1612
     1236#: includes/class-wp-job-manager-post-types.php:1
    12371237msgid "Company Video"
    12381238msgstr ""
     
    12751275
    12761276#: includes/class-wp-job-manager-email-notifications.php:279
    1277 #: includes/class-wp-job-manager-post-types.php:225
     1277#: includes/class-wp-job-manager-post-types.php:22
    12781278#: includes/forms/class-wp-job-manager-form-submit-job.php:237
    12791279msgid "Job type"
     
    12811281
    12821282#: includes/class-wp-job-manager-email-notifications.php:289
    1283 #: includes/class-wp-job-manager-post-types.php:161
     1283#: includes/class-wp-job-manager-post-types.php:16
    12841284#: includes/forms/class-wp-job-manager-form-submit-job.php:246
    12851285msgid "Job category"
     
    13401340msgstr ""
    13411341
    1342 #: includes/class-wp-job-manager-post-types.php:162
     1342#: includes/class-wp-job-manager-post-types.php:16
    13431343msgid "Job categories"
    13441344msgstr ""
     
    13471347#. translators: Placeholder %s is the plural label of the job listing job type taxonomy type.
    13481348#. translators: Placeholder %s is the singular label of the job listing post type.
    1349 #: includes/class-wp-job-manager-post-types.php:190
    1350 #: includes/class-wp-job-manager-post-types.php:253
    1351 #: includes/class-wp-job-manager-post-types.php:351
     1349#: includes/class-wp-job-manager-post-types.php:1
     1350#: includes/class-wp-job-manager-post-types.php:25
     1351#: includes/class-wp-job-manager-post-types.php:35
    13521352msgid "Search %s"
    13531353msgstr ""
     
    13561356#. translators: Placeholder %s is the plural label of the job listing job type taxonomy type.
    13571357#. translators: Placeholder %s is the plural label of the job listing post type.
    1358 #: includes/class-wp-job-manager-post-types.php:192
    1359 #: includes/class-wp-job-manager-post-types.php:255
    1360 #: includes/class-wp-job-manager-post-types.php:337
     1358#: includes/class-wp-job-manager-post-types.php:19
     1359#: includes/class-wp-job-manager-post-types.php:25
     1360#: includes/class-wp-job-manager-post-types.php:33
    13611361msgid "All %s"
    13621362msgstr ""
     
    13651365#. translators: Placeholder %s is the singular label of the job listing job type taxonomy type.
    13661366#. translators: Placeholder %s is the singular label of the job listing post type.
    1367 #: includes/class-wp-job-manager-post-types.php:194
    1368 #: includes/class-wp-job-manager-post-types.php:257
    1369 #: includes/class-wp-job-manager-post-types.php:357
     1367#: includes/class-wp-job-manager-post-types.php:19
     1368#: includes/class-wp-job-manager-post-types.php:25
     1369#: includes/class-wp-job-manager-post-types.php:35
    13701370msgid "Parent %s"
    13711371msgstr ""
     
    13731373#. translators: Placeholder %s is the singular label of the job listing category taxonomy type.
    13741374#. translators: Placeholder %s is the singular label of the job listing job type taxonomy type.
    1375 #: includes/class-wp-job-manager-post-types.php:196
    1376 #: includes/class-wp-job-manager-post-types.php:259
     1375#: includes/class-wp-job-manager-post-types.php:19
     1376#: includes/class-wp-job-manager-post-types.php:25
    13771377msgid "Parent %s:"
    13781378msgstr ""
     
    13811381#. translators: Placeholder %s is the singular label of the job listing job type taxonomy type.
    13821382#. translators: Placeholder %s is the singular label of the job listing post type.
    1383 #: includes/class-wp-job-manager-post-types.php:198
    1384 #: includes/class-wp-job-manager-post-types.php:261
    1385 #: includes/class-wp-job-manager-post-types.php:343
     1383#: includes/class-wp-job-manager-post-types.php:19
     1384#: includes/class-wp-job-manager-post-types.php:26
     1385#: includes/class-wp-job-manager-post-types.php:34
    13861386msgid "Edit %s"
    13871387msgstr ""
     
    13891389#. translators: Placeholder %s is the singular label of the job listing category taxonomy type.
    13901390#. translators: Placeholder %s is the singular label of the job listing job type taxonomy type.
    1391 #: includes/class-wp-job-manager-post-types.php:200
    1392 #: includes/class-wp-job-manager-post-types.php:263
     1391#: includes/class-wp-job-manager-post-types.php:
     1392#: includes/class-wp-job-manager-post-types.php:26
    13931393msgid "Update %s"
    13941394msgstr ""
     
    13961396#. translators: Placeholder %s is the singular label of the job listing category taxonomy type.
    13971397#. translators: Placeholder %s is the singular label of the job listing job type taxonomy type.
    1398 #: includes/class-wp-job-manager-post-types.php:202
    1399 #: includes/class-wp-job-manager-post-types.php:265
     1398#: includes/class-wp-job-manager-post-types.php:20
     1399#: includes/class-wp-job-manager-post-types.php:26
    14001400msgid "Add New %s"
    14011401msgstr ""
     
    14031403#. translators: Placeholder %s is the singular label of the job listing category taxonomy type.
    14041404#. translators: Placeholder %s is the singular label of the job listing job type taxonomy type.
    1405 #: includes/class-wp-job-manager-post-types.php:204
    1406 #: includes/class-wp-job-manager-post-types.php:267
     1405#: includes/class-wp-job-manager-post-types.php:20
     1406#: includes/class-wp-job-manager-post-types.php:26
    14071407msgid "New %s Name"
    14081408msgstr ""
    14091409
    1410 #: includes/class-wp-job-manager-post-types.php:226
     1410#: includes/class-wp-job-manager-post-types.php:22
    14111411msgid "Job types"
    14121412msgstr ""
    14131413
     1414
     1415
     1416
     1417
    14141418#: includes/class-wp-job-manager-post-types.php:304
    1415 msgid "Job"
    1416 msgstr ""
    1417 
    1418 #: includes/class-wp-job-manager-post-types.php:305
    14191419msgid "Jobs"
    14201420msgstr ""
    14211421
    14221422#. translators: Placeholder %s is the plural label of the job listing post type.
    1423 #: includes/class-wp-job-manager-post-types.php:338
     1423#: includes/class-wp-job-manager-post-types.php:33
    14241424msgid "Add New"
    14251425msgstr ""
    14261426
    14271427#. translators: Placeholder %s is the singular label of the job listing post type.
    1428 #: includes/class-wp-job-manager-post-types.php:340
     1428#: includes/class-wp-job-manager-post-types.php:3
    14291429msgid "Add %s"
    14301430msgstr ""
    14311431
    14321432#. translators: Placeholder %s is the singular label of the job listing post type.
    1433 #: includes/class-wp-job-manager-post-types.php:345
     1433#: includes/class-wp-job-manager-post-types.php:34
    14341434msgid "New %s"
    14351435msgstr ""
    14361436
    14371437#. translators: Placeholder %s is the singular label of the job listing post type.
    1438 #: includes/class-wp-job-manager-post-types.php:347
    1439 #: includes/class-wp-job-manager-post-types.php:349
     1438#: includes/class-wp-job-manager-post-types.php:34
     1439#: includes/class-wp-job-manager-post-types.php:34
    14401440msgid "View %s"
    14411441msgstr ""
    14421442
    14431443#. translators: Placeholder %s is the singular label of the job listing post type.
    1444 #: includes/class-wp-job-manager-post-types.php:353
     1444#: includes/class-wp-job-manager-post-types.php:35
    14451445msgid "No %s found"
    14461446msgstr ""
    14471447
    14481448#. translators: Placeholder %s is the plural label of the job listing post type.
    1449 #: includes/class-wp-job-manager-post-types.php:355
     1449#: includes/class-wp-job-manager-post-types.php:35
    14501450msgid "No %s found in trash"
    14511451msgstr ""
    14521452
     1453
     1454
     1455
     1456
    14531457#: includes/class-wp-job-manager-post-types.php:359
    1454 msgid "Set company logo"
     1458msgid " company logo"
    14551459msgstr ""
    14561460
    14571461#: includes/class-wp-job-manager-post-types.php:360
    1458 msgid "Remove company logo"
    1459 msgstr ""
    1460 
    1461 #: includes/class-wp-job-manager-post-types.php:361
    14621462msgid "Use as company logo"
    14631463msgstr ""
    14641464
    14651465#. translators: Placeholder %s is the plural label of the job listing post type.
    1466 #: includes/class-wp-job-manager-post-types.php:364
     1466#: includes/class-wp-job-manager-post-types.php:36
    14671467msgid "This is where you can create and manage %s."
    14681468msgstr ""
    14691469
    1470 #: includes/class-wp-job-manager-post-types.php:399
     1470#: includes/class-wp-job-manager-post-types.php:39
    14711471#: wp-job-manager-functions.php:360
    14721472msgctxt "post status"
     
    14751475
    14761476#. translators: Placeholder %s is the number of expired posts of this type.
    1477 #: includes/class-wp-job-manager-post-types.php:406
     1477#: includes/class-wp-job-manager-post-types.php:40
    14781478msgid "Expired <span class=\"count\">(%s)</span>"
    14791479msgid_plural "Expired <span class=\"count\">(%s)</span>"
     
    14811481msgstr[1] ""
    14821482
    1483 #: includes/class-wp-job-manager-post-types.php:412
     1483#: includes/class-wp-job-manager-post-types.php:41
    14841484#: wp-job-manager-functions.php:361
    14851485msgctxt "post status"
     
    14881488
    14891489#. translators: Placeholder %s is the number of posts in a preview state.
    1490 #: includes/class-wp-job-manager-post-types.php:418
     1490#: includes/class-wp-job-manager-post-types.php:41
    14911491msgid "Preview <span class=\"count\">(%s)</span>"
    14921492msgid_plural "Preview <span class=\"count\">(%s)</span>"
     
    14941494msgstr[1] ""
    14951495
    1496 #: includes/class-wp-job-manager-post-types.php:1225
     1496#: includes/class-wp-job-manager-post-types.php:1
    14971497msgctxt "Post type archive slug - resave permalinks after changing this"
    14981498msgid "jobs"
    14991499msgstr ""
    15001500
    1501 #: includes/class-wp-job-manager-post-types.php:1542
     1501#: includes/class-wp-job-manager-post-types.php:1
    15021502#: includes/forms/class-wp-job-manager-form-submit-job.php:199
    15031503msgid "Application email/URL"
    15041504msgstr ""
    15051505
    1506 #: includes/class-wp-job-manager-post-types.php:1543
     1506#: includes/class-wp-job-manager-post-types.php:1
    15071507#: includes/forms/class-wp-job-manager-form-submit-job.php:200
    15081508msgid "Enter an email address or website URL"
    15091509msgstr ""
    15101510
    1511 #: includes/class-wp-job-manager-post-types.php:1546
     1511#: includes/class-wp-job-manager-post-types.php:1
    15121512#: includes/forms/class-wp-job-manager-form-submit-job.php:189
    15131513msgid "Application email"
    15141514msgstr ""
    15151515
    1516 #: includes/class-wp-job-manager-post-types.php:1547
     1516#: includes/class-wp-job-manager-post-types.php:1
    15171517#: includes/forms/class-wp-job-manager-form-submit-job.php:190
    15181518msgid "you@example.com"
    15191519msgstr ""
    15201520
    1521 #: includes/class-wp-job-manager-post-types.php:1549
     1521#: includes/class-wp-job-manager-post-types.php:1
    15221522#: includes/forms/class-wp-job-manager-form-submit-job.php:194
    15231523msgid "Application URL"
    15241524msgstr ""
    15251525
    1526 #: includes/class-wp-job-manager-post-types.php:1550
     1526#: includes/class-wp-job-manager-post-types.php:1
    15271527#: includes/forms/class-wp-job-manager-form-submit-job.php:195
    15281528msgid "https://"
    15291529msgstr ""
    15301530
    1531 #: includes/class-wp-job-manager-post-types.php:1553
     1531#: includes/class-wp-job-manager-post-types.php:1
    15321532msgid "Job listing expires at the end of the day."
    15331533msgstr ""
    15341534
    1535 #: includes/class-wp-job-manager-post-types.php:1555
     1535#: includes/class-wp-job-manager-post-types.php:1
    15361536msgid "Job listing expires at the start of the day."
    15371537msgstr ""
    15381538
    1539 #: includes/class-wp-job-manager-post-types.php:1561
     1539#: includes/class-wp-job-manager-post-types.php:1
    15401540#: includes/forms/class-wp-job-manager-form-submit-job.php:226
    15411541msgid "e.g. \"London\""
    15421542msgstr ""
    15431543
    1544 #: includes/class-wp-job-manager-post-types.php:1562
     1544#: includes/class-wp-job-manager-post-types.php:15
    15451545msgid "Leave this blank if the location is not important."
    15461546msgstr ""
    15471547
     1548
     1549
     1550
     1551
     1552
     1553
     1554
     1555
     1556
     1557
     1558
     1559
     1560
     1561
     1562
     1563
     1564
     1565
     1566
     1567
     1568
     1569
     1570
     1571
    15481572#: includes/class-wp-job-manager-post-types.php:1571
    1549 msgid "This field is required for the \"application\" area to appear beneath the listing."
    1550 msgstr ""
    1551 
    1552 #: includes/class-wp-job-manager-post-types.php:1597
    1553 msgid "Brief description about the company"
    1554 msgstr ""
    1555 
    1556 #: includes/class-wp-job-manager-post-types.php:1613
    1557 msgid "URL to the company video"
    1558 msgstr ""
    1559 
    1560 #: includes/class-wp-job-manager-post-types.php:1622
    1561 msgid "Position Filled"
    1562 msgstr ""
    1563 
    1564 #: includes/class-wp-job-manager-post-types.php:1628
    1565 msgid "Filled listings will no longer accept applications."
    1566 msgstr ""
    1567 
    1568 #: includes/class-wp-job-manager-post-types.php:1631
    1569 msgid "Featured Listing"
    1570 msgstr ""
    1571 
    1572 #: includes/class-wp-job-manager-post-types.php:1633
    15731573msgid "Featured listings will be sticky during searches, and can be styled differently."
    15741574msgstr ""
    15751575
    1576 #: includes/class-wp-job-manager-post-types.php:1641
     1576#: includes/class-wp-job-manager-post-types.php:1
    15771577msgid "Listing Expiry Date"
    15781578msgstr ""
    15791579
    1580 #: includes/class-wp-job-manager-post-types.php:1654
     1580#: includes/class-wp-job-manager-post-types.php:1
    15811581#: includes/forms/class-wp-job-manager-form-submit-job.php:231
    15821582msgid "Select if this is a remote position."
    15831583msgstr ""
    15841584
    1585 #: includes/class-wp-job-manager-post-types.php:1664
     1585#: includes/class-wp-job-manager-post-types.php:16
    15861586#: includes/forms/class-wp-job-manager-form-submit-job.php:272
    15871587msgid "e.g. 20000"
    15881588msgstr ""
    15891589
    1590 #: includes/class-wp-job-manager-post-types.php:1666
     1590#: includes/class-wp-job-manager-post-types.php:16
    15911591msgid "Add a salary field, this field is optional."
    15921592msgstr ""
    15931593
    1594 #: includes/class-wp-job-manager-post-types.php:1677
     1594#: includes/class-wp-job-manager-post-types.php:16
    15951595#: includes/forms/class-wp-job-manager-form-submit-job.php:280
    15961596msgid "Add a salary currency, this field is optional. Leave it empty to use the default salary currency."
    15971597msgstr ""
    15981598
    1599 #: includes/class-wp-job-manager-post-types.php:1688
     1599#: includes/class-wp-job-manager-post-types.php:16
    16001600#: includes/forms/class-wp-job-manager-form-submit-job.php:287
    16011601msgid "Add a salary period unit, this field is optional. Leave it empty to use the default salary unit, if one is defined."
  • wp-job-manager/trunk/readme.txt

    r2911810 r2917876  
    55Tested up to: 6.2
    66Requires PHP: 7.2
    7 Stable tag: 1.40.1
     7Stable tag: 1.40.
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    153153
    154154== Changelog ==
     155
     156
     157
    155158
    156159= 1.40.1 =
  • wp-job-manager/trunk/wp-job-manager.php

    r2911810 r2917876  
    44 * Plugin URI: https://wpjobmanager.com/
    55 * Description: Manage job listings from the WordPress admin panel, and allow users to post jobs directly to your site.
    6  * Version: 1.40.1
     6 * Version: 1.40.
    77 * Author: Automattic
    88 * Author URI: https://wpjobmanager.com/
     
    2222
    2323// Define constants.
    24 define( 'JOB_MANAGER_VERSION', '1.40.1' );
     24define( 'JOB_MANAGER_VERSION', '1.40.' );
    2525define( 'JOB_MANAGER_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
    2626define( 'JOB_MANAGER_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
Note: See TracChangeset for help on using the changeset viewer.