Meta Box - Version 5.2.4

Version Description

  • 2019-12-11 =

Added

  • Add hook rwmb_field_registered after a field is registered.
  • Add (*) to required fields

Changed

  • Remove required attribute for license input box.
  • Don't redirect when bulk activate with other plugins.

Fixed

  • Fix style for select, select_advanced fields in WordPress 5.3.
  • Fix getting object fields for settings pages
Download this release

Release Info

Developer rilwis
Plugin Icon 128x128 Meta Box
Version 5.2.4
Comparing to
See all releases

Code changes from version 5.2.3 to 5.2.4

css/select-advanced.css CHANGED
@@ -3,21 +3,26 @@
3
  min-width: 200px;
4
  max-width: 100%;
5
  }
6
- #wpbody .rwmb-select-all {
7
- display: block;
8
- margin-top: 5px;
9
- }
10
  #wpbody .select2-selection--single,
11
  #wpbody .select2-selection--multiple,
12
  .select2-dropdown {
13
  border-color: #ddd;
14
  }
 
 
 
 
 
15
  .select2-results__option {
16
  margin-bottom: 0;
17
  }
18
  .select2-container .select2-search--inline {
19
  margin-bottom: 0;
20
  }
 
 
 
 
21
  body > .select2-container {
22
  z-index: 999999;
23
  }
3
  min-width: 200px;
4
  max-width: 100%;
5
  }
 
 
 
 
6
  #wpbody .select2-selection--single,
7
  #wpbody .select2-selection--multiple,
8
  .select2-dropdown {
9
  border-color: #ddd;
10
  }
11
+ #wpbody .rwmb-select-advanced-dark .select2-selection--single,
12
+ #wpbody .rwmb-select-advanced-dark .select2-selection--multiple,
13
+ .rwmb-select-advanced-dark .select2-dropdown {
14
+ border-color: #7e8993;
15
+ }
16
  .select2-results__option {
17
  margin-bottom: 0;
18
  }
19
  .select2-container .select2-search--inline {
20
  margin-bottom: 0;
21
  }
22
+ .select2-search--dropdown .select2-search__field {
23
+ padding: 0 4px;
24
+ min-height: 28px;
25
+ }
26
  body > .select2-container {
27
  z-index: 999999;
28
  }
css/select.css CHANGED
@@ -1,5 +1,7 @@
1
- .rwmb-select.rwmb-select {
2
  min-width: 160px;
 
 
3
  padding: 0;
4
  }
