WP Job Manager - Version 1.17.0

Version Description

  • Feature - job_manager_user_can_edit_pending_submissions function and setting.
  • Feature - Job summary shortcode - support random display of job (featured or non featured).
  • Feature - In admin, when clicking an author name show all jobs for that author.
  • Tweak - Added sanitization function to form class to handle strings and arrays.
Download this release

Release Info

Developer mikejolley
Plugin Icon 128x128 WP Job Manager
Version 1.17.0
Comparing to
See all releases

Code changes from version 1.16.1 to 1.17.0

includes/admin/class-wp-job-manager-cpt.php CHANGED
@@ -310,7 +310,7 @@ class WP_Job_Manager_CPT {
310
  break;
311
  case "job_posted" :
312
  echo '<strong>' . date_i18n( __( 'M j, Y', 'wp-job-manager' ), strtotime( $post->post_date ) ) . '</strong><span>';
313
- echo ( empty( $post->post_author ) ? __( 'by a guest', 'wp-job-manager' ) : sprintf( __( 'by %s', 'wp-job-manager' ), '<a href="' . get_edit_user_link( $post->post_author ) . '">' . get_the_author() . '</a>' ) ) . '</span>';
314
  break;
315
  case "job_expires" :
316
  if ( $post->_job_expires )
310
  break;
311
  case "job_posted" :
312
  echo '<strong>' . date_i18n( __( 'M j, Y', 'wp-job-manager' ), strtotime( $post->post_date ) ) . '</strong><span>';
313
+ echo ( empty( $post->post_author ) ? __( 'by a guest', 'wp-job-manager' ) : sprintf( __( 'by %s', 'wp-job-manager' ), '<a href="' . esc_url( add_query_arg( 'author', $post->post_author ) ) . '">' . get_the_author() . '</a>' ) ) . '</span>';
314
  break;
315
  case "job_expires" :
316
  if ( $post->_job_expires )
includes/admin/class-wp-job-manager-settings.php CHANGED
@@ -127,6 +127,15 @@ class WP_Job_Manager_Settings {
127
  'type' => 'checkbox',
128
  'attributes' => array()
129
  ),
 
 
 
 
 
 
 
 
 
130
  array(
131
  'name' => 'job_manager_submission_duration',
132
  'std' => '30',
127
  'type' => 'checkbox',
128
  'attributes' => array()
129
  ),
130
+ array(
131
+ 'name' => 'job_manager_user_can_edit_pending_submissions',
132
+ 'std' => '0',
133
+ 'label' => __( 'Allow Pending Edits', 'wp-job-manager' ),
134
+ 'cb_label' => __( 'Submissions awaiting approval can be edited', 'wp-job-manager' ),
135
+ 'desc' => __( 'If enabled, submissions awaiting admin approval can be edited by the user.', 'wp-job-manager' ),
136
+ 'type' => 'checkbox',
137
+ 'attributes' => array()
138
+ ),
139
  array(
140
  'name' => 'job_manager_submission_duration',
141
  'std' => '30',
includes/class-wp-job-manager-shortcodes.php CHANGED
@@ -390,22 +390,33 @@ class WP_Job_Manager_Shortcodes {
390
  */
391
  public function output_job_summary( $atts ) {
392
  extract( shortcode_atts( array(
393
- 'id' => '',
394
- 'width' => '250px',
395
- 'align' => 'left'
 
396
  ), $atts ) );
397
 
398
- if ( ! $id )
399
- return;
400
-
401
  ob_start();
402
 
403
  $args = array(
404
  'post_type' => 'job_listing',
405
- 'post_status' => 'publish',
406
- 'p' => $id
407
  );
408
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
409
  $jobs = new WP_Query( $args );
410
 
411
  if ( $jobs->have_posts() ) : ?>
390
  */
391
  public function output_job_summary( $atts ) {
392
  extract( shortcode_atts( array(
393
+ 'id' => '',
394
+ 'width' => '250px',
395
+ 'align' => 'left',
396
+ 'featured' => null, // True to show only featured, false to hide featured, leave null to show both (when leaving out id)
397
  ), $atts ) );
398
 
 
 
 
399
  ob_start();
400
 
401
  $args = array(
402
  'post_type' => 'job_listing',
403
+ 'post_status' => 'publish'
 
404
  );
405
 
406
+ if ( ! $id ) {
407
+ $args['posts_per_page'] = 1;
408
+ $args['orderby'] = 'rand';
409
+ if ( ! is_null( $featured ) ) {
410
+ $args['meta_query'] = array( array(
411
+ 'key' => '_featured',
412
+ 'value' => '1',
413
+ 'compare' => $featured ? '=' : '!='
414
+ ) );
415
+ }
416
+ } else {
417
+ $args['p'] = absint( $id );
418
+ }
419
+
420
  $jobs = new WP_Query( $args );
421
 
422
  if ( $jobs->have_posts() ) : ?>
includes/forms/class-wp-job-manager-form-edit-job.php CHANGED
@@ -37,7 +37,7 @@ class WP_Job_Manager_Form_Edit_Job extends WP_Job_Manager_Form_Submit_Job {
37
  public static function submit() {
38
  $job = get_post( self::$job_id );
39
 
40
- if ( empty( self::$job_id ) || $job->post_status !== 'publish' ) {
41
  echo wpautop( __( 'Invalid listing', 'wp-job-manager' ) );
42
  return;
43
  }
@@ -55,7 +55,7 @@ class WP_Job_Manager_Form_Edit_Job extends WP_Job_Manager_Form_Submit_Job {
55
 
56
  } elseif ( ! empty( $field['taxonomy'] ) ) {
57
  self::$fields[ $group_key ][ $key ]['value'] = wp_get_object_terms( $job->ID, $field['taxonomy'], array( 'fields' => 'ids' ) );
58
-
59
  } else {
60
  self::$fields[ $group_key ][ $key ]['value'] = get_post_meta( $job->ID, '_' . $key, true );
61
  }
@@ -66,7 +66,7 @@ class WP_Job_Manager_Form_Edit_Job extends WP_Job_Manager_Form_Submit_Job {
66
  self::$fields = apply_filters( 'submit_job_form_fields_get_job_data', self::$fields, $job );
67
 
68
  wp_enqueue_script( 'wp-job-manager-job-submission' );
69
-
70
  get_job_manager_template( 'job-submit.php', array(
71
  'form' => self::$form_name,
72
  'job_id' => self::get_job_id(),
@@ -96,7 +96,7 @@ class WP_Job_Manager_Form_Edit_Job extends WP_Job_Manager_Form_Submit_Job {
96
  }
97
 
98
  // Update the job
99
- self::save_job( $values['job']['job_title'], $values['job']['job_description'], 'publish', $values );
100
  self::update_job_data( $values );
101
 
102
  // Successful
37
  public static function submit() {
38
  $job = get_post( self::$job_id );
39
 
40
+ if ( empty( self::$job_id ) || ( $job->post_status !== 'publish' && ! job_manager_user_can_edit_pending_submissions() ) ) {
41
  echo wpautop( __( 'Invalid listing', 'wp-job-manager' ) );
42
  return;
43
  }
55
 
56
  } elseif ( ! empty( $field['taxonomy'] ) ) {
57
  self::$fields[ $group_key ][ $key ]['value'] = wp_get_object_terms( $job->ID, $field['taxonomy'], array( 'fields' => 'ids' ) );
58
+
59
  } else {
60
  self::$fields[ $group_key ][ $key ]['value'] = get_post_meta( $job->ID, '_' . $key, true );
61
  }
66
  self::$fields = apply_filters( 'submit_job_form_fields_get_job_data', self::$fields, $job );
67
 
68
  wp_enqueue_script( 'wp-job-manager-job-submission' );
69
+
70
  get_job_manager_template( 'job-submit.php', array(
71
  'form' => self::$form_name,
72
  'job_id' => self::get_job_id(),
96
  }
97
 
98
  // Update the job
99
+ self::save_job( $values['job']['job_title'], $values['job']['job_description'], '', $values );
100
  self::update_job_data( $values );
101
 
102
  // Successful
includes/forms/class-wp-job-manager-form-submit-job.php CHANGED
@@ -262,6 +262,26 @@ class WP_Job_Manager_Form_Submit_Job extends WP_Job_Manager_Form {
262
  return $values;
263
  }
264
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
265
  /**
266
  * Get the value of a posted field
267
  * @param string $key
@@ -269,14 +289,7 @@ class WP_Job_Manager_Form_Submit_Job extends WP_Job_Manager_Form {
269
  * @return string|array
270
  */
271
  protected static function get_posted_field( $key, $field ) {
272
- if ( ! isset( $_POST[ $key ] ) ) {
273
- return '';
274
- }
275
- if ( is_array( $_POST[ $key ] ) ) {
276
- return array_map( 'sanitize_text_field', array_map( 'urldecode', stripslashes_deep( $_POST[ $key ] ) ) );
277
- } else {
278
- return sanitize_text_field( trim( urldecode( stripslashes( $_POST[ $key ] ) ) ) );
279
- }
280
  }
281
 
282
  /**
@@ -392,6 +405,7 @@ class WP_Job_Manager_Form_Submit_Job extends WP_Job_Manager_Form {
392
  // Application method
393
  if ( isset( $values['job']['application'] ) && ! empty( $values['job']['application'] ) ) {
394
  $allowed_application_method = get_option( 'job_manager_allowed_application_method', '' );
 
395
  switch ( $allowed_application_method ) {
396
  case 'email' :
397
  if ( ! is_email( $values['job']['application'] ) ) {
@@ -521,8 +535,8 @@ class WP_Job_Manager_Form_Submit_Job extends WP_Job_Manager_Form {
521
  'action' => self::get_action(),
522
  'job_fields' => self::get_fields( 'job' ),
523
  'company_fields' => self::get_fields( 'company' ),
524
- 'submit_button_text' => __( 'Preview &rarr;', 'wp-job-manager' )
525
- ) );
526
  }
527
 
528
  /**
262
  return $values;
263
  }
264
 
265
+
266
+ /**
267
+ * Navigates through an array and sanitizes the field.
268
+ *
269
+ *
270
+ * @param array|string $value The array or string to be sanitized.
271
+ * @return array|string $value The sanitized array (or string from the callback).
272
+ */
273
+ public static function sanitize_posted_field( $value ) {
274
+ // Decode URLs
275
+ if ( is_string( $value ) && ( strstr( $value, 'http:' ) || strstr( $value, 'https:' ) ) ) {
276
+ $value = urldecode( $value );
277
+ }
278
+
279
+ // Santize value
280
+ $value = is_array( $value ) ? array_map( array( __CLASS__, 'sanitize_posted_field' ), $value ) : sanitize_text_field( stripslashes( trim( $value ) ) );
281
+
282
+ return $value;
283
+ }
284
+
285
  /**
286
  * Get the value of a posted field
287
  * @param string $key
289
  * @return string|array
290
  */
291
  protected static function get_posted_field( $key, $field ) {
292
+ return isset( $_POST[ $key ] ) ? self::sanitize_posted_field( $_POST[ $key ] ) : '';
 
 
 
 
 
 
 
293
  }
294
 
295
  /**
405
  // Application method
406
  if ( isset( $values['job']['application'] ) && ! empty( $values['job']['application'] ) ) {
407
  $allowed_application_method = get_option( 'job_manager_allowed_application_method', '' );
408
+ $values['job']['application'] = str_replace( ' ', '+', $values['job']['application'] );
409
  switch ( $allowed_application_method ) {
410
  case 'email' :
411
  if ( ! is_email( $values['job']['application'] ) ) {
535
  'action' => self::get_action(),
536
  'job_fields' => self::get_fields( 'job' ),
537
  'company_fields' => self::get_fields( 'company' ),
538
+ 'submit_button_text' => apply_filters( 'submit_job_form_submit_button_text', __( 'Preview &rarr;', 'wp-job-manager' ) )
539
+ ) );
540
  }
541
 
542
  /**
languages/wp-job-manager-el.mo ADDED
Binary file
languages/wp-job-manager-el.po ADDED
@@ -0,0 +1,985 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2014 WP Job Manager
2
+ # This file is distributed under the same license as the WP Job Manager package.
3
+ # Translators:
4
+ # Dimitris Petropoulos <dpetrop@gmail.com>, 2014
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: WP Job Manager\n"
8
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-job-manager\n"
9
+ "POT-Creation-Date: 2014-05-11 11:00:29+00:00\n"
10
+ "PO-Revision-Date: 2014-10-16 23:10+0000\n"
11
+ "Last-Translator: Mike Jolley <mike.jolley@me.com>\n"
12
+ "Language-Team: Greek (http://www.transifex.com/projects/p/wp-job-manager/language/el/)\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Language: el\n"
17
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+
19
+ #: includes/admin/class-wp-job-manager-addons.php:50
20
+ #: includes/admin/class-wp-job-manager-admin.php:60
21
+ msgid "WP Job Manager Add-ons"
22
+ msgstr "WP Job Manager Add-ons"
23
+
24
+ #: includes/admin/class-wp-job-manager-addons.php:51
25
+ msgid ""
26
+ "Buying multiple add-ons? <a href=\"%s\">Check out the core add-on bundle "
27
+ "&rarr;</a>"
28
+ msgstr ""
29
+
30
+ #: includes/admin/class-wp-job-manager-admin.php:57
31
+ msgid "Settings"
32
+ msgstr "Settings"
33
+
34
+ #: includes/admin/class-wp-job-manager-admin.php:60
35
+ msgid "Add-ons"
36
+ msgstr "Πρόσθετα"
37
+
38
+ #: includes/admin/class-wp-job-manager-cpt.php:44
39
+ #: includes/admin/class-wp-job-manager-cpt.php:45
40
+ msgid "Approve Jobs"
41
+ msgstr ""
42
+
43
+ #: includes/admin/class-wp-job-manager-cpt.php:47
44
+ #: includes/admin/class-wp-job-manager-cpt.php:48
45
+ msgid "Expire Jobs"
46
+ msgstr ""
47
+
48
+ #: includes/admin/class-wp-job-manager-cpt.php:135
49
+ #: includes/admin/class-wp-job-manager-cpt.php:137
50
+ msgid "%s approved"
51
+ msgstr "%s εγκρίθηκαν"
52
+
53
+ #: includes/admin/class-wp-job-manager-cpt.php:155
54
+ #: includes/admin/class-wp-job-manager-cpt.php:157
55
+ msgid "%s expired"
56
+ msgstr ""
57
+
58
+ #: includes/admin/class-wp-job-manager-cpt.php:200
59
+ msgid "Select a category"
60
+ msgstr "Επιλέξτε μια κατηγορία"
61
+
62
+ #: includes/admin/class-wp-job-manager-cpt.php:233
63
+ msgid "Job position title"
64
+ msgstr "Τίτλος θέσης έργασίας"
65
+
66
+ #: includes/admin/class-wp-job-manager-cpt.php:249
67
+ msgid "Job listing updated. <a href=\"%s\">View Job</a>"
68
+ msgstr "Λίστα θέσεων εργασίας ενημερώθηκε. <a href=\"%s\">Προβολή Θέσης εργασίας</ a>"
69
+
70
+ #: includes/admin/class-wp-job-manager-cpt.php:250
71
+ msgid "Custom field updated."
72
+ msgstr "Προσαρμοσμένο πεδίο ενημερώθηκε."
73
+
74
+ #: includes/admin/class-wp-job-manager-cpt.php:251
75
+ msgid "Custom field deleted."
76
+ msgstr "Προσαρμοσμένο πεδίο διαγράφηκε."
77
+
78
+ #: includes/admin/class-wp-job-manager-cpt.php:252
79
+ msgid "Job listing updated."
80
+ msgstr "Η αγγελία ενημερώθηκε."
81
+
82
+ #: includes/admin/class-wp-job-manager-cpt.php:253
83
+ msgid "Job listing restored to revision from %s"
84
+ msgstr "Η αγγελία αποκαταστάθηκε σε αναθεώρηση από % s"
85
+
86
+ #: includes/admin/class-wp-job-manager-cpt.php:254
87
+ msgid "Job listing published. <a href=\"%s\">View Job</a>"
88
+ msgstr "Η αγγελία δημοσιεύθηκε. <a href=\"%s\">Προβολή Θέσης Εργασίας</ a>"
89
+
90
+ #: includes/admin/class-wp-job-manager-cpt.php:255
91
+ msgid "Job listing saved."
92
+ msgstr "Η αγγελία έχει αποθηκευτεί."
93
+
94
+ #: includes/admin/class-wp-job-manager-cpt.php:256
95
+ msgid "Job listing submitted. <a target=\"_blank\" href=\"%s\">Preview Job</a>"
96
+ msgstr "Η αγγελία έχει υποβληθεί. <a target=\"_blank\" href=\"%s\">Προεπισκόπηση</a>"
97
+
98
+ #: includes/admin/class-wp-job-manager-cpt.php:257
99
+ msgid ""
100
+ "Job listing scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" "
101
+ "href=\"%2$s\">Preview Job</a>"
102
+ msgstr "Καταχώριση της αγγελίας έχει προγραμματιστεί για: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Προεπισκόπηση</a>"
103
+
104
+ #: includes/admin/class-wp-job-manager-cpt.php:258
105
+ msgid "M j, Y @ G:i"
106
+ msgstr "M j, Y @ G: i"
107
+
108
+ #: includes/admin/class-wp-job-manager-cpt.php:259
109
+ msgid "Job listing draft updated. <a target=\"_blank\" href=\"%s\">Preview Job</a>"
110
+ msgstr "Το προσχέδιο της αγγελίας ενημερώθηκε. <a target=\"_blank\" href=\"%s\">Προεπισκόπηση</a>"
111
+
112
+ #: includes/admin/class-wp-job-manager-cpt.php:278
113
+ msgid "Type"
114
+ msgstr "Είδος"
115
+
116
+ #: includes/admin/class-wp-job-manager-cpt.php:279
117
+ msgid "Position"
118
+ msgstr "Θέση Εργασίας"
119
+
120
+ #: includes/admin/class-wp-job-manager-cpt.php:280
121
+ msgid "Posted"
122
+ msgstr "Δημοσιεύτηκε"
123
+
124
+ #: includes/admin/class-wp-job-manager-cpt.php:281
125
+ #: templates/job-dashboard.php:9
126
+ msgid "Expires"
127
+ msgstr "Λήγει"
128
+
129
+ #: includes/admin/class-wp-job-manager-cpt.php:283
130
+ msgid "Categories"
131
+ msgstr "Κατηγορίες"
132
+
133
+ #: includes/admin/class-wp-job-manager-cpt.php:284
134
+ msgid "Featured?"
135
+ msgstr ""
136
+
137
+ #: includes/admin/class-wp-job-manager-cpt.php:285
138
+ #: templates/job-dashboard.php:10
139
+ msgid "Filled?"
140
+ msgstr "Καλύφθηκε;"
141
+
142
+ #: includes/admin/class-wp-job-manager-cpt.php:286
143
+ #: templates/job-dashboard.php:8
144
+ msgid "Status"
145
+ msgstr "Κατάσταση"
146
+
147
+ #: includes/admin/class-wp-job-manager-cpt.php:287
148
+ msgid "Actions"
149
+ msgstr "Δράσεις"
150
+
151
+ #: includes/admin/class-wp-job-manager-cpt.php:310
152
+ msgid "Job ID: %d"
153
+ msgstr "Κωδ. εργασίας: %d"
154
+
155
+ #: includes/admin/class-wp-job-manager-cpt.php:336
156
+ #: includes/admin/class-wp-job-manager-cpt.php:341
157
+ msgid "M j, Y"
158
+ msgstr "M j, Y"
159
+
160
+ #: includes/admin/class-wp-job-manager-cpt.php:337
161
+ msgid "by a guest"
162
+ msgstr "από επισκέπτη"
163
+
164
+ #: includes/admin/class-wp-job-manager-cpt.php:337
165
+ msgid "by %s"
166
+ msgstr "από %s"
167
+
168
+ #: includes/admin/class-wp-job-manager-cpt.php:354
169
+ msgid "Approve"
170
+ msgstr "Εγκρίνω"
171
+
172
+ #: includes/admin/class-wp-job-manager-cpt.php:361
173
+ msgid "View"
174
+ msgstr "Προβολή"
175
+
176
+ #: includes/admin/class-wp-job-manager-cpt.php:366
177
+ #: includes/class-wp-job-manager-post-types.php:162
178
+ #: templates/job-dashboard.php:33
179
+ msgid "Edit"
180
+ msgstr "Επεξεργασία"
181
+
182
+ #: includes/admin/class-wp-job-manager-cpt.php:371
183
+ #: templates/job-dashboard.php:43
184
+ msgid "Delete"
185
+ msgstr "Διαγραφή"
186
+
187
+ #: includes/admin/class-wp-job-manager-settings.php:42
188
+ #: includes/class-wp-job-manager-post-types.php:138
189
+ #: includes/class-wp-job-manager-post-types.php:228
190
+ msgid "Job Listings"
191
+ msgstr "Αγγελίες"
192
+
193
+ #: includes/admin/class-wp-job-manager-settings.php:48
194
+ msgid "Jobs per page"
195
+ msgstr "Αγγελίες ανά σελίδα"
196
+
197
+ #: includes/admin/class-wp-job-manager-settings.php:49
198
+ msgid "How many jobs should be shown per page by default?"
199
+ msgstr "Πόσες θέσεις εργασίας θα πρέπει να εμφανίζονται ανά σελίδα από προεπιλογή;"
200
+
201
+ #: includes/admin/class-wp-job-manager-settings.php:55
202
+ msgid "Filled positions"
203
+ msgstr "Θέσεις που έχουν καλυφθεί"
204
+
205
+ #: includes/admin/class-wp-job-manager-settings.php:56
206
+ msgid "Hide filled positions"
207
+ msgstr "Απόκρυψη θέσεων που έχουν καλυφθεί"
208
+
209
+ #: includes/admin/class-wp-job-manager-settings.php:57
210
+ msgid "If enabled, filled positions will be hidden from the job list."
211
+ msgstr "Ενεργοποιημένο θα αποκρύψει θέσεις που έχουν καλυφθεί από τη λίστα εργασιών."
212
+
213
+ #: includes/admin/class-wp-job-manager-settings.php:64
214
+ msgid "Job categories"
215
+ msgstr "Κατηγορίες Αγγελιών"
216
+
217
+ #: includes/admin/class-wp-job-manager-settings.php:65
218
+ msgid "Enable job categories"
219
+ msgstr "Ενεργοποίηση κατηγοριών θέσεων εργασίας"
220
+
221
+ #: includes/admin/class-wp-job-manager-settings.php:66
222
+ msgid ""
223
+ "Choose whether to enable job categories. Categories must be setup by an "
224
+ "admin for users to choose during job submission."
225
+ msgstr "Επιλέξτε εάν θέλετε να ενεργοποιήσετε κατηγορίες θέσεων εργασίας. Οι κατηγορίες πρέπει να ρυθμιστούν από ένα διαχειριστή ώστε οι χρήστες να επιλέξουν κατά τη διάρκεια της υποβολής της αγγελίας."
226
+
227
+ #: includes/admin/class-wp-job-manager-settings.php:73
228
+ msgid "Job Submission"
229
+ msgstr "Υποβολή Αγγελίας"
230
+
231
+ #: includes/admin/class-wp-job-manager-settings.php:78
232
+ msgid "Account creation"
233
+ msgstr "Δημιουργία λογαριασμού"
234
+
235
+ #: includes/admin/class-wp-job-manager-settings.php:79
236
+ msgid "Allow account creation"
237
+ msgstr "Επιτρέψτε τη δημιουργία λογαριασμού"
238
+
239
+ #: includes/admin/class-wp-job-manager-settings.php:80
240
+ msgid ""
241
+ "If enabled, non-logged in users will be able to create an account by "
242
+ "entering their email address on the job submission form."
243
+ msgstr "Εάν ενεργοποιηθεί, οι μη συνδεδεμένοι χρήστες θα μπορούν να δημιουργήσουν λογαριασμό εισάγοντας το email τους στη φόρμα υποβολής εργασίας."
244
+
245
+ #: includes/admin/class-wp-job-manager-settings.php:87
246
+ msgid "Account Role"
247
+ msgstr ""
248
+
249
+ #: includes/admin/class-wp-job-manager-settings.php:88
250
+ msgid ""
251
+ "If you enable registration on your job submission form, choose a role for "
252
+ "the new user."
253
+ msgstr ""
254
+
255
+ #: includes/admin/class-wp-job-manager-settings.php:95
256
+ msgid "Account required"
257
+ msgstr "Απαιτείται λογαριασμός"
258
+
259
+ #: includes/admin/class-wp-job-manager-settings.php:96
260
+ msgid "Job submission requires an account"
261
+ msgstr "Για υποβολή αγγελίας πρέπει να έχετε λογαριασμό"
262
+
263
+ #: includes/admin/class-wp-job-manager-settings.php:97
264
+ msgid ""
265
+ "If disabled, non-logged in users will be able to submit job listings without"
266
+ " creating an account."
267
+ msgstr "Εάν είναι απενεργοποιημένη, μη συνδεδεμένοι χρήστες θα είναι σε θέση να υποβάλουν αγγελίες χωρίς να δημιουργήσουν λογαριασμό."
268
+
269
+ #: includes/admin/class-wp-job-manager-settings.php:104
270
+ msgid "Approval Required"
271
+ msgstr "Απαιτείται έγκριση"
272
+
273
+ #: includes/admin/class-wp-job-manager-settings.php:105
274
+ msgid "New submissions require admin approval"
275
+ msgstr "Νέες αγγελίες απαιτούν την έγκριση του διαχειριστή"
276
+
277
+ #: includes/admin/class-wp-job-manager-settings.php:106
278
+ msgid "If enabled, new submissions will be inactive, pending admin approval."
279
+ msgstr "Εάν είναι ενεργοποιημένη, οι νέες αγγελίες θα είναι ανενεργές, εν αναμονή έγκρισης από διαχειριστή."
280
+
281
+ #: includes/admin/class-wp-job-manager-settings.php:113
282
+ msgid "Listing duration"
283
+ msgstr "Διάρκεια αγγελίας"
284
+
285
+ #: includes/admin/class-wp-job-manager-settings.php:114
286
+ msgid ""
287
+ "How many <strong>days</strong> listings are live before expiring. Can be "
288
+ "left blank to never expire."
289
+ msgstr "Πόσες <strong>μέρες</strong> διαρκούν οι καταχωρίσεις πριν λήξουν; Αφήστε το κενό για να μην λήγουν ποτέ."
290
+
291
+ #: includes/admin/class-wp-job-manager-settings.php:120
292
+ msgid "Application method"
293
+ msgstr ""
294
+
295
+ #: includes/admin/class-wp-job-manager-settings.php:121
296
+ msgid "Choose what employers can use for their job application method."
297
+ msgstr ""
298
+
299
+ #: includes/admin/class-wp-job-manager-settings.php:124
300
+ msgid "Email address or website URL"
301
+ msgstr ""
302
+
303
+ #: includes/admin/class-wp-job-manager-settings.php:125
304
+ msgid "Email addresses only"
305
+ msgstr ""
306
+
307
+ #: includes/admin/class-wp-job-manager-settings.php:126
308
+ msgid "Website URLs only"
309
+ msgstr ""
310
+
311
+ #: includes/admin/class-wp-job-manager-settings.php:132
312
+ msgid "Submit Page Slug"
313
+ msgstr ""
314
+
315
+ #: includes/admin/class-wp-job-manager-settings.php:133
316
+ msgid ""
317
+ "Enter the slug of the page where you have placed the [submit_job_form] "
318
+ "shortcode. This lets the plugin know where the form is located."
319
+ msgstr ""
320
+
321
+ #: includes/admin/class-wp-job-manager-settings.php:185
322
+ msgid "Settings successfully saved"
323
+ msgstr "Οι ρυθμίσεις αποθηκεύτηκαν με επιτυχία"
324
+
325
+ #: includes/admin/class-wp-job-manager-settings.php:264
326
+ msgid "Save Changes"
327
+ msgstr "Αποθήκευση αλλαγών"
328
+
329
+ #: includes/admin/class-wp-job-manager-writepanels.php:27
330
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:130
331
+ msgid "Job location"
332
+ msgstr "Τοποθεσία εργασίας"
333
+
334
+ #: includes/admin/class-wp-job-manager-writepanels.php:28
335
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:134
336
+ msgid "e.g. \"London, UK\", \"New York\", \"Houston, TX\""
337
+ msgstr "π.χ. \"Αθήνα\", \"Περιστέρι\", \"Μαρούσι\", \"Πάτρα\""
338
+
339
+ #: includes/admin/class-wp-job-manager-writepanels.php:29
340
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:131
341
+ msgid ""
342
+ "Leave this blank if the job can be done from anywhere (i.e. telecommuting)"
343
+ msgstr "Αφήστε το κενό αν η εργασία μπορεί να γίνει από οπουδήποτε (π.χ. τηλεργασία)"
344
+
345
+ #: includes/admin/class-wp-job-manager-writepanels.php:32
346
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:115
347
+ msgid "Application email/URL"
348
+ msgstr "Email αγγελίας / URL"
349
+
350
+ #: includes/admin/class-wp-job-manager-writepanels.php:33
351
+ msgid "URL or email which applicants use to apply"
352
+ msgstr "URL ή e-mail που χρησιμοποιούν οι αιτούντες για τις αιτήσεις"
353
+
354
+ #: includes/admin/class-wp-job-manager-writepanels.php:36
355
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:172
356
+ msgid "Company name"
357
+ msgstr "Επωνυμία εταιρείας"
358
+
359
+ #: includes/admin/class-wp-job-manager-writepanels.php:40
360
+ msgid "Company website"
361
+ msgstr "Ιστοσελίδα της εταιρείας"
362
+
363
+ #: includes/admin/class-wp-job-manager-writepanels.php:44
364
+ msgid "Company tagline"
365
+ msgstr "Tagline εταιρείας"
366
+
367
+ #: includes/admin/class-wp-job-manager-writepanels.php:45
368
+ msgid "Brief description about the company"
369
+ msgstr "Σύντομη περιγραφή εταιρείας"
370
+
371
+ #: includes/admin/class-wp-job-manager-writepanels.php:48
372
+ msgid "Company Twitter"
373
+ msgstr "Εταιρικό Twitter"
374
+
375
+ #: includes/admin/class-wp-job-manager-writepanels.php:52
376
+ msgid "Company logo"
377
+ msgstr "Εταιρικό λογότυπο"
378
+
379
+ #: includes/admin/class-wp-job-manager-writepanels.php:53
380
+ msgid "URL to the company logo"
381
+ msgstr "URL με το λογότυπο της εταιρείας"
382
+
383
+ #: includes/admin/class-wp-job-manager-writepanels.php:57
384
+ msgid "Position filled?"
385
+ msgstr "Καλύφθηκε η θέση;"
386
+
387
+ #: includes/admin/class-wp-job-manager-writepanels.php:61
388
+ msgid "Feature this job listing?"
389
+ msgstr "Χαρακτηριστικό της θέσης εργασίας;"
390
+
391
+ #: includes/admin/class-wp-job-manager-writepanels.php:63
392
+ msgid ""
393
+ "Featured listings will be sticky during searches, and can be styled "
394
+ "differently."
395
+ msgstr ""
396
+
397
+ #: includes/admin/class-wp-job-manager-writepanels.php:66
398
+ msgid "Job Expires"
399
+ msgstr "Λήξη εργασίας"
400
+
401
+ #: includes/admin/class-wp-job-manager-writepanels.php:67
402
+ msgid "yyyy-mm-dd"
403
+ msgstr "yyyy-mm-dd"
404
+
405
+ #: includes/admin/class-wp-job-manager-writepanels.php:70
406
+ msgid "Posted by"
407
+ msgstr ""
408
+
409
+ #: includes/admin/class-wp-job-manager-writepanels.php:83
410
+ msgid "Job Listing Data"
411
+ msgstr "Δεδομένα Αγγελίας"
412
+
413
+ #: includes/admin/class-wp-job-manager-writepanels.php:101
414
+ msgid "Use file"
415
+ msgstr ""
416
+
417
+ #: includes/admin/class-wp-job-manager-writepanels.php:101
418
+ msgid "Upload"
419
+ msgstr ""
420
+
421
+ #: includes/admin/class-wp-job-manager-writepanels.php:269
422
+ msgid "Guest user"
423
+ msgstr ""
424
+
425
+ #: includes/class-wp-job-manager-ajax.php:111
426
+ msgid "Showing %s&ldquo;%s&rdquo; %sjobs"
427
+ msgstr "Εμφάνιση %s&ldquo;%s&rdquo; %sjobs"
428
+
429
+ #: includes/class-wp-job-manager-ajax.php:113
430
+ msgid "Showing all %s%sjobs"
431
+ msgstr "Εμφάνιση όλων %s%sjobs"
432
+
433
+ #: includes/class-wp-job-manager-ajax.php:116
434
+ msgid "located in &ldquo;%s&rdquo;"
435
+ msgstr "βρίσκεται στο &ldquo;%s&rdquo;"
436
+
437
+ #: includes/class-wp-job-manager-geocode.php:139
438
+ msgid "No results found"
439
+ msgstr "Δεν βρέθηκαν αποτελέσματα"
440
+
441
+ #: includes/class-wp-job-manager-geocode.php:143
442
+ msgid "Query limit reached"
443
+ msgstr ""
444
+
445
+ #: includes/class-wp-job-manager-geocode.php:149
446
+ #: includes/class-wp-job-manager-geocode.php:153
447
+ #: includes/class-wp-job-manager-geocode.php:157
448
+ msgid "Geocoding error"
449
+ msgstr ""
450
+
451
+ #: includes/class-wp-job-manager-install.php:39
452
+ msgid "Employer"
453
+ msgstr ""
454
+
455
+ #: includes/class-wp-job-manager-post-types.php:48
456
+ msgid "Job Category"
457
+ msgstr "Κατηγορία Εργασίας"
458
+
459
+ #: includes/class-wp-job-manager-post-types.php:49
460
+ msgid "Job Categories"
461
+ msgstr "Κατηγορίες Εργασίας"
462
+
463
+ #: includes/class-wp-job-manager-post-types.php:53
464
+ msgctxt "Job category slug - resave permalinks after changing this"
465
+ msgid "job-category"
466
+ msgstr "job-category"
467
+
468
+ #: includes/class-wp-job-manager-post-types.php:70
469
+ #: includes/class-wp-job-manager-post-types.php:113
470
+ #: includes/class-wp-job-manager-post-types.php:167
471
+ msgid "Search %s"
472
+ msgstr "Αναζήτηση %s"
473
+
474
+ #: includes/class-wp-job-manager-post-types.php:71
475
+ #: includes/class-wp-job-manager-post-types.php:114
476
+ #: includes/class-wp-job-manager-post-types.php:159
477
+ msgid "All %s"
478
+ msgstr "Όλες οι %s"
479
+
480
+ #: includes/class-wp-job-manager-post-types.php:72
481
+ #: includes/class-wp-job-manager-post-types.php:115
482
+ #: includes/class-wp-job-manager-post-types.php:170
483
+ msgid "Parent %s"
484
+ msgstr "Μητρική %s"
485
+
486
+ #: includes/class-wp-job-manager-post-types.php:73
487
+ #: includes/class-wp-job-manager-post-types.php:116
488
+ msgid "Parent %s:"
489
+ msgstr "Μητρική %s:"
490
+
491
+ #: includes/class-wp-job-manager-post-types.php:74
492
+ #: includes/class-wp-job-manager-post-types.php:117
493
+ #: includes/class-wp-job-manager-post-types.php:163
494
+ msgid "Edit %s"
495
+ msgstr "Επεξεργασία %s"
496
+
497
+ #: includes/class-wp-job-manager-post-types.php:75
498
+ #: includes/class-wp-job-manager-post-types.php:118
499
+ msgid "Update %s"
500
+ msgstr "Ενημέρωση %s"
501
+
502
+ #: includes/class-wp-job-manager-post-types.php:76
503
+ #: includes/class-wp-job-manager-post-types.php:119
504
+ msgid "Add New %s"
505
+ msgstr "Νέα Προσθήκη %s"
506
+
507
+ #: includes/class-wp-job-manager-post-types.php:77
508
+ #: includes/class-wp-job-manager-post-types.php:120
509
+ msgid "New %s Name"
510
+ msgstr "Νέο όνομα %s "
511
+
512
+ #: includes/class-wp-job-manager-post-types.php:92
513
+ msgid "Job Type"
514
+ msgstr "Είδος Εργασίας"
515
+
516
+ #: includes/class-wp-job-manager-post-types.php:93
517
+ msgid "Job Types"
518
+ msgstr "Είδη Εργασίας"
519
+
520
+ #: includes/class-wp-job-manager-post-types.php:97
521
+ msgctxt "Job type slug - resave permalinks after changing this"
522
+ msgid "job-type"
523
+ msgstr "job-type"
524
+
525
+ #: includes/class-wp-job-manager-post-types.php:137
526
+ msgid "Job Listing"
527
+ msgstr "Αγγελία"
528
+
529
+ #: includes/class-wp-job-manager-post-types.php:141
530
+ msgctxt "Post type archive slug - resave permalinks after changing this"
531
+ msgid "jobs"
532
+ msgstr "jobs"
533
+
534
+ #: includes/class-wp-job-manager-post-types.php:147
535
+ msgctxt "Job permalink - resave permalinks after changing this"
536
+ msgid "job"
537
+ msgstr "job"
538
+
539
+ #: includes/class-wp-job-manager-post-types.php:160
540
+ msgid "Add New"
541
+ msgstr "Προσθήκη νέας"
542
+
543
+ #: includes/class-wp-job-manager-post-types.php:161
544
+ msgid "Add %s"
545
+ msgstr "Προσθήκη %s"
546
+
547
+ #: includes/class-wp-job-manager-post-types.php:164
548
+ msgid "New %s"
549
+ msgstr "Νέα %s"
550
+
551
+ #: includes/class-wp-job-manager-post-types.php:165
552
+ #: includes/class-wp-job-manager-post-types.php:166
553
+ msgid "View %s"
554
+ msgstr "Εμφάνιση %s"
555
+
556
+ #: includes/class-wp-job-manager-post-types.php:168
557
+ msgid "No %s found"
558
+ msgstr "Δεν βρέθηκε %s"
559
+
560
+ #: includes/class-wp-job-manager-post-types.php:169
561
+ msgid "No %s found in trash"
562
+ msgstr "Δεν βρέθηκε %s στον κάδο απορριμμάτων"
563
+
564
+ #: includes/class-wp-job-manager-post-types.php:172
565
+ msgid "This is where you can create and manage job listings."
566
+ msgstr "Εδώ μπορείτε να δημιουργήσετε και να διαχειριστείτε αγγελίες εργασίας."
567
+
568
+ #: includes/class-wp-job-manager-post-types.php:207
569
+ msgctxt "job_listing"
570
+ msgid "Expired"
571
+ msgstr "Έληξε"
572
+
573
+ #: includes/class-wp-job-manager-post-types.php:212
574
+ msgid "Expired <span class=\"count\">(%s)</span>"
575
+ msgid_plural "Expired <span class=\"count\">(%s)</span>"
576
+ msgstr[0] "Έληξε <span class=\"count\">(%s)</span>"
577
+ msgstr[1] "Έληξαν <span class=\"count\">(%s)</span>"
578
+
579
+ #: includes/class-wp-job-manager-shortcodes.php:61
580
+ msgid "Invalid Job ID"
581
+ msgstr "Μη έγκυρο ID"
582
+
583
+ #: includes/class-wp-job-manager-shortcodes.php:67
584
+ msgid "This job is already filled"
585
+ msgstr "Αυτή η θέση έχει καλυφθεί"
586
+
587
+ #: includes/class-wp-job-manager-shortcodes.php:73
588
+ msgid "%s has been filled"
589
+ msgstr "%s έχει καλυφθεί"
590
+
591
+ #: includes/class-wp-job-manager-shortcodes.php:78
592
+ msgid "This job is already not filled"
593
+ msgstr "Αυτή η θέση δεν έχει καλυφθεί"
594
+
595
+ #: includes/class-wp-job-manager-shortcodes.php:84
596
+ msgid "%s has been marked as not filled"
597
+ msgstr "%s σημάνθηκε ότι δεν έχει καλυφθεί"
598
+
599
+ #: includes/class-wp-job-manager-shortcodes.php:91
600
+ msgid "%s has been deleted"
601
+ msgstr "%s έχει διαγραφεί"
602
+
603
+ #: includes/class-wp-job-manager-shortcodes.php:111
604
+ msgid "You need to be signed in to manage your job listings."
605
+ msgstr "Πρέπει να είστε συνδεδεμένοι για να διαχειριστείτε τις αγγελίες σας."
606
+
607
+ #: includes/class-wp-job-manager-shortcodes.php:204
608
+ #: includes/class-wp-job-manager-shortcodes.php:235
609
+ msgid "Load more job listings"
610
+ msgstr "Φορτώστε περισσότερες αγγελίες"
611
+
612
+ #: includes/class-wp-job-manager-widgets.php:139
613
+ msgid "Display a list of the most recent jobs on your site."
614
+ msgstr "Εμφανίστε μια λίστα με τις πιο πρόσφατες θέσεις εργασίας στην ιστοσελίδα σας."
615
+
616
+ #: includes/class-wp-job-manager-widgets.php:141
617
+ msgid "Recent Job Listings"
618
+ msgstr "Πρόσφατες αγγελίες"
619
+
620
+ #: includes/class-wp-job-manager-widgets.php:145
621
+ msgid "Recent Jobs"
622
+ msgstr "Πρόσφατες θέσεις εργασίας"
623
+
624
+ #: includes/class-wp-job-manager-widgets.php:146
625
+ msgid "Title"
626
+ msgstr "Τίτλος"
627
+
628
+ #: includes/class-wp-job-manager-widgets.php:154
629
+ msgid "Number of jobs to show"
630
+ msgstr "Αριθμός θέσεων εργασίας για προβολή"
631
+
632
+ #: includes/forms/class-wp-job-manager-form-edit-job.php:43
633
+ msgid "Invalid job"
634
+ msgstr "Άκυρη θέση εργασίας"
635
+
636
+ #: includes/forms/class-wp-job-manager-form-edit-job.php:86
637
+ msgid "Update job listing"
638
+ msgstr "Ενημέρωση αγγελίας"
639
+
640
+ #: includes/forms/class-wp-job-manager-form-edit-job.php:112
641
+ msgid "Your changes have been saved."
642
+ msgstr "Οι αλλαγές σας έχουν αποθηκευτεί."
643
+
644
+ #: includes/forms/class-wp-job-manager-form-edit-job.php:112
645
+ msgid "View Job Listing &rarr;"
646
+ msgstr "Προβολή αγγελίας &rarr;"
647
+
648
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:22
649
+ msgid "Submit Details"
650
+ msgstr "Υποβολή λεπτομερειών"
651
+
652
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:28
653
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:606
654
+ msgid "Preview"
655
+ msgstr "Προεπισκόπηση"
656
+
657
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:34
658
+ msgid "Done"
659
+ msgstr "Έγινε"
660
+
661
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:107
662
+ msgid "Application email"
663
+ msgstr ""
664
+
665
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:108
666
+ msgid "you@yourdomain.com"
667
+ msgstr ""
668
+
669
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:111
670
+ msgid "Application URL"
671
+ msgstr ""
672
+
673
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:112
674
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:182
675
+ msgid "http://"
676
+ msgstr "http://"
677
+
678
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:116
679
+ msgid "Enter an email address or website URL"
680
+ msgstr "Πληκτρολογήστε μια διεύθυνση email ή URL ιστοσελίδας"
681
+
682
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:123
683
+ msgid "Job title"
684
+ msgstr "Τίτλος θέσης εργασίας"
685
+
686
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:138
687
+ msgid "Job type"
688
+ msgstr "Είδος θέσης εργασίας"
689
+
690
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:147
691
+ msgid "Job category"
692
+ msgstr "Κατηγορία θέσης εργασίας"
693
+
694
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:156
695
+ msgid "Description"
696
+ msgstr "Περιγραφή"
697
+
698
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:175
699
+ msgid "Enter the name of the company"
700
+ msgstr "Εισάγετε το όνομα της εταιρείας"
701
+
702
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:179
703
+ #: templates/content-single-job_listing.php:36
704
+ msgid "Website"
705
+ msgstr "Ιστοσελίδα"
706
+
707
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:186
708
+ msgid "Tagline"
709
+ msgstr "Tagline"
710
+
711
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:189
712
+ msgid "Briefly describe your company"
713
+ msgstr "Περιγράψτε εν συντομία την εταιρεία σας"
714
+
715
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:194
716
+ msgid "Twitter username"
717
+ msgstr "Twitter username"
718
+
719
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:197
720
+ msgid "@yourcompany"
721
+ msgstr "@yourcompany"
722
+
723
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:201
724
+ msgid "Logo"
725
+ msgstr "Λογότυπο"
726
+
727
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:314
728
+ msgid "%s is a required field"
729
+ msgstr "%s είναι υποχρεωτικό πεδίο"
730
+
731
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:325
732
+ msgid "Please enter a valid application email address"
733
+ msgstr ""
734
+
735
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:330
736
+ msgid "Please enter a valid application URL"
737
+ msgstr ""
738
+
739
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:335
740
+ msgid "Please enter a valid application email address or URL"
741
+ msgstr ""
742
+
743
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:456
744
+ msgid "Preview job listing &rarr;"
745
+ msgstr "Προεπισκόπηση αγγελίας &rarr;"
746
+
747
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:492
748
+ msgid "You must be signed in to post a new job listing."
749
+ msgstr "Πρέπει να είστε συνδεδεμένοι για να δημοσιεύσετε μια νέα αγγελία."
750
+
751
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:600
752
+ msgid "Submit Listing &rarr;"
753
+ msgstr "Υποβολή αγγελίας &rarr;"
754
+
755
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:601
756
+ msgid "&larr; Edit listing"
757
+ msgstr "&larr; Επεξεργασία αγγελίας"
758
+
759
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:684
760
+ msgid "\"%s\" needs to be one of the following file types: %s"
761
+ msgstr "\"%s\" πρέπει να είναι ένας από τους ακόλουθους τύπους αρχείων: %s"
762
+
763
+ #: templates/account-signin.php:4
764
+ msgid "Your account"
765
+ msgstr "Ο λογαριασμός σας"
766
+
767
+ #: templates/account-signin.php:8
768
+ msgid "You are currently signed in as <strong>%s</strong>."
769
+ msgstr "Αυτήν τη στιγμή είστε συνδεδεμένοι ως <strong>%s</strong>."
770
+
771
+ #: templates/account-signin.php:11
772
+ msgid "Sign out"
773
+ msgstr "Αποσύνδεση"
774
+
775
+ #: templates/account-signin.php:21
776
+ msgid "Have an account?"
777
+ msgstr "Έχετε λογαριασμό;"
778
+
779
+ #: templates/account-signin.php:23
780
+ msgid "Sign in"
781
+ msgstr "Σύνδεση"
782
+
783
+ #: templates/account-signin.php:27
784
+ msgid ""
785
+ "If you don&rsquo;t have an account you can %screate one below by entering "
786
+ "your email address. A password will be automatically emailed to you."
787
+ msgstr ""
788
+
789
+ #: templates/account-signin.php:27
790
+ msgid "optionally"
791
+ msgstr "προαιρετικά"
792
+
793
+ #: templates/account-signin.php:31
794
+ msgid "You must sign in to create a new job listing."
795
+ msgstr "Πρέπει να συνδεθείτε για να δημιουργήσετε μια νέα αγγελία."
796
+
797
+ #: templates/account-signin.php:38
798
+ msgid "Your email"
799
+ msgstr "Το email σας"
800
+
801
+ #: templates/account-signin.php:38 templates/job-submit.php:24
802
+ #: templates/job-submit.php:41
803
+ msgid "(optional)"
804
+ msgstr "(προαιρετικό)"
805
+
806
+ #: templates/content-job_listing.php:16
807
+ #: templates/content-single-job_listing.php:21
808
+ #: templates/content-summary-job_listing.php:14
809
+ msgid "Posted %s ago"
810
+ msgstr "Δημοσιεύτηκε πριν από %s"
811
+
812
+ #: templates/content-no-jobs-found.php:1
813
+ msgid "No more jobs found matching your selection."
814
+ msgstr "Δεν βρέθηκαν θέσεις εργασίας να ταιριάζουν με την επιλογή σας."
815
+
816
+ #: templates/content-single-job_listing.php:8
817
+ msgid "This job listing has expired"
818
+ msgstr "Αυτή η αγγελία έχει λήξει"
819
+
820
+ #: templates/content-single-job_listing.php:24
821
+ msgid "This position has been filled"
822
+ msgstr "Αυτή η θέση έχει καλυφθεί"
823
+
824
+ #: templates/form-fields/file-field.php:6
825
+ msgid "remove"
826
+ msgstr "αφαιρώ"
827
+
828
+ #: templates/form-fields/file-field.php:6
829
+ msgid "or"
830
+ msgstr "ή"
831
+
832
+ #: templates/form-fields/file-field.php:16
833
+ msgid "Max. file size: %s."
834
+ msgstr "Μέγιστο μέγεθος αρχείου: %s"
835
+
836
+ #: templates/job-application-email.php:1
837
+ msgid ""
838
+ "To apply for this job <strong>email your details to</strong> <a "
839
+ "class=\"job_application_email\" href=\"mailto:%1$s%2$s\">%1$s</a>"
840
+ msgstr "Για να υποβάλετε αίτηση για αυτή τη θέση <strong>στείλτε με email τα στοιχεία σας στο</strong> <a class=\"job_application_email\" href=\"mailto:%1$s%2$s\">%1$s</a>"
841
+
842
+ #: templates/job-application-email.php:4
843
+ msgid "Apply using webmail: "
844
+ msgstr "Υποβάλετε αίτηση μέσω webmail: "
845
+
846
+ #: templates/job-application-url.php:1
847
+ msgid ""
848
+ "To apply for this job please visit the following URL: <a href=\"%1$s\" "
849
+ "target=\"_blank\">%1$s &rarr;</a>"
850
+ msgstr ""
851
+
852
+ #: templates/job-application.php:5
853
+ msgid "Apply for job"
854
+ msgstr "Υποβάλετε αίτηση"
855
+
856
+ #: templates/job-dashboard.php:2
857
+ msgid ""
858
+ "Your job listings are shown in the table below. Expired listings will be "
859
+ "automatically removed after 30 days."
860
+ msgstr "Οι αγγελίες σας εμφανίζονται στον παρακάτω πίνακα. Αγγελίες που έχουν λήξει θα διαγράφονται αυτόματα μετά από 30 ημέρες."
861
+
862
+ #: templates/job-dashboard.php:6
863
+ msgid "Job Title"
864
+ msgstr "Τίτλος θέσης εργασίας"
865
+
866
+ #: templates/job-dashboard.php:7
867
+ msgid "Date Posted"
868
+ msgstr "Ημερομηνία καταχώρησης"
869
+
870
+ #: templates/job-dashboard.php:16
871
+ msgid "You do not have any active job listings."
872
+ msgstr "Δεν έχετε ενεργές αγγελίες"
873
+
874
+ #: templates/job-dashboard.php:36
875
+ msgid "Mark not filled"
876
+ msgstr "Δεν έχει καλυφθεί"
877
+
878
+ #: templates/job-dashboard.php:38
879
+ msgid "Mark filled"
880
+ msgstr "Καλύφθηκε "
881
+
882
+ #: templates/job-filters.php:8
883
+ msgid "Keywords"
884
+ msgstr "Λέξεις-κλειδιά"
885
+
886
+ #: templates/job-filters.php:9
887
+ msgid "All Jobs"
888
+ msgstr "Όλες οι αγγελίες"
889
+
890
+ #: templates/job-filters.php:13
891
+ msgid "Location"
892
+ msgstr "Τοποθεσία"
893
+
894
+ #: templates/job-filters.php:14
895
+ msgid "Any Location"
896
+ msgstr "Οποιαδήποτε Τοποθεσία"
897
+
898
+ #: templates/job-filters.php:23
899
+ msgid "Category"
900
+ msgstr "Κατηγορία"
901
+
902
+ #: templates/job-filters.php:24
903
+ msgid "All Job Categories"
904
+ msgstr "Όλες οι κατηγορίες θέσεων εργασίας"
905
+
906
+ #: templates/job-submit.php:35
907
+ msgid "Company details"
908
+ msgstr "Στοιχεία της εταιρείας"
909
+
910
+ #: templates/job-submitted.php:4
911
+ msgid ""
912
+ "Job listed successfully. To view your job listing <a href=\"%s\">click "
913
+ "here</a>."
914
+ msgstr "Η αγγελία καταχωρήθηκε με επιτυχία. Για να δείτε την αγγελία σας <a href=\"%s\">πατήστε εδώ</a>."
915
+
916
+ #: templates/job-submitted.php:7
917
+ msgid ""
918
+ "Job submitted successfully. Your job listing will be visible once approved."
919
+ msgstr "Η αγγελία καταχωρήθηκε με επιτυχία. Η αγγελία σας θα είναι ορατή εφόσον εγκριθεί."
920
+
921
+ #: wp-job-manager-functions.php:224
922
+ msgid "Reset"
923
+ msgstr "Επαναφορά"
924
+
925
+ #: wp-job-manager-functions.php:228
926
+ msgid "RSS"
927
+ msgstr "RSS"
928
+
929
+ #: wp-job-manager-functions.php:278
930
+ msgid "Your email address isn&#8217;t correct."
931
+ msgstr "Η διεύθυνση email σας δεν είναι σωστή."
932
+
933
+ #: wp-job-manager-functions.php:281
934
+ msgid "This email is already registered, please choose another one."
935
+ msgstr "Το email έχει ήδη εγγραφεί, επιλέξτε ένα άλλο."
936
+
937
+ #: wp-job-manager-template.php:116
938
+ msgid "Active"
939
+ msgstr "Ενεργό"
940
+
941
+ #: wp-job-manager-template.php:118
942
+ msgid "Expired"
943
+ msgstr "Έληξε"
944
+
945
+ #: wp-job-manager-template.php:120
946
+ msgid "Pending Review"
947
+ msgstr "Εν αναμονή αναθεώρησης"
948
+
949
+ #: wp-job-manager-template.php:122
950
+ msgid "Inactive"
951
+ msgstr "Ανενεργό"
952
+
953
+ #: wp-job-manager-template.php:197
954
+ msgid "Job Application via \"%s\" listing on %s"
955
+ msgstr ""
956
+
957
+ #: wp-job-manager-template.php:255
958
+ msgid "Anywhere"
959
+ msgstr "Οπουδήποτε"
960
+
961
+ #: wp-job-manager.php:97
962
+ msgid "Are you sure you want to delete this job?"
963
+ msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτή την αγγελία"
964
+
965
+ #. Plugin Name of the plugin/theme
966
+ msgid "WP Job Manager"
967
+ msgstr "WP Job Manager"
968
+
969
+ #. Plugin URI of the plugin/theme
970
+ msgid "https://wpjobmanager.com/"
971
+ msgstr ""
972
+
973
+ #. Description of the plugin/theme
974
+ msgid ""
975
+ "Manage job listings from the WordPress admin panel, and allow users to post "
976
+ "jobs directly to your site."
977
+ msgstr "Διαχειριστείτε τις αγγελίες από τον πίνακα ελέγχου, και επιτρέψτε στους χρήστες να δημοσιεύσουν θέσεις εργασίας άμεσα στην ιστοσελίδα σας."
978
+
979
+ #. Author of the plugin/theme
980
+ msgid "Mike Jolley"
981
+ msgstr "Mike Jolley"
982
+
983
+ #. Author URI of the plugin/theme
984
+ msgid "http://mikejolley.com"
985
+ msgstr "http://mikejolley.com"
languages/wp-job-manager-es_DO.mo ADDED
Binary file
languages/wp-job-manager-es_DO.po ADDED
@@ -0,0 +1,984 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2014 WP Job Manager
2
+ # This file is distributed under the same license as the WP Job Manager package.
3
+ # Translators:
4
+ msgid ""
5
+ msgstr ""
6
+ "Project-Id-Version: WP Job Manager\n"
7
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-job-manager\n"
8
+ "POT-Creation-Date: 2014-05-11 11:00:29+00:00\n"
9
+ "PO-Revision-Date: 2014-01-23 18:48+0000\n"
10
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
11
+ "Language-Team: Spanish (Dominican Republic) (http://www.transifex.com/projects/p/wp-job-manager/language/es_DO/)\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: es_DO\n"
16
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
+
18
+ #: includes/admin/class-wp-job-manager-addons.php:50
19
+ #: includes/admin/class-wp-job-manager-admin.php:60
20
+ msgid "WP Job Manager Add-ons"
21
+ msgstr ""
22
+
23
+ #: includes/admin/class-wp-job-manager-addons.php:51
24
+ msgid ""
25
+ "Buying multiple add-ons? <a href=\"%s\">Check out the core add-on bundle "
26
+ "&rarr;</a>"
27
+ msgstr ""
28
+
29
+ #: includes/admin/class-wp-job-manager-admin.php:57
30
+ msgid "Settings"
31
+ msgstr ""
32
+
33
+ #: includes/admin/class-wp-job-manager-admin.php:60
34
+ msgid "Add-ons"
35
+ msgstr ""
36
+
37
+ #: includes/admin/class-wp-job-manager-cpt.php:44
38
+ #: includes/admin/class-wp-job-manager-cpt.php:45
39
+ msgid "Approve Jobs"
40
+ msgstr ""
41
+
42
+ #: includes/admin/class-wp-job-manager-cpt.php:47
43
+ #: includes/admin/class-wp-job-manager-cpt.php:48
44
+ msgid "Expire Jobs"
45
+ msgstr ""
46
+
47
+ #: includes/admin/class-wp-job-manager-cpt.php:135
48
+ #: includes/admin/class-wp-job-manager-cpt.php:137
49
+ msgid "%s approved"
50
+ msgstr ""
51
+
52
+ #: includes/admin/class-wp-job-manager-cpt.php:155
53
+ #: includes/admin/class-wp-job-manager-cpt.php:157
54
+ msgid "%s expired"
55
+ msgstr ""
56
+
57
+ #: includes/admin/class-wp-job-manager-cpt.php:200
58
+ msgid "Select a category"
59
+ msgstr ""
60
+
61
+ #: includes/admin/class-wp-job-manager-cpt.php:233
62
+ msgid "Job position title"
63
+ msgstr ""
64
+
65
+ #: includes/admin/class-wp-job-manager-cpt.php:249
66
+ msgid "Job listing updated. <a href=\"%s\">View Job</a>"
67
+ msgstr ""
68
+
69
+ #: includes/admin/class-wp-job-manager-cpt.php:250
70
+ msgid "Custom field updated."
71
+ msgstr ""
72
+
73
+ #: includes/admin/class-wp-job-manager-cpt.php:251
74
+ msgid "Custom field deleted."
75
+ msgstr ""
76
+
77
+ #: includes/admin/class-wp-job-manager-cpt.php:252
78
+ msgid "Job listing updated."
79
+ msgstr ""
80
+
81
+ #: includes/admin/class-wp-job-manager-cpt.php:253
82
+ msgid "Job listing restored to revision from %s"
83
+ msgstr ""
84
+
85
+ #: includes/admin/class-wp-job-manager-cpt.php:254
86
+ msgid "Job listing published. <a href=\"%s\">View Job</a>"
87
+ msgstr ""
88
+
89
+ #: includes/admin/class-wp-job-manager-cpt.php:255
90
+ msgid "Job listing saved."
91
+ msgstr ""
92
+
93
+ #: includes/admin/class-wp-job-manager-cpt.php:256
94
+ msgid "Job listing submitted. <a target=\"_blank\" href=\"%s\">Preview Job</a>"
95
+ msgstr ""
96
+
97
+ #: includes/admin/class-wp-job-manager-cpt.php:257
98
+ msgid ""
99
+ "Job listing scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" "
100
+ "href=\"%2$s\">Preview Job</a>"
101
+ msgstr ""
102
+
103
+ #: includes/admin/class-wp-job-manager-cpt.php:258
104
+ msgid "M j, Y @ G:i"
105
+ msgstr ""
106
+
107
+ #: includes/admin/class-wp-job-manager-cpt.php:259
108
+ msgid "Job listing draft updated. <a target=\"_blank\" href=\"%s\">Preview Job</a>"
109
+ msgstr ""
110
+
111
+ #: includes/admin/class-wp-job-manager-cpt.php:278
112
+ msgid "Type"
113
+ msgstr ""
114
+
115
+ #: includes/admin/class-wp-job-manager-cpt.php:279
116
+ msgid "Position"
117
+ msgstr ""
118
+
119
+ #: includes/admin/class-wp-job-manager-cpt.php:280
120
+ msgid "Posted"
121
+ msgstr ""
122
+
123
+ #: includes/admin/class-wp-job-manager-cpt.php:281
124
+ #: templates/job-dashboard.php:9
125
+ msgid "Expires"
126
+ msgstr ""
127
+
128
+ #: includes/admin/class-wp-job-manager-cpt.php:283
129
+ msgid "Categories"
130
+ msgstr ""
131
+
132
+ #: includes/admin/class-wp-job-manager-cpt.php:284
133
+ msgid "Featured?"
134
+ msgstr ""
135
+
136
+ #: includes/admin/class-wp-job-manager-cpt.php:285
137
+ #: templates/job-dashboard.php:10
138
+ msgid "Filled?"
139
+ msgstr ""
140
+
141
+ #: includes/admin/class-wp-job-manager-cpt.php:286
142
+ #: templates/job-dashboard.php:8
143
+ msgid "Status"
144
+ msgstr ""
145
+
146
+ #: includes/admin/class-wp-job-manager-cpt.php:287
147
+ msgid "Actions"
148
+ msgstr ""
149
+
150
+ #: includes/admin/class-wp-job-manager-cpt.php:310
151
+ msgid "Job ID: %d"
152
+ msgstr ""
153
+
154
+ #: includes/admin/class-wp-job-manager-cpt.php:336
155
+ #: includes/admin/class-wp-job-manager-cpt.php:341
156
+ msgid "M j, Y"
157
+ msgstr ""
158
+
159
+ #: includes/admin/class-wp-job-manager-cpt.php:337
160
+ msgid "by a guest"
161
+ msgstr ""
162
+
163
+ #: includes/admin/class-wp-job-manager-cpt.php:337
164
+ msgid "by %s"
165
+ msgstr ""
166
+
167
+ #: includes/admin/class-wp-job-manager-cpt.php:354
168
+ msgid "Approve"
169
+ msgstr ""
170
+
171
+ #: includes/admin/class-wp-job-manager-cpt.php:361
172
+ msgid "View"
173
+ msgstr ""
174
+
175
+ #: includes/admin/class-wp-job-manager-cpt.php:366
176
+ #: includes/class-wp-job-manager-post-types.php:162
177
+ #: templates/job-dashboard.php:33
178
+ msgid "Edit"
179
+ msgstr ""
180
+
181
+ #: includes/admin/class-wp-job-manager-cpt.php:371
182
+ #: templates/job-dashboard.php:43
183
+ msgid "Delete"
184
+ msgstr ""
185
+
186
+ #: includes/admin/class-wp-job-manager-settings.php:42
187
+ #: includes/class-wp-job-manager-post-types.php:138
188
+ #: includes/class-wp-job-manager-post-types.php:228
189
+ msgid "Job Listings"
190
+ msgstr ""
191
+
192
+ #: includes/admin/class-wp-job-manager-settings.php:48
193
+ msgid "Jobs per page"
194
+ msgstr ""
195
+
196
+ #: includes/admin/class-wp-job-manager-settings.php:49
197
+ msgid "How many jobs should be shown per page by default?"
198
+ msgstr ""
199
+
200
+ #: includes/admin/class-wp-job-manager-settings.php:55
201
+ msgid "Filled positions"
202
+ msgstr ""
203
+
204
+ #: includes/admin/class-wp-job-manager-settings.php:56
205
+ msgid "Hide filled positions"
206
+ msgstr ""
207
+
208
+ #: includes/admin/class-wp-job-manager-settings.php:57
209
+ msgid "If enabled, filled positions will be hidden from the job list."
210
+ msgstr ""
211
+
212
+ #: includes/admin/class-wp-job-manager-settings.php:64
213
+ msgid "Job categories"
214
+ msgstr ""
215
+
216
+ #: includes/admin/class-wp-job-manager-settings.php:65
217
+ msgid "Enable job categories"
218
+ msgstr ""
219
+
220
+ #: includes/admin/class-wp-job-manager-settings.php:66
221
+ msgid ""
222
+ "Choose whether to enable job categories. Categories must be setup by an "
223
+ "admin for users to choose during job submission."
224
+ msgstr ""
225
+
226
+ #: includes/admin/class-wp-job-manager-settings.php:73
227
+ msgid "Job Submission"
228
+ msgstr ""
229
+
230
+ #: includes/admin/class-wp-job-manager-settings.php:78
231
+ msgid "Account creation"
232
+ msgstr ""
233
+
234
+ #: includes/admin/class-wp-job-manager-settings.php:79
235
+ msgid "Allow account creation"
236
+ msgstr ""
237
+
238
+ #: includes/admin/class-wp-job-manager-settings.php:80
239
+ msgid ""
240
+ "If enabled, non-logged in users will be able to create an account by "
241
+ "entering their email address on the job submission form."
242
+ msgstr ""
243
+
244
+ #: includes/admin/class-wp-job-manager-settings.php:87
245
+ msgid "Account Role"
246
+ msgstr ""
247
+
248
+ #: includes/admin/class-wp-job-manager-settings.php:88
249
+ msgid ""
250
+ "If you enable registration on your job submission form, choose a role for "
251
+ "the new user."
252
+ msgstr ""
253
+
254
+ #: includes/admin/class-wp-job-manager-settings.php:95
255
+ msgid "Account required"
256
+ msgstr ""
257
+
258
+ #: includes/admin/class-wp-job-manager-settings.php:96
259
+ msgid "Job submission requires an account"
260
+ msgstr ""
261
+
262
+ #: includes/admin/class-wp-job-manager-settings.php:97
263
+ msgid ""
264
+ "If disabled, non-logged in users will be able to submit job listings without"
265
+ " creating an account."
266
+ msgstr ""
267
+
268
+ #: includes/admin/class-wp-job-manager-settings.php:104
269
+ msgid "Approval Required"
270
+ msgstr ""
271
+
272
+ #: includes/admin/class-wp-job-manager-settings.php:105
273
+ msgid "New submissions require admin approval"
274
+ msgstr ""
275
+
276
+ #: includes/admin/class-wp-job-manager-settings.php:106
277
+ msgid "If enabled, new submissions will be inactive, pending admin approval."
278
+ msgstr ""
279
+
280
+ #: includes/admin/class-wp-job-manager-settings.php:113
281
+ msgid "Listing duration"
282
+ msgstr ""
283
+
284
+ #: includes/admin/class-wp-job-manager-settings.php:114
285
+ msgid ""
286
+ "How many <strong>days</strong> listings are live before expiring. Can be "
287
+ "left blank to never expire."
288
+ msgstr ""
289
+
290
+ #: includes/admin/class-wp-job-manager-settings.php:120
291
+ msgid "Application method"
292
+ msgstr ""
293
+
294
+ #: includes/admin/class-wp-job-manager-settings.php:121
295
+ msgid "Choose what employers can use for their job application method."
296
+ msgstr ""
297
+
298
+ #: includes/admin/class-wp-job-manager-settings.php:124
299
+ msgid "Email address or website URL"
300
+ msgstr ""
301
+
302
+ #: includes/admin/class-wp-job-manager-settings.php:125
303
+ msgid "Email addresses only"
304
+ msgstr ""
305
+
306
+ #: includes/admin/class-wp-job-manager-settings.php:126
307
+ msgid "Website URLs only"
308
+ msgstr ""
309
+
310
+ #: includes/admin/class-wp-job-manager-settings.php:132
311
+ msgid "Submit Page Slug"
312
+ msgstr ""
313
+
314
+ #: includes/admin/class-wp-job-manager-settings.php:133
315
+ msgid ""
316
+ "Enter the slug of the page where you have placed the [submit_job_form] "
317
+ "shortcode. This lets the plugin know where the form is located."
318
+ msgstr ""
319
+
320
+ #: includes/admin/class-wp-job-manager-settings.php:185
321
+ msgid "Settings successfully saved"
322
+ msgstr ""
323
+
324
+ #: includes/admin/class-wp-job-manager-settings.php:264
325
+ msgid "Save Changes"
326
+ msgstr ""
327
+
328
+ #: includes/admin/class-wp-job-manager-writepanels.php:27
329
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:130
330
+ msgid "Job location"
331
+ msgstr ""
332
+
333
+ #: includes/admin/class-wp-job-manager-writepanels.php:28
334
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:134
335
+ msgid "e.g. \"London, UK\", \"New York\", \"Houston, TX\""
336
+ msgstr ""
337
+
338
+ #: includes/admin/class-wp-job-manager-writepanels.php:29
339
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:131
340
+ msgid ""
341
+ "Leave this blank if the job can be done from anywhere (i.e. telecommuting)"
342
+ msgstr ""
343
+
344
+ #: includes/admin/class-wp-job-manager-writepanels.php:32
345
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:115
346
+ msgid "Application email/URL"
347
+ msgstr ""
348
+
349
+ #: includes/admin/class-wp-job-manager-writepanels.php:33
350
+ msgid "URL or email which applicants use to apply"
351
+ msgstr ""
352
+
353
+ #: includes/admin/class-wp-job-manager-writepanels.php:36
354
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:172
355
+ msgid "Company name"
356
+ msgstr ""
357
+
358
+ #: includes/admin/class-wp-job-manager-writepanels.php:40
359
+ msgid "Company website"
360
+ msgstr ""
361
+
362
+ #: includes/admin/class-wp-job-manager-writepanels.php:44
363
+ msgid "Company tagline"
364
+ msgstr ""
365
+
366
+ #: includes/admin/class-wp-job-manager-writepanels.php:45
367
+ msgid "Brief description about the company"
368
+ msgstr ""
369
+
370
+ #: includes/admin/class-wp-job-manager-writepanels.php:48
371
+ msgid "Company Twitter"
372
+ msgstr ""
373
+
374
+ #: includes/admin/class-wp-job-manager-writepanels.php:52
375
+ msgid "Company logo"
376
+ msgstr ""
377
+
378
+ #: includes/admin/class-wp-job-manager-writepanels.php:53
379
+ msgid "URL to the company logo"
380
+ msgstr ""
381
+
382
+ #: includes/admin/class-wp-job-manager-writepanels.php:57
383
+ msgid "Position filled?"
384
+ msgstr ""
385
+
386
+ #: includes/admin/class-wp-job-manager-writepanels.php:61
387
+ msgid "Feature this job listing?"
388
+ msgstr ""
389
+
390
+ #: includes/admin/class-wp-job-manager-writepanels.php:63
391
+ msgid ""
392
+ "Featured listings will be sticky during searches, and can be styled "
393
+ "differently."
394
+ msgstr ""
395
+
396
+ #: includes/admin/class-wp-job-manager-writepanels.php:66
397
+ msgid "Job Expires"
398
+ msgstr ""
399
+
400
+ #: includes/admin/class-wp-job-manager-writepanels.php:67
401
+ msgid "yyyy-mm-dd"
402
+ msgstr ""
403
+
404
+ #: includes/admin/class-wp-job-manager-writepanels.php:70
405
+ msgid "Posted by"
406
+ msgstr ""
407
+
408
+ #: includes/admin/class-wp-job-manager-writepanels.php:83
409
+ msgid "Job Listing Data"
410
+ msgstr ""
411
+
412
+ #: includes/admin/class-wp-job-manager-writepanels.php:101
413
+ msgid "Use file"
414
+ msgstr ""
415
+
416
+ #: includes/admin/class-wp-job-manager-writepanels.php:101
417
+ msgid "Upload"
418
+ msgstr ""
419
+
420
+ #: includes/admin/class-wp-job-manager-writepanels.php:269
421
+ msgid "Guest user"
422
+ msgstr ""
423
+
424
+ #: includes/class-wp-job-manager-ajax.php:111
425
+ msgid "Showing %s&ldquo;%s&rdquo; %sjobs"
426
+ msgstr ""
427
+
428
+ #: includes/class-wp-job-manager-ajax.php:113
429
+ msgid "Showing all %s%sjobs"
430
+ msgstr ""
431
+
432
+ #: includes/class-wp-job-manager-ajax.php:116
433
+ msgid "located in &ldquo;%s&rdquo;"
434
+ msgstr ""
435
+
436
+ #: includes/class-wp-job-manager-geocode.php:139
437
+ msgid "No results found"
438
+ msgstr ""
439
+
440
+ #: includes/class-wp-job-manager-geocode.php:143
441
+ msgid "Query limit reached"
442
+ msgstr ""
443
+
444
+ #: includes/class-wp-job-manager-geocode.php:149
445
+ #: includes/class-wp-job-manager-geocode.php:153
446
+ #: includes/class-wp-job-manager-geocode.php:157
447
+ msgid "Geocoding error"
448
+ msgstr ""
449
+
450
+ #: includes/class-wp-job-manager-install.php:39
451
+ msgid "Employer"
452
+ msgstr ""
453
+
454
+ #: includes/class-wp-job-manager-post-types.php:48
455
+ msgid "Job Category"
456
+ msgstr ""
457
+
458
+ #: includes/class-wp-job-manager-post-types.php:49
459
+ msgid "Job Categories"
460
+ msgstr ""
461
+
462
+ #: includes/class-wp-job-manager-post-types.php:53
463
+ msgctxt "Job category slug - resave permalinks after changing this"
464
+ msgid "job-category"
465
+ msgstr ""
466
+
467
+ #: includes/class-wp-job-manager-post-types.php:70
468
+ #: includes/class-wp-job-manager-post-types.php:113
469
+ #: includes/class-wp-job-manager-post-types.php:167
470
+ msgid "Search %s"
471
+ msgstr ""
472
+
473
+ #: includes/class-wp-job-manager-post-types.php:71
474
+ #: includes/class-wp-job-manager-post-types.php:114
475
+ #: includes/class-wp-job-manager-post-types.php:159
476
+ msgid "All %s"
477
+ msgstr ""
478
+
479
+ #: includes/class-wp-job-manager-post-types.php:72
480
+ #: includes/class-wp-job-manager-post-types.php:115
481
+ #: includes/class-wp-job-manager-post-types.php:170
482
+ msgid "Parent %s"
483
+ msgstr ""
484
+
485
+ #: includes/class-wp-job-manager-post-types.php:73
486
+ #: includes/class-wp-job-manager-post-types.php:116
487
+ msgid "Parent %s:"
488
+ msgstr ""
489
+
490
+ #: includes/class-wp-job-manager-post-types.php:74
491
+ #: includes/class-wp-job-manager-post-types.php:117
492
+ #: includes/class-wp-job-manager-post-types.php:163
493
+ msgid "Edit %s"
494
+ msgstr ""
495
+
496
+ #: includes/class-wp-job-manager-post-types.php:75
497
+ #: includes/class-wp-job-manager-post-types.php:118
498
+ msgid "Update %s"
499
+ msgstr ""
500
+
501
+ #: includes/class-wp-job-manager-post-types.php:76
502
+ #: includes/class-wp-job-manager-post-types.php:119
503
+ msgid "Add New %s"
504
+ msgstr ""
505
+
506
+ #: includes/class-wp-job-manager-post-types.php:77
507
+ #: includes/class-wp-job-manager-post-types.php:120
508
+ msgid "New %s Name"
509
+ msgstr ""
510
+
511
+ #: includes/class-wp-job-manager-post-types.php:92
512
+ msgid "Job Type"
513
+ msgstr ""
514
+
515
+ #: includes/class-wp-job-manager-post-types.php:93
516
+ msgid "Job Types"
517
+ msgstr ""
518
+
519
+ #: includes/class-wp-job-manager-post-types.php:97
520
+ msgctxt "Job type slug - resave permalinks after changing this"
521
+ msgid "job-type"
522
+ msgstr ""
523
+
524
+ #: includes/class-wp-job-manager-post-types.php:137
525
+ msgid "Job Listing"
526
+ msgstr ""
527
+
528
+ #: includes/class-wp-job-manager-post-types.php:141
529
+ msgctxt "Post type archive slug - resave permalinks after changing this"
530
+ msgid "jobs"
531
+ msgstr ""
532
+
533
+ #: includes/class-wp-job-manager-post-types.php:147
534
+ msgctxt "Job permalink - resave permalinks after changing this"
535
+ msgid "job"
536
+ msgstr ""
537
+
538
+ #: includes/class-wp-job-manager-post-types.php:160
539
+ msgid "Add New"
540
+ msgstr ""
541
+
542
+ #: includes/class-wp-job-manager-post-types.php:161
543
+ msgid "Add %s"
544
+ msgstr ""
545
+
546
+ #: includes/class-wp-job-manager-post-types.php:164
547
+ msgid "New %s"
548
+ msgstr ""
549
+
550
+ #: includes/class-wp-job-manager-post-types.php:165
551
+ #: includes/class-wp-job-manager-post-types.php:166
552
+ msgid "View %s"
553
+ msgstr ""
554
+
555
+ #: includes/class-wp-job-manager-post-types.php:168
556
+ msgid "No %s found"
557
+ msgstr ""
558
+
559
+ #: includes/class-wp-job-manager-post-types.php:169
560
+ msgid "No %s found in trash"
561
+ msgstr ""
562
+
563
+ #: includes/class-wp-job-manager-post-types.php:172
564
+ msgid "This is where you can create and manage job listings."
565
+ msgstr ""
566
+
567
+ #: includes/class-wp-job-manager-post-types.php:207
568
+ msgctxt "job_listing"
569
+ msgid "Expired"
570
+ msgstr ""
571
+
572
+ #: includes/class-wp-job-manager-post-types.php:212
573
+ msgid "Expired <span class=\"count\">(%s)</span>"
574
+ msgid_plural "Expired <span class=\"count\">(%s)</span>"
575
+ msgstr[0] ""
576
+ msgstr[1] ""
577
+
578
+ #: includes/class-wp-job-manager-shortcodes.php:61
579
+ msgid "Invalid Job ID"
580
+ msgstr ""
581
+
582
+ #: includes/class-wp-job-manager-shortcodes.php:67
583
+ msgid "This job is already filled"
584
+ msgstr ""
585
+
586
+ #: includes/class-wp-job-manager-shortcodes.php:73
587
+ msgid "%s has been filled"
588
+ msgstr ""
589
+
590
+ #: includes/class-wp-job-manager-shortcodes.php:78
591
+ msgid "This job is already not filled"
592
+ msgstr ""
593
+
594
+ #: includes/class-wp-job-manager-shortcodes.php:84
595
+ msgid "%s has been marked as not filled"
596
+ msgstr ""
597
+
598
+ #: includes/class-wp-job-manager-shortcodes.php:91
599
+ msgid "%s has been deleted"
600
+ msgstr ""
601
+
602
+ #: includes/class-wp-job-manager-shortcodes.php:111
603
+ msgid "You need to be signed in to manage your job listings."
604
+ msgstr ""
605
+
606
+ #: includes/class-wp-job-manager-shortcodes.php:204
607
+ #: includes/class-wp-job-manager-shortcodes.php:235
608
+ msgid "Load more job listings"
609
+ msgstr ""
610
+
611
+ #: includes/class-wp-job-manager-widgets.php:139
612
+ msgid "Display a list of the most recent jobs on your site."
613
+ msgstr ""
614
+
615
+ #: includes/class-wp-job-manager-widgets.php:141
616
+ msgid "Recent Job Listings"
617
+ msgstr ""
618
+
619
+ #: includes/class-wp-job-manager-widgets.php:145
620
+ msgid "Recent Jobs"
621
+ msgstr ""
622
+
623
+ #: includes/class-wp-job-manager-widgets.php:146
624
+ msgid "Title"
625
+ msgstr ""
626
+
627
+ #: includes/class-wp-job-manager-widgets.php:154
628
+ msgid "Number of jobs to show"
629
+ msgstr ""
630
+
631
+ #: includes/forms/class-wp-job-manager-form-edit-job.php:43
632
+ msgid "Invalid job"
633
+ msgstr ""
634
+
635
+ #: includes/forms/class-wp-job-manager-form-edit-job.php:86
636
+ msgid "Update job listing"
637
+ msgstr ""
638
+
639
+ #: includes/forms/class-wp-job-manager-form-edit-job.php:112
640
+ msgid "Your changes have been saved."
641
+ msgstr ""
642
+
643
+ #: includes/forms/class-wp-job-manager-form-edit-job.php:112
644
+ msgid "View Job Listing &rarr;"
645
+ msgstr ""
646
+
647
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:22
648
+ msgid "Submit Details"
649
+ msgstr ""
650
+
651
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:28
652
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:606
653
+ msgid "Preview"
654
+ msgstr ""
655
+
656
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:34
657
+ msgid "Done"
658
+ msgstr ""
659
+
660
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:107
661
+ msgid "Application email"
662
+ msgstr ""
663
+
664
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:108
665
+ msgid "you@yourdomain.com"
666
+ msgstr ""
667
+
668
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:111
669
+ msgid "Application URL"
670
+ msgstr ""
671
+
672
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:112
673
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:182
674
+ msgid "http://"
675
+ msgstr ""
676
+
677
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:116
678
+ msgid "Enter an email address or website URL"
679
+ msgstr ""
680
+
681
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:123
682
+ msgid "Job title"
683
+ msgstr ""
684
+
685
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:138
686
+ msgid "Job type"
687
+ msgstr ""
688
+
689
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:147
690
+ msgid "Job category"
691
+ msgstr ""
692
+
693
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:156
694
+ msgid "Description"
695
+ msgstr ""
696
+
697
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:175
698
+ msgid "Enter the name of the company"
699
+ msgstr ""
700
+
701
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:179
702
+ #: templates/content-single-job_listing.php:36
703
+ msgid "Website"
704
+ msgstr ""
705
+
706
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:186
707
+ msgid "Tagline"
708
+ msgstr ""
709
+
710
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:189
711
+ msgid "Briefly describe your company"
712
+ msgstr ""
713
+
714
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:194
715
+ msgid "Twitter username"
716
+ msgstr ""
717
+
718
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:197
719
+ msgid "@yourcompany"
720
+ msgstr ""
721
+
722
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:201
723
+ msgid "Logo"
724
+ msgstr ""
725
+
726
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:314
727
+ msgid "%s is a required field"
728
+ msgstr ""
729
+
730
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:325
731
+ msgid "Please enter a valid application email address"
732
+ msgstr ""
733
+
734
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:330
735
+ msgid "Please enter a valid application URL"
736
+ msgstr ""
737
+
738
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:335
739
+ msgid "Please enter a valid application email address or URL"
740
+ msgstr ""
741
+
742
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:456
743
+ msgid "Preview job listing &rarr;"
744
+ msgstr ""
745
+
746
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:492
747
+ msgid "You must be signed in to post a new job listing."
748
+ msgstr ""
749
+
750
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:600
751
+ msgid "Submit Listing &rarr;"
752
+ msgstr ""
753
+
754
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:601
755
+ msgid "&larr; Edit listing"
756
+ msgstr ""
757
+
758
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:684
759
+ msgid "\"%s\" needs to be one of the following file types: %s"
760
+ msgstr ""
761
+
762
+ #: templates/account-signin.php:4
763
+ msgid "Your account"
764
+ msgstr ""
765
+
766
+ #: templates/account-signin.php:8
767
+ msgid "You are currently signed in as <strong>%s</strong>."
768
+ msgstr ""
769
+
770
+ #: templates/account-signin.php:11
771
+ msgid "Sign out"
772
+ msgstr ""
773
+
774
+ #: templates/account-signin.php:21
775
+ msgid "Have an account?"
776
+ msgstr ""
777
+
778
+ #: templates/account-signin.php:23
779
+ msgid "Sign in"
780
+ msgstr ""
781
+
782
+ #: templates/account-signin.php:27
783
+ msgid ""
784
+ "If you don&rsquo;t have an account you can %screate one below by entering "
785
+ "your email address. A password will be automatically emailed to you."
786
+ msgstr ""
787
+
788
+ #: templates/account-signin.php:27
789
+ msgid "optionally"
790
+ msgstr ""
791
+
792
+ #: templates/account-signin.php:31
793
+ msgid "You must sign in to create a new job listing."
794
+ msgstr ""
795
+
796
+ #: templates/account-signin.php:38
797
+ msgid "Your email"
798
+ msgstr ""
799
+
800
+ #: templates/account-signin.php:38 templates/job-submit.php:24
801
+ #: templates/job-submit.php:41
802
+ msgid "(optional)"
803
+ msgstr ""
804
+
805
+ #: templates/content-job_listing.php:16
806
+ #: templates/content-single-job_listing.php:21
807
+ #: templates/content-summary-job_listing.php:14
808
+ msgid "Posted %s ago"
809
+ msgstr ""
810
+
811
+ #: templates/content-no-jobs-found.php:1
812
+ msgid "No more jobs found matching your selection."
813
+ msgstr ""
814
+
815
+ #: templates/content-single-job_listing.php:8
816
+ msgid "This job listing has expired"
817
+ msgstr ""
818
+
819
+ #: templates/content-single-job_listing.php:24
820
+ msgid "This position has been filled"
821
+ msgstr ""
822
+
823
+ #: templates/form-fields/file-field.php:6
824
+ msgid "remove"
825
+ msgstr ""
826
+
827
+ #: templates/form-fields/file-field.php:6
828
+ msgid "or"
829
+ msgstr ""
830
+
831
+ #: templates/form-fields/file-field.php:16
832
+ msgid "Max. file size: %s."
833
+ msgstr ""
834
+
835
+ #: templates/job-application-email.php:1
836
+ msgid ""
837
+ "To apply for this job <strong>email your details to</strong> <a "
838
+ "class=\"job_application_email\" href=\"mailto:%1$s%2$s\">%1$s</a>"
839
+ msgstr ""
840
+
841
+ #: templates/job-application-email.php:4
842
+ msgid "Apply using webmail: "
843
+ msgstr ""
844
+
845
+ #: templates/job-application-url.php:1
846
+ msgid ""
847
+ "To apply for this job please visit the following URL: <a href=\"%1$s\" "
848
+ "target=\"_blank\">%1$s &rarr;</a>"
849
+ msgstr ""
850
+
851
+ #: templates/job-application.php:5
852
+ msgid "Apply for job"
853
+ msgstr ""
854
+
855
+ #: templates/job-dashboard.php:2
856
+ msgid ""
857
+ "Your job listings are shown in the table below. Expired listings will be "
858
+ "automatically removed after 30 days."
859
+ msgstr ""
860
+
861
+ #: templates/job-dashboard.php:6
862
+ msgid "Job Title"
863
+ msgstr ""
864
+
865
+ #: templates/job-dashboard.php:7
866
+ msgid "Date Posted"
867
+ msgstr ""
868
+
869
+ #: templates/job-dashboard.php:16
870
+ msgid "You do not have any active job listings."
871
+ msgstr ""
872
+
873
+ #: templates/job-dashboard.php:36
874
+ msgid "Mark not filled"
875
+ msgstr ""
876
+
877
+ #: templates/job-dashboard.php:38
878
+ msgid "Mark filled"
879
+ msgstr ""
880
+
881
+ #: templates/job-filters.php:8
882
+ msgid "Keywords"
883
+ msgstr ""
884
+
885
+ #: templates/job-filters.php:9
886
+ msgid "All Jobs"
887
+ msgstr ""
888
+
889
+ #: templates/job-filters.php:13
890
+ msgid "Location"
891
+ msgstr ""
892
+
893
+ #: templates/job-filters.php:14
894
+ msgid "Any Location"
895
+ msgstr ""
896
+
897
+ #: templates/job-filters.php:23
898
+ msgid "Category"
899
+ msgstr ""
900
+
901
+ #: templates/job-filters.php:24
902
+ msgid "All Job Categories"
903
+ msgstr ""
904
+
905
+ #: templates/job-submit.php:35
906
+ msgid "Company details"
907
+ msgstr ""
908
+
909
+ #: templates/job-submitted.php:4
910
+ msgid ""
911
+ "Job listed successfully. To view your job listing <a href=\"%s\">click "
912
+ "here</a>."
913
+ msgstr ""
914
+
915
+ #: templates/job-submitted.php:7
916
+ msgid ""
917
+ "Job submitted successfully. Your job listing will be visible once approved."
918
+ msgstr ""
919
+
920
+ #: wp-job-manager-functions.php:224
921
+ msgid "Reset"
922
+ msgstr ""
923
+
924
+ #: wp-job-manager-functions.php:228
925
+ msgid "RSS"
926
+ msgstr ""
927
+
928
+ #: wp-job-manager-functions.php:278
929
+ msgid "Your email address isn&#8217;t correct."
930
+ msgstr ""
931
+
932
+ #: wp-job-manager-functions.php:281
933
+ msgid "This email is already registered, please choose another one."
934
+ msgstr ""
935
+
936
+ #: wp-job-manager-template.php:116
937
+ msgid "Active"
938
+ msgstr ""
939
+
940
+ #: wp-job-manager-template.php:118
941
+ msgid "Expired"
942
+ msgstr ""
943
+
944
+ #: wp-job-manager-template.php:120
945
+ msgid "Pending Review"
946
+ msgstr ""
947
+
948
+ #: wp-job-manager-template.php:122
949
+ msgid "Inactive"
950
+ msgstr ""
951
+
952
+ #: wp-job-manager-template.php:197
953
+ msgid "Job Application via \"%s\" listing on %s"
954
+ msgstr ""
955
+
956
+ #: wp-job-manager-template.php:255
957
+ msgid "Anywhere"
958
+ msgstr ""
959
+
960
+ #: wp-job-manager.php:97
961
+ msgid "Are you sure you want to delete this job?"
962
+ msgstr ""
963
+
964
+ #. Plugin Name of the plugin/theme
965
+ msgid "WP Job Manager"
966
+ msgstr ""
967
+
968
+ #. Plugin URI of the plugin/theme
969
+ msgid "https://wpjobmanager.com/"
970
+ msgstr ""
971
+
972
+ #. Description of the plugin/theme
973
+ msgid ""
974
+ "Manage job listings from the WordPress admin panel, and allow users to post "
975
+ "jobs directly to your site."
976
+ msgstr ""
977
+
978
+ #. Author of the plugin/theme
979
+ msgid "Mike Jolley"
980
+ msgstr ""
981
+
982
+ #. Author URI of the plugin/theme
983
+ msgid "http://mikejolley.com"
984
+ msgstr ""
languages/wp-job-manager-es_ES.mo CHANGED
Binary file
languages/wp-job-manager-es_ES.po CHANGED
@@ -1,14 +1,15 @@
1
  # Copyright (C) 2014 WP Job Manager
2
  # This file is distributed under the same license as the WP Job Manager package.
3
  # Translators:
 
4
  # IlDucci <victor.gonfraile@hotmail.es>, 2014
5
  msgid ""
6
  msgstr ""
7
  "Project-Id-Version: WP Job Manager\n"
8
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-job-manager\n"
9
  "POT-Creation-Date: 2014-05-11 11:00:29+00:00\n"
10
- "PO-Revision-Date: 2014-06-28 16:31+0000\n"
11
- "Last-Translator: IlDucci <victor.gonfraile@hotmail.es>\n"
12
  "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/wp-job-manager/language/es_ES/)\n"
13
  "MIME-Version: 1.0\n"
14
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -43,7 +44,7 @@ msgstr "Aprobar Vacantes"
43
  #: includes/admin/class-wp-job-manager-cpt.php:47
44
  #: includes/admin/class-wp-job-manager-cpt.php:48
45
  msgid "Expire Jobs"
46
- msgstr ""
47
 
48
  #: includes/admin/class-wp-job-manager-cpt.php:135
49
  #: includes/admin/class-wp-job-manager-cpt.php:137
@@ -53,7 +54,7 @@ msgstr "%s aprobado"
53
  #: includes/admin/class-wp-job-manager-cpt.php:155
54
  #: includes/admin/class-wp-job-manager-cpt.php:157
55
  msgid "%s expired"
56
- msgstr ""
57
 
58
  #: includes/admin/class-wp-job-manager-cpt.php:200
59
  msgid "Select a category"
1
  # Copyright (C) 2014 WP Job Manager
2
  # This file is distributed under the same license as the WP Job Manager package.
3
  # Translators:
4
+ # Edouard Scherer <escherer@stagesperou.com>, 2014
5
  # IlDucci <victor.gonfraile@hotmail.es>, 2014
6
  msgid ""
7
  msgstr ""
8
  "Project-Id-Version: WP Job Manager\n"
9
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-job-manager\n"
10
  "POT-Creation-Date: 2014-05-11 11:00:29+00:00\n"
11
+ "PO-Revision-Date: 2014-10-21 17:40+0000\n"
12
+ "Last-Translator: Edouard Scherer <escherer@stagesperou.com>\n"
13
  "Language-Team: Spanish (Spain) (http://www.transifex.com/projects/p/wp-job-manager/language/es_ES/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
44
  #: includes/admin/class-wp-job-manager-cpt.php:47
45
  #: includes/admin/class-wp-job-manager-cpt.php:48
46
  msgid "Expire Jobs"
47
+ msgstr "Ofertas Expiradas"
48
 
49
  #: includes/admin/class-wp-job-manager-cpt.php:135
50
  #: includes/admin/class-wp-job-manager-cpt.php:137
54
  #: includes/admin/class-wp-job-manager-cpt.php:155
55
  #: includes/admin/class-wp-job-manager-cpt.php:157
56
  msgid "%s expired"
57
+ msgstr "%s expirada"
58
 
59
  #: includes/admin/class-wp-job-manager-cpt.php:200
60
  msgid "Select a category"
languages/wp-job-manager-fi.mo ADDED
Binary file
languages/wp-job-manager-fi.po ADDED
@@ -0,0 +1,985 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2014 WP Job Manager
2
+ # This file is distributed under the same license as the WP Job Manager package.
3
+ # Translators:
4
+ # Uplus Tutoring <info@uplus.fi>, 2014
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: WP Job Manager\n"
8
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-job-manager\n"
9
+ "POT-Creation-Date: 2014-05-11 11:00:29+00:00\n"
10
+ "PO-Revision-Date: 2014-10-18 08:41+0000\n"
11
+ "Last-Translator: Uplus Tutoring <info@uplus.fi>\n"
12
+ "Language-Team: Finnish (http://www.transifex.com/projects/p/wp-job-manager/language/fi/)\n"
13
+ "MIME-Version: 1.0\n"
14
+ "Content-Type: text/plain; charset=UTF-8\n"
15
+ "Content-Transfer-Encoding: 8bit\n"
16
+ "Language: fi\n"
17
+ "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
+
19
+ #: includes/admin/class-wp-job-manager-addons.php:50
20
+ #: includes/admin/class-wp-job-manager-admin.php:60
21
+ msgid "WP Job Manager Add-ons"
22
+ msgstr "WP Job Manager Lisäosat"
23
+
24
+ #: includes/admin/class-wp-job-manager-addons.php:51
25
+ msgid ""
26
+ "Buying multiple add-ons? <a href=\"%s\">Check out the core add-on bundle "
27
+ "&rarr;</a>"
28
+ msgstr "Ostatko usampia lisäosia? <a href=\"%s\">Tutustu lisäosapaketteihin &rarr;</a>"
29
+
30
+ #: includes/admin/class-wp-job-manager-admin.php:57
31
+ msgid "Settings"
32
+ msgstr "Asetukset"
33
+
34
+ #: includes/admin/class-wp-job-manager-admin.php:60
35
+ msgid "Add-ons"
36
+ msgstr "Lisäosat"
37
+
38
+ #: includes/admin/class-wp-job-manager-cpt.php:44
39
+ #: includes/admin/class-wp-job-manager-cpt.php:45
40
+ msgid "Approve Jobs"
41
+ msgstr "Hyväksy työpaikkoja"
42
+
43
+ #: includes/admin/class-wp-job-manager-cpt.php:47
44
+ #: includes/admin/class-wp-job-manager-cpt.php:48
45
+ msgid "Expire Jobs"
46
+ msgstr "Expire Jobs"
47
+
48
+ #: includes/admin/class-wp-job-manager-cpt.php:135
49
+ #: includes/admin/class-wp-job-manager-cpt.php:137
50
+ msgid "%s approved"
51
+ msgstr "%s hyväksytty"
52
+
53
+ #: includes/admin/class-wp-job-manager-cpt.php:155
54
+ #: includes/admin/class-wp-job-manager-cpt.php:157
55
+ msgid "%s expired"
56
+ msgstr "%s vanhentunut"
57
+
58
+ #: includes/admin/class-wp-job-manager-cpt.php:200
59
+ msgid "Select a category"
60
+ msgstr "Valitse kategoria"
61
+
62
+ #: includes/admin/class-wp-job-manager-cpt.php:233
63
+ msgid "Job position title"
64
+ msgstr "Työpaikan otsikko"
65
+
66
+ #: includes/admin/class-wp-job-manager-cpt.php:249
67
+ msgid "Job listing updated. <a href=\"%s\">View Job</a>"
68
+ msgstr "Job listing updated. <a href=\"%s\">View Job</a>"
69
+
70
+ #: includes/admin/class-wp-job-manager-cpt.php:250
71
+ msgid "Custom field updated."
72
+ msgstr "Custom field updated."
73
+
74
+ #: includes/admin/class-wp-job-manager-cpt.php:251
75
+ msgid "Custom field deleted."
76
+ msgstr "Custom field deleted."
77
+
78
+ #: includes/admin/class-wp-job-manager-cpt.php:252
79
+ msgid "Job listing updated."
80
+ msgstr "Job listing updated."
81
+
82
+ #: includes/admin/class-wp-job-manager-cpt.php:253
83
+ msgid "Job listing restored to revision from %s"
84
+ msgstr "Job listing restored to revision from %s"
85
+
86
+ #: includes/admin/class-wp-job-manager-cpt.php:254
87
+ msgid "Job listing published. <a href=\"%s\">View Job</a>"
88
+ msgstr "Job listing published. <a href=\"%s\">View Job</a>"
89
+
90
+ #: includes/admin/class-wp-job-manager-cpt.php:255
91
+ msgid "Job listing saved."
92
+ msgstr "Job listing saved."
93
+
94
+ #: includes/admin/class-wp-job-manager-cpt.php:256
95
+ msgid "Job listing submitted. <a target=\"_blank\" href=\"%s\">Preview Job</a>"
96
+ msgstr "Job listing submitted. <a target=\"_blank\" href=\"%s\">Preview Job</a>"
97
+
98
+ #: includes/admin/class-wp-job-manager-cpt.php:257
99
+ msgid ""
100
+ "Job listing scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" "
101
+ "href=\"%2$s\">Preview Job</a>"
102
+ msgstr "Job listing scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" href=\"%2$s\">Preview Job</a>"
103
+
104
+ #: includes/admin/class-wp-job-manager-cpt.php:258
105
+ msgid "M j, Y @ G:i"
106
+ msgstr "M j, Y @ G:i"
107
+
108
+ #: includes/admin/class-wp-job-manager-cpt.php:259
109
+ msgid "Job listing draft updated. <a target=\"_blank\" href=\"%s\">Preview Job</a>"
110
+ msgstr "Job listing draft updated. <a target=\"_blank\" href=\"%s\">Preview Job</a>"
111
+
112
+ #: includes/admin/class-wp-job-manager-cpt.php:278
113
+ msgid "Type"
114
+ msgstr "Tyyppi"
115
+
116
+ #: includes/admin/class-wp-job-manager-cpt.php:279
117
+ msgid "Position"
118
+ msgstr "Tehtävä"
119
+
120
+ #: includes/admin/class-wp-job-manager-cpt.php:280
121
+ msgid "Posted"
122
+ msgstr "Julkaistu"
123
+
124
+ #: includes/admin/class-wp-job-manager-cpt.php:281
125
+ #: templates/job-dashboard.php:9
126
+ msgid "Expires"
127
+ msgstr "Vanhentuu"
128
+
129
+ #: includes/admin/class-wp-job-manager-cpt.php:283
130
+ msgid "Categories"
131
+ msgstr "Kategorioita"
132
+
133
+ #: includes/admin/class-wp-job-manager-cpt.php:284
134
+ msgid "Featured?"
135
+ msgstr "Featured?"
136
+
137
+ #: includes/admin/class-wp-job-manager-cpt.php:285
138
+ #: templates/job-dashboard.php:10
139
+ msgid "Filled?"
140
+ msgstr "Täytetty?"
141
+
142
+ #: includes/admin/class-wp-job-manager-cpt.php:286
143
+ #: templates/job-dashboard.php:8
144
+ msgid "Status"
145
+ msgstr "Status"
146
+
147
+ #: includes/admin/class-wp-job-manager-cpt.php:287
148
+ msgid "Actions"
149
+ msgstr "Actions"
150
+
151
+ #: includes/admin/class-wp-job-manager-cpt.php:310
152
+ msgid "Job ID: %d"
153
+ msgstr "Työpaikka ID: %d"
154
+
155
+ #: includes/admin/class-wp-job-manager-cpt.php:336
156
+ #: includes/admin/class-wp-job-manager-cpt.php:341
157
+ msgid "M j, Y"
158
+ msgstr "M j, Y"
159
+
160
+ #: includes/admin/class-wp-job-manager-cpt.php:337
161
+ msgid "by a guest"
162
+ msgstr "by a guest"
163
+
164
+ #: includes/admin/class-wp-job-manager-cpt.php:337
165
+ msgid "by %s"
166
+ msgstr "by %s"
167
+
168
+ #: includes/admin/class-wp-job-manager-cpt.php:354
169
+ msgid "Approve"
170
+ msgstr "Hyväksy"
171
+
172
+ #: includes/admin/class-wp-job-manager-cpt.php:361
173
+ msgid "View"
174
+ msgstr "Näytä"
175
+
176
+ #: includes/admin/class-wp-job-manager-cpt.php:366
177
+ #: includes/class-wp-job-manager-post-types.php:162
178
+ #: templates/job-dashboard.php:33
179
+ msgid "Edit"
180
+ msgstr "Muokkaa"
181
+
182
+ #: includes/admin/class-wp-job-manager-cpt.php:371
183
+ #: templates/job-dashboard.php:43
184
+ msgid "Delete"
185
+ msgstr "Poista"
186
+
187
+ #: includes/admin/class-wp-job-manager-settings.php:42
188
+ #: includes/class-wp-job-manager-post-types.php:138
189
+ #: includes/class-wp-job-manager-post-types.php:228
190
+ msgid "Job Listings"
191
+ msgstr "Työpaikkailmoitukset"
192
+
193
+ #: includes/admin/class-wp-job-manager-settings.php:48
194
+ msgid "Jobs per page"
195
+ msgstr "Työpaikkaa/sivu"
196
+
197
+ #: includes/admin/class-wp-job-manager-settings.php:49
198
+ msgid "How many jobs should be shown per page by default?"
199
+ msgstr "Kuinka monta työpaikkaa näytetään oletuksena sivulla?"
200
+
201
+ #: includes/admin/class-wp-job-manager-settings.php:55
202
+ msgid "Filled positions"
203
+ msgstr "Täytetyt tehtävät"
204
+
205
+ #: includes/admin/class-wp-job-manager-settings.php:56
206
+ msgid "Hide filled positions"
207
+ msgstr "Piilota täytetyt tehtävät"
208
+
209
+ #: includes/admin/class-wp-job-manager-settings.php:57
210
+ msgid "If enabled, filled positions will be hidden from the job list."
211
+ msgstr "If enabled, filled positions will be hidden from the job list."
212
+
213
+ #: includes/admin/class-wp-job-manager-settings.php:64
214
+ msgid "Job categories"
215
+ msgstr "Job categories"
216
+
217
+ #: includes/admin/class-wp-job-manager-settings.php:65
218
+ msgid "Enable job categories"
219
+ msgstr "Enable job categories"
220
+
221
+ #: includes/admin/class-wp-job-manager-settings.php:66
222
+ msgid ""
223
+ "Choose whether to enable job categories. Categories must be setup by an "
224
+ "admin for users to choose during job submission."
225
+ msgstr "Choose whether to enable job categories. Categories must be setup by an admin for users to choose during job submission."
226
+
227
+ #: includes/admin/class-wp-job-manager-settings.php:73
228
+ msgid "Job Submission"
229
+ msgstr "Job Submission"
230
+
231
+ #: includes/admin/class-wp-job-manager-settings.php:78
232
+ msgid "Account creation"
233
+ msgstr "Tilin luominen"
234
+
235
+ #: includes/admin/class-wp-job-manager-settings.php:79
236
+ msgid "Allow account creation"
237
+ msgstr "Salli tilin luominen"
238
+
239
+ #: includes/admin/class-wp-job-manager-settings.php:80
240
+ msgid ""
241
+ "If enabled, non-logged in users will be able to create an account by "
242
+ "entering their email address on the job submission form."
243
+ msgstr "If enabled, non-logged in users will be able to create an account by entering their email address on the job submission form."
244
+
245
+ #: includes/admin/class-wp-job-manager-settings.php:87
246
+ msgid "Account Role"
247
+ msgstr "Tilin rooli"
248
+
249
+ #: includes/admin/class-wp-job-manager-settings.php:88
250
+ msgid ""
251
+ "If you enable registration on your job submission form, choose a role for "
252
+ "the new user."
253
+ msgstr "If you enable registration on your job submission form, choose a role for the new user."
254
+
255
+ #: includes/admin/class-wp-job-manager-settings.php:95
256
+ msgid "Account required"
257
+ msgstr "Käyttäjätili vaaditaan"
258
+
259
+ #: includes/admin/class-wp-job-manager-settings.php:96
260
+ msgid "Job submission requires an account"
261
+ msgstr "Job submission requires an account"
262
+
263
+ #: includes/admin/class-wp-job-manager-settings.php:97
264
+ msgid ""
265
+ "If disabled, non-logged in users will be able to submit job listings without"
266
+ " creating an account."
267
+ msgstr "If disabled, non-logged in users will be able to submit job listings without creating an account."
268
+
269
+ #: includes/admin/class-wp-job-manager-settings.php:104
270
+ msgid "Approval Required"
271
+ msgstr "Hyväksyntä vaaditaan"
272
+
273
+ #: includes/admin/class-wp-job-manager-settings.php:105
274
+ msgid "New submissions require admin approval"
275
+ msgstr "New submissions require admin approval"
276
+
277
+ #: includes/admin/class-wp-job-manager-settings.php:106
278
+ msgid "If enabled, new submissions will be inactive, pending admin approval."
279
+ msgstr "If enabled, new submissions will be inactive, pending admin approval."
280
+
281
+ #: includes/admin/class-wp-job-manager-settings.php:113
282
+ msgid "Listing duration"
283
+ msgstr "Listauksen kesto"
284
+
285
+ #: includes/admin/class-wp-job-manager-settings.php:114
286
+ msgid ""
287
+ "How many <strong>days</strong> listings are live before expiring. Can be "
288
+ "left blank to never expire."
289
+ msgstr "Kuinka monta <strong>päivää</strong> listaukset ovat avoinna. Voidaan jättää tyhjäksi, jolloin ilmoitukset eivät vanhene koskaan."
290
+
291
+ #: includes/admin/class-wp-job-manager-settings.php:120
292
+ msgid "Application method"
293
+ msgstr "Hakumenettely"
294
+
295
+ #: includes/admin/class-wp-job-manager-settings.php:121
296
+ msgid "Choose what employers can use for their job application method."
297
+ msgstr "Choose what employers can use for their job application method."
298
+
299
+ #: includes/admin/class-wp-job-manager-settings.php:124
300
+ msgid "Email address or website URL"
301
+ msgstr "Sähköposti tai URL-osoitteet"
302
+
303
+ #: includes/admin/class-wp-job-manager-settings.php:125
304
+ msgid "Email addresses only"
305
+ msgstr "Vain sähköpostiosoitteet"
306
+
307
+ #: includes/admin/class-wp-job-manager-settings.php:126
308
+ msgid "Website URLs only"
309
+ msgstr "Website URLs only"
310
+
311
+ #: includes/admin/class-wp-job-manager-settings.php:132
312
+ msgid "Submit Page Slug"
313
+ msgstr "Submit Page Slug"
314
+
315
+ #: includes/admin/class-wp-job-manager-settings.php:133
316
+ msgid ""
317
+ "Enter the slug of the page where you have placed the [submit_job_form] "
318
+ "shortcode. This lets the plugin know where the form is located."
319
+ msgstr "Enter the slug of the page where you have placed the [submit_job_form] shortcode. This lets the plugin know where the form is located."
320
+
321
+ #: includes/admin/class-wp-job-manager-settings.php:185
322
+ msgid "Settings successfully saved"
323
+ msgstr "Asetukset tallennettu onnistuneesti"
324
+
325
+ #: includes/admin/class-wp-job-manager-settings.php:264
326
+ msgid "Save Changes"
327
+ msgstr "Tallenna muutokset"
328
+
329
+ #: includes/admin/class-wp-job-manager-writepanels.php:27
330
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:130
331
+ msgid "Job location"
332
+ msgstr "Työpaikan sijainti"
333
+
334
+ #: includes/admin/class-wp-job-manager-writepanels.php:28
335
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:134
336
+ msgid "e.g. \"London, UK\", \"New York\", \"Houston, TX\""
337
+ msgstr "esim. \"Helsinki\", \"Espoo\", \"Turku\""
338
+
339
+ #: includes/admin/class-wp-job-manager-writepanels.php:29
340
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:131
341
+ msgid ""
342
+ "Leave this blank if the job can be done from anywhere (i.e. telecommuting)"
343
+ msgstr "Jätä tämä tyhjäksi jos työ ei ole paikkaan sidottu."
344
+
345
+ #: includes/admin/class-wp-job-manager-writepanels.php:32
346
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:115
347
+ msgid "Application email/URL"
348
+ msgstr "Hakemuksen sähköposti/URL"
349
+
350
+ #: includes/admin/class-wp-job-manager-writepanels.php:33
351
+ msgid "URL or email which applicants use to apply"
352
+ msgstr "URL- tai sähköpostiosoite jota hakijat voivat käyttää"
353
+
354
+ #: includes/admin/class-wp-job-manager-writepanels.php:36
355
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:172
356
+ msgid "Company name"
357
+ msgstr "Yrityksen nimi"
358
+
359
+ #: includes/admin/class-wp-job-manager-writepanels.php:40
360
+ msgid "Company website"
361
+ msgstr "Yrityksen kotisivu"
362
+
363
+ #: includes/admin/class-wp-job-manager-writepanels.php:44
364
+ msgid "Company tagline"
365
+ msgstr "Yrityksen iskulause"
366
+
367
+ #: includes/admin/class-wp-job-manager-writepanels.php:45
368
+ msgid "Brief description about the company"
369
+ msgstr "Lyhyt yrityskuvaus"
370
+
371
+ #: includes/admin/class-wp-job-manager-writepanels.php:48
372
+ msgid "Company Twitter"
373
+ msgstr "Yrityksen Twitter"
374
+
375
+ #: includes/admin/class-wp-job-manager-writepanels.php:52
376
+ msgid "Company logo"
377
+ msgstr "Yrityksen logo"
378
+
379
+ #: includes/admin/class-wp-job-manager-writepanels.php:53
380
+ msgid "URL to the company logo"
381
+ msgstr "Yrityksen logon URL"
382
+
383
+ #: includes/admin/class-wp-job-manager-writepanels.php:57
384
+ msgid "Position filled?"
385
+ msgstr "Tehtävä täytetty?"
386
+
387
+ #: includes/admin/class-wp-job-manager-writepanels.php:61
388
+ msgid "Feature this job listing?"
389
+ msgstr "Feature this job listing?"
390
+
391
+ #: includes/admin/class-wp-job-manager-writepanels.php:63
392
+ msgid ""
393
+ "Featured listings will be sticky during searches, and can be styled "
394
+ "differently."
395
+ msgstr "Featured listings will be sticky during searches, and can be styled differently."
396
+
397
+ #: includes/admin/class-wp-job-manager-writepanels.php:66
398
+ msgid "Job Expires"
399
+ msgstr "Työpaikka vanhenee"
400
+
401
+ #: includes/admin/class-wp-job-manager-writepanels.php:67
402
+ msgid "yyyy-mm-dd"
403
+ msgstr "yyyy-mm-dd"
404
+
405
+ #: includes/admin/class-wp-job-manager-writepanels.php:70
406
+ msgid "Posted by"
407
+ msgstr "Julkaistu"
408
+
409
+ #: includes/admin/class-wp-job-manager-writepanels.php:83
410
+ msgid "Job Listing Data"
411
+ msgstr "Job Listing Data"
412
+
413
+ #: includes/admin/class-wp-job-manager-writepanels.php:101
414
+ msgid "Use file"
415
+ msgstr "Käytä tiedostoa"
416
+
417
+ #: includes/admin/class-wp-job-manager-writepanels.php:101
418
+ msgid "Upload"
419
+ msgstr "Lataa palvelimeen"
420
+
421
+ #: includes/admin/class-wp-job-manager-writepanels.php:269
422
+ msgid "Guest user"
423
+ msgstr "Vierailijat"
424
+
425
+ #: includes/class-wp-job-manager-ajax.php:111
426
+ msgid "Showing %s&ldquo;%s&rdquo; %sjobs"
427
+ msgstr "Näytetään %s&ldquo;%s&rdquo; %styöpaikat"
428
+
429
+ #: includes/class-wp-job-manager-ajax.php:113
430
+ msgid "Showing all %s%sjobs"
431
+ msgstr "Näytetään kaikki %s%styöpaikat"
432
+
433
+ #: includes/class-wp-job-manager-ajax.php:116
434
+ msgid "located in &ldquo;%s&rdquo;"
435
+ msgstr "sijaitsee &ldquo;%s&rdquo;"
436
+
437
+ #: includes/class-wp-job-manager-geocode.php:139
438
+ msgid "No results found"
439
+ msgstr "Tuloksia ei löytynyt"
440
+
441
+ #: includes/class-wp-job-manager-geocode.php:143
442
+ msgid "Query limit reached"
443
+ msgstr "Query limit reached"
444
+
445
+ #: includes/class-wp-job-manager-geocode.php:149
446
+ #: includes/class-wp-job-manager-geocode.php:153
447
+ #: includes/class-wp-job-manager-geocode.php:157
448
+ msgid "Geocoding error"
449
+ msgstr "Geocoding error"
450
+
451
+ #: includes/class-wp-job-manager-install.php:39
452
+ msgid "Employer"
453
+ msgstr "Työnantaja"
454
+
455
+ #: includes/class-wp-job-manager-post-types.php:48
456
+ msgid "Job Category"
457
+ msgstr "Kategoria"
458
+
459
+ #: includes/class-wp-job-manager-post-types.php:49
460
+ msgid "Job Categories"
461
+ msgstr "Job categories"
462
+
463
+ #: includes/class-wp-job-manager-post-types.php:53
464
+ msgctxt "Job category slug - resave permalinks after changing this"
465
+ msgid "job-category"
466
+ msgstr "Kategoria"
467
+
468
+ #: includes/class-wp-job-manager-post-types.php:70
469
+ #: includes/class-wp-job-manager-post-types.php:113
470
+ #: includes/class-wp-job-manager-post-types.php:167
471
+ msgid "Search %s"
472
+ msgstr "Etsi %s"
473
+
474
+ #: includes/class-wp-job-manager-post-types.php:71
475
+ #: includes/class-wp-job-manager-post-types.php:114
476
+ #: includes/class-wp-job-manager-post-types.php:159
477
+ msgid "All %s"
478
+ msgstr "Kaikki %s"
479
+
480
+ #: includes/class-wp-job-manager-post-types.php:72
481
+ #: includes/class-wp-job-manager-post-types.php:115
482
+ #: includes/class-wp-job-manager-post-types.php:170
483
+ msgid "Parent %s"
484
+ msgstr "Vanhempi %s"
485
+
486
+ #: includes/class-wp-job-manager-post-types.php:73
487
+ #: includes/class-wp-job-manager-post-types.php:116
488
+ msgid "Parent %s:"
489
+ msgstr "Vanhempi %s"
490
+
491
+ #: includes/class-wp-job-manager-post-types.php:74
492
+ #: includes/class-wp-job-manager-post-types.php:117
493
+ #: includes/class-wp-job-manager-post-types.php:163
494
+ msgid "Edit %s"
495
+ msgstr "Muokkaa %s"
496
+
497
+ #: includes/class-wp-job-manager-post-types.php:75
498
+ #: includes/class-wp-job-manager-post-types.php:118
499
+ msgid "Update %s"
500
+ msgstr "Päivitä %s"
501
+
502
+ #: includes/class-wp-job-manager-post-types.php:76
503
+ #: includes/class-wp-job-manager-post-types.php:119
504
+ msgid "Add New %s"
505
+ msgstr "Lisää Uusi %s"
506
+
507
+ #: includes/class-wp-job-manager-post-types.php:77
508
+ #: includes/class-wp-job-manager-post-types.php:120
509
+ msgid "New %s Name"
510
+ msgstr "Uusi %s Nimi"
511
+
512
+ #: includes/class-wp-job-manager-post-types.php:92
513
+ msgid "Job Type"
514
+ msgstr "Työtyypit"
515
+
516
+ #: includes/class-wp-job-manager-post-types.php:93
517
+ msgid "Job Types"
518
+ msgstr "Työtyypit"
519
+
520
+ #: includes/class-wp-job-manager-post-types.php:97
521
+ msgctxt "Job type slug - resave permalinks after changing this"
522
+ msgid "job-type"
523
+ msgstr "Työtyypit"
524
+
525
+ #: includes/class-wp-job-manager-post-types.php:137
526
+ msgid "Job Listing"
527
+ msgstr "työpaikkalistaukset"
528
+
529
+ #: includes/class-wp-job-manager-post-types.php:141
530
+ msgctxt "Post type archive slug - resave permalinks after changing this"
531
+ msgid "jobs"
532
+ msgstr "työpaikat"
533
+
534
+ #: includes/class-wp-job-manager-post-types.php:147
535
+ msgctxt "Job permalink - resave permalinks after changing this"
536
+ msgid "job"
537
+ msgstr "työpaikka"
538
+
539
+ #: includes/class-wp-job-manager-post-types.php:160
540
+ msgid "Add New"
541
+ msgstr "Lisää Uusi"
542
+
543
+ #: includes/class-wp-job-manager-post-types.php:161
544
+ msgid "Add %s"
545
+ msgstr "Lisää %s"
546
+
547
+ #: includes/class-wp-job-manager-post-types.php:164
548
+ msgid "New %s"
549
+ msgstr "Uusi %s"
550
+
551
+ #: includes/class-wp-job-manager-post-types.php:165
552
+ #: includes/class-wp-job-manager-post-types.php:166
553
+ msgid "View %s"
554
+ msgstr "Näytä %s"
555
+
556
+ #: includes/class-wp-job-manager-post-types.php:168
557
+ msgid "No %s found"
558
+ msgstr "%s ei löytynyt"
559
+
560
+ #: includes/class-wp-job-manager-post-types.php:169
561
+ msgid "No %s found in trash"
562
+ msgstr "%s ei löytynyt roskakorista"
563
+
564
+ #: includes/class-wp-job-manager-post-types.php:172
565
+ msgid "This is where you can create and manage job listings."
566
+ msgstr "Täällä voi luoda ja hallita työpaikkalistauksia"
567
+
568
+ #: includes/class-wp-job-manager-post-types.php:207
569
+ msgctxt "job_listing"
570
+ msgid "Expired"
571
+ msgstr "Vanhentunut"
572
+
573
+ #: includes/class-wp-job-manager-post-types.php:212
574
+ msgid "Expired <span class=\"count\">(%s)</span>"
575
+ msgid_plural "Expired <span class=\"count\">(%s)</span>"
576
+ msgstr[0] "Vanhentunut <span class=\"count\">(%s)</span>"
577
+ msgstr[1] "Vanhentunut <span class=\"count\">(%s)</span>"
578
+
579
+ #: includes/class-wp-job-manager-shortcodes.php:61
580
+ msgid "Invalid Job ID"
581
+ msgstr "Virheellinen Työpaikka ID"
582
+
583
+ #: includes/class-wp-job-manager-shortcodes.php:67
584
+ msgid "This job is already filled"
585
+ msgstr "Tämä työpaikka on jo täytetty"
586
+
587
+ #: includes/class-wp-job-manager-shortcodes.php:73
588
+ msgid "%s has been filled"
589
+ msgstr "%s on täytetty"
590
+
591
+ #: includes/class-wp-job-manager-shortcodes.php:78
592
+ msgid "This job is already not filled"
593
+ msgstr "Tämä työpaikka on jo täytetty"
594
+
595
+ #: includes/class-wp-job-manager-shortcodes.php:84
596
+ msgid "%s has been marked as not filled"
597
+ msgstr "%s on merkitty avoimeksi"
598
+
599
+ #: includes/class-wp-job-manager-shortcodes.php:91
600
+ msgid "%s has been deleted"
601
+ msgstr "%s on poistettu"
602
+
603
+ #: includes/class-wp-job-manager-shortcodes.php:111
604
+ msgid "You need to be signed in to manage your job listings."
605
+ msgstr "You need to be signed in to manage your job listings."
606
+
607
+ #: includes/class-wp-job-manager-shortcodes.php:204
608
+ #: includes/class-wp-job-manager-shortcodes.php:235
609
+ msgid "Load more job listings"
610
+ msgstr "Lataa lisää työpaikkalistauksia"
611
+
612
+ #: includes/class-wp-job-manager-widgets.php:139
613
+ msgid "Display a list of the most recent jobs on your site."
614
+ msgstr "Display a list of the most recent jobs on your site."
615
+
616
+ #: includes/class-wp-job-manager-widgets.php:141
617
+ msgid "Recent Job Listings"
618
+ msgstr "Viimeisimmät työpaikkalistaukset"
619
+
620
+ #: includes/class-wp-job-manager-widgets.php:145
621
+ msgid "Recent Jobs"
622
+ msgstr "Viimeisimmät työpaikat"
623
+
624
+ #: includes/class-wp-job-manager-widgets.php:146
625
+ msgid "Title"
626
+ msgstr "Titteli"
627
+
628
+ #: includes/class-wp-job-manager-widgets.php:154
629
+ msgid "Number of jobs to show"
630
+ msgstr "Näytettävien työpaikkojen lukumäärä"
631
+
632
+ #: includes/forms/class-wp-job-manager-form-edit-job.php:43
633
+ msgid "Invalid job"
634
+ msgstr "Invalid job"
635
+
636
+ #: includes/forms/class-wp-job-manager-form-edit-job.php:86
637
+ msgid "Update job listing"
638
+ msgstr "Päivitä työpaikat"
639
+
640
+ #: includes/forms/class-wp-job-manager-form-edit-job.php:112
641
+ msgid "Your changes have been saved."
642
+ msgstr "Tekemäsi muutokset on tallennettu."
643
+
644
+ #: includes/forms/class-wp-job-manager-form-edit-job.php:112
645
+ msgid "View Job Listing &rarr;"
646
+ msgstr "Katso työpaikkoja &rarr;"
647
+
648
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:22
649
+ msgid "Submit Details"
650
+ msgstr "Lähetä tiedot"
651
+
652
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:28
653
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:606
654
+ msgid "Preview"
655
+ msgstr "Esikatselu"
656
+
657
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:34
658
+ msgid "Done"
659
+ msgstr "Valmis"
660
+
661
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:107
662
+ msgid "Application email"
663
+ msgstr "Sähköpostihakemus"
664
+
665
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:108
666
+ msgid "you@yourdomain.com"
667
+ msgstr "you@yourdomain.com"
668
+
669
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:111
670
+ msgid "Application URL"
671
+ msgstr "Hakemuksen URL"
672
+
673
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:112
674
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:182
675
+ msgid "http://"
676
+ msgstr "http://"
677
+
678
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:116
679
+ msgid "Enter an email address or website URL"
680
+ msgstr "Anna sähköpostiosoite tai kotisivun URL"
681
+
682
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:123
683
+ msgid "Job title"
684
+ msgstr "Titteli"
685
+
686
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:138
687
+ msgid "Job type"
688
+ msgstr "Työtyypit"
689
+
690
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:147
691
+ msgid "Job category"
692
+ msgstr "Kategoria"
693
+
694
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:156
695
+ msgid "Description"
696
+ msgstr "Kuvaus"
697
+
698
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:175
699
+ msgid "Enter the name of the company"
700
+ msgstr "Yrityksen nimi"
701
+
702
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:179
703
+ #: templates/content-single-job_listing.php:36
704
+ msgid "Website"
705
+ msgstr "Kotisivu"
706
+
707
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:186
708
+ msgid "Tagline"
709
+ msgstr "Iskulause"
710
+
711
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:189
712
+ msgid "Briefly describe your company"
713
+ msgstr "Kuvaa yritystäsi lyhyesti"
714
+
715
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:194
716
+ msgid "Twitter username"
717
+ msgstr "Twitter käyttäjätunnus"
718
+
719
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:197
720
+ msgid "@yourcompany"
721
+ msgstr "@yrityksesi"
722
+
723
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:201
724
+ msgid "Logo"
725
+ msgstr "Logo"
726
+
727
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:314
728
+ msgid "%s is a required field"
729
+ msgstr "%s on pakollinen kenttä"
730
+
731
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:325
732
+ msgid "Please enter a valid application email address"
733
+ msgstr "Anna oikea sähköpostiosoite"
734
+
735
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:330
736
+ msgid "Please enter a valid application URL"
737
+ msgstr "Anna oikea URL-osoite"
738
+
739
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:335
740
+ msgid "Please enter a valid application email address or URL"
741
+ msgstr "Anna oikea sähköpostiosoite tai URL-osoite."
742
+
743
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:456
744
+ msgid "Preview job listing &rarr;"
745
+ msgstr "Preview job listing &rarr;"
746
+
747
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:492
748
+ msgid "You must be signed in to post a new job listing."
749
+ msgstr "You must be signed in to post a new job listing."
750
+
751
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:600
752
+ msgid "Submit Listing &rarr;"
753
+ msgstr "Submit Listing &rarr;"
754
+
755
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:601
756
+ msgid "&larr; Edit listing"
757
+ msgstr "&larr; Edit listing"
758
+
759
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:684
760
+ msgid "\"%s\" needs to be one of the following file types: %s"
761
+ msgstr "\"%s\" on oltava jokin seuraavista tiedostomuodoista: %s"
762
+
763
+ #: templates/account-signin.php:4
764
+ msgid "Your account"
765
+ msgstr "Käyttäjätilisi"
766
+
767
+ #: templates/account-signin.php:8
768
+ msgid "You are currently signed in as <strong>%s</strong>."
769
+ msgstr "Olet kirjautunut sisään nimellä <strong>%s</strong>."
770
+
771
+ #: templates/account-signin.php:11
772
+ msgid "Sign out"
773
+ msgstr "Kirjaudu ulos"
774
+
775
+ #: templates/account-signin.php:21
776
+ msgid "Have an account?"
777
+ msgstr "Onko sinulla käyttäjätili?"
778
+
779
+ #: templates/account-signin.php:23
780
+ msgid "Sign in"
781
+ msgstr "Kirjaudu sisään"
782
+
783
+ #: templates/account-signin.php:27
784
+ msgid ""
785
+ "If you don&rsquo;t have an account you can %screate one below by entering "
786
+ "your email address. A password will be automatically emailed to you."
787
+ msgstr "Mikäli sinulla ei ole&rsquo;t käyttäjätiliä %luo tili antamalla sähköpostiosoitteesi. Salasanasi lähetetään sinulle sähköpostitse."
788
+
789
+ #: templates/account-signin.php:27
790
+ msgid "optionally"
791
+ msgstr "valinnainen"
792
+
793
+ #: templates/account-signin.php:31
794
+ msgid "You must sign in to create a new job listing."
795
+ msgstr "You must sign in to create a new job listing."
796
+
797
+ #: templates/account-signin.php:38
798
+ msgid "Your email"
799
+ msgstr "Sähköposti"
800
+
801
+ #: templates/account-signin.php:38 templates/job-submit.php:24
802
+ #: templates/job-submit.php:41
803
+ msgid "(optional)"
804
+ msgstr "(valinnainen)"
805
+
806
+ #: templates/content-job_listing.php:16
807
+ #: templates/content-single-job_listing.php:21
808
+ #: templates/content-summary-job_listing.php:14
809
+ msgid "Posted %s ago"
810
+ msgstr "Julkaistu %s sitten"
811
+
812
+ #: templates/content-no-jobs-found.php:1
813
+ msgid "No more jobs found matching your selection."
814
+ msgstr "Hakuasi vastaavia työpaikkoja ei löytynyt."
815
+
816
+ #: templates/content-single-job_listing.php:8
817
+ msgid "This job listing has expired"
818
+ msgstr "Tämä listaus on vanhentunut"
819
+
820
+ #: templates/content-single-job_listing.php:24
821
+ msgid "This position has been filled"
822
+ msgstr "Tämä paikka on täytetty"
823
+
824
+ #: templates/form-fields/file-field.php:6
825
+ msgid "remove"
826
+ msgstr "poista"
827
+
828
+ #: templates/form-fields/file-field.php:6
829
+ msgid "or"
830
+ msgstr "tai"
831
+
832
+ #: templates/form-fields/file-field.php:16
833
+ msgid "Max. file size: %s."
834
+ msgstr "Max. tiedostokoko: %s"
835
+
836
+ #: templates/job-application-email.php:1
837
+ msgid ""
838
+ "To apply for this job <strong>email your details to</strong> <a "
839
+ "class=\"job_application_email\" href=\"mailto:%1$s%2$s\">%1$s</a>"
840
+ msgstr "Hae työpaikkaa <strong>lähetä hakemuksesi osoitteeseen</strong> <a class=\"job_application_email\" href=\"mailto:%1$s%2$s\">%1$s</a>"
841
+
842
+ #: templates/job-application-email.php:4
843
+ msgid "Apply using webmail: "
844
+ msgstr "Hae sähköpostitse:"
845
+
846
+ #: templates/job-application-url.php:1
847
+ msgid ""
848
+ "To apply for this job please visit the following URL: <a href=\"%1$s\" "
849
+ "target=\"_blank\">%1$s &rarr;</a>"
850
+ msgstr "Hae työpaikkaa osoitteessa: <a href=\"%1$s\" target=\"_blank\">%1$s &rarr;</a>"
851
+
852
+ #: templates/job-application.php:5
853
+ msgid "Apply for job"
854
+ msgstr "Hae työpaikkaa"
855
+
856
+ #: templates/job-dashboard.php:2
857
+ msgid ""
858
+ "Your job listings are shown in the table below. Expired listings will be "
859
+ "automatically removed after 30 days."
860
+ msgstr "Your job listings are shown in the table below. Expired listings will be automatically removed after 30 days."
861
+
862
+ #: templates/job-dashboard.php:6
863
+ msgid "Job Title"
864
+ msgstr "Titteli"
865
+
866
+ #: templates/job-dashboard.php:7
867
+ msgid "Date Posted"
868
+ msgstr "Julkaisupäivä"
869
+
870
+ #: templates/job-dashboard.php:16
871
+ msgid "You do not have any active job listings."
872
+ msgstr "You do not have any active job listings."
873
+
874
+ #: templates/job-dashboard.php:36
875
+ msgid "Mark not filled"
876
+ msgstr "Merkkaa täytetyksi"
877
+
878
+ #: templates/job-dashboard.php:38
879
+ msgid "Mark filled"
880
+ msgstr "Merkkaa täytetyksi"
881
+
882
+ #: templates/job-filters.php:8
883
+ msgid "Keywords"
884
+ msgstr "Avainsanat"
885
+
886
+ #: templates/job-filters.php:9
887
+ msgid "All Jobs"
888
+ msgstr "Kaikki työpaikat"
889
+
890
+ #: templates/job-filters.php:13
891
+ msgid "Location"
892
+ msgstr "Sijainti"
893
+
894
+ #: templates/job-filters.php:14
895
+ msgid "Any Location"
896
+ msgstr "Kaikki sijainnit"
897
+
898
+ #: templates/job-filters.php:23
899
+ msgid "Category"
900
+ msgstr "Kategoria"
901
+
902
+ #: templates/job-filters.php:24
903
+ msgid "All Job Categories"
904
+ msgstr "Kaikki kategoriat"
905
+
906
+ #: templates/job-submit.php:35
907
+ msgid "Company details"
908
+ msgstr "Yritystiedot"
909
+
910
+ #: templates/job-submitted.php:4
911
+ msgid ""
912
+ "Job listed successfully. To view your job listing <a href=\"%s\">click "
913
+ "here</a>."
914
+ msgstr "Job listed successfully. To view your job listing <a href=\"%s\">click here</a>."
915
+
916
+ #: templates/job-submitted.php:7
917
+ msgid ""
918
+ "Job submitted successfully. Your job listing will be visible once approved."
919
+ msgstr "Job submitted successfully. Your job listing will be visible once approved."
920
+
921
+ #: wp-job-manager-functions.php:224
922
+ msgid "Reset"
923
+ msgstr "Reset"
924
+
925
+ #: wp-job-manager-functions.php:228
926
+ msgid "RSS"
927
+ msgstr "RSS"
928
+
929
+ #: wp-job-manager-functions.php:278
930
+ msgid "Your email address isn&#8217;t correct."
931
+ msgstr "Sähköpostiosoitteesi on&#8217;t virheellinen."
932
+
933
+ #: wp-job-manager-functions.php:281
934
+ msgid "This email is already registered, please choose another one."
935
+ msgstr "Sähköpostiosoite on jo rekisteröity, valitse toinen sähköpostiosoite."
936
+
937
+ #: wp-job-manager-template.php:116
938
+ msgid "Active"
939
+ msgstr "Aktiivinen"
940
+
941
+ #: wp-job-manager-template.php:118
942
+ msgid "Expired"
943
+ msgstr "Vanhentunut"
944
+
945
+ #: wp-job-manager-template.php:120
946
+ msgid "Pending Review"
947
+ msgstr "Pending Review"
948
+
949
+ #: wp-job-manager-template.php:122
950
+ msgid "Inactive"
951
+ msgstr "Passiivinen"
952
+
953
+ #: wp-job-manager-template.php:197
954
+ msgid "Job Application via \"%s\" listing on %s"
955
+ msgstr "Job Application via \"%s\" listing on %s"
956
+
957
+ #: wp-job-manager-template.php:255
958
+ msgid "Anywhere"
959
+ msgstr "Missä tahansa"
960
+
961
+ #: wp-job-manager.php:97
962
+ msgid "Are you sure you want to delete this job?"
963
+ msgstr "Are you sure you want to delete this job?"
964
+
965
+ #. Plugin Name of the plugin/theme
966
+ msgid "WP Job Manager"
967
+ msgstr "WP Job Manager"
968
+
969
+ #. Plugin URI of the plugin/theme
970
+ msgid "https://wpjobmanager.com/"
971
+ msgstr "https://wpjobmanager.com/"
972
+
973
+ #. Description of the plugin/theme
974
+ msgid ""
975
+ "Manage job listings from the WordPress admin panel, and allow users to post "
976
+ "jobs directly to your site."
977
+ msgstr "Manage job listings from the WordPress admin panel, and allow users to post jobs directly to your site."
978
+
979
+ #. Author of the plugin/theme
980
+ msgid "Mike Jolley"
981
+ msgstr "Mike Jolley"
982
+
983
+ #. Author URI of the plugin/theme
984
+ msgid "http://mikejolley.com"
985
+ msgstr "http://mikejolley.com"
languages/wp-job-manager-id_ID.mo ADDED
Binary file
languages/wp-job-manager-id_ID.po ADDED
@@ -0,0 +1,983 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2014 WP Job Manager
2
+ # This file is distributed under the same license as the WP Job Manager package.
3
+ # Translators:
4
+ msgid ""
5
+ msgstr ""
6
+ "Project-Id-Version: WP Job Manager\n"
7
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-job-manager\n"
8
+ "POT-Creation-Date: 2014-05-11 11:00:29+00:00\n"
9
+ "PO-Revision-Date: 2014-01-23 18:48+0000\n"
10
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
11
+ "Language-Team: Indonesian (Indonesia) (http://www.transifex.com/projects/p/wp-job-manager/language/id_ID/)\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: id_ID\n"
16
+ "Plural-Forms: nplurals=1; plural=0;\n"
17
+
18
+ #: includes/admin/class-wp-job-manager-addons.php:50
19
+ #: includes/admin/class-wp-job-manager-admin.php:60
20
+ msgid "WP Job Manager Add-ons"
21
+ msgstr ""
22
+
23
+ #: includes/admin/class-wp-job-manager-addons.php:51
24
+ msgid ""
25
+ "Buying multiple add-ons? <a href=\"%s\">Check out the core add-on bundle "
26
+ "&rarr;</a>"
27
+ msgstr ""
28
+
29
+ #: includes/admin/class-wp-job-manager-admin.php:57
30
+ msgid "Settings"
31
+ msgstr ""
32
+
33
+ #: includes/admin/class-wp-job-manager-admin.php:60
34
+ msgid "Add-ons"
35
+ msgstr ""
36
+
37
+ #: includes/admin/class-wp-job-manager-cpt.php:44
38
+ #: includes/admin/class-wp-job-manager-cpt.php:45
39
+ msgid "Approve Jobs"
40
+ msgstr ""
41
+
42
+ #: includes/admin/class-wp-job-manager-cpt.php:47
43
+ #: includes/admin/class-wp-job-manager-cpt.php:48
44
+ msgid "Expire Jobs"
45
+ msgstr ""
46
+
47
+ #: includes/admin/class-wp-job-manager-cpt.php:135
48
+ #: includes/admin/class-wp-job-manager-cpt.php:137
49
+ msgid "%s approved"
50
+ msgstr ""
51
+
52
+ #: includes/admin/class-wp-job-manager-cpt.php:155
53
+ #: includes/admin/class-wp-job-manager-cpt.php:157
54
+ msgid "%s expired"
55
+ msgstr ""
56
+
57
+ #: includes/admin/class-wp-job-manager-cpt.php:200
58
+ msgid "Select a category"
59
+ msgstr ""
60
+
61
+ #: includes/admin/class-wp-job-manager-cpt.php:233
62
+ msgid "Job position title"
63
+ msgstr ""
64
+
65
+ #: includes/admin/class-wp-job-manager-cpt.php:249
66
+ msgid "Job listing updated. <a href=\"%s\">View Job</a>"
67
+ msgstr ""
68
+
69
+ #: includes/admin/class-wp-job-manager-cpt.php:250
70
+ msgid "Custom field updated."
71
+ msgstr ""
72
+
73
+ #: includes/admin/class-wp-job-manager-cpt.php:251
74
+ msgid "Custom field deleted."
75
+ msgstr ""
76
+
77
+ #: includes/admin/class-wp-job-manager-cpt.php:252
78
+ msgid "Job listing updated."
79
+ msgstr ""
80
+
81
+ #: includes/admin/class-wp-job-manager-cpt.php:253
82
+ msgid "Job listing restored to revision from %s"
83
+ msgstr ""
84
+
85
+ #: includes/admin/class-wp-job-manager-cpt.php:254
86
+ msgid "Job listing published. <a href=\"%s\">View Job</a>"
87
+ msgstr ""
88
+
89
+ #: includes/admin/class-wp-job-manager-cpt.php:255
90
+ msgid "Job listing saved."
91
+ msgstr ""
92
+
93
+ #: includes/admin/class-wp-job-manager-cpt.php:256
94
+ msgid "Job listing submitted. <a target=\"_blank\" href=\"%s\">Preview Job</a>"
95
+ msgstr ""
96
+
97
+ #: includes/admin/class-wp-job-manager-cpt.php:257
98
+ msgid ""
99
+ "Job listing scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" "
100
+ "href=\"%2$s\">Preview Job</a>"
101
+ msgstr ""
102
+
103
+ #: includes/admin/class-wp-job-manager-cpt.php:258
104
+ msgid "M j, Y @ G:i"
105
+ msgstr ""
106
+
107
+ #: includes/admin/class-wp-job-manager-cpt.php:259
108
+ msgid "Job listing draft updated. <a target=\"_blank\" href=\"%s\">Preview Job</a>"
109
+ msgstr ""
110
+
111
+ #: includes/admin/class-wp-job-manager-cpt.php:278
112
+ msgid "Type"
113
+ msgstr ""
114
+
115
+ #: includes/admin/class-wp-job-manager-cpt.php:279
116
+ msgid "Position"
117
+ msgstr ""
118
+
119
+ #: includes/admin/class-wp-job-manager-cpt.php:280
120
+ msgid "Posted"
121
+ msgstr ""
122
+
123
+ #: includes/admin/class-wp-job-manager-cpt.php:281
124
+ #: templates/job-dashboard.php:9
125
+ msgid "Expires"
126
+ msgstr ""
127
+
128
+ #: includes/admin/class-wp-job-manager-cpt.php:283
129
+ msgid "Categories"
130
+ msgstr ""
131
+
132
+ #: includes/admin/class-wp-job-manager-cpt.php:284
133
+ msgid "Featured?"
134
+ msgstr ""
135
+
136
+ #: includes/admin/class-wp-job-manager-cpt.php:285
137
+ #: templates/job-dashboard.php:10
138
+ msgid "Filled?"
139
+ msgstr ""
140
+
141
+ #: includes/admin/class-wp-job-manager-cpt.php:286
142
+ #: templates/job-dashboard.php:8
143
+ msgid "Status"
144
+ msgstr ""
145
+
146
+ #: includes/admin/class-wp-job-manager-cpt.php:287
147
+ msgid "Actions"
148
+ msgstr ""
149
+
150
+ #: includes/admin/class-wp-job-manager-cpt.php:310
151
+ msgid "Job ID: %d"
152
+ msgstr ""
153
+
154
+ #: includes/admin/class-wp-job-manager-cpt.php:336
155
+ #: includes/admin/class-wp-job-manager-cpt.php:341
156
+ msgid "M j, Y"
157
+ msgstr ""
158
+
159
+ #: includes/admin/class-wp-job-manager-cpt.php:337
160
+ msgid "by a guest"
161
+ msgstr ""
162
+
163
+ #: includes/admin/class-wp-job-manager-cpt.php:337
164
+ msgid "by %s"
165
+ msgstr ""
166
+
167
+ #: includes/admin/class-wp-job-manager-cpt.php:354
168
+ msgid "Approve"
169
+ msgstr ""
170
+
171
+ #: includes/admin/class-wp-job-manager-cpt.php:361
172
+ msgid "View"
173
+ msgstr ""
174
+
175
+ #: includes/admin/class-wp-job-manager-cpt.php:366
176
+ #: includes/class-wp-job-manager-post-types.php:162
177
+ #: templates/job-dashboard.php:33
178
+ msgid "Edit"
179
+ msgstr ""
180
+
181
+ #: includes/admin/class-wp-job-manager-cpt.php:371
182
+ #: templates/job-dashboard.php:43
183
+ msgid "Delete"
184
+ msgstr ""
185
+
186
+ #: includes/admin/class-wp-job-manager-settings.php:42
187
+ #: includes/class-wp-job-manager-post-types.php:138
188
+ #: includes/class-wp-job-manager-post-types.php:228
189
+ msgid "Job Listings"
190
+ msgstr ""
191
+
192
+ #: includes/admin/class-wp-job-manager-settings.php:48
193
+ msgid "Jobs per page"
194
+ msgstr ""
195
+
196
+ #: includes/admin/class-wp-job-manager-settings.php:49
197
+ msgid "How many jobs should be shown per page by default?"
198
+ msgstr ""
199
+
200
+ #: includes/admin/class-wp-job-manager-settings.php:55
201
+ msgid "Filled positions"
202
+ msgstr ""
203
+
204
+ #: includes/admin/class-wp-job-manager-settings.php:56
205
+ msgid "Hide filled positions"
206
+ msgstr ""
207
+
208
+ #: includes/admin/class-wp-job-manager-settings.php:57
209
+ msgid "If enabled, filled positions will be hidden from the job list."
210
+ msgstr ""
211
+
212
+ #: includes/admin/class-wp-job-manager-settings.php:64
213
+ msgid "Job categories"
214
+ msgstr ""
215
+
216
+ #: includes/admin/class-wp-job-manager-settings.php:65
217
+ msgid "Enable job categories"
218
+ msgstr ""
219
+
220
+ #: includes/admin/class-wp-job-manager-settings.php:66
221
+ msgid ""
222
+ "Choose whether to enable job categories. Categories must be setup by an "
223
+ "admin for users to choose during job submission."
224
+ msgstr ""
225
+
226
+ #: includes/admin/class-wp-job-manager-settings.php:73
227
+ msgid "Job Submission"
228
+ msgstr ""
229
+
230
+ #: includes/admin/class-wp-job-manager-settings.php:78
231
+ msgid "Account creation"
232
+ msgstr ""
233
+
234
+ #: includes/admin/class-wp-job-manager-settings.php:79
235
+ msgid "Allow account creation"
236
+ msgstr ""
237
+
238
+ #: includes/admin/class-wp-job-manager-settings.php:80
239
+ msgid ""
240
+ "If enabled, non-logged in users will be able to create an account by "
241
+ "entering their email address on the job submission form."
242
+ msgstr ""
243
+
244
+ #: includes/admin/class-wp-job-manager-settings.php:87
245
+ msgid "Account Role"
246
+ msgstr ""
247
+
248
+ #: includes/admin/class-wp-job-manager-settings.php:88
249
+ msgid ""
250
+ "If you enable registration on your job submission form, choose a role for "
251
+ "the new user."
252
+ msgstr ""
253
+
254
+ #: includes/admin/class-wp-job-manager-settings.php:95
255
+ msgid "Account required"
256
+ msgstr ""
257
+
258
+ #: includes/admin/class-wp-job-manager-settings.php:96
259
+ msgid "Job submission requires an account"
260
+ msgstr ""
261
+
262
+ #: includes/admin/class-wp-job-manager-settings.php:97
263
+ msgid ""
264
+ "If disabled, non-logged in users will be able to submit job listings without"
265
+ " creating an account."
266
+ msgstr ""
267
+
268
+ #: includes/admin/class-wp-job-manager-settings.php:104
269
+ msgid "Approval Required"
270
+ msgstr ""
271
+
272
+ #: includes/admin/class-wp-job-manager-settings.php:105
273
+ msgid "New submissions require admin approval"
274
+ msgstr ""
275
+
276
+ #: includes/admin/class-wp-job-manager-settings.php:106
277
+ msgid "If enabled, new submissions will be inactive, pending admin approval."
278
+ msgstr ""
279
+
280
+ #: includes/admin/class-wp-job-manager-settings.php:113
281
+ msgid "Listing duration"
282
+ msgstr ""
283
+
284
+ #: includes/admin/class-wp-job-manager-settings.php:114
285
+ msgid ""
286
+ "How many <strong>days</strong> listings are live before expiring. Can be "
287
+ "left blank to never expire."
288
+ msgstr ""
289
+
290
+ #: includes/admin/class-wp-job-manager-settings.php:120
291
+ msgid "Application method"
292
+ msgstr ""
293
+
294
+ #: includes/admin/class-wp-job-manager-settings.php:121
295
+ msgid "Choose what employers can use for their job application method."
296
+ msgstr ""
297
+
298
+ #: includes/admin/class-wp-job-manager-settings.php:124
299
+ msgid "Email address or website URL"
300
+ msgstr ""
301
+
302
+ #: includes/admin/class-wp-job-manager-settings.php:125
303
+ msgid "Email addresses only"
304
+ msgstr ""
305
+
306
+ #: includes/admin/class-wp-job-manager-settings.php:126
307
+ msgid "Website URLs only"
308
+ msgstr ""
309
+
310
+ #: includes/admin/class-wp-job-manager-settings.php:132
311
+ msgid "Submit Page Slug"
312
+ msgstr ""
313
+
314
+ #: includes/admin/class-wp-job-manager-settings.php:133
315
+ msgid ""
316
+ "Enter the slug of the page where you have placed the [submit_job_form] "
317
+ "shortcode. This lets the plugin know where the form is located."
318
+ msgstr ""
319
+
320
+ #: includes/admin/class-wp-job-manager-settings.php:185
321
+ msgid "Settings successfully saved"
322
+ msgstr ""
323
+
324
+ #: includes/admin/class-wp-job-manager-settings.php:264
325
+ msgid "Save Changes"
326
+ msgstr ""
327
+
328
+ #: includes/admin/class-wp-job-manager-writepanels.php:27
329
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:130
330
+ msgid "Job location"
331
+ msgstr ""
332
+
333
+ #: includes/admin/class-wp-job-manager-writepanels.php:28
334
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:134
335
+ msgid "e.g. \"London, UK\", \"New York\", \"Houston, TX\""
336
+ msgstr ""
337
+
338
+ #: includes/admin/class-wp-job-manager-writepanels.php:29
339
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:131
340
+ msgid ""
341
+ "Leave this blank if the job can be done from anywhere (i.e. telecommuting)"
342
+ msgstr ""
343
+
344
+ #: includes/admin/class-wp-job-manager-writepanels.php:32
345
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:115
346
+ msgid "Application email/URL"
347
+ msgstr ""
348
+
349
+ #: includes/admin/class-wp-job-manager-writepanels.php:33
350
+ msgid "URL or email which applicants use to apply"
351
+ msgstr ""
352
+
353
+ #: includes/admin/class-wp-job-manager-writepanels.php:36
354
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:172
355
+ msgid "Company name"
356
+ msgstr ""
357
+
358
+ #: includes/admin/class-wp-job-manager-writepanels.php:40
359
+ msgid "Company website"
360
+ msgstr ""
361
+
362
+ #: includes/admin/class-wp-job-manager-writepanels.php:44
363
+ msgid "Company tagline"
364
+ msgstr ""
365
+
366
+ #: includes/admin/class-wp-job-manager-writepanels.php:45
367
+ msgid "Brief description about the company"
368
+ msgstr ""
369
+
370
+ #: includes/admin/class-wp-job-manager-writepanels.php:48
371
+ msgid "Company Twitter"
372
+ msgstr ""
373
+
374
+ #: includes/admin/class-wp-job-manager-writepanels.php:52
375
+ msgid "Company logo"
376
+ msgstr ""
377
+
378
+ #: includes/admin/class-wp-job-manager-writepanels.php:53
379
+ msgid "URL to the company logo"
380
+ msgstr ""
381
+
382
+ #: includes/admin/class-wp-job-manager-writepanels.php:57
383
+ msgid "Position filled?"
384
+ msgstr ""
385
+
386
+ #: includes/admin/class-wp-job-manager-writepanels.php:61
387
+ msgid "Feature this job listing?"
388
+ msgstr ""
389
+
390
+ #: includes/admin/class-wp-job-manager-writepanels.php:63
391
+ msgid ""
392
+ "Featured listings will be sticky during searches, and can be styled "
393
+ "differently."
394
+ msgstr ""
395
+
396
+ #: includes/admin/class-wp-job-manager-writepanels.php:66
397
+ msgid "Job Expires"
398
+ msgstr ""
399
+
400
+ #: includes/admin/class-wp-job-manager-writepanels.php:67
401
+ msgid "yyyy-mm-dd"
402
+ msgstr ""
403
+
404
+ #: includes/admin/class-wp-job-manager-writepanels.php:70
405
+ msgid "Posted by"
406
+ msgstr ""
407
+
408
+ #: includes/admin/class-wp-job-manager-writepanels.php:83
409
+ msgid "Job Listing Data"
410
+ msgstr ""
411
+
412
+ #: includes/admin/class-wp-job-manager-writepanels.php:101
413
+ msgid "Use file"
414
+ msgstr ""
415
+
416
+ #: includes/admin/class-wp-job-manager-writepanels.php:101
417
+ msgid "Upload"
418
+ msgstr ""
419
+
420
+ #: includes/admin/class-wp-job-manager-writepanels.php:269
421
+ msgid "Guest user"
422
+ msgstr ""
423
+
424
+ #: includes/class-wp-job-manager-ajax.php:111
425
+ msgid "Showing %s&ldquo;%s&rdquo; %sjobs"
426
+ msgstr ""
427
+
428
+ #: includes/class-wp-job-manager-ajax.php:113
429
+ msgid "Showing all %s%sjobs"
430
+ msgstr ""
431
+
432
+ #: includes/class-wp-job-manager-ajax.php:116
433
+ msgid "located in &ldquo;%s&rdquo;"
434
+ msgstr ""
435
+
436
+ #: includes/class-wp-job-manager-geocode.php:139
437
+ msgid "No results found"
438
+ msgstr ""
439
+
440
+ #: includes/class-wp-job-manager-geocode.php:143
441
+ msgid "Query limit reached"
442
+ msgstr ""
443
+
444
+ #: includes/class-wp-job-manager-geocode.php:149
445
+ #: includes/class-wp-job-manager-geocode.php:153
446
+ #: includes/class-wp-job-manager-geocode.php:157
447
+ msgid "Geocoding error"
448
+ msgstr ""
449
+
450
+ #: includes/class-wp-job-manager-install.php:39
451
+ msgid "Employer"
452
+ msgstr ""
453
+
454
+ #: includes/class-wp-job-manager-post-types.php:48
455
+ msgid "Job Category"
456
+ msgstr ""
457
+
458
+ #: includes/class-wp-job-manager-post-types.php:49
459
+ msgid "Job Categories"
460
+ msgstr ""
461
+
462
+ #: includes/class-wp-job-manager-post-types.php:53
463
+ msgctxt "Job category slug - resave permalinks after changing this"
464
+ msgid "job-category"
465
+ msgstr ""
466
+
467
+ #: includes/class-wp-job-manager-post-types.php:70
468
+ #: includes/class-wp-job-manager-post-types.php:113
469
+ #: includes/class-wp-job-manager-post-types.php:167
470
+ msgid "Search %s"
471
+ msgstr ""
472
+
473
+ #: includes/class-wp-job-manager-post-types.php:71
474
+ #: includes/class-wp-job-manager-post-types.php:114
475
+ #: includes/class-wp-job-manager-post-types.php:159
476
+ msgid "All %s"
477
+ msgstr ""
478
+
479
+ #: includes/class-wp-job-manager-post-types.php:72
480
+ #: includes/class-wp-job-manager-post-types.php:115
481
+ #: includes/class-wp-job-manager-post-types.php:170
482
+ msgid "Parent %s"
483
+ msgstr ""
484
+
485
+ #: includes/class-wp-job-manager-post-types.php:73
486
+ #: includes/class-wp-job-manager-post-types.php:116
487
+ msgid "Parent %s:"
488
+ msgstr ""
489
+
490
+ #: includes/class-wp-job-manager-post-types.php:74
491
+ #: includes/class-wp-job-manager-post-types.php:117
492
+ #: includes/class-wp-job-manager-post-types.php:163
493
+ msgid "Edit %s"
494
+ msgstr ""
495
+
496
+ #: includes/class-wp-job-manager-post-types.php:75
497
+ #: includes/class-wp-job-manager-post-types.php:118
498
+ msgid "Update %s"
499
+ msgstr ""
500
+
501
+ #: includes/class-wp-job-manager-post-types.php:76
502
+ #: includes/class-wp-job-manager-post-types.php:119
503
+ msgid "Add New %s"
504
+ msgstr ""
505
+
506
+ #: includes/class-wp-job-manager-post-types.php:77
507
+ #: includes/class-wp-job-manager-post-types.php:120
508
+ msgid "New %s Name"
509
+ msgstr ""
510
+
511
+ #: includes/class-wp-job-manager-post-types.php:92
512
+ msgid "Job Type"
513
+ msgstr ""
514
+
515
+ #: includes/class-wp-job-manager-post-types.php:93
516
+ msgid "Job Types"
517
+ msgstr ""
518
+
519
+ #: includes/class-wp-job-manager-post-types.php:97
520
+ msgctxt "Job type slug - resave permalinks after changing this"
521
+ msgid "job-type"
522
+ msgstr ""
523
+
524
+ #: includes/class-wp-job-manager-post-types.php:137
525
+ msgid "Job Listing"
526
+ msgstr ""
527
+
528
+ #: includes/class-wp-job-manager-post-types.php:141
529
+ msgctxt "Post type archive slug - resave permalinks after changing this"
530
+ msgid "jobs"
531
+ msgstr ""
532
+
533
+ #: includes/class-wp-job-manager-post-types.php:147
534
+ msgctxt "Job permalink - resave permalinks after changing this"
535
+ msgid "job"
536
+ msgstr ""
537
+
538
+ #: includes/class-wp-job-manager-post-types.php:160
539
+ msgid "Add New"
540
+ msgstr ""
541
+
542
+ #: includes/class-wp-job-manager-post-types.php:161
543
+ msgid "Add %s"
544
+ msgstr ""
545
+
546
+ #: includes/class-wp-job-manager-post-types.php:164
547
+ msgid "New %s"
548
+ msgstr ""
549
+
550
+ #: includes/class-wp-job-manager-post-types.php:165
551
+ #: includes/class-wp-job-manager-post-types.php:166
552
+ msgid "View %s"
553
+ msgstr ""
554
+
555
+ #: includes/class-wp-job-manager-post-types.php:168
556
+ msgid "No %s found"
557
+ msgstr ""
558
+
559
+ #: includes/class-wp-job-manager-post-types.php:169
560
+ msgid "No %s found in trash"
561
+ msgstr ""
562
+
563
+ #: includes/class-wp-job-manager-post-types.php:172
564
+ msgid "This is where you can create and manage job listings."
565
+ msgstr ""
566
+
567
+ #: includes/class-wp-job-manager-post-types.php:207
568
+ msgctxt "job_listing"
569
+ msgid "Expired"
570
+ msgstr ""
571
+
572
+ #: includes/class-wp-job-manager-post-types.php:212
573
+ msgid "Expired <span class=\"count\">(%s)</span>"
574
+ msgid_plural "Expired <span class=\"count\">(%s)</span>"
575
+ msgstr[0] ""
576
+
577
+ #: includes/class-wp-job-manager-shortcodes.php:61
578
+ msgid "Invalid Job ID"
579
+ msgstr ""
580
+
581
+ #: includes/class-wp-job-manager-shortcodes.php:67
582
+ msgid "This job is already filled"
583
+ msgstr ""
584
+
585
+ #: includes/class-wp-job-manager-shortcodes.php:73
586
+ msgid "%s has been filled"
587
+ msgstr ""
588
+
589
+ #: includes/class-wp-job-manager-shortcodes.php:78
590
+ msgid "This job is already not filled"
591
+ msgstr ""
592
+
593
+ #: includes/class-wp-job-manager-shortcodes.php:84
594
+ msgid "%s has been marked as not filled"
595
+ msgstr ""
596
+
597
+ #: includes/class-wp-job-manager-shortcodes.php:91
598
+ msgid "%s has been deleted"
599
+ msgstr ""
600
+
601
+ #: includes/class-wp-job-manager-shortcodes.php:111
602
+ msgid "You need to be signed in to manage your job listings."
603
+ msgstr ""
604
+
605
+ #: includes/class-wp-job-manager-shortcodes.php:204
606
+ #: includes/class-wp-job-manager-shortcodes.php:235
607
+ msgid "Load more job listings"
608
+ msgstr ""
609
+
610
+ #: includes/class-wp-job-manager-widgets.php:139
611
+ msgid "Display a list of the most recent jobs on your site."
612
+ msgstr ""
613
+
614
+ #: includes/class-wp-job-manager-widgets.php:141
615
+ msgid "Recent Job Listings"
616
+ msgstr ""
617
+
618
+ #: includes/class-wp-job-manager-widgets.php:145
619
+ msgid "Recent Jobs"
620
+ msgstr ""
621
+
622
+ #: includes/class-wp-job-manager-widgets.php:146
623
+ msgid "Title"
624
+ msgstr ""
625
+
626
+ #: includes/class-wp-job-manager-widgets.php:154
627
+ msgid "Number of jobs to show"
628
+ msgstr ""
629
+
630
+ #: includes/forms/class-wp-job-manager-form-edit-job.php:43
631
+ msgid "Invalid job"
632
+ msgstr ""
633
+
634
+ #: includes/forms/class-wp-job-manager-form-edit-job.php:86
635
+ msgid "Update job listing"
636
+ msgstr ""
637
+
638
+ #: includes/forms/class-wp-job-manager-form-edit-job.php:112
639
+ msgid "Your changes have been saved."
640
+ msgstr ""
641
+
642
+ #: includes/forms/class-wp-job-manager-form-edit-job.php:112
643
+ msgid "View Job Listing &rarr;"
644
+ msgstr ""
645
+
646
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:22
647
+ msgid "Submit Details"
648
+ msgstr ""
649
+
650
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:28
651
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:606
652
+ msgid "Preview"
653
+ msgstr ""
654
+
655
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:34
656
+ msgid "Done"
657
+ msgstr ""
658
+
659
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:107
660
+ msgid "Application email"
661
+ msgstr ""
662
+
663
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:108
664
+ msgid "you@yourdomain.com"
665
+ msgstr ""
666
+
667
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:111
668
+ msgid "Application URL"
669
+ msgstr ""
670
+
671
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:112
672
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:182
673
+ msgid "http://"
674
+ msgstr ""
675
+
676
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:116
677
+ msgid "Enter an email address or website URL"
678
+ msgstr ""
679
+
680
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:123
681
+ msgid "Job title"
682
+ msgstr ""
683
+
684
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:138
685
+ msgid "Job type"
686
+ msgstr ""
687
+
688
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:147
689
+ msgid "Job category"
690
+ msgstr ""
691
+
692
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:156
693
+ msgid "Description"
694
+ msgstr ""
695
+
696
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:175
697
+ msgid "Enter the name of the company"
698
+ msgstr ""
699
+
700
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:179
701
+ #: templates/content-single-job_listing.php:36
702
+ msgid "Website"
703
+ msgstr ""
704
+
705
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:186
706
+ msgid "Tagline"
707
+ msgstr ""
708
+
709
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:189
710
+ msgid "Briefly describe your company"
711
+ msgstr ""
712
+
713
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:194
714
+ msgid "Twitter username"
715
+ msgstr ""
716
+
717
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:197
718
+ msgid "@yourcompany"
719
+ msgstr ""
720
+
721
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:201
722
+ msgid "Logo"
723
+ msgstr ""
724
+
725
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:314
726
+ msgid "%s is a required field"
727
+ msgstr ""
728
+
729
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:325
730
+ msgid "Please enter a valid application email address"
731
+ msgstr ""
732
+
733
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:330
734
+ msgid "Please enter a valid application URL"
735
+ msgstr ""
736
+
737
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:335
738
+ msgid "Please enter a valid application email address or URL"
739
+ msgstr ""
740
+
741
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:456
742
+ msgid "Preview job listing &rarr;"
743
+ msgstr ""
744
+
745
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:492
746
+ msgid "You must be signed in to post a new job listing."
747
+ msgstr ""
748
+
749
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:600
750
+ msgid "Submit Listing &rarr;"
751
+ msgstr ""
752
+
753
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:601
754
+ msgid "&larr; Edit listing"
755
+ msgstr ""
756
+
757
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:684
758
+ msgid "\"%s\" needs to be one of the following file types: %s"
759
+ msgstr ""
760
+
761
+ #: templates/account-signin.php:4
762
+ msgid "Your account"
763
+ msgstr ""
764
+
765
+ #: templates/account-signin.php:8
766
+ msgid "You are currently signed in as <strong>%s</strong>."
767
+ msgstr ""
768
+
769
+ #: templates/account-signin.php:11
770
+ msgid "Sign out"
771
+ msgstr ""
772
+
773
+ #: templates/account-signin.php:21
774
+ msgid "Have an account?"
775
+ msgstr ""
776
+
777
+ #: templates/account-signin.php:23
778
+ msgid "Sign in"
779
+ msgstr ""
780
+
781
+ #: templates/account-signin.php:27
782
+ msgid ""
783
+ "If you don&rsquo;t have an account you can %screate one below by entering "
784
+ "your email address. A password will be automatically emailed to you."
785
+ msgstr ""
786
+
787
+ #: templates/account-signin.php:27
788
+ msgid "optionally"
789
+ msgstr ""
790
+
791
+ #: templates/account-signin.php:31
792
+ msgid "You must sign in to create a new job listing."
793
+ msgstr ""
794
+
795
+ #: templates/account-signin.php:38
796
+ msgid "Your email"
797
+ msgstr ""
798
+
799
+ #: templates/account-signin.php:38 templates/job-submit.php:24
800
+ #: templates/job-submit.php:41
801
+ msgid "(optional)"
802
+ msgstr ""
803
+
804
+ #: templates/content-job_listing.php:16
805
+ #: templates/content-single-job_listing.php:21
806
+ #: templates/content-summary-job_listing.php:14
807
+ msgid "Posted %s ago"
808
+ msgstr ""
809
+
810
+ #: templates/content-no-jobs-found.php:1
811
+ msgid "No more jobs found matching your selection."
812
+ msgstr ""
813
+
814
+ #: templates/content-single-job_listing.php:8
815
+ msgid "This job listing has expired"
816
+ msgstr ""
817
+
818
+ #: templates/content-single-job_listing.php:24
819
+ msgid "This position has been filled"
820
+ msgstr ""
821
+
822
+ #: templates/form-fields/file-field.php:6
823
+ msgid "remove"
824
+ msgstr ""
825
+
826
+ #: templates/form-fields/file-field.php:6
827
+ msgid "or"
828
+ msgstr ""
829
+
830
+ #: templates/form-fields/file-field.php:16
831
+ msgid "Max. file size: %s."
832
+ msgstr ""
833
+
834
+ #: templates/job-application-email.php:1
835
+ msgid ""
836
+ "To apply for this job <strong>email your details to</strong> <a "
837
+ "class=\"job_application_email\" href=\"mailto:%1$s%2$s\">%1$s</a>"
838
+ msgstr ""
839
+
840
+ #: templates/job-application-email.php:4
841
+ msgid "Apply using webmail: "
842
+ msgstr ""
843
+
844
+ #: templates/job-application-url.php:1
845
+ msgid ""
846
+ "To apply for this job please visit the following URL: <a href=\"%1$s\" "
847
+ "target=\"_blank\">%1$s &rarr;</a>"
848
+ msgstr ""
849
+
850
+ #: templates/job-application.php:5
851
+ msgid "Apply for job"
852
+ msgstr ""
853
+
854
+ #: templates/job-dashboard.php:2
855
+ msgid ""
856
+ "Your job listings are shown in the table below. Expired listings will be "
857
+ "automatically removed after 30 days."
858
+ msgstr ""
859
+
860
+ #: templates/job-dashboard.php:6
861
+ msgid "Job Title"
862
+ msgstr ""
863
+
864
+ #: templates/job-dashboard.php:7
865
+ msgid "Date Posted"
866
+ msgstr ""
867
+
868
+ #: templates/job-dashboard.php:16
869
+ msgid "You do not have any active job listings."
870
+ msgstr ""
871
+
872
+ #: templates/job-dashboard.php:36
873
+ msgid "Mark not filled"
874
+ msgstr ""
875
+
876
+ #: templates/job-dashboard.php:38
877
+ msgid "Mark filled"
878
+ msgstr ""
879
+
880
+ #: templates/job-filters.php:8
881
+ msgid "Keywords"
882
+ msgstr ""
883
+
884
+ #: templates/job-filters.php:9
885
+ msgid "All Jobs"
886
+ msgstr ""
887
+
888
+ #: templates/job-filters.php:13
889
+ msgid "Location"
890
+ msgstr ""
891
+
892
+ #: templates/job-filters.php:14
893
+ msgid "Any Location"
894
+ msgstr ""
895
+
896
+ #: templates/job-filters.php:23
897
+ msgid "Category"
898
+ msgstr ""
899
+
900
+ #: templates/job-filters.php:24
901
+ msgid "All Job Categories"
902
+ msgstr ""
903
+
904
+ #: templates/job-submit.php:35
905
+ msgid "Company details"
906
+ msgstr ""
907
+
908
+ #: templates/job-submitted.php:4
909
+ msgid ""
910
+ "Job listed successfully. To view your job listing <a href=\"%s\">click "
911
+ "here</a>."
912
+ msgstr ""
913
+
914
+ #: templates/job-submitted.php:7
915
+ msgid ""
916
+ "Job submitted successfully. Your job listing will be visible once approved."
917
+ msgstr ""
918
+
919
+ #: wp-job-manager-functions.php:224
920
+ msgid "Reset"
921
+ msgstr ""
922
+
923
+ #: wp-job-manager-functions.php:228
924
+ msgid "RSS"
925
+ msgstr ""
926
+
927
+ #: wp-job-manager-functions.php:278
928
+ msgid "Your email address isn&#8217;t correct."
929
+ msgstr ""
930
+
931
+ #: wp-job-manager-functions.php:281
932
+ msgid "This email is already registered, please choose another one."
933
+ msgstr ""
934
+
935
+ #: wp-job-manager-template.php:116
936
+ msgid "Active"
937
+ msgstr ""
938
+
939
+ #: wp-job-manager-template.php:118
940
+ msgid "Expired"
941
+ msgstr ""
942
+
943
+ #: wp-job-manager-template.php:120
944
+ msgid "Pending Review"
945
+ msgstr ""
946
+
947
+ #: wp-job-manager-template.php:122
948
+ msgid "Inactive"
949
+ msgstr ""
950
+
951
+ #: wp-job-manager-template.php:197
952
+ msgid "Job Application via \"%s\" listing on %s"
953
+ msgstr ""
954
+
955
+ #: wp-job-manager-template.php:255
956
+ msgid "Anywhere"
957
+ msgstr ""
958
+
959
+ #: wp-job-manager.php:97
960
+ msgid "Are you sure you want to delete this job?"
961
+ msgstr ""
962
+
963
+ #. Plugin Name of the plugin/theme
964
+ msgid "WP Job Manager"
965
+ msgstr ""
966
+
967
+ #. Plugin URI of the plugin/theme
968
+ msgid "https://wpjobmanager.com/"
969
+ msgstr ""
970
+
971
+ #. Description of the plugin/theme
972
+ msgid ""
973
+ "Manage job listings from the WordPress admin panel, and allow users to post "
974
+ "jobs directly to your site."
975
+ msgstr ""
976
+
977
+ #. Author of the plugin/theme
978
+ msgid "Mike Jolley"
979
+ msgstr ""
980
+
981
+ #. Author URI of the plugin/theme
982
+ msgid "http://mikejolley.com"
983
+ msgstr ""
languages/wp-job-manager-it_IT.mo CHANGED
Binary file
languages/wp-job-manager-it_IT.po CHANGED
@@ -1,6 +1,7 @@
1
  # Copyright (C) 2014 WP Job Manager
2
  # This file is distributed under the same license as the WP Job Manager package.
3
  # Translators:
 
4
  # paletta, 2014
5
  # sinnamora <pinnamail@yahoo.com>, 2014
6
  msgid ""
@@ -8,8 +9,8 @@ msgstr ""
8
  "Project-Id-Version: WP Job Manager\n"
9
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-job-manager\n"
10
  "POT-Creation-Date: 2014-05-11 11:00:29+00:00\n"
11
- "PO-Revision-Date: 2014-08-13 00:39+0000\n"
12
- "Last-Translator: sinnamora <pinnamail@yahoo.com>\n"
13
  "Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/wp-job-manager/language/it_IT/)\n"
14
  "MIME-Version: 1.0\n"
15
  "Content-Type: text/plain; charset=UTF-8\n"
@@ -26,7 +27,7 @@ msgstr "Componenti aggiuntivi per WP Job Manager"
26
  msgid ""
27
  "Buying multiple add-ons? <a href=\"%s\">Check out the core add-on bundle "
28
  "&rarr;</a>"
29
- msgstr ""
30
 
31
  #: includes/admin/class-wp-job-manager-admin.php:57
32
  msgid "Settings"
@@ -245,13 +246,13 @@ msgstr "Se abilitata gli utenti non loggati potranno creare un account inserendo
245
 
246
  #: includes/admin/class-wp-job-manager-settings.php:87
247
  msgid "Account Role"
248
- msgstr ""
249
 
250
  #: includes/admin/class-wp-job-manager-settings.php:88
251
  msgid ""
252
  "If you enable registration on your job submission form, choose a role for "
253
  "the new user."
254
- msgstr ""
255
 
256
  #: includes/admin/class-wp-job-manager-settings.php:95
257
  msgid "Account required"
@@ -295,7 +296,7 @@ msgstr "Modalità di candidatura"
295
 
296
  #: includes/admin/class-wp-job-manager-settings.php:121
297
  msgid "Choose what employers can use for their job application method."
298
- msgstr ""
299
 
300
  #: includes/admin/class-wp-job-manager-settings.php:124
301
  msgid "Email address or website URL"
@@ -421,7 +422,7 @@ msgstr "Carica"
421
 
422
  #: includes/admin/class-wp-job-manager-writepanels.php:269
423
  msgid "Guest user"
424
- msgstr ""
425
 
426
  #: includes/class-wp-job-manager-ajax.php:111
427
  msgid "Showing %s&ldquo;%s&rdquo; %sjobs"
@@ -447,7 +448,7 @@ msgstr "Limite di query raggiunto"
447
  #: includes/class-wp-job-manager-geocode.php:153
448
  #: includes/class-wp-job-manager-geocode.php:157
449
  msgid "Geocoding error"
450
- msgstr ""
451
 
452
  #: includes/class-wp-job-manager-install.php:39
453
  msgid "Employer"
@@ -665,7 +666,7 @@ msgstr "Email di candidatura"
665
 
666
  #: includes/forms/class-wp-job-manager-form-submit-job.php:108
667
  msgid "you@yourdomain.com"
668
- msgstr ""
669
 
670
  #: includes/forms/class-wp-job-manager-form-submit-job.php:111
671
  msgid "Application URL"
@@ -953,7 +954,7 @@ msgstr "Inattivo"
953
 
954
  #: wp-job-manager-template.php:197
955
  msgid "Job Application via \"%s\" listing on %s"
956
- msgstr ""
957
 
958
  #: wp-job-manager-template.php:255
959
  msgid "Anywhere"
@@ -969,7 +970,7 @@ msgstr "WP Job Manager"
969
 
970
  #. Plugin URI of the plugin/theme
971
  msgid "https://wpjobmanager.com/"
972
- msgstr ""
973
 
974
  #. Description of the plugin/theme
975
  msgid ""
1
  # Copyright (C) 2014 WP Job Manager
2
  # This file is distributed under the same license as the WP Job Manager package.
3
  # Translators:
4
+ # ignazio <bluenor@gmail.com>, 2014
5
  # paletta, 2014
6
  # sinnamora <pinnamail@yahoo.com>, 2014
7
  msgid ""
9
  "Project-Id-Version: WP Job Manager\n"
10
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-job-manager\n"
11
  "POT-Creation-Date: 2014-05-11 11:00:29+00:00\n"
12
+ "PO-Revision-Date: 2014-10-13 21:30+0000\n"
13
+ "Last-Translator: ignazio <bluenor@gmail.com>\n"
14
  "Language-Team: Italian (Italy) (http://www.transifex.com/projects/p/wp-job-manager/language/it_IT/)\n"
15
  "MIME-Version: 1.0\n"
16
  "Content-Type: text/plain; charset=UTF-8\n"
27
  msgid ""
28
  "Buying multiple add-ons? <a href=\"%s\">Check out the core add-on bundle "
29
  "&rarr;</a>"
30
+ msgstr "Vuoi acquistare più addon? <a href=\"%s\"> Controlla il core addon & rarr; </a>"
31
 
32
  #: includes/admin/class-wp-job-manager-admin.php:57
33
  msgid "Settings"
246
 
247
  #: includes/admin/class-wp-job-manager-settings.php:87
248
  msgid "Account Role"
249
+ msgstr "Ruolo dell'Account"
250
 
251
  #: includes/admin/class-wp-job-manager-settings.php:88
252
  msgid ""
253
  "If you enable registration on your job submission form, choose a role for "
254
  "the new user."
255
+ msgstr "Se abiliti la registrazione sul modulo di invio dei lavori, scegli un ruolo per il nuovo utente."
256
 
257
  #: includes/admin/class-wp-job-manager-settings.php:95
258
  msgid "Account required"
296
 
297
  #: includes/admin/class-wp-job-manager-settings.php:121
298
  msgid "Choose what employers can use for their job application method."
299
+ msgstr "Scegli quello che i datori di lavoro possono utilizzare per il loro metodo di sottomissione delle offerte di lavoro."
300
 
301
  #: includes/admin/class-wp-job-manager-settings.php:124
302
  msgid "Email address or website URL"
422
 
423
  #: includes/admin/class-wp-job-manager-writepanels.php:269
424
  msgid "Guest user"
425
+ msgstr "Utente Guest"
426
 
427
  #: includes/class-wp-job-manager-ajax.php:111
428
  msgid "Showing %s&ldquo;%s&rdquo; %sjobs"
448
  #: includes/class-wp-job-manager-geocode.php:153
449
  #: includes/class-wp-job-manager-geocode.php:157
450
  msgid "Geocoding error"
451
+ msgstr "Errore nella Geolocalizzazione"
452
 
453
  #: includes/class-wp-job-manager-install.php:39
454
  msgid "Employer"
666
 
667
  #: includes/forms/class-wp-job-manager-form-submit-job.php:108
668
  msgid "you@yourdomain.com"
669
+ msgstr "you@yourdomain.com"
670
 
671
  #: includes/forms/class-wp-job-manager-form-submit-job.php:111
672
  msgid "Application URL"
954
 
955
  #: wp-job-manager-template.php:197
956
  msgid "Job Application via \"%s\" listing on %s"
957
+ msgstr "Offerta di lavoro tramite \"%s\" inserita in elenco %s"
958
 
959
  #: wp-job-manager-template.php:255
960
  msgid "Anywhere"
970
 
971
  #. Plugin URI of the plugin/theme
972
  msgid "https://wpjobmanager.com/"
973
+ msgstr "https://wpjobmanager.com/"
974
 
975
  #. Description of the plugin/theme
976
  msgid ""
languages/wp-job-manager-ka.mo ADDED
Binary file
languages/wp-job-manager-ka.po ADDED
@@ -0,0 +1,983 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2014 WP Job Manager
2
+ # This file is distributed under the same license as the WP Job Manager package.
3
+ # Translators:
4
+ msgid ""
5
+ msgstr ""
6
+ "Project-Id-Version: WP Job Manager\n"
7
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-job-manager\n"
8
+ "POT-Creation-Date: 2014-05-11 11:00:29+00:00\n"
9
+ "PO-Revision-Date: 2014-01-23 18:48+0000\n"
10
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
11
+ "Language-Team: Georgian (http://www.transifex.com/projects/p/wp-job-manager/language/ka/)\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: ka\n"
16
+ "Plural-Forms: nplurals=1; plural=0;\n"
17
+
18
+ #: includes/admin/class-wp-job-manager-addons.php:50
19
+ #: includes/admin/class-wp-job-manager-admin.php:60
20
+ msgid "WP Job Manager Add-ons"
21
+ msgstr ""
22
+
23
+ #: includes/admin/class-wp-job-manager-addons.php:51
24
+ msgid ""
25
+ "Buying multiple add-ons? <a href=\"%s\">Check out the core add-on bundle "
26
+ "&rarr;</a>"
27
+ msgstr ""
28
+
29
+ #: includes/admin/class-wp-job-manager-admin.php:57
30
+ msgid "Settings"
31
+ msgstr ""
32
+
33
+ #: includes/admin/class-wp-job-manager-admin.php:60
34
+ msgid "Add-ons"
35
+ msgstr ""
36
+
37
+ #: includes/admin/class-wp-job-manager-cpt.php:44
38
+ #: includes/admin/class-wp-job-manager-cpt.php:45
39
+ msgid "Approve Jobs"
40
+ msgstr ""
41
+
42
+ #: includes/admin/class-wp-job-manager-cpt.php:47
43
+ #: includes/admin/class-wp-job-manager-cpt.php:48
44
+ msgid "Expire Jobs"
45
+ msgstr ""
46
+
47
+ #: includes/admin/class-wp-job-manager-cpt.php:135
48
+ #: includes/admin/class-wp-job-manager-cpt.php:137
49
+ msgid "%s approved"
50
+ msgstr ""
51
+
52
+ #: includes/admin/class-wp-job-manager-cpt.php:155
53
+ #: includes/admin/class-wp-job-manager-cpt.php:157
54
+ msgid "%s expired"
55
+ msgstr ""
56
+
57
+ #: includes/admin/class-wp-job-manager-cpt.php:200
58
+ msgid "Select a category"
59
+ msgstr ""
60
+
61
+ #: includes/admin/class-wp-job-manager-cpt.php:233
62
+ msgid "Job position title"
63
+ msgstr ""
64
+
65
+ #: includes/admin/class-wp-job-manager-cpt.php:249
66
+ msgid "Job listing updated. <a href=\"%s\">View Job</a>"
67
+ msgstr ""
68
+
69
+ #: includes/admin/class-wp-job-manager-cpt.php:250
70
+ msgid "Custom field updated."
71
+ msgstr ""
72
+
73
+ #: includes/admin/class-wp-job-manager-cpt.php:251
74
+ msgid "Custom field deleted."
75
+ msgstr ""
76
+
77
+ #: includes/admin/class-wp-job-manager-cpt.php:252
78
+ msgid "Job listing updated."
79
+ msgstr ""
80
+
81
+ #: includes/admin/class-wp-job-manager-cpt.php:253
82
+ msgid "Job listing restored to revision from %s"
83
+ msgstr ""
84
+
85
+ #: includes/admin/class-wp-job-manager-cpt.php:254
86
+ msgid "Job listing published. <a href=\"%s\">View Job</a>"
87
+ msgstr ""
88
+
89
+ #: includes/admin/class-wp-job-manager-cpt.php:255
90
+ msgid "Job listing saved."
91
+ msgstr ""
92
+
93
+ #: includes/admin/class-wp-job-manager-cpt.php:256
94
+ msgid "Job listing submitted. <a target=\"_blank\" href=\"%s\">Preview Job</a>"
95
+ msgstr ""
96
+
97
+ #: includes/admin/class-wp-job-manager-cpt.php:257
98
+ msgid ""
99
+ "Job listing scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" "
100
+ "href=\"%2$s\">Preview Job</a>"
101
+ msgstr ""
102
+
103
+ #: includes/admin/class-wp-job-manager-cpt.php:258
104
+ msgid "M j, Y @ G:i"
105
+ msgstr ""
106
+
107
+ #: includes/admin/class-wp-job-manager-cpt.php:259
108
+ msgid "Job listing draft updated. <a target=\"_blank\" href=\"%s\">Preview Job</a>"
109
+ msgstr ""
110
+
111
+ #: includes/admin/class-wp-job-manager-cpt.php:278
112
+ msgid "Type"
113
+ msgstr ""
114
+
115
+ #: includes/admin/class-wp-job-manager-cpt.php:279
116
+ msgid "Position"
117
+ msgstr ""
118
+
119
+ #: includes/admin/class-wp-job-manager-cpt.php:280
120
+ msgid "Posted"
121
+ msgstr ""
122
+
123
+ #: includes/admin/class-wp-job-manager-cpt.php:281
124
+ #: templates/job-dashboard.php:9
125
+ msgid "Expires"
126
+ msgstr ""
127
+
128
+ #: includes/admin/class-wp-job-manager-cpt.php:283
129
+ msgid "Categories"
130
+ msgstr ""
131
+
132
+ #: includes/admin/class-wp-job-manager-cpt.php:284
133
+ msgid "Featured?"
134
+ msgstr ""
135
+
136
+ #: includes/admin/class-wp-job-manager-cpt.php:285
137
+ #: templates/job-dashboard.php:10
138
+ msgid "Filled?"
139
+ msgstr ""
140
+
141
+ #: includes/admin/class-wp-job-manager-cpt.php:286
142
+ #: templates/job-dashboard.php:8
143
+ msgid "Status"
144
+ msgstr ""
145
+
146
+ #: includes/admin/class-wp-job-manager-cpt.php:287
147
+ msgid "Actions"
148
+ msgstr ""
149
+
150
+ #: includes/admin/class-wp-job-manager-cpt.php:310
151
+ msgid "Job ID: %d"
152
+ msgstr ""
153
+
154
+ #: includes/admin/class-wp-job-manager-cpt.php:336
155
+ #: includes/admin/class-wp-job-manager-cpt.php:341
156
+ msgid "M j, Y"
157
+ msgstr ""
158
+
159
+ #: includes/admin/class-wp-job-manager-cpt.php:337
160
+ msgid "by a guest"
161
+ msgstr ""
162
+
163
+ #: includes/admin/class-wp-job-manager-cpt.php:337
164
+ msgid "by %s"
165
+ msgstr ""
166
+
167
+ #: includes/admin/class-wp-job-manager-cpt.php:354
168
+ msgid "Approve"
169
+ msgstr ""
170
+
171
+ #: includes/admin/class-wp-job-manager-cpt.php:361
172
+ msgid "View"
173
+ msgstr ""
174
+
175
+ #: includes/admin/class-wp-job-manager-cpt.php:366
176
+ #: includes/class-wp-job-manager-post-types.php:162
177
+ #: templates/job-dashboard.php:33
178
+ msgid "Edit"
179
+ msgstr ""
180
+
181
+ #: includes/admin/class-wp-job-manager-cpt.php:371
182
+ #: templates/job-dashboard.php:43
183
+ msgid "Delete"
184
+ msgstr ""
185
+
186
+ #: includes/admin/class-wp-job-manager-settings.php:42
187
+ #: includes/class-wp-job-manager-post-types.php:138
188
+ #: includes/class-wp-job-manager-post-types.php:228
189
+ msgid "Job Listings"
190
+ msgstr ""
191
+
192
+ #: includes/admin/class-wp-job-manager-settings.php:48
193
+ msgid "Jobs per page"
194
+ msgstr ""
195
+
196
+ #: includes/admin/class-wp-job-manager-settings.php:49
197
+ msgid "How many jobs should be shown per page by default?"
198
+ msgstr ""
199
+
200
+ #: includes/admin/class-wp-job-manager-settings.php:55
201
+ msgid "Filled positions"
202
+ msgstr ""
203
+
204
+ #: includes/admin/class-wp-job-manager-settings.php:56
205
+ msgid "Hide filled positions"
206
+ msgstr ""
207
+
208
+ #: includes/admin/class-wp-job-manager-settings.php:57
209
+ msgid "If enabled, filled positions will be hidden from the job list."
210
+ msgstr ""
211
+
212
+ #: includes/admin/class-wp-job-manager-settings.php:64
213
+ msgid "Job categories"
214
+ msgstr ""
215
+
216
+ #: includes/admin/class-wp-job-manager-settings.php:65
217
+ msgid "Enable job categories"
218
+ msgstr ""
219
+
220
+ #: includes/admin/class-wp-job-manager-settings.php:66
221
+ msgid ""
222
+ "Choose whether to enable job categories. Categories must be setup by an "
223
+ "admin for users to choose during job submission."
224
+ msgstr ""
225
+
226
+ #: includes/admin/class-wp-job-manager-settings.php:73
227
+ msgid "Job Submission"
228
+ msgstr ""
229
+
230
+ #: includes/admin/class-wp-job-manager-settings.php:78
231
+ msgid "Account creation"
232
+ msgstr ""
233
+
234
+ #: includes/admin/class-wp-job-manager-settings.php:79
235
+ msgid "Allow account creation"
236
+ msgstr ""
237
+
238
+ #: includes/admin/class-wp-job-manager-settings.php:80
239
+ msgid ""
240
+ "If enabled, non-logged in users will be able to create an account by "
241
+ "entering their email address on the job submission form."
242
+ msgstr ""
243
+
244
+ #: includes/admin/class-wp-job-manager-settings.php:87
245
+ msgid "Account Role"
246
+ msgstr ""
247
+
248
+ #: includes/admin/class-wp-job-manager-settings.php:88
249
+ msgid ""
250
+ "If you enable registration on your job submission form, choose a role for "
251
+ "the new user."
252
+ msgstr ""
253
+
254
+ #: includes/admin/class-wp-job-manager-settings.php:95
255
+ msgid "Account required"
256
+ msgstr ""
257
+
258
+ #: includes/admin/class-wp-job-manager-settings.php:96
259
+ msgid "Job submission requires an account"
260
+ msgstr ""
261
+
262
+ #: includes/admin/class-wp-job-manager-settings.php:97
263
+ msgid ""
264
+ "If disabled, non-logged in users will be able to submit job listings without"
265
+ " creating an account."
266
+ msgstr ""
267
+
268
+ #: includes/admin/class-wp-job-manager-settings.php:104
269
+ msgid "Approval Required"
270
+ msgstr ""
271
+
272
+ #: includes/admin/class-wp-job-manager-settings.php:105
273
+ msgid "New submissions require admin approval"
274
+ msgstr ""
275
+
276
+ #: includes/admin/class-wp-job-manager-settings.php:106
277
+ msgid "If enabled, new submissions will be inactive, pending admin approval."
278
+ msgstr ""
279
+
280
+ #: includes/admin/class-wp-job-manager-settings.php:113
281
+ msgid "Listing duration"
282
+ msgstr ""
283
+
284
+ #: includes/admin/class-wp-job-manager-settings.php:114
285
+ msgid ""
286
+ "How many <strong>days</strong> listings are live before expiring. Can be "
287
+ "left blank to never expire."
288
+ msgstr ""
289
+
290
+ #: includes/admin/class-wp-job-manager-settings.php:120
291
+ msgid "Application method"
292
+ msgstr ""
293
+
294
+ #: includes/admin/class-wp-job-manager-settings.php:121
295
+ msgid "Choose what employers can use for their job application method."
296
+ msgstr ""
297
+
298
+ #: includes/admin/class-wp-job-manager-settings.php:124
299
+ msgid "Email address or website URL"
300
+ msgstr ""
301
+
302
+ #: includes/admin/class-wp-job-manager-settings.php:125
303
+ msgid "Email addresses only"
304
+ msgstr ""
305
+
306
+ #: includes/admin/class-wp-job-manager-settings.php:126
307
+ msgid "Website URLs only"
308
+ msgstr ""
309
+
310
+ #: includes/admin/class-wp-job-manager-settings.php:132
311
+ msgid "Submit Page Slug"
312
+ msgstr ""
313
+
314
+ #: includes/admin/class-wp-job-manager-settings.php:133
315
+ msgid ""
316
+ "Enter the slug of the page where you have placed the [submit_job_form] "
317
+ "shortcode. This lets the plugin know where the form is located."
318
+ msgstr ""
319
+
320
+ #: includes/admin/class-wp-job-manager-settings.php:185
321
+ msgid "Settings successfully saved"
322
+ msgstr ""
323
+
324
+ #: includes/admin/class-wp-job-manager-settings.php:264
325
+ msgid "Save Changes"
326
+ msgstr ""
327
+
328
+ #: includes/admin/class-wp-job-manager-writepanels.php:27
329
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:130
330
+ msgid "Job location"
331
+ msgstr ""
332
+
333
+ #: includes/admin/class-wp-job-manager-writepanels.php:28
334
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:134
335
+ msgid "e.g. \"London, UK\", \"New York\", \"Houston, TX\""
336
+ msgstr ""
337
+
338
+ #: includes/admin/class-wp-job-manager-writepanels.php:29
339
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:131
340
+ msgid ""
341
+ "Leave this blank if the job can be done from anywhere (i.e. telecommuting)"
342
+ msgstr ""
343
+
344
+ #: includes/admin/class-wp-job-manager-writepanels.php:32
345
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:115
346
+ msgid "Application email/URL"
347
+ msgstr ""
348
+
349
+ #: includes/admin/class-wp-job-manager-writepanels.php:33
350
+ msgid "URL or email which applicants use to apply"
351
+ msgstr ""
352
+
353
+ #: includes/admin/class-wp-job-manager-writepanels.php:36
354
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:172
355
+ msgid "Company name"
356
+ msgstr ""
357
+
358
+ #: includes/admin/class-wp-job-manager-writepanels.php:40
359
+ msgid "Company website"
360
+ msgstr ""
361
+
362
+ #: includes/admin/class-wp-job-manager-writepanels.php:44
363
+ msgid "Company tagline"
364
+ msgstr ""
365
+
366
+ #: includes/admin/class-wp-job-manager-writepanels.php:45
367
+ msgid "Brief description about the company"
368
+ msgstr ""
369
+
370
+ #: includes/admin/class-wp-job-manager-writepanels.php:48
371
+ msgid "Company Twitter"
372
+ msgstr ""
373
+
374
+ #: includes/admin/class-wp-job-manager-writepanels.php:52
375
+ msgid "Company logo"
376
+ msgstr ""
377
+
378
+ #: includes/admin/class-wp-job-manager-writepanels.php:53
379
+ msgid "URL to the company logo"
380
+ msgstr ""
381
+
382
+ #: includes/admin/class-wp-job-manager-writepanels.php:57
383
+ msgid "Position filled?"
384
+ msgstr ""
385
+
386
+ #: includes/admin/class-wp-job-manager-writepanels.php:61
387
+ msgid "Feature this job listing?"
388
+ msgstr ""
389
+
390
+ #: includes/admin/class-wp-job-manager-writepanels.php:63
391
+ msgid ""
392
+ "Featured listings will be sticky during searches, and can be styled "
393
+ "differently."
394
+ msgstr ""
395
+
396
+ #: includes/admin/class-wp-job-manager-writepanels.php:66
397
+ msgid "Job Expires"
398
+ msgstr ""
399
+
400
+ #: includes/admin/class-wp-job-manager-writepanels.php:67
401
+ msgid "yyyy-mm-dd"
402
+ msgstr ""
403
+
404
+ #: includes/admin/class-wp-job-manager-writepanels.php:70
405
+ msgid "Posted by"
406
+ msgstr ""
407
+
408
+ #: includes/admin/class-wp-job-manager-writepanels.php:83
409
+ msgid "Job Listing Data"
410
+ msgstr ""
411
+
412
+ #: includes/admin/class-wp-job-manager-writepanels.php:101
413
+ msgid "Use file"
414
+ msgstr ""
415
+
416
+ #: includes/admin/class-wp-job-manager-writepanels.php:101
417
+ msgid "Upload"
418
+ msgstr ""
419
+
420
+ #: includes/admin/class-wp-job-manager-writepanels.php:269
421
+ msgid "Guest user"
422
+ msgstr ""
423
+
424
+ #: includes/class-wp-job-manager-ajax.php:111
425
+ msgid "Showing %s&ldquo;%s&rdquo; %sjobs"
426
+ msgstr ""
427
+
428
+ #: includes/class-wp-job-manager-ajax.php:113
429
+ msgid "Showing all %s%sjobs"
430
+ msgstr ""
431
+
432
+ #: includes/class-wp-job-manager-ajax.php:116
433
+ msgid "located in &ldquo;%s&rdquo;"
434
+ msgstr ""
435
+
436
+ #: includes/class-wp-job-manager-geocode.php:139
437
+ msgid "No results found"
438
+ msgstr ""
439
+
440
+ #: includes/class-wp-job-manager-geocode.php:143
441
+ msgid "Query limit reached"
442
+ msgstr ""
443
+
444
+ #: includes/class-wp-job-manager-geocode.php:149
445
+ #: includes/class-wp-job-manager-geocode.php:153
446
+ #: includes/class-wp-job-manager-geocode.php:157
447
+ msgid "Geocoding error"
448
+ msgstr ""
449
+
450
+ #: includes/class-wp-job-manager-install.php:39
451
+ msgid "Employer"
452
+ msgstr ""
453
+
454
+ #: includes/class-wp-job-manager-post-types.php:48
455
+ msgid "Job Category"
456
+ msgstr ""
457
+
458
+ #: includes/class-wp-job-manager-post-types.php:49
459
+ msgid "Job Categories"
460
+ msgstr ""
461
+
462
+ #: includes/class-wp-job-manager-post-types.php:53
463
+ msgctxt "Job category slug - resave permalinks after changing this"
464
+ msgid "job-category"
465
+ msgstr ""
466
+
467
+ #: includes/class-wp-job-manager-post-types.php:70
468
+ #: includes/class-wp-job-manager-post-types.php:113
469
+ #: includes/class-wp-job-manager-post-types.php:167
470
+ msgid "Search %s"
471
+ msgstr ""
472
+
473
+ #: includes/class-wp-job-manager-post-types.php:71
474
+ #: includes/class-wp-job-manager-post-types.php:114
475
+ #: includes/class-wp-job-manager-post-types.php:159
476
+ msgid "All %s"
477
+ msgstr ""
478
+
479
+ #: includes/class-wp-job-manager-post-types.php:72
480
+ #: includes/class-wp-job-manager-post-types.php:115
481
+ #: includes/class-wp-job-manager-post-types.php:170
482
+ msgid "Parent %s"
483
+ msgstr ""
484
+
485
+ #: includes/class-wp-job-manager-post-types.php:73
486
+ #: includes/class-wp-job-manager-post-types.php:116
487
+ msgid "Parent %s:"
488
+ msgstr ""
489
+
490
+ #: includes/class-wp-job-manager-post-types.php:74
491
+ #: includes/class-wp-job-manager-post-types.php:117
492
+ #: includes/class-wp-job-manager-post-types.php:163
493
+ msgid "Edit %s"
494
+ msgstr ""
495
+
496
+ #: includes/class-wp-job-manager-post-types.php:75
497
+ #: includes/class-wp-job-manager-post-types.php:118
498
+ msgid "Update %s"
499
+ msgstr ""
500
+
501
+ #: includes/class-wp-job-manager-post-types.php:76
502
+ #: includes/class-wp-job-manager-post-types.php:119
503
+ msgid "Add New %s"
504
+ msgstr ""
505
+
506
+ #: includes/class-wp-job-manager-post-types.php:77
507
+ #: includes/class-wp-job-manager-post-types.php:120
508
+ msgid "New %s Name"
509
+ msgstr ""
510
+
511
+ #: includes/class-wp-job-manager-post-types.php:92
512
+ msgid "Job Type"
513
+ msgstr ""
514
+
515
+ #: includes/class-wp-job-manager-post-types.php:93
516
+ msgid "Job Types"
517
+ msgstr ""
518
+
519
+ #: includes/class-wp-job-manager-post-types.php:97
520
+ msgctxt "Job type slug - resave permalinks after changing this"
521
+ msgid "job-type"
522
+ msgstr ""
523
+
524
+ #: includes/class-wp-job-manager-post-types.php:137
525
+ msgid "Job Listing"
526
+ msgstr ""
527
+
528
+ #: includes/class-wp-job-manager-post-types.php:141
529
+ msgctxt "Post type archive slug - resave permalinks after changing this"
530
+ msgid "jobs"
531
+ msgstr ""
532
+
533
+ #: includes/class-wp-job-manager-post-types.php:147
534
+ msgctxt "Job permalink - resave permalinks after changing this"
535
+ msgid "job"
536
+ msgstr ""
537
+
538
+ #: includes/class-wp-job-manager-post-types.php:160
539
+ msgid "Add New"
540
+ msgstr ""
541
+
542
+ #: includes/class-wp-job-manager-post-types.php:161
543
+ msgid "Add %s"
544
+ msgstr ""
545
+
546
+ #: includes/class-wp-job-manager-post-types.php:164
547
+ msgid "New %s"
548
+ msgstr ""
549
+
550
+ #: includes/class-wp-job-manager-post-types.php:165
551
+ #: includes/class-wp-job-manager-post-types.php:166
552
+ msgid "View %s"
553
+ msgstr ""
554
+
555
+ #: includes/class-wp-job-manager-post-types.php:168
556
+ msgid "No %s found"
557
+ msgstr ""
558
+
559
+ #: includes/class-wp-job-manager-post-types.php:169
560
+ msgid "No %s found in trash"
561
+ msgstr ""
562
+
563
+ #: includes/class-wp-job-manager-post-types.php:172
564
+ msgid "This is where you can create and manage job listings."
565
+ msgstr ""
566
+
567
+ #: includes/class-wp-job-manager-post-types.php:207
568
+ msgctxt "job_listing"
569
+ msgid "Expired"
570
+ msgstr ""
571
+
572
+ #: includes/class-wp-job-manager-post-types.php:212
573
+ msgid "Expired <span class=\"count\">(%s)</span>"
574
+ msgid_plural "Expired <span class=\"count\">(%s)</span>"
575
+ msgstr[0] ""
576
+
577
+ #: includes/class-wp-job-manager-shortcodes.php:61
578
+ msgid "Invalid Job ID"
579
+ msgstr ""
580
+
581
+ #: includes/class-wp-job-manager-shortcodes.php:67
582
+ msgid "This job is already filled"
583
+ msgstr ""
584
+
585
+ #: includes/class-wp-job-manager-shortcodes.php:73
586
+ msgid "%s has been filled"
587
+ msgstr ""
588
+
589
+ #: includes/class-wp-job-manager-shortcodes.php:78
590
+ msgid "This job is already not filled"
591
+ msgstr ""
592
+
593
+ #: includes/class-wp-job-manager-shortcodes.php:84
594
+ msgid "%s has been marked as not filled"
595
+ msgstr ""
596
+
597
+ #: includes/class-wp-job-manager-shortcodes.php:91
598
+ msgid "%s has been deleted"
599
+ msgstr ""
600
+
601
+ #: includes/class-wp-job-manager-shortcodes.php:111
602
+ msgid "You need to be signed in to manage your job listings."
603
+ msgstr ""
604
+
605
+ #: includes/class-wp-job-manager-shortcodes.php:204
606
+ #: includes/class-wp-job-manager-shortcodes.php:235
607
+ msgid "Load more job listings"
608
+ msgstr ""
609
+
610
+ #: includes/class-wp-job-manager-widgets.php:139
611
+ msgid "Display a list of the most recent jobs on your site."
612
+ msgstr ""
613
+
614
+ #: includes/class-wp-job-manager-widgets.php:141
615
+ msgid "Recent Job Listings"
616
+ msgstr ""
617
+
618
+ #: includes/class-wp-job-manager-widgets.php:145
619
+ msgid "Recent Jobs"
620
+ msgstr ""
621
+
622
+ #: includes/class-wp-job-manager-widgets.php:146
623
+ msgid "Title"
624
+ msgstr ""
625
+
626
+ #: includes/class-wp-job-manager-widgets.php:154
627
+ msgid "Number of jobs to show"
628
+ msgstr ""
629
+
630
+ #: includes/forms/class-wp-job-manager-form-edit-job.php:43
631
+ msgid "Invalid job"
632
+ msgstr ""
633
+
634
+ #: includes/forms/class-wp-job-manager-form-edit-job.php:86
635
+ msgid "Update job listing"
636
+ msgstr ""
637
+
638
+ #: includes/forms/class-wp-job-manager-form-edit-job.php:112
639
+ msgid "Your changes have been saved."
640
+ msgstr ""
641
+
642
+ #: includes/forms/class-wp-job-manager-form-edit-job.php:112
643
+ msgid "View Job Listing &rarr;"
644
+ msgstr ""
645
+
646
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:22
647
+ msgid "Submit Details"
648
+ msgstr ""
649
+
650
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:28
651
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:606
652
+ msgid "Preview"
653
+ msgstr ""
654
+
655
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:34
656
+ msgid "Done"
657
+ msgstr ""
658
+
659
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:107
660
+ msgid "Application email"
661
+ msgstr ""
662
+
663
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:108
664
+ msgid "you@yourdomain.com"
665
+ msgstr ""
666
+
667
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:111
668
+ msgid "Application URL"
669
+ msgstr ""
670
+
671
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:112
672
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:182
673
+ msgid "http://"
674
+ msgstr ""
675
+
676
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:116
677
+ msgid "Enter an email address or website URL"
678
+ msgstr ""
679
+
680
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:123
681
+ msgid "Job title"
682
+ msgstr ""
683
+
684
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:138
685
+ msgid "Job type"
686
+ msgstr ""
687
+
688
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:147
689
+ msgid "Job category"
690
+ msgstr ""
691
+
692
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:156
693
+ msgid "Description"
694
+ msgstr ""
695
+
696
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:175
697
+ msgid "Enter the name of the company"
698
+ msgstr ""
699
+
700
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:179
701
+ #: templates/content-single-job_listing.php:36
702
+ msgid "Website"
703
+ msgstr ""
704
+
705
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:186
706
+ msgid "Tagline"
707
+ msgstr ""
708
+
709
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:189
710
+ msgid "Briefly describe your company"
711
+ msgstr ""
712
+
713
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:194
714
+ msgid "Twitter username"
715
+ msgstr ""
716
+
717
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:197
718
+ msgid "@yourcompany"
719
+ msgstr ""
720
+
721
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:201
722
+ msgid "Logo"
723
+ msgstr ""
724
+
725
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:314
726
+ msgid "%s is a required field"
727
+ msgstr ""
728
+
729
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:325
730
+ msgid "Please enter a valid application email address"
731
+ msgstr ""
732
+
733
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:330
734
+ msgid "Please enter a valid application URL"
735
+ msgstr ""
736
+
737
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:335
738
+ msgid "Please enter a valid application email address or URL"
739
+ msgstr ""
740
+
741
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:456
742
+ msgid "Preview job listing &rarr;"
743
+ msgstr ""
744
+
745
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:492
746
+ msgid "You must be signed in to post a new job listing."
747
+ msgstr ""
748
+
749
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:600
750
+ msgid "Submit Listing &rarr;"
751
+ msgstr ""
752
+
753
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:601
754
+ msgid "&larr; Edit listing"
755
+ msgstr ""
756
+
757
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:684
758
+ msgid "\"%s\" needs to be one of the following file types: %s"
759
+ msgstr ""
760
+
761
+ #: templates/account-signin.php:4
762
+ msgid "Your account"
763
+ msgstr ""
764
+
765
+ #: templates/account-signin.php:8
766
+ msgid "You are currently signed in as <strong>%s</strong>."
767
+ msgstr ""
768
+
769
+ #: templates/account-signin.php:11
770
+ msgid "Sign out"
771
+ msgstr ""
772
+
773
+ #: templates/account-signin.php:21
774
+ msgid "Have an account?"
775
+ msgstr ""
776
+
777
+ #: templates/account-signin.php:23
778
+ msgid "Sign in"
779
+ msgstr ""
780
+
781
+ #: templates/account-signin.php:27
782
+ msgid ""
783
+ "If you don&rsquo;t have an account you can %screate one below by entering "
784
+ "your email address. A password will be automatically emailed to you."
785
+ msgstr ""
786
+
787
+ #: templates/account-signin.php:27
788
+ msgid "optionally"
789
+ msgstr ""
790
+
791
+ #: templates/account-signin.php:31
792
+ msgid "You must sign in to create a new job listing."
793
+ msgstr ""
794
+
795
+ #: templates/account-signin.php:38
796
+ msgid "Your email"
797
+ msgstr ""
798
+
799
+ #: templates/account-signin.php:38 templates/job-submit.php:24
800
+ #: templates/job-submit.php:41
801
+ msgid "(optional)"
802
+ msgstr ""
803
+
804
+ #: templates/content-job_listing.php:16
805
+ #: templates/content-single-job_listing.php:21
806
+ #: templates/content-summary-job_listing.php:14
807
+ msgid "Posted %s ago"
808
+ msgstr ""
809
+
810
+ #: templates/content-no-jobs-found.php:1
811
+ msgid "No more jobs found matching your selection."
812
+ msgstr ""
813
+
814
+ #: templates/content-single-job_listing.php:8
815
+ msgid "This job listing has expired"
816
+ msgstr ""
817
+
818
+ #: templates/content-single-job_listing.php:24
819
+ msgid "This position has been filled"
820
+ msgstr ""
821
+
822
+ #: templates/form-fields/file-field.php:6
823
+ msgid "remove"
824
+ msgstr ""
825
+
826
+ #: templates/form-fields/file-field.php:6
827
+ msgid "or"
828
+ msgstr ""
829
+
830
+ #: templates/form-fields/file-field.php:16
831
+ msgid "Max. file size: %s."
832
+ msgstr ""
833
+
834
+ #: templates/job-application-email.php:1
835
+ msgid ""
836
+ "To apply for this job <strong>email your details to</strong> <a "
837
+ "class=\"job_application_email\" href=\"mailto:%1$s%2$s\">%1$s</a>"
838
+ msgstr ""
839
+
840
+ #: templates/job-application-email.php:4
841
+ msgid "Apply using webmail: "
842
+ msgstr ""
843
+
844
+ #: templates/job-application-url.php:1
845
+ msgid ""
846
+ "To apply for this job please visit the following URL: <a href=\"%1$s\" "
847
+ "target=\"_blank\">%1$s &rarr;</a>"
848
+ msgstr ""
849
+
850
+ #: templates/job-application.php:5
851
+ msgid "Apply for job"
852
+ msgstr ""
853
+
854
+ #: templates/job-dashboard.php:2
855
+ msgid ""
856
+ "Your job listings are shown in the table below. Expired listings will be "
857
+ "automatically removed after 30 days."
858
+ msgstr ""
859
+
860
+ #: templates/job-dashboard.php:6
861
+ msgid "Job Title"
862
+ msgstr ""
863
+
864
+ #: templates/job-dashboard.php:7
865
+ msgid "Date Posted"
866
+ msgstr ""
867
+
868
+ #: templates/job-dashboard.php:16
869
+ msgid "You do not have any active job listings."
870
+ msgstr ""
871
+
872
+ #: templates/job-dashboard.php:36
873
+ msgid "Mark not filled"
874
+ msgstr ""
875
+
876
+ #: templates/job-dashboard.php:38
877
+ msgid "Mark filled"
878
+ msgstr ""
879
+
880
+ #: templates/job-filters.php:8
881
+ msgid "Keywords"
882
+ msgstr ""
883
+
884
+ #: templates/job-filters.php:9
885
+ msgid "All Jobs"
886
+ msgstr ""
887
+
888
+ #: templates/job-filters.php:13
889
+ msgid "Location"
890
+ msgstr ""
891
+
892
+ #: templates/job-filters.php:14
893
+ msgid "Any Location"
894
+ msgstr ""
895
+
896
+ #: templates/job-filters.php:23
897
+ msgid "Category"
898
+ msgstr ""
899
+
900
+ #: templates/job-filters.php:24
901
+ msgid "All Job Categories"
902
+ msgstr ""
903
+
904
+ #: templates/job-submit.php:35
905
+ msgid "Company details"
906
+ msgstr ""
907
+
908
+ #: templates/job-submitted.php:4
909
+ msgid ""
910
+ "Job listed successfully. To view your job listing <a href=\"%s\">click "
911
+ "here</a>."
912
+ msgstr ""
913
+
914
+ #: templates/job-submitted.php:7
915
+ msgid ""
916
+ "Job submitted successfully. Your job listing will be visible once approved."
917
+ msgstr ""
918
+
919
+ #: wp-job-manager-functions.php:224
920
+ msgid "Reset"
921
+ msgstr ""
922
+
923
+ #: wp-job-manager-functions.php:228
924
+ msgid "RSS"
925
+ msgstr ""
926
+
927
+ #: wp-job-manager-functions.php:278
928
+ msgid "Your email address isn&#8217;t correct."
929
+ msgstr ""
930
+
931
+ #: wp-job-manager-functions.php:281
932
+ msgid "This email is already registered, please choose another one."
933
+ msgstr ""
934
+
935
+ #: wp-job-manager-template.php:116
936
+ msgid "Active"
937
+ msgstr ""
938
+
939
+ #: wp-job-manager-template.php:118
940
+ msgid "Expired"
941
+ msgstr ""
942
+
943
+ #: wp-job-manager-template.php:120
944
+ msgid "Pending Review"
945
+ msgstr ""
946
+
947
+ #: wp-job-manager-template.php:122
948
+ msgid "Inactive"
949
+ msgstr ""
950
+
951
+ #: wp-job-manager-template.php:197
952
+ msgid "Job Application via \"%s\" listing on %s"
953
+ msgstr ""
954
+
955
+ #: wp-job-manager-template.php:255
956
+ msgid "Anywhere"
957
+ msgstr ""
958
+
959
+ #: wp-job-manager.php:97
960
+ msgid "Are you sure you want to delete this job?"
961
+ msgstr ""
962
+
963
+ #. Plugin Name of the plugin/theme
964
+ msgid "WP Job Manager"
965
+ msgstr ""
966
+
967
+ #. Plugin URI of the plugin/theme
968
+ msgid "https://wpjobmanager.com/"
969
+ msgstr ""
970
+
971
+ #. Description of the plugin/theme
972
+ msgid ""
973
+ "Manage job listings from the WordPress admin panel, and allow users to post "
974
+ "jobs directly to your site."
975
+ msgstr ""
976
+
977
+ #. Author of the plugin/theme
978
+ msgid "Mike Jolley"
979
+ msgstr ""
980
+
981
+ #. Author URI of the plugin/theme
982
+ msgid "http://mikejolley.com"
983
+ msgstr ""
languages/wp-job-manager-lt.mo ADDED
Binary file
languages/wp-job-manager-lt.po ADDED
@@ -0,0 +1,985 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2014 WP Job Manager
2
+ # This file is distributed under the same license as the WP Job Manager package.
3
+ # Translators:
4
+ msgid ""
5
+ msgstr ""
6
+ "Project-Id-Version: WP Job Manager\n"
7
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-job-manager\n"
8
+ "POT-Creation-Date: 2014-05-11 11:00:29+00:00\n"
9
+ "PO-Revision-Date: 2014-01-23 18:48+0000\n"
10
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
11
+ "Language-Team: Lithuanian (http://www.transifex.com/projects/p/wp-job-manager/language/lt/)\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: lt\n"
16
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
17
+
18
+ #: includes/admin/class-wp-job-manager-addons.php:50
19
+ #: includes/admin/class-wp-job-manager-admin.php:60
20
+ msgid "WP Job Manager Add-ons"
21
+ msgstr ""
22
+
23
+ #: includes/admin/class-wp-job-manager-addons.php:51
24
+ msgid ""
25
+ "Buying multiple add-ons? <a href=\"%s\">Check out the core add-on bundle "
26
+ "&rarr;</a>"
27
+ msgstr ""
28
+
29
+ #: includes/admin/class-wp-job-manager-admin.php:57
30
+ msgid "Settings"
31
+ msgstr ""
32
+
33
+ #: includes/admin/class-wp-job-manager-admin.php:60
34
+ msgid "Add-ons"
35
+ msgstr ""
36
+
37
+ #: includes/admin/class-wp-job-manager-cpt.php:44
38
+ #: includes/admin/class-wp-job-manager-cpt.php:45
39
+ msgid "Approve Jobs"
40
+ msgstr ""
41
+
42
+ #: includes/admin/class-wp-job-manager-cpt.php:47
43
+ #: includes/admin/class-wp-job-manager-cpt.php:48
44
+ msgid "Expire Jobs"
45
+ msgstr ""
46
+
47
+ #: includes/admin/class-wp-job-manager-cpt.php:135
48
+ #: includes/admin/class-wp-job-manager-cpt.php:137
49
+ msgid "%s approved"
50
+ msgstr ""
51
+
52
+ #: includes/admin/class-wp-job-manager-cpt.php:155
53
+ #: includes/admin/class-wp-job-manager-cpt.php:157
54
+ msgid "%s expired"
55
+ msgstr ""
56
+
57
+ #: includes/admin/class-wp-job-manager-cpt.php:200
58
+ msgid "Select a category"
59
+ msgstr ""
60
+
61
+ #: includes/admin/class-wp-job-manager-cpt.php:233
62
+ msgid "Job position title"
63
+ msgstr ""
64
+
65
+ #: includes/admin/class-wp-job-manager-cpt.php:249
66
+ msgid "Job listing updated. <a href=\"%s\">View Job</a>"
67
+ msgstr ""
68
+
69
+ #: includes/admin/class-wp-job-manager-cpt.php:250
70
+ msgid "Custom field updated."
71
+ msgstr ""
72
+
73
+ #: includes/admin/class-wp-job-manager-cpt.php:251
74
+ msgid "Custom field deleted."
75
+ msgstr ""
76
+
77
+ #: includes/admin/class-wp-job-manager-cpt.php:252
78
+ msgid "Job listing updated."
79
+ msgstr ""
80
+
81
+ #: includes/admin/class-wp-job-manager-cpt.php:253
82
+ msgid "Job listing restored to revision from %s"
83
+ msgstr ""
84
+
85
+ #: includes/admin/class-wp-job-manager-cpt.php:254
86
+ msgid "Job listing published. <a href=\"%s\">View Job</a>"
87
+ msgstr ""
88
+
89
+ #: includes/admin/class-wp-job-manager-cpt.php:255
90
+ msgid "Job listing saved."
91
+ msgstr ""
92
+
93
+ #: includes/admin/class-wp-job-manager-cpt.php:256
94
+ msgid "Job listing submitted. <a target=\"_blank\" href=\"%s\">Preview Job</a>"
95
+ msgstr ""
96
+
97
+ #: includes/admin/class-wp-job-manager-cpt.php:257
98
+ msgid ""
99
+ "Job listing scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" "
100
+ "href=\"%2$s\">Preview Job</a>"
101
+ msgstr ""
102
+
103
+ #: includes/admin/class-wp-job-manager-cpt.php:258
104
+ msgid "M j, Y @ G:i"
105
+ msgstr ""
106
+
107
+ #: includes/admin/class-wp-job-manager-cpt.php:259
108
+ msgid "Job listing draft updated. <a target=\"_blank\" href=\"%s\">Preview Job</a>"
109
+ msgstr ""
110
+
111
+ #: includes/admin/class-wp-job-manager-cpt.php:278
112
+ msgid "Type"
113
+ msgstr ""
114
+
115
+ #: includes/admin/class-wp-job-manager-cpt.php:279
116
+ msgid "Position"
117
+ msgstr ""
118
+
119
+ #: includes/admin/class-wp-job-manager-cpt.php:280
120
+ msgid "Posted"
121
+ msgstr ""
122
+
123
+ #: includes/admin/class-wp-job-manager-cpt.php:281
124
+ #: templates/job-dashboard.php:9
125
+ msgid "Expires"
126
+ msgstr ""
127
+
128
+ #: includes/admin/class-wp-job-manager-cpt.php:283
129
+ msgid "Categories"
130
+ msgstr ""
131
+
132
+ #: includes/admin/class-wp-job-manager-cpt.php:284
133
+ msgid "Featured?"
134
+ msgstr ""
135
+
136
+ #: includes/admin/class-wp-job-manager-cpt.php:285
137
+ #: templates/job-dashboard.php:10
138
+ msgid "Filled?"
139
+ msgstr ""
140
+
141
+ #: includes/admin/class-wp-job-manager-cpt.php:286
142
+ #: templates/job-dashboard.php:8
143
+ msgid "Status"
144
+ msgstr ""
145
+
146
+ #: includes/admin/class-wp-job-manager-cpt.php:287
147
+ msgid "Actions"
148
+ msgstr ""
149
+
150
+ #: includes/admin/class-wp-job-manager-cpt.php:310
151
+ msgid "Job ID: %d"
152
+ msgstr ""
153
+
154
+ #: includes/admin/class-wp-job-manager-cpt.php:336
155
+ #: includes/admin/class-wp-job-manager-cpt.php:341
156
+ msgid "M j, Y"
157
+ msgstr ""
158
+
159
+ #: includes/admin/class-wp-job-manager-cpt.php:337
160
+ msgid "by a guest"
161
+ msgstr ""
162
+
163
+ #: includes/admin/class-wp-job-manager-cpt.php:337
164
+ msgid "by %s"
165
+ msgstr ""
166
+
167
+ #: includes/admin/class-wp-job-manager-cpt.php:354
168
+ msgid "Approve"
169
+ msgstr ""
170
+
171
+ #: includes/admin/class-wp-job-manager-cpt.php:361
172
+ msgid "View"
173
+ msgstr ""
174
+
175
+ #: includes/admin/class-wp-job-manager-cpt.php:366
176
+ #: includes/class-wp-job-manager-post-types.php:162
177
+ #: templates/job-dashboard.php:33
178
+ msgid "Edit"
179
+ msgstr ""
180
+
181
+ #: includes/admin/class-wp-job-manager-cpt.php:371
182
+ #: templates/job-dashboard.php:43
183
+ msgid "Delete"
184
+ msgstr ""
185
+
186
+ #: includes/admin/class-wp-job-manager-settings.php:42
187
+ #: includes/class-wp-job-manager-post-types.php:138
188
+ #: includes/class-wp-job-manager-post-types.php:228
189
+ msgid "Job Listings"
190
+ msgstr ""
191
+
192
+ #: includes/admin/class-wp-job-manager-settings.php:48
193
+ msgid "Jobs per page"
194
+ msgstr ""
195
+
196
+ #: includes/admin/class-wp-job-manager-settings.php:49
197
+ msgid "How many jobs should be shown per page by default?"
198
+ msgstr ""
199
+
200
+ #: includes/admin/class-wp-job-manager-settings.php:55
201
+ msgid "Filled positions"
202
+ msgstr ""
203
+
204
+ #: includes/admin/class-wp-job-manager-settings.php:56
205
+ msgid "Hide filled positions"
206
+ msgstr ""
207
+
208
+ #: includes/admin/class-wp-job-manager-settings.php:57
209
+ msgid "If enabled, filled positions will be hidden from the job list."
210
+ msgstr ""
211
+
212
+ #: includes/admin/class-wp-job-manager-settings.php:64
213
+ msgid "Job categories"
214
+ msgstr ""
215
+
216
+ #: includes/admin/class-wp-job-manager-settings.php:65
217
+ msgid "Enable job categories"
218
+ msgstr ""
219
+
220
+ #: includes/admin/class-wp-job-manager-settings.php:66
221
+ msgid ""
222
+ "Choose whether to enable job categories. Categories must be setup by an "
223
+ "admin for users to choose during job submission."
224
+ msgstr ""
225
+
226
+ #: includes/admin/class-wp-job-manager-settings.php:73
227
+ msgid "Job Submission"
228
+ msgstr ""
229
+
230
+ #: includes/admin/class-wp-job-manager-settings.php:78
231
+ msgid "Account creation"
232
+ msgstr ""
233
+
234
+ #: includes/admin/class-wp-job-manager-settings.php:79
235
+ msgid "Allow account creation"
236
+ msgstr ""
237
+
238
+ #: includes/admin/class-wp-job-manager-settings.php:80
239
+ msgid ""
240
+ "If enabled, non-logged in users will be able to create an account by "
241
+ "entering their email address on the job submission form."
242
+ msgstr ""
243
+
244
+ #: includes/admin/class-wp-job-manager-settings.php:87
245
+ msgid "Account Role"
246
+ msgstr ""
247
+
248
+ #: includes/admin/class-wp-job-manager-settings.php:88
249
+ msgid ""
250
+ "If you enable registration on your job submission form, choose a role for "
251
+ "the new user."
252
+ msgstr ""
253
+
254
+ #: includes/admin/class-wp-job-manager-settings.php:95
255
+ msgid "Account required"
256
+ msgstr ""
257
+
258
+ #: includes/admin/class-wp-job-manager-settings.php:96
259
+ msgid "Job submission requires an account"
260
+ msgstr ""
261
+
262
+ #: includes/admin/class-wp-job-manager-settings.php:97
263
+ msgid ""
264
+ "If disabled, non-logged in users will be able to submit job listings without"
265
+ " creating an account."
266
+ msgstr ""
267
+
268
+ #: includes/admin/class-wp-job-manager-settings.php:104
269
+ msgid "Approval Required"
270
+ msgstr ""
271
+
272
+ #: includes/admin/class-wp-job-manager-settings.php:105
273
+ msgid "New submissions require admin approval"
274
+ msgstr ""
275
+
276
+ #: includes/admin/class-wp-job-manager-settings.php:106
277
+ msgid "If enabled, new submissions will be inactive, pending admin approval."
278
+ msgstr ""
279
+
280
+ #: includes/admin/class-wp-job-manager-settings.php:113
281
+ msgid "Listing duration"
282
+ msgstr ""
283
+
284
+ #: includes/admin/class-wp-job-manager-settings.php:114
285
+ msgid ""
286
+ "How many <strong>days</strong> listings are live before expiring. Can be "
287
+ "left blank to never expire."
288
+ msgstr ""
289
+
290
+ #: includes/admin/class-wp-job-manager-settings.php:120
291
+ msgid "Application method"
292
+ msgstr ""
293
+
294
+ #: includes/admin/class-wp-job-manager-settings.php:121
295
+ msgid "Choose what employers can use for their job application method."
296
+ msgstr ""
297
+
298
+ #: includes/admin/class-wp-job-manager-settings.php:124
299
+ msgid "Email address or website URL"
300
+ msgstr ""
301
+
302
+ #: includes/admin/class-wp-job-manager-settings.php:125
303
+ msgid "Email addresses only"
304
+ msgstr ""
305
+
306
+ #: includes/admin/class-wp-job-manager-settings.php:126
307
+ msgid "Website URLs only"
308
+ msgstr ""
309
+
310
+ #: includes/admin/class-wp-job-manager-settings.php:132
311
+ msgid "Submit Page Slug"
312
+ msgstr ""
313
+
314
+ #: includes/admin/class-wp-job-manager-settings.php:133
315
+ msgid ""
316
+ "Enter the slug of the page where you have placed the [submit_job_form] "
317
+ "shortcode. This lets the plugin know where the form is located."
318
+ msgstr ""
319
+
320
+ #: includes/admin/class-wp-job-manager-settings.php:185
321
+ msgid "Settings successfully saved"
322
+ msgstr ""
323
+
324
+ #: includes/admin/class-wp-job-manager-settings.php:264
325
+ msgid "Save Changes"
326
+ msgstr ""
327
+
328
+ #: includes/admin/class-wp-job-manager-writepanels.php:27
329
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:130
330
+ msgid "Job location"
331
+ msgstr ""
332
+
333
+ #: includes/admin/class-wp-job-manager-writepanels.php:28
334
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:134
335
+ msgid "e.g. \"London, UK\", \"New York\", \"Houston, TX\""
336
+ msgstr ""
337
+
338
+ #: includes/admin/class-wp-job-manager-writepanels.php:29
339
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:131
340
+ msgid ""
341
+ "Leave this blank if the job can be done from anywhere (i.e. telecommuting)"
342
+ msgstr ""
343
+
344
+ #: includes/admin/class-wp-job-manager-writepanels.php:32
345
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:115
346
+ msgid "Application email/URL"
347
+ msgstr ""
348
+
349
+ #: includes/admin/class-wp-job-manager-writepanels.php:33
350
+ msgid "URL or email which applicants use to apply"
351
+ msgstr ""
352
+
353
+ #: includes/admin/class-wp-job-manager-writepanels.php:36
354
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:172
355
+ msgid "Company name"
356
+ msgstr ""
357
+
358
+ #: includes/admin/class-wp-job-manager-writepanels.php:40
359
+ msgid "Company website"
360
+ msgstr ""
361
+
362
+ #: includes/admin/class-wp-job-manager-writepanels.php:44
363
+ msgid "Company tagline"
364
+ msgstr ""
365
+
366
+ #: includes/admin/class-wp-job-manager-writepanels.php:45
367
+ msgid "Brief description about the company"
368
+ msgstr ""
369
+
370
+ #: includes/admin/class-wp-job-manager-writepanels.php:48
371
+ msgid "Company Twitter"
372
+ msgstr ""
373
+
374
+ #: includes/admin/class-wp-job-manager-writepanels.php:52
375
+ msgid "Company logo"
376
+ msgstr ""
377
+
378
+ #: includes/admin/class-wp-job-manager-writepanels.php:53
379
+ msgid "URL to the company logo"
380
+ msgstr ""
381
+
382
+ #: includes/admin/class-wp-job-manager-writepanels.php:57
383
+ msgid "Position filled?"
384
+ msgstr ""
385
+
386
+ #: includes/admin/class-wp-job-manager-writepanels.php:61
387
+ msgid "Feature this job listing?"
388
+ msgstr ""
389
+
390
+ #: includes/admin/class-wp-job-manager-writepanels.php:63
391
+ msgid ""
392
+ "Featured listings will be sticky during searches, and can be styled "
393
+ "differently."
394
+ msgstr ""
395
+
396
+ #: includes/admin/class-wp-job-manager-writepanels.php:66
397
+ msgid "Job Expires"
398
+ msgstr ""
399
+
400
+ #: includes/admin/class-wp-job-manager-writepanels.php:67
401
+ msgid "yyyy-mm-dd"
402
+ msgstr ""
403
+
404
+ #: includes/admin/class-wp-job-manager-writepanels.php:70
405
+ msgid "Posted by"
406
+ msgstr ""
407
+
408
+ #: includes/admin/class-wp-job-manager-writepanels.php:83
409
+ msgid "Job Listing Data"
410
+ msgstr ""
411
+
412
+ #: includes/admin/class-wp-job-manager-writepanels.php:101
413
+ msgid "Use file"
414
+ msgstr ""
415
+
416
+ #: includes/admin/class-wp-job-manager-writepanels.php:101
417
+ msgid "Upload"
418
+ msgstr ""
419
+
420
+ #: includes/admin/class-wp-job-manager-writepanels.php:269
421
+ msgid "Guest user"
422
+ msgstr ""
423
+
424
+ #: includes/class-wp-job-manager-ajax.php:111
425
+ msgid "Showing %s&ldquo;%s&rdquo; %sjobs"
426
+ msgstr ""
427
+
428
+ #: includes/class-wp-job-manager-ajax.php:113
429
+ msgid "Showing all %s%sjobs"
430
+ msgstr ""
431
+
432
+ #: includes/class-wp-job-manager-ajax.php:116
433
+ msgid "located in &ldquo;%s&rdquo;"
434
+ msgstr ""
435
+
436
+ #: includes/class-wp-job-manager-geocode.php:139
437
+ msgid "No results found"
438
+ msgstr ""
439
+
440
+ #: includes/class-wp-job-manager-geocode.php:143
441
+ msgid "Query limit reached"
442
+ msgstr ""
443
+
444
+ #: includes/class-wp-job-manager-geocode.php:149
445
+ #: includes/class-wp-job-manager-geocode.php:153
446
+ #: includes/class-wp-job-manager-geocode.php:157
447
+ msgid "Geocoding error"
448
+ msgstr ""
449
+
450
+ #: includes/class-wp-job-manager-install.php:39
451
+ msgid "Employer"
452
+ msgstr ""
453
+
454
+ #: includes/class-wp-job-manager-post-types.php:48
455
+ msgid "Job Category"
456
+ msgstr ""
457
+
458
+ #: includes/class-wp-job-manager-post-types.php:49
459
+ msgid "Job Categories"
460
+ msgstr ""
461
+
462
+ #: includes/class-wp-job-manager-post-types.php:53
463
+ msgctxt "Job category slug - resave permalinks after changing this"
464
+ msgid "job-category"
465
+ msgstr ""
466
+
467
+ #: includes/class-wp-job-manager-post-types.php:70
468
+ #: includes/class-wp-job-manager-post-types.php:113
469
+ #: includes/class-wp-job-manager-post-types.php:167
470
+ msgid "Search %s"
471
+ msgstr ""
472
+
473
+ #: includes/class-wp-job-manager-post-types.php:71
474
+ #: includes/class-wp-job-manager-post-types.php:114
475
+ #: includes/class-wp-job-manager-post-types.php:159
476
+ msgid "All %s"
477
+ msgstr ""
478
+
479
+ #: includes/class-wp-job-manager-post-types.php:72
480
+ #: includes/class-wp-job-manager-post-types.php:115
481
+ #: includes/class-wp-job-manager-post-types.php:170
482
+ msgid "Parent %s"
483
+ msgstr ""
484
+
485
+ #: includes/class-wp-job-manager-post-types.php:73
486
+ #: includes/class-wp-job-manager-post-types.php:116
487
+ msgid "Parent %s:"
488
+ msgstr ""
489
+
490
+ #: includes/class-wp-job-manager-post-types.php:74
491
+ #: includes/class-wp-job-manager-post-types.php:117
492
+ #: includes/class-wp-job-manager-post-types.php:163
493
+ msgid "Edit %s"
494
+ msgstr ""
495
+
496
+ #: includes/class-wp-job-manager-post-types.php:75
497
+ #: includes/class-wp-job-manager-post-types.php:118
498
+ msgid "Update %s"
499
+ msgstr ""
500
+
501
+ #: includes/class-wp-job-manager-post-types.php:76
502
+ #: includes/class-wp-job-manager-post-types.php:119
503
+ msgid "Add New %s"
504
+ msgstr ""
505
+
506
+ #: includes/class-wp-job-manager-post-types.php:77
507
+ #: includes/class-wp-job-manager-post-types.php:120
508
+ msgid "New %s Name"
509
+ msgstr ""
510
+
511
+ #: includes/class-wp-job-manager-post-types.php:92
512
+ msgid "Job Type"
513
+ msgstr ""
514
+
515
+ #: includes/class-wp-job-manager-post-types.php:93
516
+ msgid "Job Types"
517
+ msgstr ""
518
+
519
+ #: includes/class-wp-job-manager-post-types.php:97
520
+ msgctxt "Job type slug - resave permalinks after changing this"
521
+ msgid "job-type"
522
+ msgstr ""
523
+
524
+ #: includes/class-wp-job-manager-post-types.php:137
525
+ msgid "Job Listing"
526
+ msgstr ""
527
+
528
+ #: includes/class-wp-job-manager-post-types.php:141
529
+ msgctxt "Post type archive slug - resave permalinks after changing this"
530
+ msgid "jobs"
531
+ msgstr ""
532
+
533
+ #: includes/class-wp-job-manager-post-types.php:147
534
+ msgctxt "Job permalink - resave permalinks after changing this"
535
+ msgid "job"
536
+ msgstr ""
537
+
538
+ #: includes/class-wp-job-manager-post-types.php:160
539
+ msgid "Add New"
540
+ msgstr ""
541
+
542
+ #: includes/class-wp-job-manager-post-types.php:161
543
+ msgid "Add %s"
544
+ msgstr ""
545
+
546
+ #: includes/class-wp-job-manager-post-types.php:164
547
+ msgid "New %s"
548
+ msgstr ""
549
+
550
+ #: includes/class-wp-job-manager-post-types.php:165
551
+ #: includes/class-wp-job-manager-post-types.php:166
552
+ msgid "View %s"
553
+ msgstr ""
554
+
555
+ #: includes/class-wp-job-manager-post-types.php:168
556
+ msgid "No %s found"
557
+ msgstr ""
558
+
559
+ #: includes/class-wp-job-manager-post-types.php:169
560
+ msgid "No %s found in trash"
561
+ msgstr ""
562
+
563
+ #: includes/class-wp-job-manager-post-types.php:172
564
+ msgid "This is where you can create and manage job listings."
565
+ msgstr ""
566
+
567
+ #: includes/class-wp-job-manager-post-types.php:207
568
+ msgctxt "job_listing"
569
+ msgid "Expired"
570
+ msgstr ""
571
+
572
+ #: includes/class-wp-job-manager-post-types.php:212
573
+ msgid "Expired <span class=\"count\">(%s)</span>"
574
+ msgid_plural "Expired <span class=\"count\">(%s)</span>"
575
+ msgstr[0] ""
576
+ msgstr[1] ""
577
+ msgstr[2] ""
578
+
579
+ #: includes/class-wp-job-manager-shortcodes.php:61
580
+ msgid "Invalid Job ID"
581
+ msgstr ""
582
+
583
+ #: includes/class-wp-job-manager-shortcodes.php:67
584
+ msgid "This job is already filled"
585
+ msgstr ""
586
+
587
+ #: includes/class-wp-job-manager-shortcodes.php:73
588
+ msgid "%s has been filled"
589
+ msgstr ""
590
+
591
+ #: includes/class-wp-job-manager-shortcodes.php:78
592
+ msgid "This job is already not filled"
593
+ msgstr ""
594
+
595
+ #: includes/class-wp-job-manager-shortcodes.php:84
596
+ msgid "%s has been marked as not filled"
597
+ msgstr ""
598
+
599
+ #: includes/class-wp-job-manager-shortcodes.php:91
600
+ msgid "%s has been deleted"
601
+ msgstr ""
602
+
603
+ #: includes/class-wp-job-manager-shortcodes.php:111
604
+ msgid "You need to be signed in to manage your job listings."
605
+ msgstr ""
606
+
607
+ #: includes/class-wp-job-manager-shortcodes.php:204
608
+ #: includes/class-wp-job-manager-shortcodes.php:235
609
+ msgid "Load more job listings"
610
+ msgstr ""
611
+
612
+ #: includes/class-wp-job-manager-widgets.php:139
613
+ msgid "Display a list of the most recent jobs on your site."
614
+ msgstr ""
615
+
616
+ #: includes/class-wp-job-manager-widgets.php:141
617
+ msgid "Recent Job Listings"
618
+ msgstr ""
619
+
620
+ #: includes/class-wp-job-manager-widgets.php:145
621
+ msgid "Recent Jobs"
622
+ msgstr ""
623
+
624
+ #: includes/class-wp-job-manager-widgets.php:146
625
+ msgid "Title"
626
+ msgstr ""
627
+
628
+ #: includes/class-wp-job-manager-widgets.php:154
629
+ msgid "Number of jobs to show"
630
+ msgstr ""
631
+
632
+ #: includes/forms/class-wp-job-manager-form-edit-job.php:43
633
+ msgid "Invalid job"
634
+ msgstr ""
635
+
636
+ #: includes/forms/class-wp-job-manager-form-edit-job.php:86
637
+ msgid "Update job listing"
638
+ msgstr ""
639
+
640
+ #: includes/forms/class-wp-job-manager-form-edit-job.php:112
641
+ msgid "Your changes have been saved."
642
+ msgstr ""
643
+
644
+ #: includes/forms/class-wp-job-manager-form-edit-job.php:112
645
+ msgid "View Job Listing &rarr;"
646
+ msgstr ""
647
+
648
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:22
649
+ msgid "Submit Details"
650
+ msgstr ""
651
+
652
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:28
653
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:606
654
+ msgid "Preview"
655
+ msgstr ""
656
+
657
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:34
658
+ msgid "Done"
659
+ msgstr ""
660
+
661
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:107
662
+ msgid "Application email"
663
+ msgstr ""
664
+
665
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:108
666
+ msgid "you@yourdomain.com"
667
+ msgstr ""
668
+
669
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:111
670
+ msgid "Application URL"
671
+ msgstr ""
672
+
673
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:112
674
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:182
675
+ msgid "http://"
676
+ msgstr ""
677
+
678
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:116
679
+ msgid "Enter an email address or website URL"
680
+ msgstr ""
681
+
682
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:123
683
+ msgid "Job title"
684
+ msgstr ""
685
+
686
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:138
687
+ msgid "Job type"
688
+ msgstr ""
689
+
690
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:147
691
+ msgid "Job category"
692
+ msgstr ""
693
+
694
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:156
695
+ msgid "Description"
696
+ msgstr ""
697
+
698
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:175
699
+ msgid "Enter the name of the company"
700
+ msgstr ""
701
+
702
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:179
703
+ #: templates/content-single-job_listing.php:36
704
+ msgid "Website"
705
+ msgstr ""
706
+
707
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:186
708
+ msgid "Tagline"
709
+ msgstr ""
710
+
711
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:189
712
+ msgid "Briefly describe your company"
713
+ msgstr ""
714
+
715
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:194
716
+ msgid "Twitter username"
717
+ msgstr ""
718
+
719
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:197
720
+ msgid "@yourcompany"
721
+ msgstr ""
722
+
723
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:201
724
+ msgid "Logo"
725
+ msgstr ""
726
+
727
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:314
728
+ msgid "%s is a required field"
729
+ msgstr ""
730
+
731
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:325
732
+ msgid "Please enter a valid application email address"
733
+ msgstr ""
734
+
735
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:330
736
+ msgid "Please enter a valid application URL"
737
+ msgstr ""
738
+
739
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:335
740
+ msgid "Please enter a valid application email address or URL"
741
+ msgstr ""
742
+
743
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:456
744
+ msgid "Preview job listing &rarr;"
745
+ msgstr ""
746
+
747
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:492
748
+ msgid "You must be signed in to post a new job listing."
749
+ msgstr ""
750
+
751
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:600
752
+ msgid "Submit Listing &rarr;"
753
+ msgstr ""
754
+
755
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:601
756
+ msgid "&larr; Edit listing"
757
+ msgstr ""
758
+
759
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:684
760
+ msgid "\"%s\" needs to be one of the following file types: %s"
761
+ msgstr ""
762
+
763
+ #: templates/account-signin.php:4
764
+ msgid "Your account"
765
+ msgstr ""
766
+
767
+ #: templates/account-signin.php:8
768
+ msgid "You are currently signed in as <strong>%s</strong>."
769
+ msgstr ""
770
+
771
+ #: templates/account-signin.php:11
772
+ msgid "Sign out"
773
+ msgstr ""
774
+
775
+ #: templates/account-signin.php:21
776
+ msgid "Have an account?"
777
+ msgstr ""
778
+
779
+ #: templates/account-signin.php:23
780
+ msgid "Sign in"
781
+ msgstr ""
782
+
783
+ #: templates/account-signin.php:27
784
+ msgid ""
785
+ "If you don&rsquo;t have an account you can %screate one below by entering "
786
+ "your email address. A password will be automatically emailed to you."
787
+ msgstr ""
788
+
789
+ #: templates/account-signin.php:27
790
+ msgid "optionally"
791
+ msgstr ""
792
+
793
+ #: templates/account-signin.php:31
794
+ msgid "You must sign in to create a new job listing."
795
+ msgstr ""
796
+
797
+ #: templates/account-signin.php:38
798
+ msgid "Your email"
799
+ msgstr ""
800
+
801
+ #: templates/account-signin.php:38 templates/job-submit.php:24
802
+ #: templates/job-submit.php:41
803
+ msgid "(optional)"
804
+ msgstr ""
805
+
806
+ #: templates/content-job_listing.php:16
807
+ #: templates/content-single-job_listing.php:21
808
+ #: templates/content-summary-job_listing.php:14
809
+ msgid "Posted %s ago"
810
+ msgstr ""
811
+
812
+ #: templates/content-no-jobs-found.php:1
813
+ msgid "No more jobs found matching your selection."
814
+ msgstr ""
815
+
816
+ #: templates/content-single-job_listing.php:8
817
+ msgid "This job listing has expired"
818
+ msgstr ""
819
+
820
+ #: templates/content-single-job_listing.php:24
821
+ msgid "This position has been filled"
822
+ msgstr ""
823
+
824
+ #: templates/form-fields/file-field.php:6
825
+ msgid "remove"
826
+ msgstr ""
827
+
828
+ #: templates/form-fields/file-field.php:6
829
+ msgid "or"
830
+ msgstr ""
831
+
832
+ #: templates/form-fields/file-field.php:16
833
+ msgid "Max. file size: %s."
834
+ msgstr ""
835
+
836
+ #: templates/job-application-email.php:1
837
+ msgid ""
838
+ "To apply for this job <strong>email your details to</strong> <a "
839
+ "class=\"job_application_email\" href=\"mailto:%1$s%2$s\">%1$s</a>"
840
+ msgstr ""
841
+
842
+ #: templates/job-application-email.php:4
843
+ msgid "Apply using webmail: "
844
+ msgstr ""
845
+
846
+ #: templates/job-application-url.php:1
847
+ msgid ""
848
+ "To apply for this job please visit the following URL: <a href=\"%1$s\" "
849
+ "target=\"_blank\">%1$s &rarr;</a>"
850
+ msgstr ""
851
+
852
+ #: templates/job-application.php:5
853
+ msgid "Apply for job"
854
+ msgstr ""
855
+
856
+ #: templates/job-dashboard.php:2
857
+ msgid ""
858
+ "Your job listings are shown in the table below. Expired listings will be "
859
+ "automatically removed after 30 days."
860
+ msgstr ""
861
+
862
+ #: templates/job-dashboard.php:6
863
+ msgid "Job Title"
864
+ msgstr ""
865
+
866
+ #: templates/job-dashboard.php:7
867
+ msgid "Date Posted"
868
+ msgstr ""
869
+
870
+ #: templates/job-dashboard.php:16
871
+ msgid "You do not have any active job listings."
872
+ msgstr ""
873
+
874
+ #: templates/job-dashboard.php:36
875
+ msgid "Mark not filled"
876
+ msgstr ""
877
+
878
+ #: templates/job-dashboard.php:38
879
+ msgid "Mark filled"
880
+ msgstr ""
881
+
882
+ #: templates/job-filters.php:8
883
+ msgid "Keywords"
884
+ msgstr ""
885
+
886
+ #: templates/job-filters.php:9
887
+ msgid "All Jobs"
888
+ msgstr ""
889
+
890
+ #: templates/job-filters.php:13
891
+ msgid "Location"
892
+ msgstr ""
893
+
894
+ #: templates/job-filters.php:14
895
+ msgid "Any Location"
896
+ msgstr ""
897
+
898
+ #: templates/job-filters.php:23
899
+ msgid "Category"
900
+ msgstr ""
901
+
902
+ #: templates/job-filters.php:24
903
+ msgid "All Job Categories"
904
+ msgstr ""
905
+
906
+ #: templates/job-submit.php:35
907
+ msgid "Company details"
908
+ msgstr ""
909
+
910
+ #: templates/job-submitted.php:4
911
+ msgid ""
912
+ "Job listed successfully. To view your job listing <a href=\"%s\">click "
913
+ "here</a>."
914
+ msgstr ""
915
+
916
+ #: templates/job-submitted.php:7
917
+ msgid ""
918
+ "Job submitted successfully. Your job listing will be visible once approved."
919
+ msgstr ""
920
+
921
+ #: wp-job-manager-functions.php:224
922
+ msgid "Reset"
923
+ msgstr ""
924
+
925
+ #: wp-job-manager-functions.php:228
926
+ msgid "RSS"
927
+ msgstr ""
928
+
929
+ #: wp-job-manager-functions.php:278
930
+ msgid "Your email address isn&#8217;t correct."
931
+ msgstr ""
932
+
933
+ #: wp-job-manager-functions.php:281
934
+ msgid "This email is already registered, please choose another one."
935
+ msgstr ""
936
+
937
+ #: wp-job-manager-template.php:116
938
+ msgid "Active"
939
+ msgstr ""
940
+
941
+ #: wp-job-manager-template.php:118
942
+ msgid "Expired"
943
+ msgstr ""
944
+
945
+ #: wp-job-manager-template.php:120
946
+ msgid "Pending Review"
947
+ msgstr ""
948
+
949
+ #: wp-job-manager-template.php:122
950
+ msgid "Inactive"
951
+ msgstr ""
952
+
953
+ #: wp-job-manager-template.php:197
954
+ msgid "Job Application via \"%s\" listing on %s"
955
+ msgstr ""
956
+
957
+ #: wp-job-manager-template.php:255
958
+ msgid "Anywhere"
959
+ msgstr ""
960
+
961
+ #: wp-job-manager.php:97
962
+ msgid "Are you sure you want to delete this job?"
963
+ msgstr ""
964
+
965
+ #. Plugin Name of the plugin/theme
966
+ msgid "WP Job Manager"
967
+ msgstr ""
968
+
969
+ #. Plugin URI of the plugin/theme
970
+ msgid "https://wpjobmanager.com/"
971
+ msgstr ""
972
+
973
+ #. Description of the plugin/theme
974
+ msgid ""
975
+ "Manage job listings from the WordPress admin panel, and allow users to post "
976
+ "jobs directly to your site."
977
+ msgstr ""
978
+
979
+ #. Author of the plugin/theme
980
+ msgid "Mike Jolley"
981
+ msgstr ""
982
+
983
+ #. Author URI of the plugin/theme
984
+ msgid "http://mikejolley.com"
985
+ msgstr ""
languages/wp-job-manager-vi.mo ADDED
Binary file
languages/wp-job-manager-vi.po ADDED
@@ -0,0 +1,983 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (C) 2014 WP Job Manager
2
+ # This file is distributed under the same license as the WP Job Manager package.
3
+ # Translators:
4
+ msgid ""
5
+ msgstr ""
6
+ "Project-Id-Version: WP Job Manager\n"
7
+ "Report-Msgid-Bugs-To: http://wordpress.org/tag/wp-job-manager\n"
8
+ "POT-Creation-Date: 2014-05-11 11:00:29+00:00\n"
9
+ "PO-Revision-Date: 2014-01-23 18:48+0000\n"
10
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
11
+ "Language-Team: Vietnamese (http://www.transifex.com/projects/p/wp-job-manager/language/vi/)\n"
12
+ "MIME-Version: 1.0\n"
13
+ "Content-Type: text/plain; charset=UTF-8\n"
14
+ "Content-Transfer-Encoding: 8bit\n"
15
+ "Language: vi\n"
16
+ "Plural-Forms: nplurals=1; plural=0;\n"
17
+
18
+ #: includes/admin/class-wp-job-manager-addons.php:50
19
+ #: includes/admin/class-wp-job-manager-admin.php:60
20
+ msgid "WP Job Manager Add-ons"
21
+ msgstr ""
22
+
23
+ #: includes/admin/class-wp-job-manager-addons.php:51
24
+ msgid ""
25
+ "Buying multiple add-ons? <a href=\"%s\">Check out the core add-on bundle "
26
+ "&rarr;</a>"
27
+ msgstr ""
28
+
29
+ #: includes/admin/class-wp-job-manager-admin.php:57
30
+ msgid "Settings"
31
+ msgstr ""
32
+
33
+ #: includes/admin/class-wp-job-manager-admin.php:60
34
+ msgid "Add-ons"
35
+ msgstr ""
36
+
37
+ #: includes/admin/class-wp-job-manager-cpt.php:44
38
+ #: includes/admin/class-wp-job-manager-cpt.php:45
39
+ msgid "Approve Jobs"
40
+ msgstr ""
41
+
42
+ #: includes/admin/class-wp-job-manager-cpt.php:47
43
+ #: includes/admin/class-wp-job-manager-cpt.php:48
44
+ msgid "Expire Jobs"
45
+ msgstr ""
46
+
47
+ #: includes/admin/class-wp-job-manager-cpt.php:135
48
+ #: includes/admin/class-wp-job-manager-cpt.php:137
49
+ msgid "%s approved"
50
+ msgstr ""
51
+
52
+ #: includes/admin/class-wp-job-manager-cpt.php:155
53
+ #: includes/admin/class-wp-job-manager-cpt.php:157
54
+ msgid "%s expired"
55
+ msgstr ""
56
+
57
+ #: includes/admin/class-wp-job-manager-cpt.php:200
58
+ msgid "Select a category"
59
+ msgstr ""
60
+
61
+ #: includes/admin/class-wp-job-manager-cpt.php:233
62
+ msgid "Job position title"
63
+ msgstr ""
64
+
65
+ #: includes/admin/class-wp-job-manager-cpt.php:249
66
+ msgid "Job listing updated. <a href=\"%s\">View Job</a>"
67
+ msgstr ""
68
+
69
+ #: includes/admin/class-wp-job-manager-cpt.php:250
70
+ msgid "Custom field updated."
71
+ msgstr ""
72
+
73
+ #: includes/admin/class-wp-job-manager-cpt.php:251
74
+ msgid "Custom field deleted."
75
+ msgstr ""
76
+
77
+ #: includes/admin/class-wp-job-manager-cpt.php:252
78
+ msgid "Job listing updated."
79
+ msgstr ""
80
+
81
+ #: includes/admin/class-wp-job-manager-cpt.php:253
82
+ msgid "Job listing restored to revision from %s"
83
+ msgstr ""
84
+
85
+ #: includes/admin/class-wp-job-manager-cpt.php:254
86
+ msgid "Job listing published. <a href=\"%s\">View Job</a>"
87
+ msgstr ""
88
+
89
+ #: includes/admin/class-wp-job-manager-cpt.php:255
90
+ msgid "Job listing saved."
91
+ msgstr ""
92
+
93
+ #: includes/admin/class-wp-job-manager-cpt.php:256
94
+ msgid "Job listing submitted. <a target=\"_blank\" href=\"%s\">Preview Job</a>"
95
+ msgstr ""
96
+
97
+ #: includes/admin/class-wp-job-manager-cpt.php:257
98
+ msgid ""
99
+ "Job listing scheduled for: <strong>%1$s</strong>. <a target=\"_blank\" "
100
+ "href=\"%2$s\">Preview Job</a>"
101
+ msgstr ""
102
+
103
+ #: includes/admin/class-wp-job-manager-cpt.php:258
104
+ msgid "M j, Y @ G:i"
105
+ msgstr ""
106
+
107
+ #: includes/admin/class-wp-job-manager-cpt.php:259
108
+ msgid "Job listing draft updated. <a target=\"_blank\" href=\"%s\">Preview Job</a>"
109
+ msgstr ""
110
+
111
+ #: includes/admin/class-wp-job-manager-cpt.php:278
112
+ msgid "Type"
113
+ msgstr ""
114
+
115
+ #: includes/admin/class-wp-job-manager-cpt.php:279
116
+ msgid "Position"
117
+ msgstr ""
118
+
119
+ #: includes/admin/class-wp-job-manager-cpt.php:280
120
+ msgid "Posted"
121
+ msgstr ""
122
+
123
+ #: includes/admin/class-wp-job-manager-cpt.php:281
124
+ #: templates/job-dashboard.php:9
125
+ msgid "Expires"
126
+ msgstr ""
127
+
128
+ #: includes/admin/class-wp-job-manager-cpt.php:283
129
+ msgid "Categories"
130
+ msgstr ""
131
+
132
+ #: includes/admin/class-wp-job-manager-cpt.php:284
133
+ msgid "Featured?"
134
+ msgstr ""
135
+
136
+ #: includes/admin/class-wp-job-manager-cpt.php:285
137
+ #: templates/job-dashboard.php:10
138
+ msgid "Filled?"
139
+ msgstr ""
140
+
141
+ #: includes/admin/class-wp-job-manager-cpt.php:286
142
+ #: templates/job-dashboard.php:8
143
+ msgid "Status"
144
+ msgstr ""
145
+
146
+ #: includes/admin/class-wp-job-manager-cpt.php:287
147
+ msgid "Actions"
148
+ msgstr ""
149
+
150
+ #: includes/admin/class-wp-job-manager-cpt.php:310
151
+ msgid "Job ID: %d"
152
+ msgstr ""
153
+
154
+ #: includes/admin/class-wp-job-manager-cpt.php:336
155
+ #: includes/admin/class-wp-job-manager-cpt.php:341
156
+ msgid "M j, Y"
157
+ msgstr ""
158
+
159
+ #: includes/admin/class-wp-job-manager-cpt.php:337
160
+ msgid "by a guest"
161
+ msgstr ""
162
+
163
+ #: includes/admin/class-wp-job-manager-cpt.php:337
164
+ msgid "by %s"
165
+ msgstr ""
166
+
167
+ #: includes/admin/class-wp-job-manager-cpt.php:354
168
+ msgid "Approve"
169
+ msgstr ""
170
+
171
+ #: includes/admin/class-wp-job-manager-cpt.php:361
172
+ msgid "View"
173
+ msgstr ""
174
+
175
+ #: includes/admin/class-wp-job-manager-cpt.php:366
176
+ #: includes/class-wp-job-manager-post-types.php:162
177
+ #: templates/job-dashboard.php:33
178
+ msgid "Edit"
179
+ msgstr ""
180
+
181
+ #: includes/admin/class-wp-job-manager-cpt.php:371
182
+ #: templates/job-dashboard.php:43
183
+ msgid "Delete"
184
+ msgstr ""
185
+
186
+ #: includes/admin/class-wp-job-manager-settings.php:42
187
+ #: includes/class-wp-job-manager-post-types.php:138
188
+ #: includes/class-wp-job-manager-post-types.php:228
189
+ msgid "Job Listings"
190
+ msgstr ""
191
+
192
+ #: includes/admin/class-wp-job-manager-settings.php:48
193
+ msgid "Jobs per page"
194
+ msgstr ""
195
+
196
+ #: includes/admin/class-wp-job-manager-settings.php:49
197
+ msgid "How many jobs should be shown per page by default?"
198
+ msgstr ""
199
+
200
+ #: includes/admin/class-wp-job-manager-settings.php:55
201
+ msgid "Filled positions"
202
+ msgstr ""
203
+
204
+ #: includes/admin/class-wp-job-manager-settings.php:56
205
+ msgid "Hide filled positions"
206
+ msgstr ""
207
+
208
+ #: includes/admin/class-wp-job-manager-settings.php:57
209
+ msgid "If enabled, filled positions will be hidden from the job list."
210
+ msgstr ""
211
+
212
+ #: includes/admin/class-wp-job-manager-settings.php:64
213
+ msgid "Job categories"
214
+ msgstr ""
215
+
216
+ #: includes/admin/class-wp-job-manager-settings.php:65
217
+ msgid "Enable job categories"
218
+ msgstr ""
219
+
220
+ #: includes/admin/class-wp-job-manager-settings.php:66
221
+ msgid ""
222
+ "Choose whether to enable job categories. Categories must be setup by an "
223
+ "admin for users to choose during job submission."
224
+ msgstr ""
225
+
226
+ #: includes/admin/class-wp-job-manager-settings.php:73
227
+ msgid "Job Submission"
228
+ msgstr ""
229
+
230
+ #: includes/admin/class-wp-job-manager-settings.php:78
231
+ msgid "Account creation"
232
+ msgstr ""
233
+
234
+ #: includes/admin/class-wp-job-manager-settings.php:79
235
+ msgid "Allow account creation"
236
+ msgstr ""
237
+
238
+ #: includes/admin/class-wp-job-manager-settings.php:80
239
+ msgid ""
240
+ "If enabled, non-logged in users will be able to create an account by "
241
+ "entering their email address on the job submission form."
242
+ msgstr ""
243
+
244
+ #: includes/admin/class-wp-job-manager-settings.php:87
245
+ msgid "Account Role"
246
+ msgstr ""
247
+
248
+ #: includes/admin/class-wp-job-manager-settings.php:88
249
+ msgid ""
250
+ "If you enable registration on your job submission form, choose a role for "
251
+ "the new user."
252
+ msgstr ""
253
+
254
+ #: includes/admin/class-wp-job-manager-settings.php:95
255
+ msgid "Account required"
256
+ msgstr ""
257
+
258
+ #: includes/admin/class-wp-job-manager-settings.php:96
259
+ msgid "Job submission requires an account"
260
+ msgstr ""
261
+
262
+ #: includes/admin/class-wp-job-manager-settings.php:97
263
+ msgid ""
264
+ "If disabled, non-logged in users will be able to submit job listings without"
265
+ " creating an account."
266
+ msgstr ""
267
+
268
+ #: includes/admin/class-wp-job-manager-settings.php:104
269
+ msgid "Approval Required"
270
+ msgstr ""
271
+
272
+ #: includes/admin/class-wp-job-manager-settings.php:105
273
+ msgid "New submissions require admin approval"
274
+ msgstr ""
275
+
276
+ #: includes/admin/class-wp-job-manager-settings.php:106
277
+ msgid "If enabled, new submissions will be inactive, pending admin approval."
278
+ msgstr ""
279
+
280
+ #: includes/admin/class-wp-job-manager-settings.php:113
281
+ msgid "Listing duration"
282
+ msgstr ""
283
+
284
+ #: includes/admin/class-wp-job-manager-settings.php:114
285
+ msgid ""
286
+ "How many <strong>days</strong> listings are live before expiring. Can be "
287
+ "left blank to never expire."
288
+ msgstr ""
289
+
290
+ #: includes/admin/class-wp-job-manager-settings.php:120
291
+ msgid "Application method"
292
+ msgstr ""
293
+
294
+ #: includes/admin/class-wp-job-manager-settings.php:121
295
+ msgid "Choose what employers can use for their job application method."
296
+ msgstr ""
297
+
298
+ #: includes/admin/class-wp-job-manager-settings.php:124
299
+ msgid "Email address or website URL"
300
+ msgstr ""
301
+
302
+ #: includes/admin/class-wp-job-manager-settings.php:125
303
+ msgid "Email addresses only"
304
+ msgstr ""
305
+
306
+ #: includes/admin/class-wp-job-manager-settings.php:126
307
+ msgid "Website URLs only"
308
+ msgstr ""
309
+
310
+ #: includes/admin/class-wp-job-manager-settings.php:132
311
+ msgid "Submit Page Slug"
312
+ msgstr ""
313
+
314
+ #: includes/admin/class-wp-job-manager-settings.php:133
315
+ msgid ""
316
+ "Enter the slug of the page where you have placed the [submit_job_form] "
317
+ "shortcode. This lets the plugin know where the form is located."
318
+ msgstr ""
319
+
320
+ #: includes/admin/class-wp-job-manager-settings.php:185
321
+ msgid "Settings successfully saved"
322
+ msgstr ""
323
+
324
+ #: includes/admin/class-wp-job-manager-settings.php:264
325
+ msgid "Save Changes"
326
+ msgstr ""
327
+
328
+ #: includes/admin/class-wp-job-manager-writepanels.php:27
329
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:130
330
+ msgid "Job location"
331
+ msgstr ""
332
+
333
+ #: includes/admin/class-wp-job-manager-writepanels.php:28
334
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:134
335
+ msgid "e.g. \"London, UK\", \"New York\", \"Houston, TX\""
336
+ msgstr ""
337
+
338
+ #: includes/admin/class-wp-job-manager-writepanels.php:29
339
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:131
340
+ msgid ""
341
+ "Leave this blank if the job can be done from anywhere (i.e. telecommuting)"
342
+ msgstr ""
343
+
344
+ #: includes/admin/class-wp-job-manager-writepanels.php:32
345
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:115
346
+ msgid "Application email/URL"
347
+ msgstr ""
348
+
349
+ #: includes/admin/class-wp-job-manager-writepanels.php:33
350
+ msgid "URL or email which applicants use to apply"
351
+ msgstr ""
352
+
353
+ #: includes/admin/class-wp-job-manager-writepanels.php:36
354
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:172
355
+ msgid "Company name"
356
+ msgstr ""
357
+
358
+ #: includes/admin/class-wp-job-manager-writepanels.php:40
359
+ msgid "Company website"
360
+ msgstr ""
361
+
362
+ #: includes/admin/class-wp-job-manager-writepanels.php:44
363
+ msgid "Company tagline"
364
+ msgstr ""
365
+
366
+ #: includes/admin/class-wp-job-manager-writepanels.php:45
367
+ msgid "Brief description about the company"
368
+ msgstr ""
369
+
370
+ #: includes/admin/class-wp-job-manager-writepanels.php:48
371
+ msgid "Company Twitter"
372
+ msgstr ""
373
+
374
+ #: includes/admin/class-wp-job-manager-writepanels.php:52
375
+ msgid "Company logo"
376
+ msgstr ""
377
+
378
+ #: includes/admin/class-wp-job-manager-writepanels.php:53
379
+ msgid "URL to the company logo"
380
+ msgstr ""
381
+
382
+ #: includes/admin/class-wp-job-manager-writepanels.php:57
383
+ msgid "Position filled?"
384
+ msgstr ""
385
+
386
+ #: includes/admin/class-wp-job-manager-writepanels.php:61
387
+ msgid "Feature this job listing?"
388
+ msgstr ""
389
+
390
+ #: includes/admin/class-wp-job-manager-writepanels.php:63
391
+ msgid ""
392
+ "Featured listings will be sticky during searches, and can be styled "
393
+ "differently."
394
+ msgstr ""
395
+
396
+ #: includes/admin/class-wp-job-manager-writepanels.php:66
397
+ msgid "Job Expires"
398
+ msgstr ""
399
+
400
+ #: includes/admin/class-wp-job-manager-writepanels.php:67
401
+ msgid "yyyy-mm-dd"
402
+ msgstr ""
403
+
404
+ #: includes/admin/class-wp-job-manager-writepanels.php:70
405
+ msgid "Posted by"
406
+ msgstr ""
407
+
408
+ #: includes/admin/class-wp-job-manager-writepanels.php:83
409
+ msgid "Job Listing Data"
410
+ msgstr ""
411
+
412
+ #: includes/admin/class-wp-job-manager-writepanels.php:101
413
+ msgid "Use file"
414
+ msgstr ""
415
+
416
+ #: includes/admin/class-wp-job-manager-writepanels.php:101
417
+ msgid "Upload"
418
+ msgstr ""
419
+
420
+ #: includes/admin/class-wp-job-manager-writepanels.php:269
421
+ msgid "Guest user"
422
+ msgstr ""
423
+
424
+ #: includes/class-wp-job-manager-ajax.php:111
425
+ msgid "Showing %s&ldquo;%s&rdquo; %sjobs"
426
+ msgstr ""
427
+
428
+ #: includes/class-wp-job-manager-ajax.php:113
429
+ msgid "Showing all %s%sjobs"
430
+ msgstr ""
431
+
432
+ #: includes/class-wp-job-manager-ajax.php:116
433
+ msgid "located in &ldquo;%s&rdquo;"
434
+ msgstr ""
435
+
436
+ #: includes/class-wp-job-manager-geocode.php:139
437
+ msgid "No results found"
438
+ msgstr ""
439
+
440
+ #: includes/class-wp-job-manager-geocode.php:143
441
+ msgid "Query limit reached"
442
+ msgstr ""
443
+
444
+ #: includes/class-wp-job-manager-geocode.php:149
445
+ #: includes/class-wp-job-manager-geocode.php:153
446
+ #: includes/class-wp-job-manager-geocode.php:157
447
+ msgid "Geocoding error"
448
+ msgstr ""
449
+
450
+ #: includes/class-wp-job-manager-install.php:39
451
+ msgid "Employer"
452
+ msgstr ""
453
+
454
+ #: includes/class-wp-job-manager-post-types.php:48
455
+ msgid "Job Category"
456
+ msgstr ""
457
+
458
+ #: includes/class-wp-job-manager-post-types.php:49
459
+ msgid "Job Categories"
460
+ msgstr ""
461
+
462
+ #: includes/class-wp-job-manager-post-types.php:53
463
+ msgctxt "Job category slug - resave permalinks after changing this"
464
+ msgid "job-category"
465
+ msgstr ""
466
+
467
+ #: includes/class-wp-job-manager-post-types.php:70
468
+ #: includes/class-wp-job-manager-post-types.php:113
469
+ #: includes/class-wp-job-manager-post-types.php:167
470
+ msgid "Search %s"
471
+ msgstr ""
472
+
473
+ #: includes/class-wp-job-manager-post-types.php:71
474
+ #: includes/class-wp-job-manager-post-types.php:114
475
+ #: includes/class-wp-job-manager-post-types.php:159
476
+ msgid "All %s"
477
+ msgstr ""
478
+
479
+ #: includes/class-wp-job-manager-post-types.php:72
480
+ #: includes/class-wp-job-manager-post-types.php:115
481
+ #: includes/class-wp-job-manager-post-types.php:170
482
+ msgid "Parent %s"
483
+ msgstr ""
484
+
485
+ #: includes/class-wp-job-manager-post-types.php:73
486
+ #: includes/class-wp-job-manager-post-types.php:116
487
+ msgid "Parent %s:"
488
+ msgstr ""
489
+
490
+ #: includes/class-wp-job-manager-post-types.php:74
491
+ #: includes/class-wp-job-manager-post-types.php:117
492
+ #: includes/class-wp-job-manager-post-types.php:163
493
+ msgid "Edit %s"
494
+ msgstr ""
495
+
496
+ #: includes/class-wp-job-manager-post-types.php:75
497
+ #: includes/class-wp-job-manager-post-types.php:118
498
+ msgid "Update %s"
499
+ msgstr ""
500
+
501
+ #: includes/class-wp-job-manager-post-types.php:76
502
+ #: includes/class-wp-job-manager-post-types.php:119
503
+ msgid "Add New %s"
504
+ msgstr ""
505
+
506
+ #: includes/class-wp-job-manager-post-types.php:77
507
+ #: includes/class-wp-job-manager-post-types.php:120
508
+ msgid "New %s Name"
509
+ msgstr ""
510
+
511
+ #: includes/class-wp-job-manager-post-types.php:92
512
+ msgid "Job Type"
513
+ msgstr ""
514
+
515
+ #: includes/class-wp-job-manager-post-types.php:93
516
+ msgid "Job Types"
517
+ msgstr ""
518
+
519
+ #: includes/class-wp-job-manager-post-types.php:97
520
+ msgctxt "Job type slug - resave permalinks after changing this"
521
+ msgid "job-type"
522
+ msgstr ""
523
+
524
+ #: includes/class-wp-job-manager-post-types.php:137
525
+ msgid "Job Listing"
526
+ msgstr ""
527
+
528
+ #: includes/class-wp-job-manager-post-types.php:141
529
+ msgctxt "Post type archive slug - resave permalinks after changing this"
530
+ msgid "jobs"
531
+ msgstr ""
532
+
533
+ #: includes/class-wp-job-manager-post-types.php:147
534
+ msgctxt "Job permalink - resave permalinks after changing this"
535
+ msgid "job"
536
+ msgstr ""
537
+
538
+ #: includes/class-wp-job-manager-post-types.php:160
539
+ msgid "Add New"
540
+ msgstr ""
541
+
542
+ #: includes/class-wp-job-manager-post-types.php:161
543
+ msgid "Add %s"
544
+ msgstr ""
545
+
546
+ #: includes/class-wp-job-manager-post-types.php:164
547
+ msgid "New %s"
548
+ msgstr ""
549
+
550
+ #: includes/class-wp-job-manager-post-types.php:165
551
+ #: includes/class-wp-job-manager-post-types.php:166
552
+ msgid "View %s"
553
+ msgstr ""
554
+
555
+ #: includes/class-wp-job-manager-post-types.php:168
556
+ msgid "No %s found"
557
+ msgstr ""
558
+
559
+ #: includes/class-wp-job-manager-post-types.php:169
560
+ msgid "No %s found in trash"
561
+ msgstr ""
562
+
563
+ #: includes/class-wp-job-manager-post-types.php:172
564
+ msgid "This is where you can create and manage job listings."
565
+ msgstr ""
566
+
567
+ #: includes/class-wp-job-manager-post-types.php:207
568
+ msgctxt "job_listing"
569
+ msgid "Expired"
570
+ msgstr ""
571
+
572
+ #: includes/class-wp-job-manager-post-types.php:212
573
+ msgid "Expired <span class=\"count\">(%s)</span>"
574
+ msgid_plural "Expired <span class=\"count\">(%s)</span>"
575
+ msgstr[0] ""
576
+
577
+ #: includes/class-wp-job-manager-shortcodes.php:61
578
+ msgid "Invalid Job ID"
579
+ msgstr ""
580
+
581
+ #: includes/class-wp-job-manager-shortcodes.php:67
582
+ msgid "This job is already filled"
583
+ msgstr ""
584
+
585
+ #: includes/class-wp-job-manager-shortcodes.php:73
586
+ msgid "%s has been filled"
587
+ msgstr ""
588
+
589
+ #: includes/class-wp-job-manager-shortcodes.php:78
590
+ msgid "This job is already not filled"
591
+ msgstr ""
592
+
593
+ #: includes/class-wp-job-manager-shortcodes.php:84
594
+ msgid "%s has been marked as not filled"
595
+ msgstr ""
596
+
597
+ #: includes/class-wp-job-manager-shortcodes.php:91
598
+ msgid "%s has been deleted"
599
+ msgstr ""
600
+
601
+ #: includes/class-wp-job-manager-shortcodes.php:111
602
+ msgid "You need to be signed in to manage your job listings."
603
+ msgstr ""
604
+
605
+ #: includes/class-wp-job-manager-shortcodes.php:204
606
+ #: includes/class-wp-job-manager-shortcodes.php:235
607
+ msgid "Load more job listings"
608
+ msgstr ""
609
+
610
+ #: includes/class-wp-job-manager-widgets.php:139
611
+ msgid "Display a list of the most recent jobs on your site."
612
+ msgstr ""
613
+
614
+ #: includes/class-wp-job-manager-widgets.php:141
615
+ msgid "Recent Job Listings"
616
+ msgstr ""
617
+
618
+ #: includes/class-wp-job-manager-widgets.php:145
619
+ msgid "Recent Jobs"
620
+ msgstr ""
621
+
622
+ #: includes/class-wp-job-manager-widgets.php:146
623
+ msgid "Title"
624
+ msgstr ""
625
+
626
+ #: includes/class-wp-job-manager-widgets.php:154
627
+ msgid "Number of jobs to show"
628
+ msgstr ""
629
+
630
+ #: includes/forms/class-wp-job-manager-form-edit-job.php:43
631
+ msgid "Invalid job"
632
+ msgstr ""
633
+
634
+ #: includes/forms/class-wp-job-manager-form-edit-job.php:86
635
+ msgid "Update job listing"
636
+ msgstr ""
637
+
638
+ #: includes/forms/class-wp-job-manager-form-edit-job.php:112
639
+ msgid "Your changes have been saved."
640
+ msgstr ""
641
+
642
+ #: includes/forms/class-wp-job-manager-form-edit-job.php:112
643
+ msgid "View Job Listing &rarr;"
644
+ msgstr ""
645
+
646
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:22
647
+ msgid "Submit Details"
648
+ msgstr ""
649
+
650
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:28
651
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:606
652
+ msgid "Preview"
653
+ msgstr ""
654
+
655
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:34
656
+ msgid "Done"
657
+ msgstr ""
658
+
659
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:107
660
+ msgid "Application email"
661
+ msgstr ""
662
+
663
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:108
664
+ msgid "you@yourdomain.com"
665
+ msgstr ""
666
+
667
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:111
668
+ msgid "Application URL"
669
+ msgstr ""
670
+
671
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:112
672
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:182
673
+ msgid "http://"
674
+ msgstr ""
675
+
676
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:116
677
+ msgid "Enter an email address or website URL"
678
+ msgstr ""
679
+
680
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:123
681
+ msgid "Job title"
682
+ msgstr ""
683
+
684
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:138
685
+ msgid "Job type"
686
+ msgstr ""
687
+
688
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:147
689
+ msgid "Job category"
690
+ msgstr ""
691
+
692
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:156
693
+ msgid "Description"
694
+ msgstr ""
695
+
696
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:175
697
+ msgid "Enter the name of the company"
698
+ msgstr ""
699
+
700
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:179
701
+ #: templates/content-single-job_listing.php:36
702
+ msgid "Website"
703
+ msgstr ""
704
+
705
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:186
706
+ msgid "Tagline"
707
+ msgstr ""
708
+
709
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:189
710
+ msgid "Briefly describe your company"
711
+ msgstr ""
712
+
713
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:194
714
+ msgid "Twitter username"
715
+ msgstr ""
716
+
717
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:197
718
+ msgid "@yourcompany"
719
+ msgstr ""
720
+
721
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:201
722
+ msgid "Logo"
723
+ msgstr ""
724
+
725
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:314
726
+ msgid "%s is a required field"
727
+ msgstr ""
728
+
729
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:325
730
+ msgid "Please enter a valid application email address"
731
+ msgstr ""
732
+
733
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:330
734
+ msgid "Please enter a valid application URL"
735
+ msgstr ""
736
+
737
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:335
738
+ msgid "Please enter a valid application email address or URL"
739
+ msgstr ""
740
+
741
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:456
742
+ msgid "Preview job listing &rarr;"
743
+ msgstr ""
744
+
745
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:492
746
+ msgid "You must be signed in to post a new job listing."
747
+ msgstr ""
748
+
749
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:600
750
+ msgid "Submit Listing &rarr;"
751
+ msgstr ""
752
+
753
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:601
754
+ msgid "&larr; Edit listing"
755
+ msgstr ""
756
+
757
+ #: includes/forms/class-wp-job-manager-form-submit-job.php:684
758
+ msgid "\"%s\" needs to be one of the following file types: %s"
759
+ msgstr ""
760
+
761
+ #: templates/account-signin.php:4
762
+ msgid "Your account"
763
+ msgstr ""
764
+
765
+ #: templates/account-signin.php:8
766
+ msgid "You are currently signed in as <strong>%s</strong>."
767
+ msgstr ""
768
+
769
+ #: templates/account-signin.php:11
770
+ msgid "Sign out"
771
+ msgstr ""
772
+
773
+ #: templates/account-signin.php:21
774
+ msgid "Have an account?"
775
+ msgstr ""
776
+
777
+ #: templates/account-signin.php:23
778
+ msgid "Sign in"
779
+ msgstr ""
780
+
781
+ #: templates/account-signin.php:27
782
+ msgid ""
783
+ "If you don&rsquo;t have an account you can %screate one below by entering "
784
+ "your email address. A password will be automatically emailed to you."
785
+ msgstr ""
786
+
787
+ #: templates/account-signin.php:27
788
+ msgid "optionally"
789
+ msgstr ""
790
+
791
+ #: templates/account-signin.php:31
792
+ msgid "You must sign in to create a new job listing."
793
+ msgstr ""
794
+
795
+ #: templates/account-signin.php:38
796
+ msgid "Your email"
797
+ msgstr ""
798
+
799
+ #: templates/account-signin.php:38 templates/job-submit.php:24
800
+ #: templates/job-submit.php:41
801
+ msgid "(optional)"
802
+ msgstr ""
803
+
804
+ #: templates/content-job_listing.php:16
805
+ #: templates/content-single-job_listing.php:21
806
+ #: templates/content-summary-job_listing.php:14
807
+ msgid "Posted %s ago"
808
+ msgstr ""
809
+
810
+ #: templates/content-no-jobs-found.php:1
811
+ msgid "No more jobs found matching your selection."
812
+ msgstr ""
813
+
814
+ #: templates/content-single-job_listing.php:8
815
+ msgid "This job listing has expired"
816
+ msgstr ""
817
+
818
+ #: templates/content-single-job_listing.php:24
819
+ msgid "This position has been filled"
820
+ msgstr ""
821
+
822
+ #: templates/form-fields/file-field.php:6
823
+ msgid "remove"
824
+ msgstr ""
825
+
826
+ #: templates/form-fields/file-field.php:6
827
+ msgid "or"
828
+ msgstr ""
829
+
830
+ #: templates/form-fields/file-field.php:16
831
+ msgid "Max. file size: %s."
832
+ msgstr ""
833
+
834
+ #: templates/job-application-email.php:1
835
+ msgid ""
836
+ "To apply for this job <strong>email your details to</strong> <a "
837
+ "class=\"job_application_email\" href=\"mailto:%1$s%2$s\">%1$s</a>"
838
+ msgstr ""
839
+
840
+ #: templates/job-application-email.php:4
841
+ msgid "Apply using webmail: "
842
+ msgstr ""
843
+
844
+ #: templates/job-application-url.php:1
845
+ msgid ""
846
+ "To apply for this job please visit the following URL: <a href=\"%1$s\" "
847
+ "target=\"_blank\">%1$s &rarr;</a>"
848
+ msgstr ""
849
+
850
+ #: templates/job-application.php:5
851
+ msgid "Apply for job"
852
+ msgstr ""
853
+
854
+ #: templates/job-dashboard.php:2
855
+ msgid ""
856
+ "Your job listings are shown in the table below. Expired listings will be "
857
+ "automatically removed after 30 days."
858
+ msgstr ""
859
+
860
+ #: templates/job-dashboard.php:6
861
+ msgid "Job Title"
862
+ msgstr ""
863
+
864
+ #: templates/job-dashboard.php:7
865
+ msgid "Date Posted"
866
+ msgstr ""
867
+
868
+ #: templates/job-dashboard.php:16
869
+ msgid "You do not have any active job listings."
870
+ msgstr ""
871
+
872
+ #: templates/job-dashboard.php:36
873
+ msgid "Mark not filled"
874
+ msgstr ""
875
+
876
+ #: templates/job-dashboard.php:38
877
+ msgid "Mark filled"
878
+ msgstr ""
879
+
880
+ #: templates/job-filters.php:8
881
+ msgid "Keywords"
882
+ msgstr ""
883
+
884
+ #: templates/job-filters.php:9
885
+ msgid "All Jobs"
886
+ msgstr ""
887
+
888
+ #: templates/job-filters.php:13
889
+ msgid "Location"
890
+ msgstr ""
891
+
892
+ #: templates/job-filters.php:14
893
+ msgid "Any Location"
894
+ msgstr ""
895
+
896
+ #: templates/job-filters.php:23
897
+ msgid "Category"
898
+ msgstr ""
899
+
900
+ #: templates/job-filters.php:24
901
+ msgid "All Job Categories"
902
+ msgstr ""
903
+
904
+ #: templates/job-submit.php:35
905
+ msgid "Company details"
906
+ msgstr ""
907
+
908
+ #: templates/job-submitted.php:4
909
+ msgid ""
910
+ "Job listed successfully. To view your job listing <a href=\"%s\">click "
911
+ "here</a>."
912
+ msgstr ""
913
+
914
+ #: templates/job-submitted.php:7
915
+ msgid ""
916
+ "Job submitted successfully. Your job listing will be visible once approved."
917
+ msgstr ""
918
+
919
+ #: wp-job-manager-functions.php:224
920
+ msgid "Reset"
921
+ msgstr ""
922
+
923
+ #: wp-job-manager-functions.php:228
924
+ msgid "RSS"
925
+ msgstr ""
926
+
927
+ #: wp-job-manager-functions.php:278
928
+ msgid "Your email address isn&#8217;t correct."
929
+ msgstr ""
930
+
931
+ #: wp-job-manager-functions.php:281
932
+ msgid "This email is already registered, please choose another one."
933
+ msgstr ""
934
+
935
+ #: wp-job-manager-template.php:116
936
+ msgid "Active"
937
+ msgstr ""
938
+
939
+ #: wp-job-manager-template.php:118
940
+ msgid "Expired"
941
+ msgstr ""
942
+
943
+ #: wp-job-manager-template.php:120
944
+ msgid "Pending Review"
945
+ msgstr ""
946
+
947
+ #: wp-job-manager-template.php:122
948
+ msgid "Inactive"
949
+ msgstr ""
950
+
951
+ #: wp-job-manager-template.php:197
952
+ msgid "Job Application via \"%s\" listing on %s"
953
+ msgstr ""
954
+
955
+ #: wp-job-manager-template.php:255
956
+ msgid "Anywhere"
957
+ msgstr ""
958
+
959
+ #: wp-job-manager.php:97
960
+ msgid "Are you sure you want to delete this job?"
961
+ msgstr ""
962
+
963
+ #. Plugin Name of the plugin/theme
964
+ msgid "WP Job Manager"
965
+ msgstr ""
966
+
967
+ #. Plugin URI of the plugin/theme
968
+ msgid "https://wpjobmanager.com/"
969
+ msgstr ""
970
+
971
+ #. Description of the plugin/theme
972
+ msgid ""
973
+ "Manage job listings from the WordPress admin panel, and allow users to post "
974
+ "jobs directly to your site."
975
+ msgstr ""
976
+
977
+ #. Author of the plugin/theme
978
+ msgid "Mike Jolley"
979
+ msgstr ""
980
+
981
+ #. Author URI of the plugin/theme
982
+ msgid "http://mikejolley.com"
983
+ msgstr ""
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&business=mike.jol
4
  Tags: job listing, job board, job, jobs, company, hiring, employment, employees, candidate, freelance, internship
5
  Requires at least: 3.8
6
  Tested up to: 4.0
7
- Stable tag: 1.16.1
8
 
9
  Manage job listings from the WordPress admin panel, and allow users to post jobs directly to your site.
10
 
@@ -119,6 +119,12 @@ You can view (and contribute) translations via the [Transifex project here](http
119
 
120
  == Changelog ==
121
 
 
 
 
 
 
 
122
  = 1.16.1 =
123
  * Fix - Use triggerHandler() instead of trigger() in ajax-filters to prevent events bubbling up.
124
  * Fix - Append current 'lang' to AJAX calls for WPML.
4
  Tags: job listing, job board, job, jobs, company, hiring, employment, employees, candidate, freelance, internship
5
  Requires at least: 3.8
6
  Tested up to: 4.0
7
+ Stable tag: 1.17.0
8
 
9
  Manage job listings from the WordPress admin panel, and allow users to post jobs directly to your site.
10
 
119
 
120
  == Changelog ==
121
 
122
+ = 1.17.0 =
123
+ * Feature - job_manager_user_can_edit_pending_submissions function and setting.
124
+ * Feature - Job summary shortcode - support random display of job (featured or non featured).
125
+ * Feature - In admin, when clicking an author name show all jobs for that author.
126
+ * Tweak - Added sanitization function to form class to handle strings and arrays.
127
+
128
  = 1.16.1 =
129
  * Fix - Use triggerHandler() instead of trigger() in ajax-filters to prevent events bubbling up.
130
  * Fix - Append current 'lang' to AJAX calls for WPML.
templates/job-dashboard.php CHANGED
@@ -43,6 +43,12 @@
43
  $actions['relist'] = array( 'label' => __( 'Relist', 'wp-job-manager' ), 'nonce' => true );
44
  }
45
  break;
 
 
 
 
 
 
46
  }
47
 
48
  $actions['delete'] = array( 'label' => __( 'Delete', 'wp-job-manager' ), 'nonce' => true );
43
  $actions['relist'] = array( 'label' => __( 'Relist', 'wp-job-manager' ), 'nonce' => true );
44
  }
45
  break;
46
+ case 'pending_payment' :
47
+ case 'pending' :
48
+ if ( job_manager_user_can_edit_pending_submissions() ) {
49
+ $actions['edit'] = array( 'label' => __( 'Edit', 'wp-job-manager' ), 'nonce' => false );
50
+ }
51
+ break;
52
  }
53
 
54
  $actions['delete'] = array( 'label' => __( 'Delete', 'wp-job-manager' ), 'nonce' => true );
wp-job-manager-functions.php CHANGED
@@ -419,6 +419,15 @@ function job_manager_user_requires_account() {
419
  return apply_filters( 'job_manager_user_requires_account', get_option( 'job_manager_user_requires_account' ) == 1 ? true : false );
420
  }
421
 
 
 
 
 
 
 
 
 
 
422
  /**
423
  * Based on wp_dropdown_categories, with the exception of supporting multiple selected categories.
424
  * @see wp_dropdown_categories
419
  return apply_filters( 'job_manager_user_requires_account', get_option( 'job_manager_user_requires_account' ) == 1 ? true : false );
420
  }
421
 
422
+ /**
423
+ * True if users are allowed to edit submissions that are pending approval.
424
+ *
425
+ * @return bool
426
+ */
427
+ function job_manager_user_can_edit_pending_submissions() {
428
+ return apply_filters( 'job_manager_user_can_edit_pending_submissions', get_option( 'job_manager_user_can_edit_pending_submissions' ) == 1 ? true : false );
429
+ }
430
+
431
  /**
432
  * Based on wp_dropdown_categories, with the exception of supporting multiple selected categories.
433
  * @see wp_dropdown_categories
wp-job-manager.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: WP Job Manager
4
  Plugin URI: https://wpjobmanager.com/
5
  Description: Manage job listings from the WordPress admin panel, and allow users to post jobs directly to your site.
6
- Version: 1.16.1
7
  Author: Mike Jolley
8
  Author URI: http://mikejolley.com
9
  Requires at least: 3.8
@@ -31,7 +31,7 @@ class WP_Job_Manager {
31
  */
32
  public function __construct() {
33
  // Define constants
34
- define( 'JOB_MANAGER_VERSION', '1.16.1' );
35
  define( 'JOB_MANAGER_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
36
  define( 'JOB_MANAGER_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
37
 
@@ -96,8 +96,8 @@ class WP_Job_Manager {
96
  $ajax_url = admin_url( 'admin-ajax.php', 'relative' );
97
 
98
  // WPML workaround until this is standardized
99
- if ( class_exists( 'SitePress' ) ) {
100
- add_query_arg( 'lang', $GLOBALS['sitepress']->get_current_language(), $ajax_url );
101
  }
102
 
103
  wp_register_script( 'wp-job-manager-ajax-filters', JOB_MANAGER_PLUGIN_URL . '/assets/js/ajax-filters.min.js', array( 'jquery', 'chosen' ), JOB_MANAGER_VERSION, true );
3
  Plugin Name: WP Job Manager
4
  Plugin URI: https://wpjobmanager.com/
5
  Description: Manage job listings from the WordPress admin panel, and allow users to post jobs directly to your site.
6
+ Version: 1.17.0
7
  Author: Mike Jolley
8
  Author URI: http://mikejolley.com
9
  Requires at least: 3.8
31
  */
32
  public function __construct() {
33
  // Define constants
34
+ define( 'JOB_MANAGER_VERSION', '1.17.0' );
35
  define( 'JOB_MANAGER_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
36
  define( 'JOB_MANAGER_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
37
 
96
  $ajax_url = admin_url( 'admin-ajax.php', 'relative' );
97
 
98
  // WPML workaround until this is standardized
99
+ if ( defined( 'ICL_LANGUAGE_CODE' ) ) {
100
+ $ajax_url = add_query_arg( 'lang', ICL_LANGUAGE_CODE, $ajax_url );
101
  }
102
 
103
  wp_register_script( 'wp-job-manager-ajax-filters', JOB_MANAGER_PLUGIN_URL . '/assets/js/ajax-filters.min.js', array( 'jquery', 'chosen' ), JOB_MANAGER_VERSION, true );