5
  .rwmb-select option {
1
+ .rwmb-select {
2
  min-width: 160px;
3
+ }
4
+ .rwmb-select.rwmb-select[multiple] {
5
  padding: 0;
6
  }
7
  .rwmb-select option {
inc/about/about.php CHANGED
@@ -114,20 +114,20 @@ class RWMB_About {
114
  <div id="post-body-content">
115
  <div class="about-wrap">
116
  <?php
117
- include dirname( __FILE__ ) . '/sections/welcome.php';
118
- include dirname( __FILE__ ) . '/sections/tabs.php';
119
- include dirname( __FILE__ ) . '/sections/getting-started.php';
120
- include dirname( __FILE__ ) . '/sections/extensions.php';
121
- include dirname( __FILE__ ) . '/sections/support.php';
122
  do_action( 'rwmb_about_tabs_content' );
123
  ?>
124
  </div>
125
  </div>
126
  <div id="postbox-container-1" class="postbox-container">
127
  <?php
128
- include dirname( __FILE__ ) . '/sections/newsletter.php';
129
  if ( ! $this->update_checker->has_extensions() ) {
130
- include dirname( __FILE__ ) . '/sections/upgrade.php';
131
  }
132
  ?>
133
  </div>
@@ -161,10 +161,15 @@ class RWMB_About {
161
  * or just the current site. Multisite only. Default is false.
162
  */
163
  public function redirect( $plugin, $network_wide = false ) {
164
- if ( 'cli' !== php_sapi_name() && ! $network_wide && 'meta-box/meta-box.php' === $plugin && ! $this->is_bundled() ) {
165
- wp_safe_redirect( $this->get_menu_link() );
166
- die;
 
 
 
167
  }
 
 
168
  }
169
 
170
  /**
@@ -197,6 +202,8 @@ class RWMB_About {
197
 
198
  /**
199
  * Check if Meta Box is bundled by TGM Activation Class.
 
 
200
  */
201
  protected function is_bundled() {
202
  // @codingStandardsIgnoreLine
114
  <div id="post-body-content">
115
  <div class="about-wrap">
116
  <?php
117
+ include __DIR__ . '/sections/welcome.php';
118
+ include __DIR__ . '/sections/tabs.php';
119
+ include __DIR__ . '/sections/getting-started.php';
120
+ include __DIR__ . '/sections/extensions.php';
121
+ include __DIR__ . '/sections/support.php';
122
  do_action( 'rwmb_about_tabs_content' );
123
  ?>
124
  </div>
125
  </div>
126
  <div id="postbox-container-1" class="postbox-container">
127
  <?php
128
+ include __DIR__ . '/sections/newsletter.php';
129
  if ( ! $this->update_checker->has_extensions() ) {
130
+ include __DIR__ . '/sections/upgrade.php';
131
  }
132
  ?>
133
  </div>
161
  * or just the current site. Multisite only. Default is false.
162
  */
163
  public function redirect( $plugin, $network_wide = false ) {
164
+ $is_cli = 'cli' === php_sapi_name();
165
+ $is_plugin = 'meta-box/meta-box.php' === $plugin;
166
+ $is_bulk_activate = 'activate-selected' === rwmb_request()->post( 'action' ) && count( rwmb_request()->post( 'checked' ) ) > 1;
167
+
168
+ if ( ! $is_plugin || $network_wide || $is_cli || $is_bulk_activate || $this->is_bundled() ) {
169
+ return;
170
  }
171
+ wp_safe_redirect( $this->get_menu_link() );
172
+ die;
173
  }
174
 
175
  /**
202
 
203
  /**
204
  * Check if Meta Box is bundled by TGM Activation Class.
205
+ *
206
+ * @return bool
207
  */
208
  protected function is_bundled() {
209
  // @codingStandardsIgnoreLine
inc/about/css/about.css CHANGED
@@ -1,3 +1,6 @@
 
 
 
1
  .about-wrap.about-wrap .wp-badge {
2
  background-image: url(../images/meta-box.svg);
3
  background-color: #fff;
@@ -49,6 +52,7 @@
49
  .two img {
50
  display: block;
51
  box-shadow: 0 0 20px rgba(0, 0, 0, .1);
 
52
  }
53
  .screenshot {
54
  display: block;
@@ -64,12 +68,6 @@
64
  .col li a {
65
  text-decoration: none;
66
  }
67
- .col .dashicons {
68
- color: #82878c;
69
- padding-right: 5px;
70
- font-size: 16px;
71
- vertical-align: middle;
72
- }
73
 
74
  /* Extensions tab */
75
  .extensions {
@@ -167,7 +165,8 @@
167
  }
168
  .newsletter.newsletter input {
169
  width: 145px;
170
- padding: 5px;
 
171
  }
172
 
173
  /* Upgrade */
1
+ .about-wrap {
2
+ padding-right: 20px;
3
+ }
4
  .about-wrap.about-wrap .wp-badge {
5
  background-image: url(../images/meta-box.svg);
6
  background-color: #fff;
52
  .two img {
53
  display: block;
54
  box-shadow: 0 0 20px rgba(0, 0, 0, .1);
55
+ border-radius: 4px;
56
  }
57
  .screenshot {
58
  display: block;
68
  .col li a {
69
  text-decoration: none;
70
  }
 
 
 
 
 
 
71
 
72
  /* Extensions tab */
73
  .extensions {
165
  }
166
  .newsletter.newsletter input {
167
  width: 145px;
168
+ min-height: 28px;
169
+ line-height: 26px;
170
  }
171
 
172
  /* Upgrade */
inc/about/images/online-generator.png CHANGED
Binary file
inc/about/sections/getting-started.php CHANGED
@@ -25,10 +25,10 @@
25
  <h3><?php esc_html_e( 'Extensions', 'meta-box' ); ?></h3>
26
  <p><?php esc_html_e( 'Wanna see more features that transform your WordPress website into a powerful CMS? Check out some extensions below:', 'meta-box' ); ?><p>
27
  <ul>
28
- <li><a target="_blank" href="https://metabox.io/plugins/meta-box-group/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><span class="dashicons dashicons-welcome-widgets-menus"></span> <?php esc_html_e( 'Meta Box Group', 'meta-box' ); ?></a></li>
29
- <li><a target="_blank" href="https://metabox.io/plugins/meta-box-conditional-logic/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><span class="dashicons dashicons-yes"></span> <?php esc_html_e( 'Meta Box Conditional Logic', 'meta-box' ); ?></a></li>
30
- <li><a target="_blank" href="https://metabox.io/plugins/mb-settings-page/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><span class="dashicons dashicons-admin-generic"></span> <?php esc_html_e( 'MB Settings Page', 'meta-box' ); ?></a></li>
31
- <li><a target="_blank" href="https://metabox.io/plugins/mb-term-meta/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><span class="dashicons dashicons-image-filter"></span> <?php esc_html_e( 'MB Term Meta', 'meta-box' ); ?></a></li>
32
  </ul>
33
  <p><a class="button" target="_blank" href="https://metabox.io/plugins/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'More Extensions', 'meta-box' ); ?></a></p>
34
  </div>
25
  <h3><?php esc_html_e( 'Extensions', 'meta-box' ); ?></h3>
26
  <p><?php esc_html_e( 'Wanna see more features that transform your WordPress website into a powerful CMS? Check out some extensions below:', 'meta-box' ); ?><p>
27
  <ul>
28
+ <li><a target="_blank" href="https://metabox.io/plugins/meta-box-builder/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Meta Box Builder', 'meta-box' ); ?></a> - <?php esc_html_e( 'Build meta boxes and fields with UI.', 'meta-box' ); ?></li>
29
+ <li><a target="_blank" href="https://metabox.io/plugins/meta-box-group/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Meta Box Group', 'meta-box' ); ?></a> - <?php esc_html_e( 'Organize fields into repeatable groups.', 'meta-box' ); ?></li>
30
+ <li><a target="_blank" href="https://metabox.io/plugins/meta-box-conditional-logic/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'Meta Box Conditional Logic', 'meta-box' ); ?></a> - <?php esc_html_e( 'Control the visibility of fields.', 'meta-box' ); ?></li>
31
+ <li><a target="_blank" href="https://metabox.io/plugins/mb-settings-page/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'MB Settings Page', 'meta-box' ); ?></a> - <?php esc_html_e( 'Create settings pages/Customizer options.', 'meta-box' ); ?></li>
32
  </ul>
33
  <p><a class="button" target="_blank" href="https://metabox.io/plugins/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin"><?php esc_html_e( 'More Extensions', 'meta-box' ); ?></a></p>
34
  </div>
inc/about/sections/welcome.php CHANGED
@@ -2,21 +2,20 @@
2
  /**
3
  * Welcome section.
4
  *
5
- * @package Meta Box
6
- * @subpackage MB Custom Post Type
7
  */
8
 
9
  ?>
10
  <h1>
11
  <?php
12
- $plugin = get_plugin_data( RWMB_DIR . 'meta-box.php', false, false );
13
 
14
  // Translators: %s - Plugin name.
15
- echo esc_html( sprintf( __( 'Welcome to %s', 'meta-box' ), $plugin['Name'] ) );
16
  ?>
17
  </h1>
18
  <div class="about-text"><?php esc_html_e( 'Meta Box is a free Gutenberg and GDPR-compatible WordPress custom fields plugin and framework that makes quick work of customizing a website with—you guessed it—meta boxes and custom fields in WordPress. Follow the instruction below to get started!', 'meta-box' ); ?></div>
19
- <a target="_blank" class="wp-badge" href="<?php echo esc_url( 'https://metabox.io/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin' ); ?>"><?php echo esc_html( $plugin['Name'] ); ?></a>
20
  <p class="about-buttons">
21
  <a target="_blank" class="button" href="<?php echo esc_url( 'https://docs.metabox.io?utm_source=WordPress&utm_medium=link&utm_campaign=plugin' ); ?>"><?php esc_html_e( 'Documentation', 'meta-box' ); ?></a>
22
  <a target="_blank" class="button" href="<?php echo esc_url( 'https://metabox.io/plugins/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin' ); ?>"><?php esc_html_e( 'Extensions', 'meta-box' ); ?></a>
2
  /**
3
  * Welcome section.
4
  *
5
+ * @package Meta Box
 
6
  */
7
 
8
  ?>
9
  <h1>
10
  <?php
11
+ $plugin_data = get_plugin_data( RWMB_DIR . 'meta-box.php', false, false );
12
 
13
  // Translators: %s - Plugin name.
14
+ echo esc_html( sprintf( __( 'Welcome to %s', 'meta-box' ), $plugin_data['Name'] ) );
15
  ?>
16
  </h1>
17
  <div class="about-text"><?php esc_html_e( 'Meta Box is a free Gutenberg and GDPR-compatible WordPress custom fields plugin and framework that makes quick work of customizing a website with—you guessed it—meta boxes and custom fields in WordPress. Follow the instruction below to get started!', 'meta-box' ); ?></div>
18
+ <a target="_blank" class="wp-badge" href="<?php echo esc_url( 'https://metabox.io/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin' ); ?>"><?php echo esc_html( $plugin_data['Name'] ); ?></a>
19
  <p class="about-buttons">
20
  <a target="_blank" class="button" href="<?php echo esc_url( 'https://docs.metabox.io?utm_source=WordPress&utm_medium=link&utm_campaign=plugin' ); ?>"><?php esc_html_e( 'Documentation', 'meta-box' ); ?></a>
21
  <a target="_blank" class="button" href="<?php echo esc_url( 'https://metabox.io/plugins/?utm_source=WordPress&utm_medium=link&utm_campaign=plugin' ); ?>"><?php esc_html_e( 'Extensions', 'meta-box' ); ?></a>
inc/field-registry.php CHANGED
@@ -36,6 +36,8 @@ class RWMB_Field_Registry {
36
  $this->data[ $object_type ][ $type ] = array();
37
  }
38
  $this->data[ $object_type ][ $type ][ $field['id'] ] = $field;
 
 
39
  }
40
 
41
  /**
36
  $this->data[ $object_type ][ $type ] = array();
37
  }
38
  $this->data[ $object_type ][ $type ][ $field['id'] ] = $field;
39
+
40
+ do_action( 'rwmb_field_registered', $field, $type, $object_type );
41
  }
42
 
43
  /**
inc/field.php CHANGED
@@ -98,11 +98,12 @@ abstract class RWMB_Field {
98
  if ( $field['name'] ) {
99
  $field_label = sprintf(
100
  '<div class="rwmb-label">
101
- <label for="%s">%s</label>
102
  %s
103
  </div>',
104
  esc_attr( $field['id'] ),
105
  $field['name'],
 
106
  self::label_description( $field )
107
  );
108
  }
98
  if ( $field['name'] ) {
99
  $field_label = sprintf(
100
  '<div class="rwmb-label">
101
+ <label for="%s">%s%s</label>
102
  %s
103
  </div>',
104
  esc_attr( $field['id'] ),
105
  $field['name'],
106
+ $field['required'] || ! empty( $field['attributes']['required'] ) ? '<span class="rwmb-required">*</span>' : '',
107
  self::label_description( $field )
108
  );
109
  }
inc/fields/datetime.php CHANGED
@@ -184,7 +184,7 @@ class RWMB_Datetime_Field extends RWMB_Text_Field {
184
  public static function from_timestamp( $meta, $field ) {
185
  return array(
186
  'timestamp' => $meta ? $meta : null,
187
- 'formatted' => $meta ? date( $field['php_format'], intval( $meta ) ) : '',
188
  );
189
  }
190
 
@@ -299,6 +299,6 @@ class RWMB_Datetime_Field extends RWMB_Text_Field {
299
  'formatted' => $value,
300
  );
301
  }
302
- return empty( $args['format'] ) ? $value['formatted'] : date( $args['format'], $value['timestamp'] );
303
  }
304
  }
184
  public static function from_timestamp( $meta, $field ) {
185
  return array(
186
  'timestamp' => $meta ? $meta : null,
187
+ 'formatted' => $meta ? gmdate( $field['php_format'], intval( $meta ) ) : '',
188
  );
189
  }
190
 
299
  'formatted' => $value,
300
  );
301
  }
302
+ return empty( $args['format'] ) ? $value['formatted'] : gmdate( $args['format'], $value['timestamp'] );
303
  }
304
  }
inc/fields/select-advanced.php CHANGED
@@ -59,6 +59,10 @@ class RWMB_Select_Advanced_Field extends RWMB_Select_Field {
59
  )
60
  );
61
 
 
 
 
 
62
  return $field;
63
  }
64
 
59
  )
60
  );
61
 
62
+ if ( version_compare( get_bloginfo( 'version' ), '5.3', '>=' ) ) {
63
+ $field['class'] .= ' rwmb-select-advanced-dark';
64
+ }
65
+
66
  return $field;
67
  }
68
 
inc/functions.php CHANGED
@@ -240,7 +240,7 @@ if ( ! function_exists( 'rwmb_check_meta_box_supports' ) ) {
240
  $prop = 'user';
241
  break;
242
  case 'setting':
243
- $type = 'setting';
244
  $prop = 'settings_pages';
245
  break;
246
  }
240
  $prop = 'user';
241
  break;
242
  case 'setting':
243
+ $type = $type_or_id;
244
  $prop = 'settings_pages';
245
  break;
246
  }
inc/loader.php CHANGED
@@ -18,7 +18,7 @@ class RWMB_Loader {
18
  */
19
  protected function constants() {
20
  // Script version, used to add version for scripts and styles.
21
- define( 'RWMB_VER', '5.2.3' );
22
 
23
  list( $path, $url ) = self::get_path( dirname( dirname( __FILE__ ) ) );
24
 
18
  */
19
  protected function constants() {
20
  // Script version, used to add version for scripts and styles.
21
+ define( 'RWMB_VER', '5.2.4' );
22
 
23
  list( $path, $url ) = self::get_path( dirname( dirname( __FILE__ ) ) );
24
 
inc/update/settings.php CHANGED
@@ -120,7 +120,7 @@ class RWMB_Update_Settings {
120
  $status = $this->option->get_license_status();
121
  $api_key = in_array( $status, array( 'expired', 'active' ), true ) ? '********************************' : $this->option->get( 'api_key' );
122
  ?>
123
- <input required class="regular-text" name="meta_box_updater[api_key]" value="<?php echo esc_attr( $api_key ); ?>" type="password">
124
  <?php if ( isset( $messages[ $status ] ) ) : ?>
125
  <p class="description"><?php echo wp_kses_post( sprintf( $messages[ $status ], 'https://metabox.io/pricing/', 'https://metabox.io/my-account/' ) ); ?></p>
126
  <?php endif; ?>
120
  $status = $this->option->get_license_status();
121
  $api_key = in_array( $status, array( 'expired', 'active' ), true ) ? '********************************' : $this->option->get( 'api_key' );
122
  ?>
123
+ <input class="regular-text" name="meta_box_updater[api_key]" value="<?php echo esc_attr( $api_key ); ?>" type="password">
124
  <?php if ( isset( $messages[ $status ] ) ) : ?>
125
  <p class="description"><?php echo wp_kses_post( sprintf( $messages[ $status ], 'https://metabox.io/pricing/', 'https://metabox.io/my-account/' ) ); ?></p>
126
  <?php endif; ?>
languages/default.pot DELETED
@@ -1,353 +0,0 @@
1
- # <!=Copyright (C) 2014 Rilwis
2
- # This file is distributed under the GPL2+.=!>
3
- #, fuzzy
4
- msgid ""
5
- msgstr ""
6
- "Project-Id-Version: Meta Box\n"
7
- "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/meta-box\n"
8
- "POT-Creation-Date: 2018-04-19 08:43+0700\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "PO-Revision-Date: 2014-MO-DA HO:MI+ZONE\n"
13
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
- "Language-Team: Meta Box <info@metabox.io>\n"
15
- "X-Generator: Poedit 2.0.6\n"
16
- "X-Poedit-KeywordsList: __;_x;_e;_ex;_n;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
17
- "X-Poedit-Basepath: ..\n"
18
- "X-Poedit-SearchPath-0: .\n"
19
- "X-Poedit-SearchPathExcluded-0: js\n"
20
- "X-Poedit-SearchPathExcluded-1: demo\n"
21
- "X-Poedit-SearchPathExcluded-2: tests\n"
22
- "X-Poedit-SearchPathExcluded-3: css\n"
23
- "X-Poedit-SearchPathExcluded-4: lang\n"
24
-
25
- #: inc/about/about.php:50
26
- msgid "About"
27
- msgstr ""
28
-
29
- #: inc/about/about.php:59 inc/about/about.php:60
30
- msgid "Welcome to Meta Box"
31
- msgstr ""
32
-
33
- #: inc/about/sections/getting-started.php:13
34
- msgid "Getting Started With Online Generator"
35
- msgstr ""
36
-
37
- #: inc/about/sections/getting-started.php:14
38
- msgid "The fastest way to getting started with Meta Box is use our online generator to generate meta boxes with custom fields. It provides a friendly UI for you to create meta boxes and custom fields just by drag and drop fields."
39
- msgstr ""
40
-
41
- #: inc/about/sections/getting-started.php:16
42
- msgid "online generator"
43
- msgstr ""
44
-
45
- #: inc/about/sections/getting-started.php:18
46
- msgid "Go to Online Generator"
47
- msgstr ""
48
-
49
- #: inc/about/sections/getting-started.php:22
50
- msgid "Understand The Basics"
51
- msgstr ""
52
-
53
- #: inc/about/sections/getting-started.php:23
54
- msgid "Meta Box doesn't have any admin page for configuration or settings. Instead of that, it provides a very powerful API to speed up the process of creating meta boxes and custom fields. It might take you a little time at first, but then you'll love the way it work because it helps you do and customize almost everything."
55
- msgstr ""
56
-
57
- #: inc/about/sections/getting-started.php:24
58
- msgid "Learn More"
59
- msgstr ""
60
-
61
- #: inc/about/sections/getting-started.php:26 inc/core.php:39
62
- msgid "Extensions"
63
- msgstr ""
64
-
65
- #: inc/about/sections/getting-started.php:27
66
- msgid "Wanna see more features that transform your WordPress website into a powerful CMS? Check out some extensions below:"
67
- msgstr ""
68
-
69
- #: inc/about/sections/getting-started.php:29
70
- msgid "Meta Box Group"
71
- msgstr ""
72
-
73
- #: inc/about/sections/getting-started.php:30
74
- msgid "Meta Box Conditional Logic"
75
- msgstr ""
76
-
77
- #: inc/about/sections/getting-started.php:31
78
- msgid "MB Settings Page"
79
- msgstr ""
80
-
81
- #: inc/about/sections/getting-started.php:32
82
- msgid "MB Term Meta"
83
- msgstr ""
84
-
85
- #: inc/about/sections/getting-started.php:34
86
- msgid "More Extensions"
87
- msgstr ""
88
-
89
- #: inc/about/sections/getting-started.php:39
90
- msgid "Go to MetaBox.IO &rarr;"
91
- msgstr ""
92
-
93
- #: inc/about/sections/tabs.php:11
94
- msgid "Getting Started"
95
- msgstr ""
96
-
97
- #: inc/about/sections/welcome.php:13
98
- #, php-format
99
- msgid "Welcome to %1$s %2$s"
100
- msgstr ""
101
-
102
- #: inc/about/sections/welcome.php:16
103
- msgid "This plugin is a lightweight and powerful toolkit that helps you to create custom meta boxes and custom fields in WordPress fast and easy. Follow the instruction below to get started."
104
- msgstr ""
105
-
106
- #: inc/core.php:38
107
- msgid "Documentation"
108
- msgstr ""
109
-
110
- #: inc/field.php:359
111
- msgid "+ Add more"
112
- msgstr ""
113
-
114
- #: inc/fields/autocomplete.php:20 inc/fields/autocomplete.php:81
115
- #: inc/fields/autocomplete.php:93 inc/fields/file.php:121
116
- msgid "Delete"
117
- msgstr ""
118
-
119
- #: inc/fields/background.php:58
120
- msgid "Background Image"
121
- msgstr ""
122
-
123
- #: inc/fields/background.php:70
124
- msgid "-- Background Repeat --"
125
- msgstr ""
126
-
127
- #: inc/fields/background.php:72
128
- msgid "No Repeat"
129
- msgstr ""
130
-
131
- #: inc/fields/background.php:73
132
- msgid "Repeat All"
133
- msgstr ""
134
-
135
- #: inc/fields/background.php:74
136
- msgid "Repeat Horizontally"
137
- msgstr ""
138
-
139
- #: inc/fields/background.php:75
140
- msgid "Repeat Vertically"
141
- msgstr ""
142
-
143
- #: inc/fields/background.php:76 inc/fields/background.php:110
144
- #: inc/fields/background.php:122
145
- msgid "Inherit"
146
- msgstr ""
147
-
148
- #: inc/fields/background.php:86
149
- msgid "-- Background Position --"
150
- msgstr ""
151
-
152
- #: inc/fields/background.php:88
153
- msgid "Top Left"
154
- msgstr ""
155
-
156
- #: inc/fields/background.php:89
157
- msgid "Top Center"
158
- msgstr ""
159
-
160
- #: inc/fields/background.php:90
161
- msgid "Top Right"
162
- msgstr ""
163
-
164
- #: inc/fields/background.php:91
165
- msgid "Center Left"
166
- msgstr ""
167
-
168
- #: inc/fields/background.php:92
169
- msgid "Center Center"
170
- msgstr ""
171
-
172
- #: inc/fields/background.php:93
173
- msgid "Center Right"
174
- msgstr ""
175
-
176
- #: inc/fields/background.php:94
177
- msgid "Bottom Left"
178
- msgstr ""
179
-
180
- #: inc/fields/background.php:95
181
- msgid "Bottom Center"
182
- msgstr ""
183
-
184
- #: inc/fields/background.php:96
185
- msgid "Bottom Right"
186
- msgstr ""
187
-
188
- #: inc/fields/background.php:106
189
- msgid "-- Background Attachment --"
190
- msgstr ""
191
-
192
- #: inc/fields/background.php:108
193
- msgid "Fixed"
194
- msgstr ""
195
-
196
- #: inc/fields/background.php:109
197
- msgid "Scroll"
198
- msgstr ""
199
-
200
- #: inc/fields/background.php:120
201
- msgid "-- Background Size --"
202
- msgstr ""
203
-
204
- #: inc/fields/background.php:123
205
- msgid "Cover"
206
- msgstr ""
207
-
208
- #: inc/fields/background.php:124
209
- msgid "Contain"
210
- msgstr ""
211
-
212
- #: inc/fields/button.php:32
213
- msgid "Click me"
214
- msgstr ""
215
-
216
- #: inc/fields/checkbox.php:53
217
- msgid "Yes"
218
- msgstr ""
219
-
220
- #: inc/fields/checkbox.php:53
221
- msgid "No"
222
- msgstr ""
223
-
224
- #: inc/fields/file-input.php:20
225
- msgid "Select File"
226
- msgstr ""
227
-
228
- #: inc/fields/file-input.php:39 inc/fields/select.php:87
229
- msgid "Select"
230
- msgstr ""
231
-
232
- #: inc/fields/file-input.php:41 inc/fields/media.php:27
233
- msgid "Remove"
234
- msgstr ""
235
-
236
- #: inc/fields/file.php:21
237
- #, php-format
238
- msgid "You may only upload maximum %d file"
239
- msgstr ""
240
-
241
- #: inc/fields/file.php:23
242
- #, php-format
243
- msgid "You may only upload maximum %d files"
244
- msgstr ""
245
-
246
- #: inc/fields/file.php:53
247
- msgid "Error: Cannot delete file"
248
- msgstr ""
249
-
250
- #: inc/fields/file.php:66
251
- msgid "+ Add new file"
252
- msgstr ""
253
-
254
- #: inc/fields/file.php:122 inc/fields/media.php:28
255
- msgid "Edit"
256
- msgstr ""
257
-
258
- #: inc/fields/input-list.php:90
259
- msgid "Select All / None"
260
- msgstr ""
261
-
262
- #: inc/fields/key-value.php:132
263
- msgid "Key"
264
- msgstr ""
265
-
266
- #: inc/fields/key-value.php:133
267
- msgid "Value"
268
- msgstr ""
269
-
270
- #: inc/fields/map.php:73
271
- msgid "Find Address"
272
- msgstr ""
273
-
274
- #: inc/fields/media.php:24
275
- msgid "+ Add Media"
276
- msgstr ""
277
-
278
- #: inc/fields/media.php:25
279
- msgid " file"
280
- msgstr ""
281
-
282
- #: inc/fields/media.php:26
283
- msgid " files"
284
- msgstr ""
285
-
286
- #: inc/fields/media.php:29
287
- msgid "View"
288
- msgstr ""
289
-
290
- #: inc/fields/media.php:30
291
- msgid "No Title"
292
- msgstr ""
293
-
294
- #: inc/fields/media.php:33
295
- msgid "Select Files"
296
- msgstr ""
297
-
298
- #: inc/fields/media.php:34
299
- msgid "or"
300
- msgstr ""
301
-
302
- #: inc/fields/media.php:35
303
- msgid "Drop files here to upload"
304
- msgstr ""
305
-
306
- #: inc/fields/oembed.php:64
307
- msgid "Embed HTML not available."
308
- msgstr ""
309
-
310
- #: inc/fields/post.php:32
311
- msgid "Select a post"
312
- msgstr ""
313
-
314
- #: inc/fields/post.php:38 inc/fields/taxonomy.php:49
315
- #, php-format
316
- msgid "Select a %s"
317
- msgstr ""
318
-
319
- #: inc/fields/select-advanced.php:45
320
- msgid "Select an item"
321
- msgstr ""
322
-
323
- #: inc/fields/select.php:87
324
- msgid "All"
325
- msgstr ""
326
-
327
- #: inc/fields/select.php:87
328
- msgid "None"
329
- msgstr ""
330
-
331
- #: inc/fields/sidebar.php:30
332
- msgid "Select a sidebar"
333
- msgstr ""
334
-
335
- #: inc/fields/switch.php:90
336
- msgid "On"
337
- msgstr ""
338
-
339
- #: inc/fields/switch.php:91
340
- msgid "Off"
341
- msgstr ""
342
-
343
- #: inc/fields/taxonomy.php:43
344
- msgid "Select a term"
345
- msgstr ""
346
-
347
- #: inc/fields/user.php:22
348
- msgid "Select an user"
349
- msgstr ""
350
-
351
- #: inc/validation.php:47
352
- msgid "Please correct the errors highlighted below and try again."
353
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/meta-box-ar.po DELETED
@@ -1,122 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Meta Box Script For WordPress\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-03 15:09+0700\n"
6
- "PO-Revision-Date: 2012-12-29 23:40-0500\n"
7
- "Last-Translator: Adel Qalieh <aqalieh95@gmail.com>\n"
8
- "Language-Team: Adel Qalieh <aqalieh95@gmail.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_e;_x:2c,1;_n:1,2;_n_noop:1,2;_nx:1,2;"
13
- "_nx_noop:1,2\n"
14
- "X-Poedit-Basepath: .\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "Plural-Forms: nplurals=6; plural= n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
17
- "&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
18
- "X-Language: ar\n"
19
- "X-Source-Language: en\n"
20
- "Language: ar\n"
21
- "X-Poedit-SearchPath-0: ..\n"
22
- "X-Poedit-SearchPath-1: ../inc/fields\n"
23
-
24
- #: ../meta-box.php:79
25
- msgid "RW_Meta_Box Debug:"
26
- msgstr "RW_Meta_Box Debug:"
27
-
28
- #: ../inc/classes/meta-box.php:316
29
- msgid "+"
30
- msgstr "+"
31
-
32
- #: ../inc/classes/meta-box.php:340
33
- msgid "&#8211;"
34
- msgstr "&#8211;"
35
-
36
- #: ../inc/fields/file.php:69
37
- msgid "Error: Cannot delete file"
38
- msgstr "خطأ: لا يمكن حذف الملف"
39
-
40
- #: ../inc/fields/file.php:83
41
- msgctxt "file upload"
42
- msgid "Uploaded files"
43
- msgstr "ملفات محملة"
44
-
45
- #: ../inc/fields/file.php:84
46
- msgctxt "file upload"
47
- msgid "Delete this file"
48
- msgstr "حذف هذا الملف"
49
-
50
- #: ../inc/fields/file.php:85
51
- msgctxt "file upload"
52
- msgid "Delete"
53
- msgstr "حذف"
54
-
55
- #: ../inc/fields/file.php:86
56
- msgctxt "file upload"
57
- msgid "Upload files"
58
- msgstr "تحميل الملفات"
59
-
60
- #: ../inc/fields/file.php:87
61
- msgctxt "file upload"
62
- msgid "+ Add new file"
63
- msgstr "+ إضافة ملف جديد"
64
-
65
- #: ../inc/fields/image.php:75
66
- msgid "Order saved"
67
- msgstr "حفظ الترتيب"
68
-
69
- #: ../inc/fields/image.php:91 ../inc/fields/plupload-image.php:156
70
- msgctxt "image upload"
71
- msgid "Uploaded files"
72
- msgstr "ملفات محملة"
73
-
74
- #: ../inc/fields/image.php:92 ../inc/fields/plupload-image.php:112
75
- msgctxt "image upload"
76
- msgid "Delete this file"
77
- msgstr "حذف هذا الملف"
78
-
79
- #: ../inc/fields/image.php:93 ../inc/fields/plupload-image.php:113
80
- msgctxt "image upload"
81
- msgid "Delete"
82
- msgstr "حذف"
83
-
84
- #: ../inc/fields/image.php:94 ../inc/fields/plupload-image.php:114
85
- msgctxt "image upload"
86
- msgid "Edit"
87
- msgstr "حرر"
88
-
89
- #: ../inc/fields/image.php:95 ../inc/fields/plupload-image.php:157
90
- msgctxt "image upload"
91
- msgid "Upload files"
92
- msgstr "تحميل الملفات"
93
-
94
- #: ../inc/fields/image.php:96
95
- msgctxt "image upload"
96
- msgid "+ Add new image"
97
- msgstr "إضافة صورة جديدة"
98
-
99
- #: ../inc/fields/plupload-image.php:95
100
- msgctxt "image upload"
101
- msgid "Allowed Image Files"
102
- msgstr "أنواع الصور المسموحة"
103
-
104
- #: ../inc/fields/plupload-image.php:160
105
- msgctxt "image upload"
106
- msgid "Drop images here"
107
- msgstr "إفلت الصور هنا"
108
-
109
- #: ../inc/fields/plupload-image.php:161
110
- msgctxt "image upload"
111
- msgid "or"
112
- msgstr "أو"
113
-
114
- #: ../inc/fields/plupload-image.php:162
115
- msgctxt "image upload"
116
- msgid "Select Files"
117
- msgstr "إختر الملفات"
118
-
119
- #: ../inc/fields/thickbox-image.php:45
120
- msgctxt "image upload"
121
- msgid "Upload image"
122
- msgstr "حمل الصورة"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/meta-box-fa_IR.po DELETED
@@ -1,184 +0,0 @@
1
- # <!=Copyright (C) 2014 Rilwis
2
- # This file is distributed under the GPL2+.=!>
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Meta Box 4.8.7\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/meta-box\n"
7
- "POT-Creation-Date: 2017-05-20 18:41+0430\n"
8
- "PO-Revision-Date: 2017-05-20 18:46+0430\n"
9
- "Last-Translator: Morteza Gholami <Morteza.Gholami@Yahoo.Com>\n"
10
- "Language-Team: Meta Box <admin@metabox.io>\n"
11
- "Language: fa_IR\n"
12
- "MIME-Version: 1.0\n"
13
- "Content-Type: text/plain; charset=UTF-8\n"
14
- "Content-Transfer-Encoding: 8bit\n"
15
- "X-Generator: Poedit 1.8.6\n"
16
- "X-Poedit-KeywordsList: __;_x;_e;_ex;_n;_nx;esc_attr__;esc_attr_e;esc_attr_x;"
17
- "esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
18
- "X-Poedit-Basepath: ..\n"
19
- "Plural-Forms: nplurals=1; plural=0;\n"
20
- "X-Poedit-SearchPath-0: .\n"
21
- "X-Poedit-SearchPathExcluded-0: js\n"
22
- "X-Poedit-SearchPathExcluded-1: demo\n"
23
- "X-Poedit-SearchPathExcluded-2: tests\n"
24
- "X-Poedit-SearchPathExcluded-3: css\n"
25
- "X-Poedit-SearchPathExcluded-4: lang\n"
26
-
27
- #: inc/core.php:33
28
- msgid "Documentation"
29
- msgstr "مستندات"
30
-
31
- #: inc/core.php:34
32
- msgid "Extensions"
33
- msgstr "افزونه‌ها"
34
-
35
- #: inc/field.php:343
36
- msgid "+ Add more"
37
- msgstr "+ افزودن بیشتر"
38
-
39
- #: inc/fields/autocomplete.php:20 inc/fields/autocomplete.php:81
40
- #: inc/fields/autocomplete.php:93 inc/fields/file.php:143
41
- msgid "Delete"
42
- msgstr "حذف"
43
-
44
- #: inc/fields/button.php:32
45
- msgid "Click me"
46
- msgstr "کلیک کنید"
47
-
48
- #: inc/fields/checkbox.php:50
49
- msgid "Yes"
50
- msgstr "بله"
51
-
52
- #: inc/fields/checkbox.php:50
53
- msgid "No"
54
- msgstr "خیر"
55
-
56
- #: inc/fields/file-input.php:19
57
- msgid "Select File"
58
- msgstr "انتخاب فایل"
59
-
60
- #: inc/fields/file-input.php:38 inc/fields/select.php:87
61
- msgid "Select"
62
- msgstr "انتخاب"
63
-
64
- #: inc/fields/file-input.php:40 inc/fields/media.php:27
65
- msgid "Remove"
66
- msgstr "حذف"
67
-
68
- #: inc/fields/file.php:21
69
- #, php-format
70
- msgid "You may only upload maximum %d file"
71
- msgstr "شما تنها می‌بایست نهایتا %d فایل بارگذاری کنید"
72
-
73
- #: inc/fields/file.php:23
74
- #, php-format
75
- msgid "You may only upload maximum %d files"
76
- msgstr "شما تنها می‌بایست نهایتا %d فایل بارگذاری کنید"
77
-
78
- #: inc/fields/file.php:79
79
- msgid "Error: Cannot delete file"
80
- msgstr "خطا: عدم توانایی حذف فایل"
81
-
82
- #: inc/fields/file.php:93
83
- msgid "+ Add new file"
84
- msgstr "+ افزودن فایل جدید"
85
-
86
- #: inc/fields/file.php:144 inc/fields/media.php:28
87
- msgid "Edit"
88
- msgstr "ویرایش"
89
-
90
- #: inc/fields/input-list.php:90
91
- msgid "Select All / None"
92
- msgstr "انتخاب همه / هیچ‌کدام"
93
-
94
- #: inc/fields/key-value.php:126
95
- msgid "Key"
96
- msgstr "کلید"
97
-
98
- #: inc/fields/key-value.php:127
99
- msgid "Value"
100
- msgstr "مقدار"
101
-
102
- #: inc/fields/map.php:62
103
- msgid "Find Address"
104
- msgstr "پیدا کردن آدرس"
105
-
106
- #: inc/fields/media.php:24
107
- msgid "+ Add Media"
108
- msgstr "+ افزودن رسانه"
109
-
110
- #: inc/fields/media.php:25
111
- msgid " file"
112
- msgstr " فایل"
113
-
114
- #: inc/fields/media.php:26
115
- msgid " files"
116
- msgstr " فایل‌ها"
117
-
118
- #: inc/fields/media.php:29
119
- msgid "View"
120
- msgstr "نمایش"
121
-
122
- #: inc/fields/media.php:30
123
- msgid "No Title"
124
- msgstr "بدون عنوان"
125
-
126
- #: inc/fields/media.php:33
127
- msgid "Select Files"
128
- msgstr "انتخاب فایل‌ها"
129
-
130
- #: inc/fields/media.php:34
131
- msgid "or"
132
- msgstr "یا"
133
-
134
- #: inc/fields/media.php:35
135
- msgid "Drop files here to upload"
136
- msgstr "فایل‌ها را برای بارگذاری اینجا بیاندازید"
137
-
138
- #: inc/fields/oembed.php:64
139
- msgid "Embed HTML not available."
140
- msgstr "قراردادن HTML امکان‌پذیر نیست"
141
-
142
- #: inc/fields/oembed.php:79
143
- msgid "Preview"
144
- msgstr "پیشنمایش"
145
-
146
- #: inc/fields/post.php:36
147
- msgid "Select a post"
148
- msgstr "انتخاب یک پست"
149
-
150
- #: inc/fields/post.php:41 inc/fields/taxonomy.php:52
151
- #, php-format
152
- msgid "Select a %s"
153
- msgstr "انتخاب یک %s"
154
-
155
- #: inc/fields/select-advanced.php:45
156
- msgid "Select an item"
157
- msgstr "انتخاب یک آیتم"
158
-
159
- #: inc/fields/select.php:87
160
- msgid "All"
161
- msgstr "همه"
162
-
163
- #: inc/fields/select.php:87
164
- msgid "None"
165
- msgstr "هیچکدام"
166
-
167
- #: inc/fields/taxonomy.php:47
168
- msgid "Select a term"
169
- msgstr "انتخاب یک دسته"
170
-
171
- #: inc/fields/thickbox-image.php:55
172
- msgid "Upload Images"
173
- msgstr "بارگذاری تصاویر"
174
-
175
- #: inc/fields/user.php:30
176
- msgid "Select an user"
177
- msgstr "انتخاب یک کاربر"
178
-
179
- #: inc/validation.php:47
180
- msgid "Please correct the errors highlighted below and try again."
181
- msgstr "لطفا خطاهای پررنگ شده زیر را تصحیح و مجددا تلاش نمایید."
182
-
183
- #~ msgid "Upload Files"
184
- #~ msgstr "بارگذاری فایل‌ها"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/meta-box-fr_FR.po DELETED
@@ -1,217 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Meta Box\n"
4
- "POT-Creation-Date: 2017-08-11 10:11+0000\n"
5
- "PO-Revision-Date: 2017-08-11 10:17+0000\n"
6
- "Last-Translator: Ludovic <me@ludovicmeyer.com>\n"
7
- "Language-Team: French (France)\n"
8
- "Language: fr-FR\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Loco - https://localise.biz/\n"
13
- "X-Poedit-Basepath: ..\n"
14
- "X-Poedit-SourceCharset: UTF-8\n"
15
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
16
- "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
17
- "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
18
- "Plural-Forms: nplurals=2; plural=n > 1\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
- "X-Poedit-SearchPathExcluded-0: *.js\n"
21
- "Report-Msgid-Bugs-To: "
22
-
23
- #: inc/field.php:356
24
- msgid "+ Add more"
25
- msgstr "+ Ajouter"
26
-
27
- #: inc/fields/input-list.php:90
28
- msgid "Select All / None"
29
- msgstr "Sélectionner tout / acucun"
30
-
31
- #: inc/fields/select.php:87
32
- msgid "All"
33
- msgstr "Tout"
34
-
35
- #: inc/fields/select.php:87
36
- msgid "None"
37
- msgstr "Aucun"
38
-
39
- #: inc/fields/media.php:24
40
- msgctxt "media"
41
- msgid "+ Add Media"
42
- msgstr "+ Ajouter un média"
43
-
44
- #: inc/fields/media.php:25
45
- msgctxt "media"
46
- msgid " file"
47
- msgstr "fichier"
48
-
49
- #: inc/fields/media.php:26
50
- msgctxt "media"
51
- msgid " files"
52
- msgstr "fichiers"
53
-
54
- #: inc/fields/media.php:27
55
- msgctxt "media"
56
- msgid "Remove"
57
- msgstr "Supprimer"
58
-
59
- #: inc/fields/media.php:28
60
- msgctxt "media"
61
- msgid "Edit"
62
- msgstr "Éditer"
63
-
64
- #: inc/fields/media.php:29
65
- msgctxt "media"
66
- msgid "View"
67
- msgstr "Voir"
68
-
69
- #: inc/fields/media.php:30
70
- msgctxt "media"
71
- msgid "No Title"
72
- msgstr "Pas de titre"
73
-
74
- #: inc/fields/media.php:33
75
- msgctxt "media"
76
- msgid "Select Files"
77
- msgstr "Sélectionner un fichier"
78
-
79
- #: inc/fields/media.php:34
80
- msgctxt "media"
81
- msgid "or"
82
- msgstr "ou"
83
-
84
- #: inc/fields/media.php:35
85
- msgctxt "media"
86
- msgid "Drop files here to upload"
87
- msgstr "Déposer un fichier ici pour l'envoyer"
88
-
89
- #: inc/fields/post.php:36
90
- msgid "Select a post"
91
- msgstr "Sélectionner un article"
92
-
93
- #: inc/fields/checkbox.php:50
94
- msgid "Yes"
95
- msgstr "Oui"
96
-
97
- #: inc/fields/checkbox.php:50
98
- msgid "No"
99
- msgstr "Non"
100
-
101
- #: inc/fields/user.php:30
102
- msgid "Select an user"
103
- msgstr "Sélectionner un utilisateur"
104
-
105
- #: inc/fields/select-advanced.php:45
106
- msgid "Select an item"
107
- msgstr "Sélectionner un élément"
108
-
109
- #: inc/fields/key-value.php:126
110
- msgid "Key"
111
- msgstr "Clé"
112
-
113
- #: inc/fields/key-value.php:127
114
- msgid "Value"
115
- msgstr "Valeur"
116
-
117
- #: inc/fields/taxonomy.php:47
118
- msgid "Select a term"
119
- msgstr "Sélectionner un terme"
120
-
121
- #. Name of the plugin
122
- msgid "Meta Box"
123
- msgstr ""
124
-
125
- #. Description of the plugin
126
- msgid "Create custom meta boxes and custom fields in WordPress."
127
- msgstr ""
128
-
129
- #. URI of the plugin
130
- #. Author URI of the plugin
131
- msgid "https://metabox.io"
132
- msgstr ""
133
-
134
- #. Author of the plugin
135
- msgid "MetaBox.io"
136
- msgstr ""
137
-
138
- #: inc/core.php:33
139
- msgid "Documentation"
140
- msgstr "Documentation"
141
-
142
- #: inc/core.php:34
143
- msgid "Extensions"
144
- msgstr "Extensions"
145
-
146
- #: inc/validation.php:47
147
- msgid "Please correct the errors highlighted below and try again."
148
- msgstr ""
149
- "Merci de corriger les erreurs mises en évidence ci-dessous et de réessayer."
150
-
151
- #: inc/fields/file.php:21
152
- #, php-format
153
- msgid "You may only upload maximum %d file"
154
- msgstr "Vous ne pouvez mettre en ligne qu'un fichier de %d maximum"
155
-
156
- #: inc/fields/file.php:23
157
- #, php-format
158
- msgid "You may only upload maximum %d files"
159
- msgstr "Vous ne pouvez mettre en ligne que des fichiers de %d maximum"
160
-
161
- #: inc/fields/file.php:83
162
- msgid "Error: Cannot delete file"
163
- msgstr "Erreur : Impossible de supprimer le fichier"
164
-
165
- #: inc/fields/file.php:97
166
- msgctxt "file upload"
167
- msgid "+ Add new file"
168
- msgstr "+ Ajouter un nouveau fichier"
169
-
170
- #: inc/fields/file.php:147
171
- msgctxt "file upload"
172
- msgid "Delete"
173
- msgstr "Supprimer"
174
-
175
- #: inc/fields/file.php:148
176
- msgctxt "file upload"
177
- msgid "Edit"
178
- msgstr "Modifier"
179
-
180
- #: inc/fields/oembed.php:64
181
- msgid "Embed HTML not available."
182
- msgstr "Intégration du code HTML non disponible."
183
-
184
- #: inc/fields/select.php:87 inc/fields/file-input.php:38
185
- msgid "Select"
186
- msgstr "Choisissez"
187
-
188
- #: inc/fields/thickbox-image.php:55
189
- msgctxt "image upload"
190
- msgid "Upload Images"
191
- msgstr "Mettez en ligne des images"
192
-
193
- #: inc/fields/post.php:41 inc/fields/taxonomy.php:52
194
- #, php-format
195
- msgid "Select a %s"
196
- msgstr "Choisissez un %s"
197
-
198
- #: inc/fields/button.php:32
199
- msgid "Click me"
200
- msgstr "Cliquez-ici"
201
-
202
- #: inc/fields/autocomplete.php:20 inc/fields/autocomplete.php:81
203
- #: inc/fields/autocomplete.php:93
204
- msgid "Delete"
205
- msgstr "Supprimer"
206
-
207
- #: inc/fields/map.php:62
208
- msgid "Find Address"
209
- msgstr "Trouver une adresse"
210
-
211
- #: inc/fields/file-input.php:19
212
- msgid "Select File"
213
- msgstr "Choisissez un fichier"
214
-
215
- #: inc/fields/file-input.php:40
216
- msgid "Remove"
217
- msgstr "Supprimer"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/meta-box-it_IT.po DELETED
@@ -1,318 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Meta Box 4.8.7\n"
4
- "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/meta-box\n"
5
- "POT-Creation-Date: 2017-12-14 12:13+0100\n"
6
- "PO-Revision-Date: 2017-12-14 13:06+0100\n"
7
- "Last-Translator: Giacomo Antolini <giacomo.antolini@gmail.com>\n"
8
- "Language-Team: Meta Box <admin@metabox.io>\n"
9
- "Language: it_IT\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_x;_e;_ex;_n;_nx;esc_attr__;esc_attr_e;esc_attr_x;"
14
- "esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
15
- "X-Poedit-Basepath: ..\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Generator: Poedit 2.0.4\n"
18
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
- "X-Poedit-SearchPathExcluded-0: js\n"
21
- "X-Poedit-SearchPathExcluded-1: demo\n"
22
- "X-Poedit-SearchPathExcluded-2: tests\n"
23
- "X-Poedit-SearchPathExcluded-3: css\n"
24
- "X-Poedit-SearchPathExcluded-4: lang\n"
25
-
26
- #: inc/about/about.php:50
27
- msgid "About"
28
- msgstr "Informazioni"
29
-
30
- #: inc/about/about.php:59 inc/about/about.php:60
31
- msgid "Welcome to Meta Box"
32
- msgstr "Benvenuto su Meta Box"
33
-
34
- #: inc/about/sections/getting-started.php:13
35
- msgid "Getting Started With Online Generator"
36
- msgstr "Inizia Con Il Generatore Online"
37
-
38
- #: inc/about/sections/getting-started.php:14
39
- msgid ""
40
- "The fastest way to getting started with Meta Box is use our online generator "
41
- "to generate meta boxes with custom fields. It provides a friendly UI for you "
42
- "to create meta boxes and custom fields just by drag and drop fields."
43
- msgstr ""
44
- "Il modo più facile per iniziare con Meta Box è utilizzando il nostro "
45
- "generatore online. Fornisce una semplice interfaccia grafica che permette di "
46
- "creare le meta box e i campi personalizzati tramite il drag-and-drop."
47
-
48
- #: inc/about/sections/getting-started.php:16
49
- msgid "online generator"
50
- msgstr "generatore online"
51
-
52
- #: inc/about/sections/getting-started.php:18
53
- msgid "Go to Online Generator"
54
- msgstr "Vai al Generatore Online"
55
-
56
- #: inc/about/sections/getting-started.php:22
57
- msgid "Understand The Basics"
58
- msgstr "Capire Le Basi"
59
-
60
- #: inc/about/sections/getting-started.php:23
61
- msgid ""
62
- "Meta Box doesn't have any admin page for configuration or settings. Instead "
63
- "of that, it provides a very powerful API to speed up the process of creating "
64
- "meta boxes and custom fields. It might take you a little time at first, but "
65
- "then you'll love the way it work because it helps you do and customize "
66
- "almost everything."
67
- msgstr ""
68
- "Meta Box non ha una pagina di gestione per la configurazione e le "
69
- "impostazioni. Al suo posto, fornisce delle potenti API per velocizzare il "
70
- "processo di creazione delle meta box e dei campi personalizzati. Può "
71
- "richiedere un po’ di tempo all’inizio, ma poi amerai il modo in cui funziona "
72
- "perché ti dà la possibilità di personalizzare quasi tutto."
73
-
74
- #: inc/about/sections/getting-started.php:24
75
- msgid "Learn More"
76
- msgstr "Scopri di Più"
77
-
78
- #: inc/about/sections/getting-started.php:26 inc/core.php:39
79
- msgid "Extensions"
80
- msgstr "Estensioni"
81
-
82
- #: inc/about/sections/getting-started.php:27
83
- msgid ""
84
- "Wanna see more features that transform your WordPress website into a "
85
- "powerful CMS? Check out some extensions below:"
86
- msgstr ""
87
-
88
- #: inc/about/sections/getting-started.php:29
89
- msgid "Meta Box Group"
90
- msgstr ""
91
-
92
- #: inc/about/sections/getting-started.php:30
93
- msgid "Meta Box Conditional Logic"
94
- msgstr ""
95
-
96
- #: inc/about/sections/getting-started.php:31
97
- msgid "MB Settings Page"
98
- msgstr ""
99
-
100
- #: inc/about/sections/getting-started.php:32
101
- msgid "MB Term Meta"
102
- msgstr ""
103
-
104
- #: inc/about/sections/getting-started.php:34
105
- msgid "More Extensions"
106
- msgstr "Altre Estensioni"
107
-
108
- #: inc/about/sections/getting-started.php:39
109
- msgid "Go to MetaBox.IO &rarr;"
110
- msgstr "Vai su MetaBox.IO &rarr;"
111
-
112
- #: inc/about/sections/tabs.php:11
113
- msgid "Getting Started"
114
- msgstr "Inizia"
115
-
116
- #: inc/about/sections/welcome.php:13
117
- #, php-format
118
- msgid "Welcome to %1$s %2$s"
119
- msgstr "Benvenuto su %1$s %2$s"
120
-
121
- #: inc/about/sections/welcome.php:16
122
- msgid ""
123
- "This plugin is a lightweight and powerful toolkit that helps you to create "
124
- "custom meta boxes and custom fields in WordPress fast and easy. Follow the "
125
- "instruction below to get started."
126
- msgstr ""
127
-
128
- #: inc/core.php:38
129
- msgid "Documentation"
130
- msgstr "Documentazione"
131
-
132
- #: inc/field.php:356
133
- msgid "+ Add more"
134
- msgstr "+ Aggiungine altre"
135
-
136
- #: inc/fields/autocomplete.php:20 inc/fields/autocomplete.php:81
137
- #: inc/fields/autocomplete.php:93
138
- msgid "Delete"
139
- msgstr "Elimina"
140
-
141
- #: inc/fields/file.php:121
142
- msgctxt "file upload"
143
- msgid "Delete"
144
- msgstr "Elimina"
145
-
146
- #: inc/fields/button.php:32
147
- msgid "Click me"
148
- msgstr "Cliccami"
149
-
150
- #: inc/fields/checkbox.php:53
151
- msgid "Yes"
152
- msgstr "Sì"
153
-
154
- #: inc/fields/checkbox.php:53
155
- msgid "No"
156
- msgstr "No"
157
-
158
- #: inc/fields/file-input.php:19
159
- msgid "Select File"
160
- msgstr "Seleziona File"
161
-
162
- #: inc/fields/file-input.php:38 inc/fields/select.php:87
163
- msgid "Select"
164
- msgstr "Seleziona"
165
-
166
- #: inc/fields/file-input.php:40
167
- msgid "Remove"
168
- msgstr "Rimuovi"
169
-
170
- #: inc/fields/media.php:27
171
- msgctxt "media"
172
- msgid "Remove"
173
- msgstr "Rimuovi"
174
-
175
- #: inc/fields/file.php:21
176
- #, php-format
177
- msgid "You may only upload maximum %d file"
178
- msgstr "Puoi caricare al massimo %d file"
179
-
180
- #: inc/fields/file.php:23
181
- #, php-format
182
- msgid "You may only upload maximum %d files"
183
- msgstr "Puoi caricare al massimo %d file"
184
-
185
- #: inc/fields/file.php:53
186
- msgid "Error: Cannot delete file"
187
- msgstr "Errore: Non posso cancellare il file"
188
-
189
- #: inc/fields/file.php:66
190
- msgctxt "file upload"
191
- msgid "+ Add new file"
192
- msgstr "+ Aggiungi un nuovo file"
193
-
194
- #: inc/fields/file.php:122
195
- msgctxt "file upload"
196
- msgid "Edit"
197
- msgstr "Modifica"
198
-
199
- #: inc/fields/media.php:28
200
- msgctxt "media"
201
- msgid "Edit"
202
- msgstr "Modifica"
203
-
204
- #: inc/fields/input-list.php:90
205
- msgid "Select All / None"
206
- msgstr "Seleziona Tutti / Nessuno"
207
-
208
- #: inc/fields/key-value.php:126
209
- msgid "Key"
210
- msgstr "Chiave"
211
-
212
- #: inc/fields/key-value.php:127
213
- msgid "Value"
214
- msgstr "Valore"
215
-
216
- #: inc/fields/map.php:64
217
- msgid "Find Address"
218
- msgstr "Trova l'Indirizzo"
219
-
220
- #: inc/fields/media.php:24
221
- msgctxt "media"
222
- msgid "+ Add Media"
223
- msgstr "+ Aggiungi Media"
224
-
225
- #: inc/fields/media.php:25
226
- msgctxt "media"
227
- msgid " file"
228
- msgstr " file"
229
-
230
- #: inc/fields/media.php:26
231
- msgctxt "media"
232
- msgid " files"
233
- msgstr " file"
234
-
235
- #: inc/fields/media.php:29
236
- msgctxt "media"
237
- msgid "View"
238
- msgstr "Mostra"
239
-
240
- #: inc/fields/media.php:30
241
- msgctxt "media"
242
- msgid "No Title"
243
- msgstr "Nessun Titolo"
244
-
245
- #: inc/fields/media.php:33
246
- msgctxt "media"
247
- msgid "Select Files"
248
- msgstr "Seleziona File"
249
-
250
- #: inc/fields/media.php:34
251
- msgctxt "media"
252
- msgid "or"
253
- msgstr "o"
254
-
255
- #: inc/fields/media.php:35
256
- msgctxt "media"
257
- msgid "Drop files here to upload"
258
- msgstr "Trascina i file qui per caricarli"
259
-
260
- #: inc/fields/oembed.php:64
261
- msgid "Embed HTML not available."
262
- msgstr "Incorporazione dell'HTML non disponibile."
263
-
264
- #: inc/fields/post.php:36
265
- msgid "Select a post"
266
- msgstr "Seleziona un post"
267
-
268
- #: inc/fields/post.php:41 inc/fields/taxonomy.php:52
269
- #, php-format
270
- msgid "Select a %s"
271
- msgstr "Seleziona un %s"
272
-
273
- #: inc/fields/select-advanced.php:45
274
- msgid "Select an item"
275
- msgstr "Seleziona un oggetto"
276
-
277
- #: inc/fields/select.php:87
278
- msgid "All"
279
- msgstr "Tutto"
280
-
281
- #: inc/fields/select.php:87
282
- msgid "None"
283
- msgstr "Nessuno"
284
-
285
- #: inc/fields/sidebar.php:30
286
- msgid "Select a sidebar"
287
- msgstr "Seleziona una sidecar"
288
-
289
- #: inc/fields/switch.php:90
290
- msgid "On"
291
- msgstr "Acceso"
292
-
293
- #: inc/fields/switch.php:91
294
- msgid "Off"
295
- msgstr "Spento"
296
-
297
- #: inc/fields/taxonomy.php:47
298
- msgid "Select a term"
299
- msgstr "Seleziona un termine"
300
-
301
- #: inc/fields/thickbox-image.php:55
302
- msgctxt "image upload"
303
- msgid "Upload Images"
304
- msgstr "Carica Immagini"
305
-
306
- #: inc/fields/user.php:30
307
- msgid "Select an user"
308
- msgstr "Seleziona un utente"
309
-
310
- #: inc/validation.php:47
311
- msgid "Please correct the errors highlighted below and try again."
312
- msgstr "Correggere gli errori evidenziati qui sotto e riprovare."
313
-
314
- #~ msgid "Upload Files"
315
- #~ msgstr "Carica i File"
316
-
317
- #~ msgid "Preview"
318
- #~ msgstr "Anteprima"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/meta-box-nb_NO.po DELETED
@@ -1,149 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Meta Box Script For WordPress\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-03-02 14:08+0700\n"
6
- "PO-Revision-Date: 2012-03-05 22:32+0100\n"
7
- "Last-Translator: \n"
8
- "Language-Team: Magnus Kolstad <mrkolby@gmail.com>\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Poedit-KeywordsList: __;_n:1,2;_n_noop:1,2;_nx:1,2;_nx_noop:1,2;_x:2c,1\n"
13
- "X-Poedit-Basepath: .\n"
14
- "X-Poedit-Language: Norwegian (Bokmål)\n"
15
- "X-Poedit-Country: Norwegian\n"
16
- "X-Poedit-SourceCharset: utf-8\n"
17
- "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
- "X-Poedit-SearchPath-0: ..\n"
19
- "X-Poedit-SearchPath-1: ../inc/fields\n"
20
-
21
- #: ../meta-box.php:334
22
- msgid "+"
23
- msgstr "+"
24
-
25
- #: ../meta-box.php:358
26
- msgid "&#8211;"
27
- msgstr "&#8211;"
28
-
29
- #: ../meta-box.php:691
30
- msgid "RW_Meta_Box Debug:"
31
- msgstr "RW_Meta_Box-debug"
32
-
33
- #: ../inc/fields/color.php:45
34
- msgid "Select a color"
35
- msgstr "Velg en farge"
36
-
37
- #: ../inc/fields/file.php:69
38
- msgid "Error: Cannot delete file"
39
- msgstr "Feil: Kan ikke slette fil"
40
-
41
- #: ../inc/fields/file.php:83
42
- msgctxt "file upload"
43
- msgid "Uploaded files"
44
- msgstr "Opplastede filer"
45
-
46
- #: ../inc/fields/file.php:84
47
- msgctxt "file upload"
48
- msgid "Delete this file"
49
- msgstr "Slett denne filen"
50
-
51
- #: ../inc/fields/file.php:85
52
- msgctxt "file upload"
53
- msgid "Delete"
54
- msgstr "Slett"
55
-
56
- #: ../inc/fields/file.php:86
57
- msgctxt "file upload"
58
- msgid "Upload files"
59
- msgstr "Last opp filer"
60
-
61
- #: ../inc/fields/file.php:87
62
- msgctxt "file upload"
63
- msgid "Add another file"
64
- msgstr "Legg til en fil"
65
-
66
- #: ../inc/fields/image.php:68
67
- msgid "Order saved"
68
- msgstr "Sortering lagret"
69
-
70
- #: ../inc/fields/image.php:84
71
- #: ../inc/fields/plupload-image.php:178
72
- msgctxt "image upload"
73
- msgid "Uploaded files"
74
- msgstr "Opplastede filer"
75
-
76
- #: ../inc/fields/image.php:85
77
- #: ../inc/fields/plupload-image.php:140
78
- msgctxt "image upload"
79
- msgid "Delete this file"
80
- msgstr "Slett denne filen"
81
-
82
- #: ../inc/fields/image.php:86
83
- #: ../inc/fields/plupload-image.php:141
84
- msgctxt "image upload"
85
- msgid "Delete"
86
- msgstr "Slett"
87
-
88
- #: ../inc/fields/image.php:87
89
- #: ../inc/fields/plupload-image.php:142
90
- msgctxt "image upload"
91
- msgid "Edit"
92
- msgstr "Endre"
93
-
94
- #: ../inc/fields/image.php:88
95
- #: ../inc/fields/plupload-image.php:179
96
- msgctxt "image upload"
97
- msgid "Upload files"
98
- msgstr "Last opp filer"
99
-
100
- #: ../inc/fields/image.php:89
101
- #: ../inc/fields/plupload-image.php:180
102
- msgctxt "image upload"
103
- msgid "Add another file"
104
- msgstr "Legg til en fil"
105
-
106
- #: ../inc/fields/plupload-image.php:112
107
- msgctxt "image upload"
108
- msgid "Allowed Image Files"
109
- msgstr "Tillate bilde-filer"
110
-
111
- #: ../inc/fields/plupload-image.php:183
112
- msgctxt "image upload"
113
- msgid "Drop images here"
114
- msgstr "Slipp bildene her"
115
-
116
- #: ../inc/fields/plupload-image.php:184
117
- msgctxt "image upload"
118
- msgid "or"
119
- msgstr "eller"
120
-
121
- #: ../inc/fields/plupload-image.php:185
122
- #, fuzzy
123
- msgctxt "image upload"
124
- msgid "Select Files"
125
- msgstr "Velg en farge"
126
-
127
- #~ msgid "Cannot delete file. Something's wrong."
128
- #~ msgstr "Kan ikke slette filen. Noe er galt."
129
-
130
- #~ msgid "Uploaded files"
131
- #~ msgstr "Opplastede filer."
132
-
133
- #~ msgid "Delete"
134
- #~ msgstr "Slett"
135
-
136
- #~ msgid "Upload new files"
137
- #~ msgstr "Last opp nye filer"
138
-
139
- #~ msgid "Add more file"
140
- #~ msgstr "Legg til flere filer"
141
-
142
- #~ msgid "Uploaded images"
143
- #~ msgstr "Opplastede bilder"
144
-
145
- #~ msgid "Delete this image"
146
- #~ msgstr "Slett dette bildet"
147
-
148
- #~ msgid "Upload new images"
149
- #~ msgstr "Last opp nye bilder"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/meta-box-nl_NL.po DELETED
@@ -1,130 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Meta Box Script For WordPress\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2013-04-21 01:56+0100\n"
6
- "PO-Revision-Date: 2013-04-21 01:56+0100\n"
7
- "Last-Translator: Cor van Noorloos <info@webvorm.nl>\n"
8
- "Language-Team: Rilwis <rilwis@gmail.com>\n"
9
- "Language: nl_NL\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e;_x:2c,1;_n:1,2;_n_noop:1,2;_nx:1,2;"
14
- "_nx_noop:1,2\n"
15
- "X-Poedit-Basepath: .\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Generator: Poedit 1.5.5\n"
18
- "X-Poedit-SearchPath-0: ..\n"
19
- "X-Poedit-SearchPath-1: ../inc/fields\n"
20
-
21
- #: ../inc/classes/meta-box.php:299
22
- msgid "Please correct the errors highlighted below and try again."
23
- msgstr "Corrigeer de fouten hieronder gemarkeerd en probeer opnieuw."
24
-
25
- #: ../inc/classes/meta-box.php:360
26
- msgid "+"
27
- msgstr "+"
28
-
29
- #: ../inc/classes/meta-box.php:382
30
- msgid "&#8211;"
31
- msgstr "&#8211;"
32
-
33
- #: ../inc/fields/file-advanced.php:62
34
- msgctxt "file upload"
35
- msgid "Select or Upload Files"
36
- msgstr "Bestanden selecteren of uploaden"
37
-
38
- #: ../inc/fields/file.php:66
39
- msgid "Error: Cannot delete file"
40
- msgstr "Foutmelding: Kan bestand niet verwijderen"
41
-
42
- #: ../inc/fields/file.php:80
43
- msgctxt "file upload"
44
- msgid "Upload Files"
45
- msgstr "Bestanden uploaden"
46
-
47
- #: ../inc/fields/file.php:81
48
- msgctxt "file upload"
49
- msgid "+ Add new file"
50
- msgstr "+ Nieuw bestand toevoegen"
51
-
52
- #: ../inc/fields/file.php:133
53
- msgctxt "file upload"
54
- msgid "Delete"
55
- msgstr "Verwijderen"
56
-
57
- #: ../inc/fields/file.php:134
58
- msgctxt "file upload"
59
- msgid "Edit"
60
- msgstr "Bewerken"
61
-
62
- #: ../inc/fields/image-advanced.php:68
63
- msgctxt "image upload"
64
- msgid "Select or Upload Images"
65
- msgstr "Afbeeldingen selecteren of uploaden"
66
-
67
- #: ../inc/fields/image.php:64
68
- msgid "Order saved"
69
- msgstr "Volgorde opgeslagen"
70
-
71
- #: ../inc/fields/image.php:78 ../inc/fields/thickbox-image.php:35
72
- msgctxt "image upload"
73
- msgid "Upload Images"
74
- msgstr "Afbeeldingen uploaden"
75
-
76
- #: ../inc/fields/image.php:79
77
- msgctxt "image upload"
78
- msgid "+ Add new image"
79
- msgstr "+ Nieuwe afbeelding toevoegen"
80
-
81
- #: ../inc/fields/image.php:144
82
- msgctxt "image upload"
83
- msgid "Delete"
84
- msgstr "Verwijderen"
85
-
86
- #: ../inc/fields/image.php:145
87
- msgctxt "image upload"
88
- msgid "Edit"
89
- msgstr "Bewerken"
90
-
91
- #: ../inc/fields/map.php:46
92
- msgid "Find Address"
93
- msgstr "Adres vinden"
94
-
95
- #: ../inc/fields/plupload-image.php:104
96
- msgctxt "image upload"
97
- msgid "Drop images here"
98
- msgstr "Afbeeldingen naar hier verslepen"
99
-
100
- #: ../inc/fields/plupload-image.php:105
101
- msgctxt "image upload"
102
- msgid "or"
103
- msgstr "of"
104
-
105
- #: ../inc/fields/plupload-image.php:106
106
- msgctxt "image upload"
107
- msgid "Select Files"
108
- msgstr "Bestanden selecteren"
109
-
110
- #: ../inc/fields/plupload-image.php:181
111
- msgctxt "image upload"
112
- msgid "Allowed Image Files"
113
- msgstr "Toegestane afbeeldingsbestanden"
114
-
115
- #: ../inc/fields/post.php:54
116
- msgid "Post"
117
- msgstr "Bericht"
118
-
119
- #: ../inc/fields/post.php:68 ../inc/fields/taxonomy.php:40
120
- #, php-format
121
- msgid "Select a %s"
122
- msgstr "Een %s selecteren"
123
-
124
- #: ../inc/fields/select-advanced.php:71
125
- msgid "Select a value"
126
- msgstr "Een waarde selecteren"
127
-
128
- #~ msgctxt "file upload"
129
- #~ msgid "Select Files"
130
- #~ msgstr "Bestanden selecteren"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/meta-box-pl_PL.po DELETED
@@ -1,215 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: meta-box\n"
4
- "POT-Creation-Date: 2017-02-01 08:56+0000\n"
5
- "PO-Revision-Date: 2017-02-02 15:01+0000\n"
6
- "Last-Translator: admin <test@bumerang.vot.pl>\n"
7
- "Language-Team: Polish\n"
8
- "Language: pl-PL\n"
9
- "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=UTF-8\n"
11
- "Content-Transfer-Encoding: 8bit\n"
12
- "X-Generator: Loco - https://localise.biz/\n"
13
- "X-Poedit-Basepath: ..\\\n"
14
- "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10 >= 2 && n%10<=4 "
15
- "&&(n%100<10||n%100 >= 20)? 1 : 2)\n"
16
- "X-Poedit-SourceCharset: UTF-8\n"
17
- "X-Poedit-KeywordsList: __;_e;_n:1,2;_n_noop:1,2;_nx:1,2;_nx_noop:1,2;_x:1,"
18
- "2c\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
- "Report-Msgid-Bugs-To: "
21
-
22
- #. Name of the plugin
23
- msgid "Meta Box"
24
- msgstr "Meta Box"
25
-
26
- #. Description of the plugin
27
- msgid "Create custom meta boxes and custom fields in WordPress."
28
- msgstr "Twórz customowe meta boxy i custom field w Wordpress"
29
-
30
- #. URI of the plugin
31
- msgid "https://metabox.io"
32
- msgstr "https://metabox.io"
33
-
34
- #. Author of the plugin
35
- msgid "Rilwis"
36
- msgstr "Rilwis"
37
-
38
- #. Author URI of the plugin
39
- msgid "http://www.deluxeblogtips.com"
40
- msgstr "http://www.deluxeblogtips.com"
41
-
42
- #: inc/clone.php:95
43
- msgid "+ Add more"
44
- msgstr "+ Dodaj więcej"
45
-
46
- #: inc/fields/select-advanced.php:41
47
- msgid "Select an item"
48
- msgstr "Wybierz element"
49
-
50
- #: inc/fields/taxonomy.php:48
51
- msgid "Select a term"
52
- msgstr "Wybierz term"
53
-
54
- #: inc/fields/select.php:84
55
- msgid "All"
56
- msgstr "Wszystko"
57
-
58
- #: inc/fields/select.php:84
59
- msgid "None"
60
- msgstr "Żadne"
61
-
62
- #: inc/fields/media.php:17
63
- msgctxt "media"
64
- msgid "+ Add Media"
65
- msgstr "+ Dodaj plik multimedialny"
66
-
67
- #: inc/fields/media.php:18
68
- msgctxt "media"
69
- msgid " file"
70
- msgstr "plik"
71
-
72
- #: inc/fields/media.php:19
73
- msgctxt "media"
74
- msgid " files"
75
- msgstr "pliki"
76
-
77
- #: inc/fields/media.php:20
78
- msgctxt "media"
79
- msgid "Remove"
80
- msgstr "Usuń"
81
-
82
- #: inc/fields/media.php:21
83
- msgctxt "media"
84
- msgid "Edit"
85
- msgstr "Edytuj"
86
-
87
- #: inc/fields/media.php:22
88
- msgctxt "media"
89
- msgid "View"
90
- msgstr "Obejrzyj "
91
-
92
- #: inc/fields/media.php:23
93
- msgctxt "media"
94
- msgid "No Title"
95
- msgstr "Bez tytułu"
96
-
97
- #: inc/fields/media.php:26
98
- msgctxt "media"
99
- msgid "Select Files"
100
- msgstr "Wybierz pliki"
101
-
102
- #: inc/fields/media.php:27
103
- msgctxt "media"
104
- msgid "or"
105
- msgstr "lub"
106
-
107
- #: inc/fields/media.php:28
108
- msgctxt "media"
109
- msgid "Drop files here to upload"
110
- msgstr "Upuść pliki tutaj,by zuploadować"
111
-
112
- #: inc/validation.php:47
113
- msgid "Please correct the errors highlighted below and try again."
114
- msgstr "Prosze popraw podświetlone błędy i spróbuj ponownie."
115
-
116
- #: inc/core.php:42
117
- msgid "Documentation"
118
- msgstr "Dokumentacja"
119
-
120
- #: inc/core.php:43
121
- msgid "Extensions"
122
- msgstr "Rozszerzenia"
123
-
124
- #: inc/fields/map.php:57
125
- msgid "Find Address"
126
- msgstr "Wyszukaj adres"
127
-
128
- #: inc/fields/taxonomy.php:51 inc/fields/post.php:36
129
- #, php-format
130
- msgid "Select a %s"
131
- msgstr "Wybierz %s"
132
-
133
- #: inc/fields/checkbox.php:53
134
- msgid "Yes"
135
- msgstr "Tak"
136
-
137
- #: inc/fields/checkbox.php:53
138
- msgid "No"
139
- msgstr "Nie"
140
-
141
- #: inc/fields/button.php:27
142
- msgid "Click me"
143
- msgstr "Kliknij mnie"
144
-
145
- #: inc/fields/file-input.php:17
146
- msgid "Select File"
147
- msgstr "Wybierz plik"
148
-
149
- #: inc/fields/file-input.php:39 inc/fields/select.php:84
150
- msgid "Select"
151
- msgstr "Zaznacz"
152
-
153
- #: inc/fields/file-input.php:41
154
- msgid "Remove"
155
- msgstr "Usuń"
156
-
157
- #: inc/fields/post.php:33
158
- msgid "Select a post"
159
- msgstr "Wybierz wpis"
160
-
161
- #: inc/fields/autocomplete.php:15 inc/fields/autocomplete.php:74
162
- #: inc/fields/autocomplete.php:89
163
- msgid "Delete"
164
- msgstr "Usuń"
165
-
166
- #: inc/fields/thickbox-image.php:51
167
- msgctxt "image upload"
168
- msgid "Upload Images"
169
- msgstr "Wyślij obrazki"
170
-
171
- #: inc/fields/oembed.php:60
172
- msgid "Embed HTML not available."
173
- msgstr "Osadzenie HTML nie jest możliwe."
174
-
175
- #: inc/fields/oembed.php:75
176
- msgid "Preview"
177
- msgstr "Podgląd"
178
-
179
- #: inc/fields/file.php:16
180
- #, php-format
181
- msgid "You may only upload maximum %d file"
182
- msgstr "Możesz wysłać maksymalnie %d plik"
183
-
184
- #: inc/fields/file.php:17
185
- #, php-format
186
- msgid "You may only upload maximum %d files"
187
- msgstr "Możesz wysłać maksymalnie %d pliki/plików"
188
-
189
- #: inc/fields/file.php:73
190
- msgid "Error: Cannot delete file"
191
- msgstr "Błąd: Nie można usunąć pliku"
192
-
193
- #: inc/fields/file.php:85
194
- msgctxt "file upload"
195
- msgid "Upload Files"
196
- msgstr "Wyślij pliki"
197
-
198
- #: inc/fields/file.php:86
199
- msgctxt "file upload"
200
- msgid "+ Add new file"
201
- msgstr "+ Dodaj nowy plik"
202
-
203
- #: inc/fields/file.php:150
204
- msgctxt "file upload"
205
- msgid "Delete"
206
- msgstr "Usuń"
207
-
208
- #: inc/fields/file.php:151
209
- msgctxt "file upload"
210
- msgid "Edit"
211
- msgstr "Edytuj"
212
-
213
- #: inc/fields/user.php:33
214
- msgid "Select an user"
215
- msgstr "Wybierz użytkownika"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/meta-box-tr_TR.po DELETED
@@ -1,180 +0,0 @@
1
- # <!=Copyright (C) 2014 Rilwis
2
- # This file is distributed under the GPL2+.=!>
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Meta Box 4.8.7\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/meta-box\n"
7
- "POT-Creation-Date: 2016-11-18 16:09+0300\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=UTF-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2016-11-18 16:13+0300\n"
12
- "Language-Team: Meta Box <admin@metabox.io>\n"
13
- "X-Generator: Poedit 1.8.11\n"
14
- "X-Poedit-KeywordsList: __;_x;_e;_ex;_n;_nx;esc_attr__;esc_attr_e;esc_attr_x;esc_html__;esc_html_e;esc_html_x;_n_noop;_nx_noop\n"
15
- "X-Poedit-Basepath: ..\n"
16
- "Last-Translator: \n"
17
- "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
- "Language: tr\n"
19
- "X-Poedit-SearchPath-0: .\n"
20
- "X-Poedit-SearchPathExcluded-0: js\n"
21
- "X-Poedit-SearchPathExcluded-1: demo\n"
22
- "X-Poedit-SearchPathExcluded-2: tests\n"
23
- "X-Poedit-SearchPathExcluded-3: css\n"
24
- "X-Poedit-SearchPathExcluded-4: lang\n"
25
-
26
- #: inc/core.php:40
27
- msgid "Documentation"
28
- msgstr "Dökümantasyon"
29
-
30
- #: inc/core.php:41
31
- msgid "Extensions"
32
- msgstr "Uzantılar"
33
-
34
- #: inc/field.php:192
35
- msgid "+ Add more"
36
- msgstr "+Ekle"
37
-
38
- #: inc/fields/autocomplete.php:23 inc/fields/autocomplete.php:87
39
- #: inc/fields/autocomplete.php:104 inc/fields/file.php:162
40
- msgid "Delete"
41
- msgstr "Sil"
42
-
43
- #: inc/fields/button.php:29
44
- msgid "Click me"
45
- msgstr "Bena tıkla"
46
-
47
- #: inc/fields/checkbox.php:82
48
- msgid "Yes"
49
- msgstr "Evet"
50
-
51
- #: inc/fields/checkbox.php:82
52
- msgid "No"
53
- msgstr "Hayır"
54
-
55
- #: inc/fields/file-input.php:25
56
- msgid "Select File"
57
- msgstr "Dosya Seç"
58
-
59
- #: inc/fields/file-input.php:49 inc/fields/select.php:91
60
- msgid "Select"
61
- msgstr "Seçim Yapınız"
62
-
63
- #: inc/fields/file-input.php:51 inc/fields/media.php:28
64
- msgid "Remove"
65
- msgstr "Kaldır"
66
-
67
- #: inc/fields/file.php:24
68
- #, php-format
69
- msgid "You may only upload maximum %d file"
70
- msgstr "En fazla %d dosya yükleyebilirsiniz"
71
-
72
- #: inc/fields/file.php:25
73
- #, php-format
74
- msgid "You may only upload maximum %d files"
75
- msgstr "En fazla %d dosyası yükleyebilirsiniz"
76
-
77
- #: inc/fields/file.php:85
78
- msgid "Error: Cannot delete file"
79
- msgstr "Hata: Dosya silinemiyor"
80
-
81
- #: inc/fields/file.php:98
82
- msgid "Upload Files"
83
- msgstr "Dosyaları Yükle"
84
-
85
- #: inc/fields/file.php:99
86
- msgid "+ Add new file"
87
- msgstr "+ Yeni dosya ekle"
88
-
89
- #: inc/fields/file.php:163 inc/fields/media.php:29
90
- msgid "Edit"
91
- msgstr "Düzenle"
92
-
93
- #: inc/fields/key-value.php:20
94
- msgid "Key"
95
- msgstr "Anahtar"
96
-
97
- #: inc/fields/key-value.php:26
98
- msgid "Value"
99
- msgstr "Değer"
100
-
101
- #: inc/fields/map.php:49
102
- msgid "Find Address"
103
- msgstr "Adres Bul"
104
-
105
- #: inc/fields/media.php:25
106
- msgid "+ Add Media"
107
- msgstr "+ Media Ekle"
108
-
109
- #: inc/fields/media.php:26
110
- msgid " file"
111
- msgstr "dosya"
112
-
113
- #: inc/fields/media.php:27
114
- msgid " files"
115
- msgstr "dosyalar"
116
-
117
- #: inc/fields/media.php:30
118
- msgid "View"
119
- msgstr "Görüntüle"
120
-
121
- #: inc/fields/media.php:31
122
- msgid "No Title"
123
- msgstr "Başlık Yok"
124
-
125
- #: inc/fields/media.php:34
126
- msgid "Select Files"
127
- msgstr "Dosyaları Seç"
128
-
129
- #: inc/fields/media.php:35
130
- msgid "or"
131
- msgstr "veya"
132
-
133
- #: inc/fields/media.php:36
134
- msgid "Drop files here to upload"
135
- msgstr "Yüklemek istediğiniz dosyaları buraya sürükleyiniz"
136
-
137
- #: inc/fields/oembed.php:65
138
- msgid "Embed HTML not available."
139
- msgstr "HTML gömme mevcut değil."
140
-
141
- #: inc/fields/oembed.php:81
142
- msgid "Preview"
143
- msgstr "Önizle"
144
-
145
- #: inc/fields/post.php:34
146
- msgid "Select a post"
147
- msgstr "Yazı seçin"
148
-
149
- #: inc/fields/post.php:38 inc/fields/taxonomy.php:51
150
- #, php-format
151
- msgid "Select a %s"
152
- msgstr "Seç %s"
153
-
154
- #: inc/fields/select-advanced.php:44
155
- msgid "Select an item"
156
- msgstr "Bir öğe seçin"
157
-
158
- #: inc/fields/select.php:91
159
- msgid "All"
160
- msgstr "Tümü"
161
-
162
- #: inc/fields/select.php:91
163
- msgid "None"
164
- msgstr "Hiçbiri"
165
-
166
- #: inc/fields/taxonomy.php:47
167
- msgid "Select a term"
168
- msgstr "Bir terim seçin"
169
-
170
- #: inc/fields/thickbox-image.php:53
171
- msgid "Upload Images"
172
- msgstr "Resimler Yükle"
173
-
174
- #: inc/fields/user.php:34
175
- msgid "Select an user"
176
- msgstr "Bir Kullanıcı Seçin"
177
-
178
- #: inc/validation.php:49
179
- msgid "Please correct the errors highlighted below and try again."
180
- msgstr "Lütfen vurgulanan hataları düzeltip tekrar deneyin."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/meta-box-zh_CN.po DELETED
@@ -1,189 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: Meta Box v4.8.7\n"
4
- "POT-Creation-Date: 2016-06-03 16:24+0800\n"
5
- "PO-Revision-Date: \n"
6
- "Last-Translator: OOME <1049879335@qq.com>\n"
7
- "Language-Team: 偶米工作室 <1049879335@qq.com>\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=UTF-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "X-Generator: Poedit 1.5.7\n"
12
- "X-Poedit-KeywordsList: __;_e;_x:2c,1;_nx:1,2;_n_noop:1,2\n"
13
- "X-Poedit-Basepath: C:\\xampp\\htdocs\\000\\wp-content\\plugins\\meta-box"
14
- "\\lang\n"
15
- "X-Poedit-SearchPath-0: ..\n"
16
-
17
- #: ../inc/core.php:40
18
- msgid "Documentation"
19
- msgstr "文档"
20
-
21
- #: ../inc/core.php:41
22
- msgid "Extensions"
23
- msgstr "扩展"
24
-
25
- #: ../inc/field.php:192
26
- msgid "+ Add more"
27
- msgstr "+ 新增"
28
-
29
- #: ../inc/validation.php:49
30
- msgid "Please correct the errors highlighted below and try again."
31
- msgstr "请修正高亮位置的错误,并重新尝试。"
32
-
33
- #: ../inc/fields/autocomplete.php:23 ../inc/fields/autocomplete.php:87
34
- #: ../inc/fields/autocomplete.php:104
35
- msgid "Delete"
36
- msgstr "删除"
37
-
38
- #: ../inc/fields/button.php:29
39
- msgid "Click me"
40
- msgstr "点我"
41
-
42
- #: ../inc/fields/checkbox.php:82
43
- msgid "Yes"
44
- msgstr "是"
45
-
46
- #: ../inc/fields/checkbox.php:82
47
- msgid "No"
48
- msgstr "否"
49
-
50
- #: ../inc/fields/file-input.php:25
51
- msgid "Select File"
52
- msgstr "选择文件"
53
-
54
- #: ../inc/fields/file-input.php:49 ../inc/fields/select.php:91
55
- msgid "Select"
56
- msgstr "选择"
57
-
58
- #: ../inc/fields/file-input.php:51
59
- msgid "Remove"
60
- msgstr "移除"
61
-
62
- #: ../inc/fields/file.php:24
63
- #, php-format
64
- msgid "You may only upload maximum %d file"
65
- msgstr "您允许上传的文件上限为 %d 个。"
66
-
67
- #: ../inc/fields/file.php:25
68
- #, php-format
69
- msgid "You may only upload maximum %d files"
70
- msgstr "您允许上传的文件上限为 %d 个。"
71
-
72
- #: ../inc/fields/file.php:85
73
- msgid "Error: Cannot delete file"
74
- msgstr "错误:无法删除文件。"
75
-
76
- #: ../inc/fields/file.php:98
77
- msgctxt "file upload"
78
- msgid "Upload Files"
79
- msgstr "上传文件"
80
-
81
- #: ../inc/fields/file.php:99
82
- msgctxt "file upload"
83
- msgid "+ Add new file"
84
- msgstr "+ 新增文件"
85
-
86
- #: ../inc/fields/file.php:162
87
- msgctxt "file upload"
88
- msgid "Delete"
89
- msgstr "删除"
90
-
91
- #: ../inc/fields/file.php:163
92
- msgctxt "file upload"
93
- msgid "Edit"
94
- msgstr "编辑"
95
-
96
- #: ../inc/fields/map.php:49
97
- msgid "Find Address"
98
- msgstr "查找地址"
99
-
100
- #: ../inc/fields/media.php:25
101
- msgctxt "media"
102
- msgid "+ Add Media"
103
- msgstr "从媒体库选择"
104
-
105
- #: ../inc/fields/media.php:26
106
- msgctxt "media"
107
- msgid " file"
108
- msgstr "文件"
109
-
110
- #: ../inc/fields/media.php:27
111
- msgctxt "media"
112
- msgid " files"
113
- msgstr "文件"
114
-
115
- #: ../inc/fields/media.php:28
116
- msgctxt "media"
117
- msgid "Remove"
118
- msgstr "移除"
119
-
120
- #: ../inc/fields/media.php:29
121
- msgctxt "media"
122
- msgid "Edit"
123
- msgstr "编辑"
124
-
125
- #: ../inc/fields/media.php:30
126
- msgctxt "media"
127
- msgid "View"
128
- msgstr "查看"
129
-
130
- #: ../inc/fields/media.php:31
131
- msgctxt "media"
132
- msgid "No Title"
133
- msgstr "无标题"
134
-
135
- #: ../inc/fields/media.php:34
136
- msgctxt "media"
137
- msgid "Select Files"
138
- msgstr "选择图像"
139
-
140
- #: ../inc/fields/media.php:35
141
- msgctxt "media"
142
- msgid "or"
143
- msgstr " 或"
144
-
145
- #: ../inc/fields/media.php:36
146
- msgctxt "media"
147
- msgid "Drop files here to upload"
148
- msgstr "请把文件拖动到该区域上传"
149
-
150
- #: ../inc/fields/oembed.php:65
151
- msgid "Embed HTML not available."
152
- msgstr ""
153
- "oEmbed 代码无效,请检查。 如需了解更多 oEmbed 信息和支持的网站,请访问 <a "
154
- "href=\"http://codex.wordpress.org/Embeds\" target=\"_blank\">WordPress 官网</"
155
- "a>。"
156
-
157
- #: ../inc/fields/post.php:34
158
- msgid "Select a post"
159
- msgstr "选择文章"
160
-
161
- #: ../inc/fields/post.php:38 ../inc/fields/taxonomy.php:51
162
- #, php-format
163
- msgid "Select a %s"
164
- msgstr "选择%s"
165
-
166
- #: ../inc/fields/select-advanced.php:44
167
- msgid "Select an item"
168
- msgstr "选择项目"
169
-
170
- #: ../inc/fields/select.php:91
171
- msgid "All"
172
- msgstr "全部"
173
-
174
- #: ../inc/fields/select.php:91
175
- msgid "None"
176
- msgstr "无"
177
-
178
- #: ../inc/fields/taxonomy.php:47
179
- msgid "Select a term"
180
- msgstr "选择分类"
181
-
182
- #: ../inc/fields/thickbox-image.php:53
183
- msgctxt "image upload"
184
- msgid "Upload Images"
185
- msgstr "上传图像"
186
-
187
- #: ../inc/fields/user.php:34
188
- msgid "Select an user"
189
- msgstr "选择用户"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/readme.md DELETED
@@ -1,15 +0,0 @@
1
- # How To Translate Meta Box
2
-
3
- ## Who translates Meta Box? How can I get involved?
4
-
5
- Anyone can help by suggesting new translations [here](https://translate.wordpress.org/projects/wp-plugins/meta-box). No need to use a translation editor, you can do it all from the web interface.
6
-
7
- Once you've suggested a new translation, a language validator will review it. They will then approve, reject, or change your suggestions. Once your changes get approved, they are automatically included in the next Meta Box release.
8
-
9
- ## Who decides which languages are available? I want my language added
10
-
11
- If you can't find your language, [send us an email](https://metabox.io) and we'll add it for you.
12
-
13
- ## I want to change translations locally. Where can I download the .PO file for my language?
14
-
15
- You'll find options to create a .PO file and export translations at the bottom of each language page.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
meta-box.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Meta Box
4
  * Plugin URI: https://metabox.io
5
  * Description: Create custom meta boxes and custom fields in WordPress.
6
- * Version: 5.2.3
7
  * Author: MetaBox.io
8
  * Author URI: https://metabox.io
9
  * License: GPL2+
3
  * Plugin Name: Meta Box
4
  * Plugin URI: https://metabox.io
5
  * Description: Create custom meta boxes and custom fields in WordPress.
6
+ * Version: 5.2.4
7
  * Author: MetaBox.io
8
  * Author URI: https://metabox.io
9
  * License: GPL2+
readme.txt CHANGED
@@ -4,8 +4,8 @@ Donate link: https://metabox.io/pricing/
4
  Tags: meta-box, custom fields, custom field, meta, meta-boxes, admin, advanced, custom, edit, field, file, image, magic fields, matrix, more fields, Post, repeater, simple fields, text, textarea, type, cms, fields post
5
  Requires at least: 4.3
6
  Requires PHP: 5.3
7
- Tested up to: 5.2.4
8
- Stable tag: 5.2.3
9
  License: GPLv2 or later
10
 
11
  Meta Box plugin is a powerful, professional developer toolkit to create custom meta boxes and custom fields for WordPress.
@@ -167,6 +167,23 @@ To getting started with the plugin, please read the [Quick Start Guide](https://
167
 
168
  == Changelog ==
169
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
170
  = 5.2.3 - 2019-11-01 =
171
 
172
  **Changed**
4
  Tags: meta-box, custom fields, custom field, meta, meta-boxes, admin, advanced, custom, edit, field, file, image, magic fields, matrix, more fields, Post, repeater, simple fields, text, textarea, type, cms, fields post
5
  Requires at least: 4.3
6
  Requires PHP: 5.3
7
+ Tested up to: 5.3
8
+ Stable tag: 5.2.4
9
  License: GPLv2 or later
10
 
11
  Meta Box plugin is a powerful, professional developer toolkit to create custom meta boxes and custom fields for WordPress.
167
 
168
  == Changelog ==
169
 
170
+ = 5.2.4 - 2019-12-11 =
171
+
172
+ **Added**
173
+
174
+ - Add hook `rwmb_field_registered` after a field is registered.
175
+ - Add (*) to required fields
176
+
177
+ **Changed**
178
+
179
+ - Remove required attribute for license input box.
180
+ - Don't redirect when bulk activate with other plugins.
181
+
182
+ **Fixed**
183
+
184
+ - Fix style for `select`, `select_advanced` fields in WordPress 5.3.
185
+ - Fix getting object fields for settings pages
186
+
187
  = 5.2.3 - 2019-11-01 =
188
 
189
  **Changed**