OptionTree - Version 2.5.4

Version Description

  • Hotfix - Support for WordPress 4.2 term splitting.
  • Hotfix - Removed any potential XSS security issues with add_query_arg by escaping it.
  • Hotfix - Fixed an issue where Visual Composer was indirectly destroying OptionTree meta box values.
  • Hotfix - Fixed an issue where the select field value was not visible. Contributors via github @sabbirk15.
Download this release

Release Info

Developer valendesigns
Plugin Icon wp plugin OptionTree
Version 2.5.4
Comparing to
See all releases

Code changes from version 2.5.3 to 2.5.4

assets/js/ot-admin.js CHANGED
@@ -587,7 +587,7 @@
587
  });
588
  },
589
  bind_select_wrapper: function() {
590
- $('.option-tree-ui-select').on('change', function () {
591
  $(this).prev('span').replaceWith('<span>' + $(this).find('option:selected').text() + '</span>');
592
  });
593
  },
587
  });
588
  },
589
  bind_select_wrapper: function() {
590
+ $(document).on('change', '.option-tree-ui-select', function () {
591
  $(this).prev('span').replaceWith('<span>' + $(this).find('option:selected').text() + '</span>');
592
  });
593
  },
includes/ot-cleanup-api.php CHANGED
@@ -62,14 +62,12 @@ if ( ! class_exists( 'OT_Cleanup' ) ) {
62
  * @since 2.4.6
63
  */
64
  public function maybe_cleanup() {
65
- global $wpdb, $table_prefix, $ot_maybe_cleanup_posts, $ot_maybe_cleanup_table;
66
-
67
- $posts = $wpdb->get_results( "SELECT * FROM $wpdb->posts WHERE post_type = 'option-tree' LIMIT 2" );
68
- $table = $wpdb->get_results( "SHOW TABLES LIKE '{$table_prefix}option_tree'" );
69
-
70
- $ot_maybe_cleanup_posts = count( $posts ) > 1;
71
- $ot_maybe_cleanup_table = count( $table ) == 1;
72
  $page = isset( $_GET['page'] ) ? $_GET['page'] : '';
 
 
73
 
74
  if ( ! $ot_maybe_cleanup_posts && ! $ot_maybe_cleanup_table && $page == 'ot-cleanup' ) {
75
  wp_redirect( apply_filters( 'ot_theme_options_parent_slug', 'themes.php' ) . '?page=' . apply_filters( 'ot_theme_options_menu_slug', 'ot-theme-options' ) );
@@ -113,7 +111,7 @@ if ( ! class_exists( 'OT_Cleanup' ) ) {
113
  * @since 2.4.6
114
  */
115
  public function options_page() {
116
- global $wpdb, $table_prefix, $ot_maybe_cleanup_posts, $ot_maybe_cleanup_table;
117
 
118
  // Option ID
119
  $option_id = 'ot_media_post_ID';
@@ -225,7 +223,7 @@ if ( ! class_exists( 'OT_Cleanup' ) ) {
225
 
226
  if ( $ot_maybe_cleanup_table ) {
227
 
228
- $table_name = $table_prefix . 'option_tree';
229
 
230
  echo $ot_maybe_cleanup_posts ? '<hr />' : '';
231
 
@@ -241,7 +239,7 @@ if ( ! class_exists( 'OT_Cleanup' ) ) {
241
 
242
  $wpdb->query( "DROP TABLE IF EXISTS $table_name" );
243
 
244
- if ( count( $wpdb->get_results( "SHOW TABLES LIKE '{$table_prefix}option_tree'" ) ) == 0 ) {
245
 
246
  echo '<p>' . sprintf( __( 'The %s table has been successfully deleted. The page will now reload...', 'option-tree' ), '<tt>' . $table_name . '</tt>' ) . '</p>';
247
 
62
  * @since 2.4.6
63
  */
64
  public function maybe_cleanup() {
65
+ global $wpdb, $ot_maybe_cleanup_posts, $ot_maybe_cleanup_table;
66
+
67
+ $table_name = $wpdb->prefix . 'option_tree';
 
 
 
 
68
  $page = isset( $_GET['page'] ) ? $_GET['page'] : '';
69
+ $ot_maybe_cleanup_posts = count( $wpdb->get_results( "SELECT * FROM $wpdb->posts WHERE post_type = 'option-tree' LIMIT 2" ) ) > 1;
70
+ $ot_maybe_cleanup_table = $wpdb->get_var( $wpdb->prepare( "SHOW TABLES LIKE %s", $table_name ) ) == $table_name;
71
 
72
  if ( ! $ot_maybe_cleanup_posts && ! $ot_maybe_cleanup_table && $page == 'ot-cleanup' ) {
73
  wp_redirect( apply_filters( 'ot_theme_options_parent_slug', 'themes.php' ) . '?page=' . apply_filters( 'ot_theme_options_menu_slug', 'ot-theme-options' ) );
111
  * @since 2.4.6
112
  */
113
  public function options_page() {
114
+ global $wpdb, $ot_maybe_cleanup_posts, $ot_maybe_cleanup_table;
115
 
116
  // Option ID
117
  $option_id = 'ot_media_post_ID';
223
 
224
  if ( $ot_maybe_cleanup_table ) {
225
 
226
+ $table_name = $wpdb->prefix . 'option_tree';
227
 
228
  echo $ot_maybe_cleanup_posts ? '<hr />' : '';
229
 
239
 
240
  $wpdb->query( "DROP TABLE IF EXISTS $table_name" );
241
 
242
+ if ( $wpdb->get_var( $wpdb->prepare( "SHOW TABLES LIKE %s", $table_name ) ) != $table_name ) {
243
 
244
  echo '<p>' . sprintf( __( 'The %s table has been successfully deleted. The page will now reload...', 'option-tree' ), '<tt>' . $table_name . '</tt>' ) . '</p>';
245
 
includes/ot-functions-admin.php CHANGED
@@ -973,15 +973,16 @@ if ( ! function_exists( 'ot_create_media_post' ) ) {
973
  if ( ! function_exists( 'ot_default_settings' ) ) {
974
 
975
  function ot_default_settings() {
976
- global $wpdb, $table_prefix;
977
 
978
  if ( ! get_option( ot_settings_id() ) ) {
979
 
980
  $section_count = 0;
981
  $settings_count = 0;
982
  $settings = array();
 
983
 
984
- if ( count( $wpdb->get_results( "SHOW TABLES LIKE '{$table_prefix}option_tree'" ) ) == 1 && $old_settings = $wpdb->get_results( "SELECT * FROM {$table_prefix}option_tree ORDER BY item_sort ASC" ) ) {
985
 
986
  foreach ( $old_settings as $setting ) {
987
 
@@ -1275,7 +1276,7 @@ if ( ! function_exists( 'ot_import' ) ) {
1275
  }
1276
 
1277
  /* redirect */
1278
- wp_redirect( add_query_arg( array( 'action' => 'import-xml', 'message' => $message ), $_POST['_wp_http_referer'] ) );
1279
  exit;
1280
 
1281
  }
@@ -1296,7 +1297,7 @@ if ( ! function_exists( 'ot_import' ) ) {
1296
  }
1297
 
1298
  /* redirect */
1299
- wp_redirect( add_query_arg( array( 'action' => 'import-settings', 'message' => $message ), $_POST['_wp_http_referer'] ) );
1300
  exit;
1301
 
1302
  }
@@ -1344,7 +1345,7 @@ if ( ! function_exists( 'ot_import' ) ) {
1344
  }
1345
 
1346
  /* redirect accordingly */
1347
- wp_redirect( add_query_arg( array( 'action' => 'import-data', 'message' => $message ), $_POST['_wp_http_referer'] ) );
1348
  exit;
1349
 
1350
  }
@@ -1412,7 +1413,7 @@ if ( ! function_exists( 'ot_import' ) ) {
1412
  }
1413
 
1414
  /* redirect accordingly */
1415
- wp_redirect( add_query_arg( array( 'action' => 'import-layouts', 'message' => $message ), $_POST['_wp_http_referer'] ) );
1416
  exit;
1417
 
1418
  }
@@ -2042,7 +2043,7 @@ if ( ! function_exists( 'ot_save_settings' ) ) {
2042
  }
2043
 
2044
  /* redirect */
2045
- wp_redirect( add_query_arg( array( 'action' => 'save-settings', 'message' => $message ), $_POST['_wp_http_referer'] ) );
2046
  exit;
2047
 
2048
  }
@@ -2267,9 +2268,9 @@ if ( ! function_exists( 'ot_modify_layouts' ) ) {
2267
 
2268
  /* redirect */
2269
  if ( isset( $_REQUEST['page'] ) && $_REQUEST['page'] == apply_filters( 'ot_theme_options_menu_slug', 'ot-theme-options' ) ) {
2270
- $query_args = add_query_arg( array( 'settings-updated' => 'layout' ), remove_query_arg( array( 'action', 'message' ), $_POST['_wp_http_referer'] ) );
2271
  } else {
2272
- $query_args = add_query_arg( array( 'action' => 'save-layouts', 'message' => $message ), $_POST['_wp_http_referer'] );
2273
  }
2274
  wp_redirect( $query_args );
2275
  exit;
@@ -5226,7 +5227,7 @@ function ot_fetch_google_fonts( $normalize = true, $force_rebuild = false ) {
5226
  );
5227
 
5228
  /* Build and make the request */
5229
- $ot_google_fonts_query = add_query_arg( $ot_google_fonts_query_args, $ot_google_fonts_api_url );
5230
  $ot_google_fonts_response = wp_safe_remote_get( $ot_google_fonts_query, array( 'sslverify' => false, 'timeout' => 15 ) );
5231
 
5232
  /* continue if we got a valid response */
@@ -5705,5 +5706,417 @@ if ( ! function_exists( 'ot_get_option_type_by_id' ) ) {
5705
 
5706
  }
5707
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5708
  /* End of file ot-functions-admin.php */
5709
- /* Location: ./includes/ot-functions-admin.php */
973
  if ( ! function_exists( 'ot_default_settings' ) ) {
974
 
975
  function ot_default_settings() {
976
+ global $wpdb;
977
 
978
  if ( ! get_option( ot_settings_id() ) ) {
979
 
980
  $section_count = 0;
981
  $settings_count = 0;
982
  $settings = array();
983
+ $table_name = $wpdb->prefix . 'option_tree';
984
 
985
+ if ( $wpdb->get_var( $wpdb->prepare( "SHOW TABLES LIKE %s", $table_name ) ) == $table_name && $old_settings = $wpdb->get_results( "SELECT * FROM $table_name ORDER BY item_sort ASC" ) ) {
986
 
987
  foreach ( $old_settings as $setting ) {
988
 
1276
  }
1277
 
1278
  /* redirect */
1279
+ wp_redirect( esc_url_raw( add_query_arg( array( 'action' => 'import-xml', 'message' => $message ), $_POST['_wp_http_referer'] ) ) );
1280
  exit;
1281
 
1282
  }
1297
  }
1298
 
1299
  /* redirect */
1300
+ wp_redirect( esc_url_raw( add_query_arg( array( 'action' => 'import-settings', 'message' => $message ), $_POST['_wp_http_referer'] ) ) );
1301
  exit;
1302
 
1303
  }
1345
  }
1346
 
1347
  /* redirect accordingly */
1348
+ wp_redirect( esc_url_raw( add_query_arg( array( 'action' => 'import-data', 'message' => $message ), $_POST['_wp_http_referer'] ) ) );
1349
  exit;
1350
 
1351
  }
1413
  }
1414
 
1415
  /* redirect accordingly */
1416
+ wp_redirect( esc_url_raw( add_query_arg( array( 'action' => 'import-layouts', 'message' => $message ), $_POST['_wp_http_referer'] ) ) );
1417
  exit;
1418
 
1419
  }
2043
  }
2044
 
2045
  /* redirect */
2046
+ wp_redirect( esc_url_raw( add_query_arg( array( 'action' => 'save-settings', 'message' => $message ), $_POST['_wp_http_referer'] ) ) );
2047
  exit;
2048
 
2049
  }
2268
 
2269
  /* redirect */
2270
  if ( isset( $_REQUEST['page'] ) && $_REQUEST['page'] == apply_filters( 'ot_theme_options_menu_slug', 'ot-theme-options' ) ) {
2271
+ $query_args = esc_url_raw( add_query_arg( array( 'settings-updated' => 'layout' ), remove_query_arg( array( 'action', 'message' ), $_POST['_wp_http_referer'] ) ) );
2272
  } else {
2273
+ $query_args = esc_url_raw( add_query_arg( array( 'action' => 'save-layouts', 'message' => $message ), $_POST['_wp_http_referer'] ) );
2274
  }
2275
  wp_redirect( $query_args );
2276
  exit;
5227
  );
5228
 
5229
  /* Build and make the request */
5230
+ $ot_google_fonts_query = esc_url_raw( add_query_arg( $ot_google_fonts_query_args, $ot_google_fonts_api_url ) );
5231
  $ot_google_fonts_response = wp_safe_remote_get( $ot_google_fonts_query, array( 'sslverify' => false, 'timeout' => 15 ) );
5232
 
5233
  /* continue if we got a valid response */
5706
 
5707
  }
5708
 
5709
+ /**
5710
+ * Build an array of potential Theme Options that could share terms
5711
+ *
5712
+ * @return array
5713
+ *
5714
+ * @access private
5715
+ * @since 2.5.4
5716
+ */
5717
+ function _ot_settings_potential_shared_terms() {
5718
+
5719
+ $options = array();
5720
+ $settings = get_option( ot_settings_id(), array() );
5721
+ $option_types = array(
5722
+ 'category-checkbox',
5723
+ 'category-select',
5724
+ 'tag-checkbox',
5725
+ 'tag-select',
5726
+ 'taxonomy-checkbox',
5727
+ 'taxonomy-select'
5728
+ );
5729
+
5730
+ if ( isset( $settings['settings'] ) ) {
5731
+
5732
+ foreach( $settings['settings'] as $value ) {
5733
+
5734
+ if ( isset( $value['type'] ) ) {
5735
+
5736
+ if ( $value['type'] == 'list-item' && isset( $value['settings'] ) ) {
5737
+
5738
+ $saved = ot_get_option( $value['id'] );
5739
+
5740
+ foreach( $value['settings'] as $item ) {
5741
+
5742
+ if ( isset( $value['id'] ) && isset( $item['type'] ) && in_array( $item['type'], $option_types ) ) {
5743
+ $sub_options = array();
5744
+
5745
+ foreach( $saved as $sub_key => $sub_value ) {
5746
+ if ( isset( $sub_value[$item['id']] ) ) {
5747
+ $sub_options[$sub_key] = $sub_value[$item['id']];
5748
+ }
5749
+ }
5750
+
5751
+ if ( ! empty( $sub_options ) ) {
5752
+ $options[] = array(
5753
+ 'id' => $item['id'],
5754
+ 'taxonomy' => $value['taxonomy'],
5755
+ 'parent' => $value['id'],
5756
+ 'value' => $sub_options
5757
+ );
5758
+ }
5759
+ }
5760
+
5761
+ }
5762
+
5763
+ }
5764
+
5765
+ if ( in_array( $value['type'], $option_types ) ) {
5766
+ $saved = ot_get_option( $value['id'] );
5767
+ if ( ! empty( $saved ) ) {
5768
+ $options[] = array(
5769
+ 'id' => $value['id'],
5770
+ 'taxonomy' => $value['taxonomy'],
5771
+ 'value' => $saved
5772
+ );
5773
+ }
5774
+ }
5775
+
5776
+ }
5777
+
5778
+ }
5779
+
5780
+ }
5781
+
5782
+ return $options;
5783
+
5784
+ }
5785
+
5786
+ /**
5787
+ * Build an array of potential Meta Box options that could share terms
5788
+ *
5789
+ * @return array
5790
+ *
5791
+ * @access private
5792
+ * @since 2.5.4
5793
+ */
5794
+ function _ot_meta_box_potential_shared_terms() {
5795
+ global $ot_meta_boxes;
5796
+
5797
+ $options = array();
5798
+ $settings = $ot_meta_boxes;
5799
+ $option_types = array(
5800
+ 'category-checkbox',
5801
+ 'category-select',
5802
+ 'tag-checkbox',
5803
+ 'tag-select',
5804
+ 'taxonomy-checkbox',
5805
+ 'taxonomy-select'
5806
+ );
5807
+
5808
+ foreach( $settings as $setting ) {
5809
+
5810
+ if ( isset( $setting['fields'] ) ) {
5811
+
5812
+ foreach( $setting['fields'] as $value ) {
5813
+
5814
+ if ( isset( $value['type'] ) ) {
5815
+
5816
+ if ( $value['type'] == 'list-item' && isset( $value['settings'] ) ) {
5817
+
5818
+ $children = array();
5819
+
5820
+ foreach( $value['settings'] as $item ) {
5821
+
5822
+ if ( isset( $value['id'] ) && isset( $item['type'] ) && in_array( $item['type'], $option_types ) ) {
5823
+
5824
+ $children[$value['id']][] = $item['id'];
5825
+
5826
+ }
5827
+
5828
+ }
5829
+
5830
+ if ( ! empty( $children[$value['id']] ) ) {
5831
+ $options[] = array(
5832
+ 'id' => $value['id'],
5833
+ 'children' => $children[$value['id']],
5834
+ 'taxonomy' => $value['taxonomy'],
5835
+ );
5836
+ }
5837
+
5838
+ }
5839
+
5840
+ if ( in_array( $value['type'], $option_types ) ) {
5841
+
5842
+ $options[] = array(
5843
+ 'id' => $value['id'],
5844
+ 'taxonomy' => $value['taxonomy'],
5845
+ );
5846
+
5847
+ }
5848
+
5849
+ }
5850
+
5851
+ }
5852
+
5853
+ }
5854
+
5855
+ }
5856
+
5857
+ return $options;
5858
+
5859
+ }
5860
+
5861
+ /**
5862
+ * Update terms when a term gets split.
5863
+ *
5864
+ * @param int $term_id ID of the formerly shared term.
5865
+ * @param int $new_term_id ID of the new term created for the $term_taxonomy_id.
5866
+ * @param int $term_taxonomy_id ID for the term_taxonomy row affected by the split.
5867
+ * @param string $taxonomy Taxonomy for the split term.
5868
+ * @return void
5869
+ *
5870
+ * @access public
5871
+ * @since 2.5.4
5872
+ */
5873
+ function ot_split_shared_term( $term_id, $new_term_id, $term_taxonomy_id, $taxonomy ) {
5874
+
5875
+ // Process the Theme Options
5876
+ $settings = _ot_settings_potential_shared_terms();
5877
+ $old_options = get_option( ot_options_id(), array() );
5878
+ $new_options = $old_options;
5879
+
5880
+ // Process the saved settings
5881
+ if ( ! empty( $settings ) && ! empty( $old_options ) ) {
5882
+
5883
+ // Loop over the Theme Options
5884
+ foreach( $settings as $option ) {
5885
+
5886
+ if ( ! is_array( $option['taxonomy'] ) ) {
5887
+ $option['taxonomy'] = explode( ',', $option['taxonomy'] );
5888
+ }
5889
+
5890
+ if ( ! in_array( $taxonomy, $option['taxonomy'] ) ) {
5891
+ continue;
5892
+ }
5893
+
5894
+ // The option ID was found
5895
+ if ( array_key_exists( $option['id'], $old_options ) || ( isset( $option['parent'] ) && array_key_exists( $option['parent'], $old_options ) ) ) {
5896
+
5897
+ // This is a list item, we have to go deeper
5898
+ if ( isset( $option['parent'] ) ) {
5899
+
5900
+ // Loop over the array
5901
+ foreach( $option['value'] as $key => $value ) {
5902
+
5903
+ // The value is an array of IDs
5904
+ if ( is_array( $value ) ) {
5905
+
5906
+ // Loop over the sub array
5907
+ foreach( $value as $sub_key => $sub_value ) {
5908
+
5909
+ if ( $sub_value == $term_id ) {
5910
+
5911
+ unset( $new_options[$option['parent']][$key][$option['id']][$sub_key] );
5912
+ $new_options[$option['parent']][$key][$option['id']][$new_term_id] = $new_term_id;
5913
+
5914
+ }
5915
+
5916
+ }
5917
+
5918
+ } else if ( $value == $term_id ) {
5919
+
5920
+ unset( $new_options[$option['parent']][$key][$option['id']] );
5921
+ $new_options[$option['parent']][$key][$option['id']] = $new_term_id;
5922
+
5923
+ }
5924
+
5925
+ }
5926
+
5927
+ } else {
5928
+
5929
+ // The value is an array of IDs
5930
+ if ( is_array( $option['value'] ) ) {
5931
+
5932
+ // Loop over the array
5933
+ foreach( $option['value'] as $key => $value ) {
5934
+
5935
+ // It's a single value, just replace it
5936
+ if ( $value == $term_id ) {
5937
+
5938
+ unset( $new_options[$option['id']][$key] );
5939
+ $new_options[$option['id']][$new_term_id] = $new_term_id;
5940
+
5941
+ }
5942
+
5943
+ }
5944
+
5945
+ // It's a single value, just replace it
5946
+ } else if ( $option['value'] == $term_id ) {
5947
+
5948
+ $new_options[$option['id']] = $new_term_id;
5949
+
5950
+ }
5951
+
5952
+ }
5953
+
5954
+ }
5955
+
5956
+ }
5957
+
5958
+ }
5959
+
5960
+ // Options need to be updated
5961
+ if ( $old_options !== $new_options ) {
5962
+ update_option( ot_options_id(), $new_options );
5963
+ }
5964
+
5965
+ // Process the Meta Boxes
5966
+ $meta_settings = _ot_meta_box_potential_shared_terms();
5967
+ $option_types = array(
5968
+ 'category-checkbox',
5969
+ 'category-select',
5970
+ 'tag-checkbox',
5971
+ 'tag-select',
5972
+ 'taxonomy-checkbox',
5973
+ 'taxonomy-select'
5974
+ );
5975
+
5976
+ if ( ! empty( $meta_settings ) ) {
5977
+ $old_meta = array();
5978
+
5979
+ foreach( $meta_settings as $option ) {
5980
+
5981
+ if ( ! is_array( $option['taxonomy'] ) ) {
5982
+ $option['taxonomy'] = explode( ',', $option['taxonomy'] );
5983
+ }
5984
+
5985
+ if ( ! in_array( $taxonomy, $option['taxonomy'] ) ) {
5986
+ continue;
5987
+ }
5988
+
5989
+ if ( isset( $option['children'] ) ) {
5990
+ $post_ids = get_posts( array(
5991
+ 'fields' => 'ids',
5992
+ 'meta_key' => $option['id'],
5993
+ ) );
5994
+
5995
+ if ( $post_ids ) {
5996
+
5997
+ foreach( $post_ids as $post_id ) {
5998
+
5999
+ // Get the meta
6000
+ $old_meta = get_post_meta( $post_id, $option['id'], true );
6001
+ $new_meta = $old_meta;
6002
+
6003
+ // Has a saved value
6004
+ if ( ! empty( $old_meta ) && is_array( $old_meta ) ) {
6005
+
6006
+ // Loop over the array
6007
+ foreach( $old_meta as $key => $value ) {
6008
+
6009
+ foreach( $value as $sub_key => $sub_value ) {
6010
+
6011
+ if ( in_array( $sub_key, $option['children'] ) ) {
6012
+
6013
+ // The value is an array of IDs
6014
+ if ( is_array( $sub_value ) ) {
6015
+
6016
+ // Loop over the array
6017
+ foreach( $sub_value as $sub_sub_key => $sub_sub_value ) {
6018
+
6019
+ // It's a single value, just replace it
6020
+ if ( $sub_sub_value == $term_id ) {
6021
+
6022
+ unset( $new_meta[$key][$sub_key][$sub_sub_key] );
6023
+ $new_meta[$key][$sub_key][$new_term_id] = $new_term_id;
6024
+
6025
+ }
6026
+
6027
+ }
6028
+
6029
+ // It's a single value, just replace it
6030
+ } else if ( $sub_value == $term_id ) {
6031
+
6032
+ $new_meta[$key][$sub_key] = $new_term_id;
6033
+
6034
+ }
6035
+
6036
+ }
6037
+
6038
+ }
6039
+
6040
+ }
6041
+
6042
+ // Update
6043
+ if ( $old_meta !== $new_meta ) {
6044
+
6045
+ update_post_meta( $post_id, $option['id'], $new_meta, $old_meta );
6046
+
6047
+ }
6048
+
6049
+ }
6050
+
6051
+ }
6052
+
6053
+ }
6054
+
6055
+ } else {
6056
+ $post_ids = get_posts( array(
6057
+ 'fields' => 'ids',
6058
+ 'meta_query' => array(
6059
+ 'key' => $option['id'],
6060
+ 'value' => $term_id,
6061
+ 'compare' => 'IN'
6062
+ ),
6063
+ ) );
6064
+
6065
+ if ( $post_ids ) {
6066
+
6067
+ foreach( $post_ids as $post_id ) {
6068
+
6069
+ // Get the meta
6070
+ $old_meta = get_post_meta( $post_id, $option['id'], true );
6071
+ $new_meta = $old_meta;
6072
+
6073
+ // Has a saved value
6074
+ if ( ! empty( $old_meta ) ) {
6075
+
6076
+ // The value is an array of IDs
6077
+ if ( is_array( $old_meta ) ) {
6078
+
6079
+ // Loop over the array
6080
+ foreach( $old_meta as $key => $value ) {
6081
+
6082
+ // It's a single value, just replace it
6083
+ if ( $value == $term_id ) {
6084
+
6085
+ unset( $new_meta[$key] );
6086
+ $new_meta[$new_term_id] = $new_term_id;
6087
+
6088
+ }
6089
+
6090
+ }
6091
+
6092
+ // It's a single value, just replace it
6093
+ } else if ( $old_meta == $term_id ) {
6094
+
6095
+ $new_meta = $new_term_id;
6096
+
6097
+ }
6098
+
6099
+ // Update
6100
+ if ( $old_meta !== $new_meta ) {
6101
+
6102
+ update_post_meta( $post_id, $option['id'], $new_meta, $old_meta );
6103
+
6104
+ }
6105
+
6106
+ }
6107
+
6108
+ }
6109
+
6110
+ }
6111
+
6112
+ }
6113
+
6114
+ }
6115
+
6116
+ }
6117
+
6118
+ }
6119
+ add_action( 'split_shared_term', 'ot_split_shared_term', 10, 4 );
6120
+
6121
  /* End of file ot-functions-admin.php */
6122
+ /* Location: ./includes/ot-functions-admin.php */
includes/ot-meta-box-api.php CHANGED
@@ -30,13 +30,21 @@ if ( ! class_exists( 'OT_Meta_Box' ) ) {
30
  function __construct( $meta_box ) {
31
  if ( ! is_admin() )
32
  return;
33
-
 
 
 
 
 
 
 
 
34
  $this->meta_box = $meta_box;
35
-
36
  add_action( 'add_meta_boxes', array( $this, 'add_meta_boxes' ) );
37
-
38
  add_action( 'save_post', array( $this, 'save_meta_box' ), 1, 2 );
39
-
40
  }
41
 
42
  /**
@@ -64,9 +72,9 @@ if ( ! class_exists( 'OT_Meta_Box' ) ) {
64
  * @since 1.0
65
  */
66
  function build_meta_box( $post, $metabox ) {
67
-
68
  echo '<div class="ot-metabox-wrapper">';
69
-
70
  /* Use nonce for verification */
71
  echo '<input type="hidden" name="' . $this->meta_box['id'] . '_nonce" value="' . wp_create_nonce( $this->meta_box['id'] ) . '" />';
72
 
@@ -177,7 +185,7 @@ if ( ! class_exists( 'OT_Meta_Box' ) ) {
177
  global $pagenow;
178
 
179
  /* don't save if $_POST is empty */
180
- if ( empty( $_POST ) )
181
  return $post_id;
182
 
183
  /* don't save during quick edit */
30
  function __construct( $meta_box ) {
31
  if ( ! is_admin() )
32
  return;
33
+
34
+ global $ot_meta_boxes;
35
+
36
+ if ( ! isset( $ot_meta_boxes ) ) {
37
+ $ot_meta_boxes = array();
38
+ }
39
+
40
+ $ot_meta_boxes[] = $meta_box;
41
+
42
  $this->meta_box = $meta_box;
43
+
44
  add_action( 'add_meta_boxes', array( $this, 'add_meta_boxes' ) );
45
+
46
  add_action( 'save_post', array( $this, 'save_meta_box' ), 1, 2 );
47
+
48
  }
49
 
50
  /**
72
  * @since 1.0
73
  */
74
  function build_meta_box( $post, $metabox ) {
75
+
76
  echo '<div class="ot-metabox-wrapper">';
77
+
78
  /* Use nonce for verification */
79
  echo '<input type="hidden" name="' . $this->meta_box['id'] . '_nonce" value="' . wp_create_nonce( $this->meta_box['id'] ) . '" />';
80
 
185
  global $pagenow;
186
 
187
  /* don't save if $_POST is empty */
188
+ if ( empty( $_POST ) || ( isset( $_POST['vc_inline'] ) && $_POST['vc_inline'] == true ) )
189
  return $post_id;
190
 
191
  /* don't save during quick edit */
languages/option-tree-et.mo CHANGED
Binary file
languages/option-tree-et.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: OptionTree\n"
4
- "POT-Creation-Date: 2015-04-09 11:26-0800\n"
5
- "PO-Revision-Date: 2015-04-09 11:26-0800\n"
6
  "Last-Translator: Derek Herman <derek@valendesigns.com>\n"
7
  "Language-Team: Valen Designs\n"
8
  "Language: et_EE\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: Poedit 1.7.5\n"
13
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
14
  "_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;"
15
  "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
@@ -20,12 +20,12 @@ msgstr ""
20
  "X-Poedit-SearchPathExcluded-1: ../composer.json\n"
21
  "X-Poedit-SearchPathExcluded-2: ../assets\n"
22
 
23
- #: ../includes/ot-cleanup-api.php:86 ../includes/ot-cleanup-api.php:103
24
- #: ../includes/ot-cleanup-api.php:132
25
  msgid "OptionTree Cleanup"
26
  msgstr "OptionTree puhastus"
27
 
28
- #: ../includes/ot-cleanup-api.php:103
29
  #, php-format
30
  msgid ""
31
  "OptionTree has outdated data that should be removed. Please go to %s for "
@@ -34,11 +34,11 @@ msgstr ""
34
  "OptionTreel on aegunud andmeid, mis tuleks eemaldada. Lisainformatsiooni "
35
  "saamiseks mine palun %s."
36
 
37
- #: ../includes/ot-cleanup-api.php:138
38
  msgid "Multiple Media Posts"
39
  msgstr "Mitme meediaga postitused"
40
 
41
- #: ../includes/ot-cleanup-api.php:140
42
  #, php-format
43
  msgid ""
44
  "There are currently %s OptionTree media posts in your database. At some "
@@ -54,7 +54,7 @@ msgstr ""
54
  "maht on suurem. Õnneks on nende orbudeks jäänud postituste eemaldamiseks "
55
  "moodus olemas, nii et saab andmebaasi jälle puhtaks."
56
 
57
- #: ../includes/ot-cleanup-api.php:142
58
  #, php-format
59
  msgid ""
60
  "By clicking the button below, OptionTree will delete %s records and "
@@ -66,7 +66,7 @@ msgstr ""
66
  "ainsasse OptionTree meedia postitusse, kuhu manuseid üles laaditakse. Lisaks "
67
  "määratakse nende manuste vanema ID-le õige väärtus."
68
 
69
- #: ../includes/ot-cleanup-api.php:144
70
  msgid ""
71
  "This could take a while to fully process depending on how many records you "
72
  "have in your database, so please be patient and wait for the script to "
@@ -75,7 +75,7 @@ msgstr ""
75
  "See protsess võtab aega sõltuvalt andmebaasis olevate kirjete arvust, seega "
76
  "palun olge kannatlikud ja laske skriptil oma töö lõpetada."
77
 
78
- #: ../includes/ot-cleanup-api.php:146
79
  #, php-format
80
  msgid ""
81
  "%s Your server is running in safe mode. Which means this page will "
@@ -87,23 +87,23 @@ msgstr ""
87
  "postituse töötlemisega probleeme, siis on seda numbrit võimalik %s filtriga "
88
  "muuta."
89
 
90
- #: ../includes/ot-cleanup-api.php:148
91
  msgid "Consolidate Posts"
92
  msgstr "Konsolideeri postitused"
93
 
94
- #: ../includes/ot-cleanup-api.php:176
95
  msgid "Reloading..."
96
  msgstr "Värskendame..."
97
 
98
- #: ../includes/ot-cleanup-api.php:212
99
  msgid "Clean up script has completed, the page will now reload..."
100
  msgstr "Puhastusskript on töö lõpetanud, leht laeb end kohe uuesti..."
101
 
102
- #: ../includes/ot-cleanup-api.php:232
103
  msgid "Outdated Table"
104
  msgstr "Aegunud tabel"
105
 
106
- #: ../includes/ot-cleanup-api.php:234
107
  #, php-format
108
  msgid ""
109
  "If you have upgraded from an old 1.x version of OptionTree at some point, "
@@ -115,21 +115,21 @@ msgstr ""
115
  "andmebaasis üleliigne tabel %s, mille saaks eemaldada. See ei tee midagi "
116
  "halba ning ei pea seal olema. Eemaldamiseks vajuta allolevat nuppu."
117
 
118
- #: ../includes/ot-cleanup-api.php:236
119
  msgid "Drop Table"
120
  msgstr "Eemalda tabel"
121
 
122
- #: ../includes/ot-cleanup-api.php:240
123
  #, php-format
124
  msgid "Deleting the outdated and unused %s table..."
125
  msgstr "Kustutan aegunud ja kasutamata tabeli %s..."
126
 
127
- #: ../includes/ot-cleanup-api.php:246
128
  #, php-format
129
  msgid "The %s table has been successfully deleted. The page will now reload..."
130
  msgstr "Tabel %s kustutatu edukalt. Leht laetakse kohe uuesti..."
131
 
132
- #: ../includes/ot-cleanup-api.php:258
133
  #, php-format
134
  msgid "Something went wrong. The %s table was not deleted."
135
  msgstr "Midagi läks valesti. Tabelit %s ei kustutatud."
@@ -360,8 +360,8 @@ msgid "Featured Image"
360
  msgstr "Tunuuspilt"
361
 
362
  #: ../includes/ot-functions-admin.php:861
363
- #: ../includes/ot-functions-admin.php:3249
364
- #: ../includes/ot-functions-admin.php:3310
365
  msgid "Image"
366
  msgstr "Pilt"
367
 
@@ -369,343 +369,343 @@ msgstr "Pilt"
369
  msgid "Option Tree"
370
  msgstr "Option Tree"
371
 
372
- #: ../includes/ot-functions-admin.php:1066
373
  msgid "General"
374
  msgstr "Üldseaded"
375
 
376
- #: ../includes/ot-functions-admin.php:1072
377
  msgid "Sample Text Field Label"
378
  msgstr "Tekstisisendi nimetuse näide"
379
 
380
- #: ../includes/ot-functions-admin.php:1073
381
  msgid "Description for the sample text field."
382
  msgstr "Tekstisisendi kirjelduse näide"
383
 
384
- #: ../includes/ot-functions-admin.php:2315
385
  msgid "Settings updated."
386
  msgstr "Seaded on uuendatud."
387
 
388
- #: ../includes/ot-functions-admin.php:2319
389
  msgid "Settings could not be saved."
390
  msgstr "Seadeid ei suudetud uuendada."
391
 
392
- #: ../includes/ot-functions-admin.php:2327
393
  msgid "Settings Imported."
394
  msgstr "Seaded on imporditud."
395
 
396
- #: ../includes/ot-functions-admin.php:2331
397
  msgid "Settings could not be imported."
398
  msgstr "Seadeid ei suudetud importida."
399
 
400
- #: ../includes/ot-functions-admin.php:2338
401
  msgid "Data Imported."
402
  msgstr "Andmed on imporditud."
403
 
404
- #: ../includes/ot-functions-admin.php:2342
405
  msgid "Data could not be imported."
406
  msgstr "Andmeid ei suudetud importida."
407
 
408
- #: ../includes/ot-functions-admin.php:2350
409
  msgid "Layouts Imported."
410
  msgstr "Paigutused on imporditud."
411
 
412
- #: ../includes/ot-functions-admin.php:2354
413
  msgid "Layouts could not be imported."
414
  msgstr "Paigutusi ei suudetud importida."
415
 
416
- #: ../includes/ot-functions-admin.php:2362
417
  msgid "Layouts Updated."
418
  msgstr "Paigutused on uuendatud."
419
 
420
- #: ../includes/ot-functions-admin.php:2366
421
  msgid "Layouts could not be updated."
422
  msgstr "Paigutusi ei suudetud uuendada."
423
 
424
- #: ../includes/ot-functions-admin.php:2370
425
  msgid "Layouts have been deleted."
426
  msgstr "Paigutused on kustutatud."
427
 
428
- #: ../includes/ot-functions-admin.php:2376
429
  msgid "Layout activated."
430
  msgstr "Paigutus on aktiveeritud."
431
 
432
- #: ../includes/ot-functions-admin.php:2415
433
  #: ../includes/ot-functions-docs-page.php:110
434
  msgid "Background"
435
  msgstr "Taust"
436
 
437
- #: ../includes/ot-functions-admin.php:2416
438
  #: ../includes/ot-functions-docs-page.php:113
439
  msgid "Border"
440
  msgstr "Ääris"
441
 
442
- #: ../includes/ot-functions-admin.php:2417
443
  #: ../includes/ot-functions-docs-page.php:116
444
  msgid "Box Shadow"
445
  msgstr "Kasti vari"
446
 
447
- #: ../includes/ot-functions-admin.php:2418
448
  #: ../includes/ot-functions-docs-page.php:119
449
  msgid "Category Checkbox"
450
  msgstr "Kategooriate valikkastid"
451
 
452
- #: ../includes/ot-functions-admin.php:2419
453
  #: ../includes/ot-functions-docs-page.php:122
454
  msgid "Category Select"
455
  msgstr "Kategooria rippvalik"
456
 
457
- #: ../includes/ot-functions-admin.php:2420
458
  #: ../includes/ot-functions-docs-page.php:125
459
  msgid "Checkbox"
460
  msgstr "Valikkastid"
461
 
462
- #: ../includes/ot-functions-admin.php:2421
463
  #: ../includes/ot-functions-docs-page.php:128
464
  msgid "Colorpicker"
465
  msgstr "Värvivalik"
466
 
467
- #: ../includes/ot-functions-admin.php:2422
468
  #: ../includes/ot-functions-docs-page.php:131
469
  msgid "Colorpicker Opacity"
470
  msgstr "Värvivalija läbipaistmatus"
471
 
472
- #: ../includes/ot-functions-admin.php:2423
473
  #: ../includes/ot-functions-docs-page.php:134
474
  msgid "CSS"
475
  msgstr "CSS"
476
 
477
- #: ../includes/ot-functions-admin.php:2424
478
  #: ../includes/ot-functions-docs-page.php:153
479
  msgid "Custom Post Type Checkbox"
480
  msgstr "Enda loodud postitüübi valikkastid"
481
 
482
- #: ../includes/ot-functions-admin.php:2425
483
  #: ../includes/ot-functions-docs-page.php:156
484
  msgid "Custom Post Type Select"
485
  msgstr "Enda loodud postitüübi rippvalik"
486
 
487
- #: ../includes/ot-functions-admin.php:2426
488
  #: ../includes/ot-functions-docs-page.php:159
489
  msgid "Date Picker"
490
  msgstr "Kuupäev valija"
491
 
492
- #: ../includes/ot-functions-admin.php:2427
493
  #: ../includes/ot-functions-docs-page.php:162
494
  msgid "Date Time Picker"
495
  msgstr "Kuupäeva ja kellaaja valija"
496
 
497
- #: ../includes/ot-functions-admin.php:2428
498
  #: ../includes/ot-functions-docs-page.php:165
499
  msgid "Dimension"
500
  msgstr "Mõõtmed"
501
 
502
- #: ../includes/ot-functions-admin.php:2429
503
- #: ../includes/ot-functions-admin.php:5463
504
  #: ../includes/ot-functions-docs-page.php:168
505
  msgid "Gallery"
506
  msgstr "Galerii"
507
 
508
- #: ../includes/ot-functions-admin.php:2430
509
  #: ../includes/ot-functions-docs-page.php:171
510
  msgid "Google Fonts"
511
  msgstr "Google Fondid"
512
 
513
- #: ../includes/ot-functions-admin.php:2431
514
  #: ../includes/ot-functions-docs-page.php:174
515
  msgid "JavaScript"
516
  msgstr "JavaScript"
517
 
518
- #: ../includes/ot-functions-admin.php:2432
519
  #: ../includes/ot-functions-docs-page.php:177
520
  msgid "Link Color"
521
  msgstr "Lingi värv"
522
 
523
- #: ../includes/ot-functions-admin.php:2433
524
  #: ../includes/ot-functions-docs-page.php:180
525
  msgid "List Item"
526
  msgstr "Nimekirja element"
527
 
528
- #: ../includes/ot-functions-admin.php:2434
529
  #: ../includes/ot-functions-docs-page.php:183
530
  msgid "Measurement"
531
  msgstr "Mõõt"
532
 
533
- #: ../includes/ot-functions-admin.php:2435
534
  #: ../includes/ot-functions-docs-page.php:214
535
  msgid "Numeric Slider"
536
  msgstr "Numbriskaala"
537
 
538
- #: ../includes/ot-functions-admin.php:2436
539
  #: ../includes/ot-functions-docs-page.php:217
540
  msgid "On/Off"
541
  msgstr "Sees/väljas"
542
 
543
- #: ../includes/ot-functions-admin.php:2437
544
  #: ../includes/ot-functions-docs-page.php:220
545
  msgid "Page Checkbox"
546
  msgstr "Lehekülgede valikkastid"
547
 
548
- #: ../includes/ot-functions-admin.php:2438
549
  #: ../includes/ot-functions-docs-page.php:223
550
  msgid "Page Select"
551
  msgstr "Lehekülje rippvalik"
552
 
553
- #: ../includes/ot-functions-admin.php:2439
554
  #: ../includes/ot-functions-docs-page.php:226
555
  msgid "Post Checkbox"
556
  msgstr "Postituste valikkastid"
557
 
558
- #: ../includes/ot-functions-admin.php:2440
559
  #: ../includes/ot-functions-docs-page.php:229
560
  msgid "Post Select"
561
  msgstr "Postituse rippvalik"
562
 
563
- #: ../includes/ot-functions-admin.php:2441
564
  #: ../includes/ot-functions-docs-page.php:232
565
  msgid "Radio"
566
  msgstr "Raadiokastid"
567
 
568
- #: ../includes/ot-functions-admin.php:2442
569
  #: ../includes/ot-functions-docs-page.php:235
570
  msgid "Radio Image"
571
  msgstr "Pildiga raadiokastid"
572
 
573
- #: ../includes/ot-functions-admin.php:2443
574
  #: ../includes/ot-functions-docs-page.php:262
575
  msgid "Select"
576
  msgstr "Rippvalik"
577
 
578
- #: ../includes/ot-functions-admin.php:2444
579
  #: ../includes/ot-functions-docs-page.php:265
580
  msgid "Sidebar Select"
581
  msgstr "Küljeriba rippvalik"
582
 
583
- #: ../includes/ot-functions-admin.php:2445
584
  #: ../includes/ot-functions-docs-page.php:269
585
  msgid "Slider"
586
  msgstr "Slaidiesitaja"
587
 
588
- #: ../includes/ot-functions-admin.php:2446
589
  #: ../includes/ot-functions-docs-page.php:272
590
  msgid "Social Links"
591
  msgstr "Sotsiaalmeedia"
592
 
593
- #: ../includes/ot-functions-admin.php:2447
594
  #: ../includes/ot-functions-docs-page.php:275
595
  msgid "Spacing"
596
  msgstr "Vahed"
597
 
598
- #: ../includes/ot-functions-admin.php:2448
599
  #: ../includes/ot-functions-docs-page.php:278
600
  msgid "Tab"
601
  msgstr "Sakk"
602
 
603
- #: ../includes/ot-functions-admin.php:2449
604
  #: ../includes/ot-functions-docs-page.php:281
605
  msgid "Tag Checkbox"
606
  msgstr "Sildi valikkastid"
607
 
608
- #: ../includes/ot-functions-admin.php:2450
609
  #: ../includes/ot-functions-docs-page.php:284
610
  msgid "Tag Select"
611
  msgstr "Sildi rippvalik"
612
 
613
- #: ../includes/ot-functions-admin.php:2451
614
  #: ../includes/ot-functions-docs-page.php:287
615
  msgid "Taxonomy Checkbox"
616
  msgstr "Taksonoomia valikkastid"
617
 
618
- #: ../includes/ot-functions-admin.php:2452
619
  #: ../includes/ot-functions-docs-page.php:290
620
  msgid "Taxonomy Select"
621
  msgstr "Taksonoomia rippvalik"
622
 
623
- #: ../includes/ot-functions-admin.php:2453
624
  #: ../includes/ot-functions-docs-page.php:293
625
  msgid "Text"
626
  msgstr "Tekstisisend"
627
 
628
- #: ../includes/ot-functions-admin.php:2454
629
  #: ../includes/ot-functions-docs-page.php:296
630
  msgid "Textarea"
631
  msgstr "Tekstiväli"
632
 
633
- #: ../includes/ot-functions-admin.php:2455
634
  #: ../includes/ot-functions-docs-page.php:355
635
  msgid "Textarea Simple"
636
  msgstr "Lihtne tekstiväli"
637
 
638
- #: ../includes/ot-functions-admin.php:2456
639
  #: ../includes/ot-functions-docs-page.php:371
640
  msgid "Textblock"
641
  msgstr "Tekstiblokk"
642
 
643
- #: ../includes/ot-functions-admin.php:2457
644
  #: ../includes/ot-functions-docs-page.php:374
645
  msgid "Textblock Titled"
646
  msgstr "Pealkirjaga tekstiblokk"
647
 
648
- #: ../includes/ot-functions-admin.php:2458
649
  #: ../includes/ot-functions-docs-page.php:377
650
  msgid "Typography"
651
  msgstr "Tüpograafia"
652
 
653
- #: ../includes/ot-functions-admin.php:2459
654
  #: ../includes/ot-functions-docs-page.php:397
655
  msgid "Upload"
656
  msgstr "Lae üles"
657
 
658
- #: ../includes/ot-functions-admin.php:3194
659
  msgid "Left Sidebar"
660
  msgstr "Vasak küljendusmenüü"
661
 
662
- #: ../includes/ot-functions-admin.php:3199
663
  msgid "Right Sidebar"
664
  msgstr "Parem küljendusmenüü"
665
 
666
- #: ../includes/ot-functions-admin.php:3204
667
  msgid "Full Width (no sidebar)"
668
  msgstr "Täies pikkuses (ilma küljendusmenüüta)"
669
 
670
- #: ../includes/ot-functions-admin.php:3209
671
  msgid "Dual Sidebar"
672
  msgstr "Topelt küljendusmenüü"
673
 
674
- #: ../includes/ot-functions-admin.php:3214
675
  msgid "Left Dual Sidebar"
676
  msgstr "Kaks küljendusmenüüd vasakul"
677
 
678
- #: ../includes/ot-functions-admin.php:3219
679
  msgid "Right Dual Sidebar"
680
  msgstr "Kaks küljendusmenüüd paremal"
681
 
682
- #: ../includes/ot-functions-admin.php:3260
683
- #: ../includes/ot-functions-admin.php:3316
684
- #: ../includes/ot-functions-admin.php:5503
685
  msgid "Link"
686
  msgstr "Viide"
687
 
688
- #: ../includes/ot-functions-admin.php:3271
689
- #: ../includes/ot-functions-admin.php:3322
690
  #: ../includes/ot-functions-docs-page.php:43
691
  #: ../includes/ot-functions-docs-page.php:428
692
  #: ../includes/ot-functions-docs-page.php:478
693
  msgid "Description"
694
  msgstr "Kirjeldus"
695
 
696
- #: ../includes/ot-functions-admin.php:3386
697
  msgid "Name"
698
  msgstr "Nimetus"
699
 
700
- #: ../includes/ot-functions-admin.php:3387
701
  msgid "Enter the name of the social website."
702
  msgstr "Sisesta sotsiaalmeedia veebilehe nimi."
703
 
704
- #: ../includes/ot-functions-admin.php:3395
705
  msgid "Enter the text shown in the title attribute of the link."
706
  msgstr "Sisesta tekst, mida näidatakse lingi pealkirja atribuudis."
707
 
708
- #: ../includes/ot-functions-admin.php:3401
709
  #, php-format
710
  msgid ""
711
  "Enter a link to the profile or page on the social website. Remember to add "
@@ -714,47 +714,47 @@ msgstr ""
714
  "Sisesta link profiilile või lehele sellel sotsiaalmeedia veebilehel. Ära "
715
  "unusta lisada lingi ette %s osa."
716
 
717
- #: ../includes/ot-functions-admin.php:3753
718
  #, php-format
719
  msgid "Unable to write to file %s."
720
  msgstr ""
721
 
722
- #: ../includes/ot-functions-admin.php:4023
723
  msgid "edit"
724
  msgstr "muuda"
725
 
726
- #: ../includes/ot-functions-admin.php:4024
727
- #: ../includes/ot-functions-admin.php:4092
728
  #: ../includes/ot-functions-admin.php:4093
729
- #: ../includes/ot-functions-admin.php:4255
730
  #: ../includes/ot-functions-admin.php:4256
731
- #: ../includes/ot-functions-admin.php:4321
732
  #: ../includes/ot-functions-admin.php:4322
733
- #: ../includes/ot-functions-admin.php:4449
734
  #: ../includes/ot-functions-admin.php:4450
735
- #: ../includes/ot-functions-admin.php:4602
736
  #: ../includes/ot-functions-admin.php:4603
 
737
  msgid "Edit"
738
  msgstr "Muuda"
739
 
740
- #: ../includes/ot-functions-admin.php:4026
741
  #: ../includes/ot-functions-admin.php:4027
742
- #: ../includes/ot-functions-admin.php:4095
743
  #: ../includes/ot-functions-admin.php:4096
744
- #: ../includes/ot-functions-admin.php:4258
745
  #: ../includes/ot-functions-admin.php:4259
746
- #: ../includes/ot-functions-admin.php:4324
747
  #: ../includes/ot-functions-admin.php:4325
748
- #: ../includes/ot-functions-admin.php:4383
749
  #: ../includes/ot-functions-admin.php:4384
750
- #: ../includes/ot-functions-admin.php:4452
751
  #: ../includes/ot-functions-admin.php:4453
752
- #: ../includes/ot-functions-admin.php:4605
753
  #: ../includes/ot-functions-admin.php:4606
 
754
  msgid "Delete"
755
  msgstr "Kustuta"
756
 
757
- #: ../includes/ot-functions-admin.php:4033
758
  msgid ""
759
  "<strong>Section Title</strong>: Displayed as a menu item on the Theme "
760
  "Options page."
@@ -762,7 +762,7 @@ msgstr ""
762
  "<strong>Sektsiooni pealkiri</strong>: Näidatakse menüü elemendina teema "
763
  "valikute lehel."
764
 
765
- #: ../includes/ot-functions-admin.php:4041
766
  msgid ""
767
  "<strong>Section ID</strong>: A unique lower case alphanumeric string, "
768
  "underscores allowed."
@@ -770,7 +770,7 @@ msgstr ""
770
  "<strong>Sektsiooni ID</strong>: unikaalne väiketähtedega tähtnumbriline "
771
  "string, alakriipsud lubatud."
772
 
773
- #: ../includes/ot-functions-admin.php:4102
774
  msgid ""
775
  "<strong>Label</strong>: Displayed as the label of a form element on the "
776
  "Theme Options page."
@@ -778,8 +778,8 @@ msgstr ""
778
  "<strong>Nimetus</strong>: Näidatakse kui vormi elemendi nimetust teema "
779
  "valikute lehel."
780
 
781
- #: ../includes/ot-functions-admin.php:4110
782
- #: ../includes/ot-functions-admin.php:4339
783
  msgid ""
784
  "<strong>ID</strong>: A unique lower case alphanumeric string, underscores "
785
  "allowed."
@@ -787,14 +787,14 @@ msgstr ""
787
  "<strong>ID</strong>: unikaalne väiketähtedega tähtnumbriline string, "
788
  "alakriipsud lubatud."
789
 
790
- #: ../includes/ot-functions-admin.php:4118
791
  msgid ""
792
  "<strong>Type</strong>: Choose one of the available option types from the "
793
  "dropdown."
794
  msgstr ""
795
  "<strong>Tüüp</strong>: vali rippmenüüst üks pakutavatest valiku tüüpidest."
796
 
797
- #: ../includes/ot-functions-admin.php:4129
798
  msgid ""
799
  "<strong>Description</strong>: Enter a detailed description for the users to "
800
  "read on the Theme Options page, HTML is allowed. This is also where you "
@@ -804,7 +804,7 @@ msgstr ""
804
  "saavad lugeda teema valikute lehel. HTML on lubatud. See on ühtlasi ka koht, "
805
  "kuhu sisestada tekstibloki ja pealkirjaga tekstibloki valikutüüpide sisu."
806
 
807
- #: ../includes/ot-functions-admin.php:4137
808
  msgid ""
809
  "<strong>Choices</strong>: This will only affect the following option types: "
810
  "Checkbox, Radio, Select & Select Image."
@@ -812,21 +812,21 @@ msgstr ""
812
  "<strong>Valikud</strong>: mõjutab vaid järgnevaid valikutüüpe: valikkastid, "
813
  "raadiokastid, rippvalik ja pildi valik."
814
 
815
- #: ../includes/ot-functions-admin.php:4142
816
  msgid "Add Choice"
817
  msgstr "Lisa valik"
818
 
819
- #: ../includes/ot-functions-admin.php:4148
820
  msgid ""
821
  "<strong>Settings</strong>: This will only affect the List Item option type."
822
  msgstr "<strong>Sätted</strong>: mõjutab vaid nimekirja elemendi valikutüüpi."
823
 
824
- #: ../includes/ot-functions-admin.php:4153
825
  #: ../includes/ot-functions-settings-page.php:93
826
  msgid "Add Setting"
827
  msgstr "Lisa säte"
828
 
829
- #: ../includes/ot-functions-admin.php:4159
830
  msgid ""
831
  "<strong>Standard</strong>: Setting the standard value for your option only "
832
  "works for some option types. Read the <code>OptionTree->Documentation</code> "
@@ -836,7 +836,7 @@ msgstr ""
836
  "valikutüübile. Lisainfot leiad <code>OptionTree->Dokumentatsioon</code> "
837
  "lehelt."
838
 
839
- #: ../includes/ot-functions-admin.php:4167
840
  msgid ""
841
  "<strong>Rows</strong>: Enter a numeric value for the number of rows in your "
842
  "textarea. This will only affect the following option types: CSS, Textarea, & "
@@ -846,7 +846,7 @@ msgstr ""
846
  "tekstiväljal. Mõjutab vaid järgnevaid valikutüüpe: CSS, tekstiväli ja lihtne "
847
  "tekstiväli."
848
 
849
- #: ../includes/ot-functions-admin.php:4175
850
  msgid ""
851
  "<strong>Post Type</strong>: Add a comma separated list of post type like "
852
  "'post,page'. This will only affect the following option types: Custom Post "
@@ -857,7 +857,7 @@ msgstr ""
857
  "valikutüüpe: enda loodud postitüübi valikkastid ja enda loodud postitüübi "
858
  "rippvalik."
859
 
860
- #: ../includes/ot-functions-admin.php:4183
861
  msgid ""
862
  "<strong>Taxonomy</strong>: Add a comma separated list of any registered "
863
  "taxonomy like 'category,post_tag'. This will only affect the following "
@@ -867,7 +867,7 @@ msgstr ""
867
  "taksonoomiatest nagu 'category,post_tag'. See mõjutab vaid järgnevaid "
868
  "valikutüüpe: taksonoomia valikukastid & taksonoomia rippvalik."
869
 
870
- #: ../includes/ot-functions-admin.php:4191
871
  msgid ""
872
  "<strong>Min, Max, & Step</strong>: Add a comma separated list of options in "
873
  "the following format <code>0,100,1</code> (slide from <code>0-100</code> in "
@@ -880,12 +880,12 @@ msgstr ""
880
  "code> intervalliga <code>1</code> ). Need kolm väärtust näitavad miinimumi, "
881
  "maksimumi ja astme valikuid ning mõjutavad vaid numbriliuguri valikutüüpi."
882
 
883
- #: ../includes/ot-functions-admin.php:4199
884
  msgid "<strong>CSS Class</strong>: Add and optional class to this option type."
885
  msgstr ""
886
  "<strong>CSS klass</strong>: Soovi korral lisa sellele valikutüübile klass."
887
 
888
- #: ../includes/ot-functions-admin.php:4207
889
  #, php-format
890
  msgid ""
891
  "<strong>Condition</strong>: Add a comma separated list (no spaces) of "
@@ -898,7 +898,7 @@ msgstr ""
898
  "tühjaks. Nendes näidetes on <code>value</code> kohahoidja teie tingimustele, "
899
  "mis võivad olla kujul %s."
900
 
901
- #: ../includes/ot-functions-admin.php:4215
902
  msgid ""
903
  "<strong>Operator</strong>: Choose the logical operator to compute the result "
904
  "of the conditions."
@@ -906,30 +906,30 @@ msgstr ""
906
  "<strong>Operaator</strong>: vali loogiline operaator, millega arvutada välja "
907
  "tingimuste tulemus."
908
 
909
- #: ../includes/ot-functions-admin.php:4218
910
  #: ../includes/ot-functions-docs-page.php:111
911
  #: ../includes/ot-functions-docs-page.php:378
912
  msgid "and"
913
  msgstr "ja"
914
 
915
- #: ../includes/ot-functions-admin.php:4219
916
  msgid "or"
917
  msgstr "või"
918
 
919
- #: ../includes/ot-functions-admin.php:4265
920
  #: ../includes/ot-functions-docs-page.php:29
921
  msgid "Label"
922
  msgstr "Nimetus"
923
 
924
- #: ../includes/ot-functions-admin.php:4275
925
  msgid "Value"
926
  msgstr "Väärtus"
927
 
928
- #: ../includes/ot-functions-admin.php:4285
929
  msgid "Image Source (Radio Image only)"
930
  msgstr "Pildi allikas ( ainult pildiga raadiovaliku jaoks )"
931
 
932
- #: ../includes/ot-functions-admin.php:4331
933
  msgid ""
934
  "<strong>Title</strong>: Displayed as a contextual help menu item on the "
935
  "Theme Options page."
@@ -937,7 +937,7 @@ msgstr ""
937
  "<strong>Pealkiri</strong>: kuvatakse kui kontekstipõhine abimenüü element "
938
  "teema valikute lehel."
939
 
940
- #: ../includes/ot-functions-admin.php:4347
941
  msgid ""
942
  "<strong>Content</strong>: Enter the HTML content about this contextual help "
943
  "item displayed on the Theme Option page for end users to read."
@@ -945,57 +945,57 @@ msgstr ""
945
  "<strong>Sisu</strong>: sisesta HTML sisu selle kontekstipõhise elemendi "
946
  "kohta. Näidatakse teema valikute lehel lõppkasutajatele."
947
 
948
- #: ../includes/ot-functions-admin.php:4378
949
  msgid "Layout"
950
  msgstr "Paigutus"
951
 
952
- #: ../includes/ot-functions-admin.php:4380
953
  #: ../includes/ot-functions-admin.php:4381
 
954
  msgid "Activate"
955
  msgstr "Aktiveeri"
956
 
957
- #: ../includes/ot-functions-admin.php:4417 ../includes/ot-meta-box-api.php:223
958
  #: ../includes/ot-settings-api.php:610
959
  msgid "Title"
960
  msgstr "Pealkiri"
961
 
962
- #: ../includes/ot-functions-admin.php:4757
963
  msgid "New Layout"
964
  msgstr "Uus paigutus"
965
 
966
- #: ../includes/ot-functions-admin.php:5512
967
  msgid "Link URL"
968
  msgstr "Viide"
969
 
970
- #: ../includes/ot-functions-admin.php:5519
971
  msgid "Link Title"
972
  msgstr "Lingi pealkiri"
973
 
974
- #: ../includes/ot-functions-admin.php:5549
975
  msgid "Quote"
976
  msgstr "Tsitaat"
977
 
978
- #: ../includes/ot-functions-admin.php:5558
979
  msgid "Source Name (ex. author, singer, actor)"
980
  msgstr "Allika nimi (nt autor, laulja, näitleja)"
981
 
982
- #: ../includes/ot-functions-admin.php:5565
983
  msgid "Source URL"
984
  msgstr "Allika URL"
985
 
986
- #: ../includes/ot-functions-admin.php:5572
987
  msgid "Source Title (ex. book, song, movie)"
988
  msgstr "Allika pealkiri (nt raamat, laul, film)"
989
 
990
- #: ../includes/ot-functions-admin.php:5579
991
  msgid "Source Date"
992
  msgstr "Allika kuupäev"
993
 
994
- #: ../includes/ot-functions-admin.php:5609
995
  msgid "Video"
996
  msgstr "Video"
997
 
998
- #: ../includes/ot-functions-admin.php:5618
999
  #, php-format
1000
  msgid ""
1001
  "Embed video from services like Youtube, Vimeo, or Hulu. You can find a list "
@@ -1006,16 +1006,16 @@ msgstr ""
1006
  "Nimekirja toetatud oEmbed veebilehtedest leiad %1$s. Teine variant oleks "
1007
  "kasutada sisse ehitatud lühikoodi %2$s."
1008
 
1009
- #: ../includes/ot-functions-admin.php:5618
1010
- #: ../includes/ot-functions-admin.php:5657
1011
  msgid "Wordpress Codex"
1012
  msgstr "Wordpress Codex"
1013
 
1014
- #: ../includes/ot-functions-admin.php:5648
1015
  msgid "Audio"
1016
  msgstr "Audio"
1017
 
1018
- #: ../includes/ot-functions-admin.php:5657
1019
  #, php-format
1020
  msgid ""
1021
  "Embed audio from services like SoundCloud and Rdio. You can find a list of "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: OptionTree\n"
4
+ "POT-Creation-Date: 2015-04-21 22:11-0800\n"
5
+ "PO-Revision-Date: 2015-04-21 22:11-0800\n"
6
  "Last-Translator: Derek Herman <derek@valendesigns.com>\n"
7
  "Language-Team: Valen Designs\n"
8
  "Language: et_EE\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: Poedit 1.7.6\n"
13
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
14
  "_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;"
15
  "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
20
  "X-Poedit-SearchPathExcluded-1: ../composer.json\n"
21
  "X-Poedit-SearchPathExcluded-2: ../assets\n"
22
 
23
+ #: ../includes/ot-cleanup-api.php:84 ../includes/ot-cleanup-api.php:101
24
+ #: ../includes/ot-cleanup-api.php:130
25
  msgid "OptionTree Cleanup"
26
  msgstr "OptionTree puhastus"
27
 
28
+ #: ../includes/ot-cleanup-api.php:101
29
  #, php-format
30
  msgid ""
31
  "OptionTree has outdated data that should be removed. Please go to %s for "
34
  "OptionTreel on aegunud andmeid, mis tuleks eemaldada. Lisainformatsiooni "
35
  "saamiseks mine palun %s."
36
 
37
+ #: ../includes/ot-cleanup-api.php:136
38
  msgid "Multiple Media Posts"
39
  msgstr "Mitme meediaga postitused"
40
 
41
+ #: ../includes/ot-cleanup-api.php:138
42
  #, php-format
43
  msgid ""
44
  "There are currently %s OptionTree media posts in your database. At some "
54
  "maht on suurem. Õnneks on nende orbudeks jäänud postituste eemaldamiseks "
55
  "moodus olemas, nii et saab andmebaasi jälle puhtaks."
56
 
57
+ #: ../includes/ot-cleanup-api.php:140
58
  #, php-format
59
  msgid ""
60
  "By clicking the button below, OptionTree will delete %s records and "
66
  "ainsasse OptionTree meedia postitusse, kuhu manuseid üles laaditakse. Lisaks "
67
  "määratakse nende manuste vanema ID-le õige väärtus."
68
 
69
+ #: ../includes/ot-cleanup-api.php:142
70
  msgid ""
71
  "This could take a while to fully process depending on how many records you "
72
  "have in your database, so please be patient and wait for the script to "
75
  "See protsess võtab aega sõltuvalt andmebaasis olevate kirjete arvust, seega "
76
  "palun olge kannatlikud ja laske skriptil oma töö lõpetada."
77
 
78
+ #: ../includes/ot-cleanup-api.php:144
79
  #, php-format
80
  msgid ""
81
  "%s Your server is running in safe mode. Which means this page will "
87
  "postituse töötlemisega probleeme, siis on seda numbrit võimalik %s filtriga "
88
  "muuta."
89
 
90
+ #: ../includes/ot-cleanup-api.php:146
91
  msgid "Consolidate Posts"
92
  msgstr "Konsolideeri postitused"
93
 
94
+ #: ../includes/ot-cleanup-api.php:174
95
  msgid "Reloading..."
96
  msgstr "Värskendame..."
97
 
98
+ #: ../includes/ot-cleanup-api.php:210
99
  msgid "Clean up script has completed, the page will now reload..."
100
  msgstr "Puhastusskript on töö lõpetanud, leht laeb end kohe uuesti..."
101
 
102
+ #: ../includes/ot-cleanup-api.php:230
103
  msgid "Outdated Table"
104
  msgstr "Aegunud tabel"
105
 
106
+ #: ../includes/ot-cleanup-api.php:232
107
  #, php-format
108
  msgid ""
109
  "If you have upgraded from an old 1.x version of OptionTree at some point, "
115
  "andmebaasis üleliigne tabel %s, mille saaks eemaldada. See ei tee midagi "
116
  "halba ning ei pea seal olema. Eemaldamiseks vajuta allolevat nuppu."
117
 
118
+ #: ../includes/ot-cleanup-api.php:234
119
  msgid "Drop Table"
120
  msgstr "Eemalda tabel"
121
 
122
+ #: ../includes/ot-cleanup-api.php:238
123
  #, php-format
124
  msgid "Deleting the outdated and unused %s table..."
125
  msgstr "Kustutan aegunud ja kasutamata tabeli %s..."
126
 
127
+ #: ../includes/ot-cleanup-api.php:244
128
  #, php-format
129
  msgid "The %s table has been successfully deleted. The page will now reload..."
130
  msgstr "Tabel %s kustutatu edukalt. Leht laetakse kohe uuesti..."
131
 
132
+ #: ../includes/ot-cleanup-api.php:256
133
  #, php-format
134
  msgid "Something went wrong. The %s table was not deleted."
135
  msgstr "Midagi läks valesti. Tabelit %s ei kustutatud."
360
  msgstr "Tunuuspilt"
361
 
362
  #: ../includes/ot-functions-admin.php:861
363
+ #: ../includes/ot-functions-admin.php:3250
364
+ #: ../includes/ot-functions-admin.php:3311
365
  msgid "Image"
366
  msgstr "Pilt"
367
 
369
  msgid "Option Tree"
370
  msgstr "Option Tree"
371
 
372
+ #: ../includes/ot-functions-admin.php:1067
373
  msgid "General"
374
  msgstr "Üldseaded"
375
 
376
+ #: ../includes/ot-functions-admin.php:1073
377
  msgid "Sample Text Field Label"
378
  msgstr "Tekstisisendi nimetuse näide"
379
 
380
+ #: ../includes/ot-functions-admin.php:1074
381
  msgid "Description for the sample text field."
382
  msgstr "Tekstisisendi kirjelduse näide"
383
 
384
+ #: ../includes/ot-functions-admin.php:2316
385
  msgid "Settings updated."
386
  msgstr "Seaded on uuendatud."
387
 
388
+ #: ../includes/ot-functions-admin.php:2320
389
  msgid "Settings could not be saved."
390
  msgstr "Seadeid ei suudetud uuendada."
391
 
392
+ #: ../includes/ot-functions-admin.php:2328
393
  msgid "Settings Imported."
394
  msgstr "Seaded on imporditud."
395
 
396
+ #: ../includes/ot-functions-admin.php:2332
397
  msgid "Settings could not be imported."
398
  msgstr "Seadeid ei suudetud importida."
399
 
400
+ #: ../includes/ot-functions-admin.php:2339
401
  msgid "Data Imported."
402
  msgstr "Andmed on imporditud."
403
 
404
+ #: ../includes/ot-functions-admin.php:2343
405
  msgid "Data could not be imported."
406
  msgstr "Andmeid ei suudetud importida."
407
 
408
+ #: ../includes/ot-functions-admin.php:2351
409
  msgid "Layouts Imported."
410
  msgstr "Paigutused on imporditud."
411
 
412
+ #: ../includes/ot-functions-admin.php:2355
413
  msgid "Layouts could not be imported."
414
  msgstr "Paigutusi ei suudetud importida."
415
 
416
+ #: ../includes/ot-functions-admin.php:2363
417
  msgid "Layouts Updated."
418
  msgstr "Paigutused on uuendatud."
419
 
420
+ #: ../includes/ot-functions-admin.php:2367
421
  msgid "Layouts could not be updated."
422
  msgstr "Paigutusi ei suudetud uuendada."
423
 
424
+ #: ../includes/ot-functions-admin.php:2371
425
  msgid "Layouts have been deleted."
426
  msgstr "Paigutused on kustutatud."
427
 
428
+ #: ../includes/ot-functions-admin.php:2377
429
  msgid "Layout activated."
430
  msgstr "Paigutus on aktiveeritud."
431
 
432
+ #: ../includes/ot-functions-admin.php:2416
433
  #: ../includes/ot-functions-docs-page.php:110
434
  msgid "Background"
435
  msgstr "Taust"
436
 
437
+ #: ../includes/ot-functions-admin.php:2417
438
  #: ../includes/ot-functions-docs-page.php:113
439
  msgid "Border"
440
  msgstr "Ääris"
441
 
442
+ #: ../includes/ot-functions-admin.php:2418
443
  #: ../includes/ot-functions-docs-page.php:116
444
  msgid "Box Shadow"
445
  msgstr "Kasti vari"
446
 
447
+ #: ../includes/ot-functions-admin.php:2419
448
  #: ../includes/ot-functions-docs-page.php:119
449
  msgid "Category Checkbox"
450
  msgstr "Kategooriate valikkastid"
451
 
452
+ #: ../includes/ot-functions-admin.php:2420
453
  #: ../includes/ot-functions-docs-page.php:122
454
  msgid "Category Select"
455
  msgstr "Kategooria rippvalik"
456
 
457
+ #: ../includes/ot-functions-admin.php:2421
458
  #: ../includes/ot-functions-docs-page.php:125
459
  msgid "Checkbox"
460
  msgstr "Valikkastid"
461
 
462
+ #: ../includes/ot-functions-admin.php:2422
463
  #: ../includes/ot-functions-docs-page.php:128
464
  msgid "Colorpicker"
465
  msgstr "Värvivalik"
466
 
467
+ #: ../includes/ot-functions-admin.php:2423
468
  #: ../includes/ot-functions-docs-page.php:131
469
  msgid "Colorpicker Opacity"
470
  msgstr "Värvivalija läbipaistmatus"
471
 
472
+ #: ../includes/ot-functions-admin.php:2424
473
  #: ../includes/ot-functions-docs-page.php:134
474
  msgid "CSS"
475
  msgstr "CSS"
476
 
477
+ #: ../includes/ot-functions-admin.php:2425
478
  #: ../includes/ot-functions-docs-page.php:153
479
  msgid "Custom Post Type Checkbox"
480
  msgstr "Enda loodud postitüübi valikkastid"
481
 
482
+ #: ../includes/ot-functions-admin.php:2426
483
  #: ../includes/ot-functions-docs-page.php:156
484
  msgid "Custom Post Type Select"
485
  msgstr "Enda loodud postitüübi rippvalik"
486
 
487
+ #: ../includes/ot-functions-admin.php:2427
488
  #: ../includes/ot-functions-docs-page.php:159
489
  msgid "Date Picker"
490
  msgstr "Kuupäev valija"
491
 
492
+ #: ../includes/ot-functions-admin.php:2428
493
  #: ../includes/ot-functions-docs-page.php:162
494
  msgid "Date Time Picker"
495
  msgstr "Kuupäeva ja kellaaja valija"
496
 
497
+ #: ../includes/ot-functions-admin.php:2429
498
  #: ../includes/ot-functions-docs-page.php:165
499
  msgid "Dimension"
500
  msgstr "Mõõtmed"
501
 
502
+ #: ../includes/ot-functions-admin.php:2430
503
+ #: ../includes/ot-functions-admin.php:5464
504
  #: ../includes/ot-functions-docs-page.php:168
505
  msgid "Gallery"
506
  msgstr "Galerii"
507
 
508
+ #: ../includes/ot-functions-admin.php:2431
509
  #: ../includes/ot-functions-docs-page.php:171
510
  msgid "Google Fonts"
511
  msgstr "Google Fondid"
512
 
513
+ #: ../includes/ot-functions-admin.php:2432
514
  #: ../includes/ot-functions-docs-page.php:174
515
  msgid "JavaScript"
516
  msgstr "JavaScript"
517
 
518
+ #: ../includes/ot-functions-admin.php:2433
519
  #: ../includes/ot-functions-docs-page.php:177
520
  msgid "Link Color"
521
  msgstr "Lingi värv"
522
 
523
+ #: ../includes/ot-functions-admin.php:2434
524
  #: ../includes/ot-functions-docs-page.php:180
525
  msgid "List Item"
526
  msgstr "Nimekirja element"
527
 
528
+ #: ../includes/ot-functions-admin.php:2435
529
  #: ../includes/ot-functions-docs-page.php:183
530
  msgid "Measurement"
531
  msgstr "Mõõt"
532
 
533
+ #: ../includes/ot-functions-admin.php:2436
534
  #: ../includes/ot-functions-docs-page.php:214
535
  msgid "Numeric Slider"
536
  msgstr "Numbriskaala"
537
 
538
+ #: ../includes/ot-functions-admin.php:2437
539
  #: ../includes/ot-functions-docs-page.php:217
540
  msgid "On/Off"
541
  msgstr "Sees/väljas"
542
 
543
+ #: ../includes/ot-functions-admin.php:2438
544
  #: ../includes/ot-functions-docs-page.php:220
545
  msgid "Page Checkbox"
546
  msgstr "Lehekülgede valikkastid"
547
 
548
+ #: ../includes/ot-functions-admin.php:2439
549
  #: ../includes/ot-functions-docs-page.php:223
550
  msgid "Page Select"
551
  msgstr "Lehekülje rippvalik"
552
 
553
+ #: ../includes/ot-functions-admin.php:2440
554
  #: ../includes/ot-functions-docs-page.php:226
555
  msgid "Post Checkbox"
556
  msgstr "Postituste valikkastid"
557
 
558
+ #: ../includes/ot-functions-admin.php:2441
559
  #: ../includes/ot-functions-docs-page.php:229
560
  msgid "Post Select"
561
  msgstr "Postituse rippvalik"
562
 
563
+ #: ../includes/ot-functions-admin.php:2442
564
  #: ../includes/ot-functions-docs-page.php:232
565
  msgid "Radio"
566
  msgstr "Raadiokastid"
567
 
568
+ #: ../includes/ot-functions-admin.php:2443
569
  #: ../includes/ot-functions-docs-page.php:235
570
  msgid "Radio Image"
571
  msgstr "Pildiga raadiokastid"
572
 
573
+ #: ../includes/ot-functions-admin.php:2444
574
  #: ../includes/ot-functions-docs-page.php:262
575
  msgid "Select"
576
  msgstr "Rippvalik"
577
 
578
+ #: ../includes/ot-functions-admin.php:2445
579
  #: ../includes/ot-functions-docs-page.php:265
580
  msgid "Sidebar Select"
581
  msgstr "Küljeriba rippvalik"
582
 
583
+ #: ../includes/ot-functions-admin.php:2446
584
  #: ../includes/ot-functions-docs-page.php:269
585
  msgid "Slider"
586
  msgstr "Slaidiesitaja"
587
 
588
+ #: ../includes/ot-functions-admin.php:2447
589
  #: ../includes/ot-functions-docs-page.php:272
590
  msgid "Social Links"
591
  msgstr "Sotsiaalmeedia"
592
 
593
+ #: ../includes/ot-functions-admin.php:2448
594
  #: ../includes/ot-functions-docs-page.php:275
595
  msgid "Spacing"
596
  msgstr "Vahed"
597
 
598
+ #: ../includes/ot-functions-admin.php:2449
599
  #: ../includes/ot-functions-docs-page.php:278
600
  msgid "Tab"
601
  msgstr "Sakk"
602
 
603
+ #: ../includes/ot-functions-admin.php:2450
604
  #: ../includes/ot-functions-docs-page.php:281
605
  msgid "Tag Checkbox"
606
  msgstr "Sildi valikkastid"
607
 
608
+ #: ../includes/ot-functions-admin.php:2451
609
  #: ../includes/ot-functions-docs-page.php:284
610
  msgid "Tag Select"
611
  msgstr "Sildi rippvalik"
612
 
613
+ #: ../includes/ot-functions-admin.php:2452
614
  #: ../includes/ot-functions-docs-page.php:287
615
  msgid "Taxonomy Checkbox"
616
  msgstr "Taksonoomia valikkastid"
617
 
618
+ #: ../includes/ot-functions-admin.php:2453
619
  #: ../includes/ot-functions-docs-page.php:290
620
  msgid "Taxonomy Select"
621
  msgstr "Taksonoomia rippvalik"
622
 
623
+ #: ../includes/ot-functions-admin.php:2454
624
  #: ../includes/ot-functions-docs-page.php:293
625
  msgid "Text"
626
  msgstr "Tekstisisend"
627
 
628
+ #: ../includes/ot-functions-admin.php:2455
629
  #: ../includes/ot-functions-docs-page.php:296
630
  msgid "Textarea"
631
  msgstr "Tekstiväli"
632
 
633
+ #: ../includes/ot-functions-admin.php:2456
634
  #: ../includes/ot-functions-docs-page.php:355
635
  msgid "Textarea Simple"
636
  msgstr "Lihtne tekstiväli"
637
 
638
+ #: ../includes/ot-functions-admin.php:2457
639
  #: ../includes/ot-functions-docs-page.php:371
640
  msgid "Textblock"
641
  msgstr "Tekstiblokk"
642
 
643
+ #: ../includes/ot-functions-admin.php:2458
644
  #: ../includes/ot-functions-docs-page.php:374
645
  msgid "Textblock Titled"
646
  msgstr "Pealkirjaga tekstiblokk"
647
 
648
+ #: ../includes/ot-functions-admin.php:2459
649
  #: ../includes/ot-functions-docs-page.php:377
650
  msgid "Typography"
651
  msgstr "Tüpograafia"
652
 
653
+ #: ../includes/ot-functions-admin.php:2460
654
  #: ../includes/ot-functions-docs-page.php:397
655
  msgid "Upload"
656
  msgstr "Lae üles"
657
 
658
+ #: ../includes/ot-functions-admin.php:3195
659
  msgid "Left Sidebar"
660
  msgstr "Vasak küljendusmenüü"
661
 
662
+ #: ../includes/ot-functions-admin.php:3200
663
  msgid "Right Sidebar"
664
  msgstr "Parem küljendusmenüü"
665
 
666
+ #: ../includes/ot-functions-admin.php:3205
667
  msgid "Full Width (no sidebar)"
668
  msgstr "Täies pikkuses (ilma küljendusmenüüta)"
669
 
670
+ #: ../includes/ot-functions-admin.php:3210
671
  msgid "Dual Sidebar"
672
  msgstr "Topelt küljendusmenüü"
673
 
674
+ #: ../includes/ot-functions-admin.php:3215
675
  msgid "Left Dual Sidebar"
676
  msgstr "Kaks küljendusmenüüd vasakul"
677
 
678
+ #: ../includes/ot-functions-admin.php:3220
679
  msgid "Right Dual Sidebar"
680
  msgstr "Kaks küljendusmenüüd paremal"
681
 
682
+ #: ../includes/ot-functions-admin.php:3261
683
+ #: ../includes/ot-functions-admin.php:3317
684
+ #: ../includes/ot-functions-admin.php:5504
685
  msgid "Link"
686
  msgstr "Viide"
687
 
688
+ #: ../includes/ot-functions-admin.php:3272
689
+ #: ../includes/ot-functions-admin.php:3323
690
  #: ../includes/ot-functions-docs-page.php:43
691
  #: ../includes/ot-functions-docs-page.php:428
692
  #: ../includes/ot-functions-docs-page.php:478
693
  msgid "Description"
694
  msgstr "Kirjeldus"
695
 
696
+ #: ../includes/ot-functions-admin.php:3387
697
  msgid "Name"
698
  msgstr "Nimetus"
699
 
700
+ #: ../includes/ot-functions-admin.php:3388
701
  msgid "Enter the name of the social website."
702
  msgstr "Sisesta sotsiaalmeedia veebilehe nimi."
703
 
704
+ #: ../includes/ot-functions-admin.php:3396
705
  msgid "Enter the text shown in the title attribute of the link."
706
  msgstr "Sisesta tekst, mida näidatakse lingi pealkirja atribuudis."
707
 
708
+ #: ../includes/ot-functions-admin.php:3402
709
  #, php-format
710
  msgid ""
711
  "Enter a link to the profile or page on the social website. Remember to add "
714
  "Sisesta link profiilile või lehele sellel sotsiaalmeedia veebilehel. Ära "
715
  "unusta lisada lingi ette %s osa."
716
 
717
+ #: ../includes/ot-functions-admin.php:3754
718
  #, php-format
719
  msgid "Unable to write to file %s."
720
  msgstr ""
721
 
722
+ #: ../includes/ot-functions-admin.php:4024
723
  msgid "edit"
724
  msgstr "muuda"
725
 
726
+ #: ../includes/ot-functions-admin.php:4025
 
727
  #: ../includes/ot-functions-admin.php:4093
728
+ #: ../includes/ot-functions-admin.php:4094
729
  #: ../includes/ot-functions-admin.php:4256
730
+ #: ../includes/ot-functions-admin.php:4257
731
  #: ../includes/ot-functions-admin.php:4322
732
+ #: ../includes/ot-functions-admin.php:4323
733
  #: ../includes/ot-functions-admin.php:4450
734
+ #: ../includes/ot-functions-admin.php:4451
735
  #: ../includes/ot-functions-admin.php:4603
736
+ #: ../includes/ot-functions-admin.php:4604
737
  msgid "Edit"
738
  msgstr "Muuda"
739
 
 
740
  #: ../includes/ot-functions-admin.php:4027
741
+ #: ../includes/ot-functions-admin.php:4028
742
  #: ../includes/ot-functions-admin.php:4096
743
+ #: ../includes/ot-functions-admin.php:4097
744
  #: ../includes/ot-functions-admin.php:4259
745
+ #: ../includes/ot-functions-admin.php:4260
746
  #: ../includes/ot-functions-admin.php:4325
747
+ #: ../includes/ot-functions-admin.php:4326
748
  #: ../includes/ot-functions-admin.php:4384
749
+ #: ../includes/ot-functions-admin.php:4385
750
  #: ../includes/ot-functions-admin.php:4453
751
+ #: ../includes/ot-functions-admin.php:4454
752
  #: ../includes/ot-functions-admin.php:4606
753
+ #: ../includes/ot-functions-admin.php:4607
754
  msgid "Delete"
755
  msgstr "Kustuta"
756
 
757
+ #: ../includes/ot-functions-admin.php:4034
758
  msgid ""
759
  "<strong>Section Title</strong>: Displayed as a menu item on the Theme "
760
  "Options page."
762
  "<strong>Sektsiooni pealkiri</strong>: Näidatakse menüü elemendina teema "
763
  "valikute lehel."
764
 
765
+ #: ../includes/ot-functions-admin.php:4042
766
  msgid ""
767
  "<strong>Section ID</strong>: A unique lower case alphanumeric string, "
768
  "underscores allowed."
770
  "<strong>Sektsiooni ID</strong>: unikaalne väiketähtedega tähtnumbriline "
771
  "string, alakriipsud lubatud."
772
 
773
+ #: ../includes/ot-functions-admin.php:4103
774
  msgid ""
775
  "<strong>Label</strong>: Displayed as the label of a form element on the "
776
  "Theme Options page."
778
  "<strong>Nimetus</strong>: Näidatakse kui vormi elemendi nimetust teema "
779
  "valikute lehel."
780
 
781
+ #: ../includes/ot-functions-admin.php:4111
782
+ #: ../includes/ot-functions-admin.php:4340
783
  msgid ""
784
  "<strong>ID</strong>: A unique lower case alphanumeric string, underscores "
785
  "allowed."
787
  "<strong>ID</strong>: unikaalne väiketähtedega tähtnumbriline string, "
788
  "alakriipsud lubatud."
789
 
790
+ #: ../includes/ot-functions-admin.php:4119
791
  msgid ""
792
  "<strong>Type</strong>: Choose one of the available option types from the "
793
  "dropdown."
794
  msgstr ""
795
  "<strong>Tüüp</strong>: vali rippmenüüst üks pakutavatest valiku tüüpidest."
796
 
797
+ #: ../includes/ot-functions-admin.php:4130
798
  msgid ""
799
  "<strong>Description</strong>: Enter a detailed description for the users to "
800
  "read on the Theme Options page, HTML is allowed. This is also where you "
804
  "saavad lugeda teema valikute lehel. HTML on lubatud. See on ühtlasi ka koht, "
805
  "kuhu sisestada tekstibloki ja pealkirjaga tekstibloki valikutüüpide sisu."
806
 
807
+ #: ../includes/ot-functions-admin.php:4138
808
  msgid ""
809
  "<strong>Choices</strong>: This will only affect the following option types: "
810
  "Checkbox, Radio, Select & Select Image."
812
  "<strong>Valikud</strong>: mõjutab vaid järgnevaid valikutüüpe: valikkastid, "
813
  "raadiokastid, rippvalik ja pildi valik."
814
 
815
+ #: ../includes/ot-functions-admin.php:4143
816
  msgid "Add Choice"
817
  msgstr "Lisa valik"
818
 
819
+ #: ../includes/ot-functions-admin.php:4149
820
  msgid ""
821
  "<strong>Settings</strong>: This will only affect the List Item option type."
822
  msgstr "<strong>Sätted</strong>: mõjutab vaid nimekirja elemendi valikutüüpi."
823
 
824
+ #: ../includes/ot-functions-admin.php:4154
825
  #: ../includes/ot-functions-settings-page.php:93
826
  msgid "Add Setting"
827
  msgstr "Lisa säte"
828
 
829
+ #: ../includes/ot-functions-admin.php:4160
830
  msgid ""
831
  "<strong>Standard</strong>: Setting the standard value for your option only "
832
  "works for some option types. Read the <code>OptionTree->Documentation</code> "
836
  "valikutüübile. Lisainfot leiad <code>OptionTree->Dokumentatsioon</code> "
837
  "lehelt."
838
 
839
+ #: ../includes/ot-functions-admin.php:4168
840
  msgid ""
841
  "<strong>Rows</strong>: Enter a numeric value for the number of rows in your "
842
  "textarea. This will only affect the following option types: CSS, Textarea, & "
846
  "tekstiväljal. Mõjutab vaid järgnevaid valikutüüpe: CSS, tekstiväli ja lihtne "
847
  "tekstiväli."
848
 
849
+ #: ../includes/ot-functions-admin.php:4176
850
  msgid ""
851
  "<strong>Post Type</strong>: Add a comma separated list of post type like "
852
  "'post,page'. This will only affect the following option types: Custom Post "
857
  "valikutüüpe: enda loodud postitüübi valikkastid ja enda loodud postitüübi "
858
  "rippvalik."
859
 
860
+ #: ../includes/ot-functions-admin.php:4184
861
  msgid ""
862
  "<strong>Taxonomy</strong>: Add a comma separated list of any registered "
863
  "taxonomy like 'category,post_tag'. This will only affect the following "
867
  "taksonoomiatest nagu 'category,post_tag'. See mõjutab vaid järgnevaid "
868
  "valikutüüpe: taksonoomia valikukastid & taksonoomia rippvalik."
869
 
870
+ #: ../includes/ot-functions-admin.php:4192
871
  msgid ""
872
  "<strong>Min, Max, & Step</strong>: Add a comma separated list of options in "
873
  "the following format <code>0,100,1</code> (slide from <code>0-100</code> in "
880
  "code> intervalliga <code>1</code> ). Need kolm väärtust näitavad miinimumi, "
881
  "maksimumi ja astme valikuid ning mõjutavad vaid numbriliuguri valikutüüpi."
882
 
883
+ #: ../includes/ot-functions-admin.php:4200
884
  msgid "<strong>CSS Class</strong>: Add and optional class to this option type."
885
  msgstr ""
886
  "<strong>CSS klass</strong>: Soovi korral lisa sellele valikutüübile klass."
887
 
888
+ #: ../includes/ot-functions-admin.php:4208
889
  #, php-format
890
  msgid ""
891
  "<strong>Condition</strong>: Add a comma separated list (no spaces) of "
898
  "tühjaks. Nendes näidetes on <code>value</code> kohahoidja teie tingimustele, "
899
  "mis võivad olla kujul %s."
900
 
901
+ #: ../includes/ot-functions-admin.php:4216
902
  msgid ""
903
  "<strong>Operator</strong>: Choose the logical operator to compute the result "
904
  "of the conditions."
906
  "<strong>Operaator</strong>: vali loogiline operaator, millega arvutada välja "
907
  "tingimuste tulemus."
908
 
909
+ #: ../includes/ot-functions-admin.php:4219
910
  #: ../includes/ot-functions-docs-page.php:111
911
  #: ../includes/ot-functions-docs-page.php:378
912
  msgid "and"
913
  msgstr "ja"
914
 
915
+ #: ../includes/ot-functions-admin.php:4220
916
  msgid "or"
917
  msgstr "või"
918
 
919
+ #: ../includes/ot-functions-admin.php:4266
920
  #: ../includes/ot-functions-docs-page.php:29
921
  msgid "Label"
922
  msgstr "Nimetus"
923
 
924
+ #: ../includes/ot-functions-admin.php:4276
925
  msgid "Value"
926
  msgstr "Väärtus"
927
 
928
+ #: ../includes/ot-functions-admin.php:4286
929
  msgid "Image Source (Radio Image only)"
930
  msgstr "Pildi allikas ( ainult pildiga raadiovaliku jaoks )"
931
 
932
+ #: ../includes/ot-functions-admin.php:4332
933
  msgid ""
934
  "<strong>Title</strong>: Displayed as a contextual help menu item on the "
935
  "Theme Options page."
937
  "<strong>Pealkiri</strong>: kuvatakse kui kontekstipõhine abimenüü element "
938
  "teema valikute lehel."
939
 
940
+ #: ../includes/ot-functions-admin.php:4348
941
  msgid ""
942
  "<strong>Content</strong>: Enter the HTML content about this contextual help "
943
  "item displayed on the Theme Option page for end users to read."
945
  "<strong>Sisu</strong>: sisesta HTML sisu selle kontekstipõhise elemendi "
946
  "kohta. Näidatakse teema valikute lehel lõppkasutajatele."
947
 
948
+ #: ../includes/ot-functions-admin.php:4379
949
  msgid "Layout"
950
  msgstr "Paigutus"
951
 
 
952
  #: ../includes/ot-functions-admin.php:4381
953
+ #: ../includes/ot-functions-admin.php:4382
954
  msgid "Activate"
955
  msgstr "Aktiveeri"
956
 
957
+ #: ../includes/ot-functions-admin.php:4418 ../includes/ot-meta-box-api.php:231
958
  #: ../includes/ot-settings-api.php:610
959
  msgid "Title"
960
  msgstr "Pealkiri"
961
 
962
+ #: ../includes/ot-functions-admin.php:4758
963
  msgid "New Layout"
964
  msgstr "Uus paigutus"
965
 
966
+ #: ../includes/ot-functions-admin.php:5513
967
  msgid "Link URL"
968
  msgstr "Viide"
969
 
970
+ #: ../includes/ot-functions-admin.php:5520
971
  msgid "Link Title"
972
  msgstr "Lingi pealkiri"
973
 
974
+ #: ../includes/ot-functions-admin.php:5550
975
  msgid "Quote"
976
  msgstr "Tsitaat"
977
 
978
+ #: ../includes/ot-functions-admin.php:5559
979
  msgid "Source Name (ex. author, singer, actor)"
980
  msgstr "Allika nimi (nt autor, laulja, näitleja)"
981
 
982
+ #: ../includes/ot-functions-admin.php:5566
983
  msgid "Source URL"
984
  msgstr "Allika URL"
985
 
986
+ #: ../includes/ot-functions-admin.php:5573
987
  msgid "Source Title (ex. book, song, movie)"
988
  msgstr "Allika pealkiri (nt raamat, laul, film)"
989
 
990
+ #: ../includes/ot-functions-admin.php:5580
991
  msgid "Source Date"
992
  msgstr "Allika kuupäev"
993
 
994
+ #: ../includes/ot-functions-admin.php:5610
995
  msgid "Video"
996
  msgstr "Video"
997
 
998
+ #: ../includes/ot-functions-admin.php:5619
999
  #, php-format
1000
  msgid ""
1001
  "Embed video from services like Youtube, Vimeo, or Hulu. You can find a list "
1006
  "Nimekirja toetatud oEmbed veebilehtedest leiad %1$s. Teine variant oleks "
1007
  "kasutada sisse ehitatud lühikoodi %2$s."
1008
 
1009
+ #: ../includes/ot-functions-admin.php:5619
1010
+ #: ../includes/ot-functions-admin.php:5658
1011
  msgid "Wordpress Codex"
1012
  msgstr "Wordpress Codex"
1013
 
1014
+ #: ../includes/ot-functions-admin.php:5649
1015
  msgid "Audio"
1016
  msgstr "Audio"
1017
 
1018
+ #: ../includes/ot-functions-admin.php:5658
1019
  #, php-format
1020
  msgid ""
1021
  "Embed audio from services like SoundCloud and Rdio. You can find a list of "
languages/option-tree.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: OptionTree\n"
4
- "POT-Creation-Date: 2015-04-09 11:25-0800\n"
5
- "PO-Revision-Date: 2015-04-09 11:25-0800\n"
6
  "Last-Translator: Derek Herman <derek@valendesigns.com>\n"
7
  "Language-Team: Valen Designs\n"
8
  "Language: en\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: Poedit 1.7.5\n"
13
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
14
  "_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;"
15
  "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
@@ -20,23 +20,23 @@ msgstr ""
20
  "X-Poedit-SearchPathExcluded-1: ../composer.json\n"
21
  "X-Poedit-SearchPathExcluded-2: ../assets\n"
22
 
23
- #: ../includes/ot-cleanup-api.php:86 ../includes/ot-cleanup-api.php:103
24
- #: ../includes/ot-cleanup-api.php:132
25
  msgid "OptionTree Cleanup"
26
  msgstr ""
27
 
28
- #: ../includes/ot-cleanup-api.php:103
29
  #, php-format
30
  msgid ""
31
  "OptionTree has outdated data that should be removed. Please go to %s for "
32
  "more information."
33
  msgstr ""
34
 
35
- #: ../includes/ot-cleanup-api.php:138
36
  msgid "Multiple Media Posts"
37
  msgstr ""
38
 
39
- #: ../includes/ot-cleanup-api.php:140
40
  #, php-format
41
  msgid ""
42
  "There are currently %s OptionTree media posts in your database. At some "
@@ -47,7 +47,7 @@ msgid ""
47
  "posts and get your database cleaned up."
48
  msgstr ""
49
 
50
- #: ../includes/ot-cleanup-api.php:142
51
  #, php-format
52
  msgid ""
53
  "By clicking the button below, OptionTree will delete %s records and "
@@ -56,14 +56,14 @@ msgid ""
56
  "updated to the correct media post."
57
  msgstr ""
58
 
59
- #: ../includes/ot-cleanup-api.php:144
60
  msgid ""
61
  "This could take a while to fully process depending on how many records you "
62
  "have in your database, so please be patient and wait for the script to "
63
  "finish."
64
  msgstr ""
65
 
66
- #: ../includes/ot-cleanup-api.php:146
67
  #, php-format
68
  msgid ""
69
  "%s Your server is running in safe mode. Which means this page will "
@@ -71,23 +71,23 @@ msgid ""
71
  "using %s if your server is having trouble processing that many at one time."
72
  msgstr ""
73
 
74
- #: ../includes/ot-cleanup-api.php:148
75
  msgid "Consolidate Posts"
76
  msgstr ""
77
 
78
- #: ../includes/ot-cleanup-api.php:176
79
  msgid "Reloading..."
80
  msgstr ""
81
 
82
- #: ../includes/ot-cleanup-api.php:212
83
  msgid "Clean up script has completed, the page will now reload..."
84
  msgstr ""
85
 
86
- #: ../includes/ot-cleanup-api.php:232
87
  msgid "Outdated Table"
88
  msgstr ""
89
 
90
- #: ../includes/ot-cleanup-api.php:234
91
  #, php-format
92
  msgid ""
93
  "If you have upgraded from an old 1.x version of OptionTree at some point, "
@@ -96,21 +96,21 @@ msgid ""
96
  "Click the button below."
97
  msgstr ""
98
 
99
- #: ../includes/ot-cleanup-api.php:236
100
  msgid "Drop Table"
101
  msgstr ""
102
 
103
- #: ../includes/ot-cleanup-api.php:240
104
  #, php-format
105
  msgid "Deleting the outdated and unused %s table..."
106
  msgstr ""
107
 
108
- #: ../includes/ot-cleanup-api.php:246
109
  #, php-format
110
  msgid "The %s table has been successfully deleted. The page will now reload..."
111
  msgstr ""
112
 
113
- #: ../includes/ot-cleanup-api.php:258
114
  #, php-format
115
  msgid "Something went wrong. The %s table was not deleted."
116
  msgstr ""
@@ -338,8 +338,8 @@ msgid "Featured Image"
338
  msgstr ""
339
 
340
  #: ../includes/ot-functions-admin.php:861
341
- #: ../includes/ot-functions-admin.php:3249
342
- #: ../includes/ot-functions-admin.php:3310
343
  msgid "Image"
344
  msgstr ""
345
 
@@ -347,476 +347,476 @@ msgstr ""
347
  msgid "Option Tree"
348
  msgstr ""
349
 
350
- #: ../includes/ot-functions-admin.php:1066
351
  msgid "General"
352
  msgstr ""
353
 
354
- #: ../includes/ot-functions-admin.php:1072
355
  msgid "Sample Text Field Label"
356
  msgstr ""
357
 
358
- #: ../includes/ot-functions-admin.php:1073
359
  msgid "Description for the sample text field."
360
  msgstr ""
361
 
362
- #: ../includes/ot-functions-admin.php:2315
363
  msgid "Settings updated."
364
  msgstr ""
365
 
366
- #: ../includes/ot-functions-admin.php:2319
367
  msgid "Settings could not be saved."
368
  msgstr ""
369
 
370
- #: ../includes/ot-functions-admin.php:2327
371
  msgid "Settings Imported."
372
  msgstr ""
373
 
374
- #: ../includes/ot-functions-admin.php:2331
375
  msgid "Settings could not be imported."
376
  msgstr ""
377
 
378
- #: ../includes/ot-functions-admin.php:2338
379
  msgid "Data Imported."
380
  msgstr ""
381
 
382
- #: ../includes/ot-functions-admin.php:2342
383
  msgid "Data could not be imported."
384
  msgstr ""
385
 
386
- #: ../includes/ot-functions-admin.php:2350
387
  msgid "Layouts Imported."
388
  msgstr ""
389
 
390
- #: ../includes/ot-functions-admin.php:2354
391
  msgid "Layouts could not be imported."
392
  msgstr ""
393
 
394
- #: ../includes/ot-functions-admin.php:2362
395
  msgid "Layouts Updated."
396
  msgstr ""
397
 
398
- #: ../includes/ot-functions-admin.php:2366
399
  msgid "Layouts could not be updated."
400
  msgstr ""
401
 
402
- #: ../includes/ot-functions-admin.php:2370
403
  msgid "Layouts have been deleted."
404
  msgstr ""
405
 
406
- #: ../includes/ot-functions-admin.php:2376
407
  msgid "Layout activated."
408
  msgstr ""
409
 
410
- #: ../includes/ot-functions-admin.php:2415
411
  #: ../includes/ot-functions-docs-page.php:110
412
  msgid "Background"
413
  msgstr ""
414
 
415
- #: ../includes/ot-functions-admin.php:2416
416
  #: ../includes/ot-functions-docs-page.php:113
417
  msgid "Border"
418
  msgstr ""
419
 
420
- #: ../includes/ot-functions-admin.php:2417
421
  #: ../includes/ot-functions-docs-page.php:116
422
  msgid "Box Shadow"
423
  msgstr ""
424
 
425
- #: ../includes/ot-functions-admin.php:2418
426
  #: ../includes/ot-functions-docs-page.php:119
427
  msgid "Category Checkbox"
428
  msgstr ""
429
 
430
- #: ../includes/ot-functions-admin.php:2419
431
  #: ../includes/ot-functions-docs-page.php:122
432
  msgid "Category Select"
433
  msgstr ""
434
 
435
- #: ../includes/ot-functions-admin.php:2420
436
  #: ../includes/ot-functions-docs-page.php:125
437
  msgid "Checkbox"
438
  msgstr ""
439
 
440
- #: ../includes/ot-functions-admin.php:2421
441
  #: ../includes/ot-functions-docs-page.php:128
442
  msgid "Colorpicker"
443
  msgstr ""
444
 
445
- #: ../includes/ot-functions-admin.php:2422
446
  #: ../includes/ot-functions-docs-page.php:131
447
  msgid "Colorpicker Opacity"
448
  msgstr ""
449
 
450
- #: ../includes/ot-functions-admin.php:2423
451
  #: ../includes/ot-functions-docs-page.php:134
452
  msgid "CSS"
453
  msgstr ""
454
 
455
- #: ../includes/ot-functions-admin.php:2424
456
  #: ../includes/ot-functions-docs-page.php:153
457
  msgid "Custom Post Type Checkbox"
458
  msgstr ""
459
 
460
- #: ../includes/ot-functions-admin.php:2425
461
  #: ../includes/ot-functions-docs-page.php:156
462
  msgid "Custom Post Type Select"
463
  msgstr ""
464
 
465
- #: ../includes/ot-functions-admin.php:2426
466
  #: ../includes/ot-functions-docs-page.php:159
467
  msgid "Date Picker"
468
  msgstr ""
469
 
470
- #: ../includes/ot-functions-admin.php:2427
471
  #: ../includes/ot-functions-docs-page.php:162
472
  msgid "Date Time Picker"
473
  msgstr ""
474
 
475
- #: ../includes/ot-functions-admin.php:2428
476
  #: ../includes/ot-functions-docs-page.php:165
477
  msgid "Dimension"
478
  msgstr ""
479
 
480
- #: ../includes/ot-functions-admin.php:2429
481
- #: ../includes/ot-functions-admin.php:5463
482
  #: ../includes/ot-functions-docs-page.php:168
483
  msgid "Gallery"
484
  msgstr ""
485
 
486
- #: ../includes/ot-functions-admin.php:2430
487
  #: ../includes/ot-functions-docs-page.php:171
488
  msgid "Google Fonts"
489
  msgstr ""
490
 
491
- #: ../includes/ot-functions-admin.php:2431
492
  #: ../includes/ot-functions-docs-page.php:174
493
  msgid "JavaScript"
494
  msgstr ""
495
 
496
- #: ../includes/ot-functions-admin.php:2432
497
  #: ../includes/ot-functions-docs-page.php:177
498
  msgid "Link Color"
499
  msgstr ""
500
 
501
- #: ../includes/ot-functions-admin.php:2433
502
  #: ../includes/ot-functions-docs-page.php:180
503
  msgid "List Item"
504
  msgstr ""
505
 
506
- #: ../includes/ot-functions-admin.php:2434
507
  #: ../includes/ot-functions-docs-page.php:183
508
  msgid "Measurement"
509
  msgstr ""
510
 
511
- #: ../includes/ot-functions-admin.php:2435
512
  #: ../includes/ot-functions-docs-page.php:214
513
  msgid "Numeric Slider"
514
  msgstr ""
515
 
516
- #: ../includes/ot-functions-admin.php:2436
517
  #: ../includes/ot-functions-docs-page.php:217
518
  msgid "On/Off"
519
  msgstr ""
520
 
521
- #: ../includes/ot-functions-admin.php:2437
522
  #: ../includes/ot-functions-docs-page.php:220
523
  msgid "Page Checkbox"
524
  msgstr ""
525
 
526
- #: ../includes/ot-functions-admin.php:2438
527
  #: ../includes/ot-functions-docs-page.php:223
528
  msgid "Page Select"
529
  msgstr ""
530
 
531
- #: ../includes/ot-functions-admin.php:2439
532
  #: ../includes/ot-functions-docs-page.php:226
533
  msgid "Post Checkbox"
534
  msgstr ""
535
 
536
- #: ../includes/ot-functions-admin.php:2440
537
  #: ../includes/ot-functions-docs-page.php:229
538
  msgid "Post Select"
539
  msgstr ""
540
 
541
- #: ../includes/ot-functions-admin.php:2441
542
  #: ../includes/ot-functions-docs-page.php:232
543
  msgid "Radio"
544
  msgstr ""
545
 
546
- #: ../includes/ot-functions-admin.php:2442
547
  #: ../includes/ot-functions-docs-page.php:235
548
  msgid "Radio Image"
549
  msgstr ""
550
 
551
- #: ../includes/ot-functions-admin.php:2443
552
  #: ../includes/ot-functions-docs-page.php:262
553
  msgid "Select"
554
  msgstr ""
555
 
556
- #: ../includes/ot-functions-admin.php:2444
557
  #: ../includes/ot-functions-docs-page.php:265
558
  msgid "Sidebar Select"
559
  msgstr ""
560
 
561
- #: ../includes/ot-functions-admin.php:2445
562
  #: ../includes/ot-functions-docs-page.php:269
563
  msgid "Slider"
564
  msgstr ""
565
 
566
- #: ../includes/ot-functions-admin.php:2446
567
  #: ../includes/ot-functions-docs-page.php:272
568
  msgid "Social Links"
569
  msgstr ""
570
 
571
- #: ../includes/ot-functions-admin.php:2447
572
  #: ../includes/ot-functions-docs-page.php:275
573
  msgid "Spacing"
574
  msgstr ""
575
 
576
- #: ../includes/ot-functions-admin.php:2448
577
  #: ../includes/ot-functions-docs-page.php:278
578
  msgid "Tab"
579
  msgstr ""
580
 
581
- #: ../includes/ot-functions-admin.php:2449
582
  #: ../includes/ot-functions-docs-page.php:281
583
  msgid "Tag Checkbox"
584
  msgstr ""
585
 
586
- #: ../includes/ot-functions-admin.php:2450
587
  #: ../includes/ot-functions-docs-page.php:284
588
  msgid "Tag Select"
589
  msgstr ""
590
 
591
- #: ../includes/ot-functions-admin.php:2451
592
  #: ../includes/ot-functions-docs-page.php:287
593
  msgid "Taxonomy Checkbox"
594
  msgstr ""
595
 
596
- #: ../includes/ot-functions-admin.php:2452
597
  #: ../includes/ot-functions-docs-page.php:290
598
  msgid "Taxonomy Select"
599
  msgstr ""
600
 
601
- #: ../includes/ot-functions-admin.php:2453
602
  #: ../includes/ot-functions-docs-page.php:293
603
  msgid "Text"
604
  msgstr ""
605
 
606
- #: ../includes/ot-functions-admin.php:2454
607
  #: ../includes/ot-functions-docs-page.php:296
608
  msgid "Textarea"
609
  msgstr ""
610
 
611
- #: ../includes/ot-functions-admin.php:2455
612
  #: ../includes/ot-functions-docs-page.php:355
613
  msgid "Textarea Simple"
614
  msgstr ""
615
 
616
- #: ../includes/ot-functions-admin.php:2456
617
  #: ../includes/ot-functions-docs-page.php:371
618
  msgid "Textblock"
619
  msgstr ""
620
 
621
- #: ../includes/ot-functions-admin.php:2457
622
  #: ../includes/ot-functions-docs-page.php:374
623
  msgid "Textblock Titled"
624
  msgstr ""
625
 
626
- #: ../includes/ot-functions-admin.php:2458
627
  #: ../includes/ot-functions-docs-page.php:377
628
  msgid "Typography"
629
  msgstr ""
630
 
631
- #: ../includes/ot-functions-admin.php:2459
632
  #: ../includes/ot-functions-docs-page.php:397
633
  msgid "Upload"
634
  msgstr ""
635
 
636
- #: ../includes/ot-functions-admin.php:3194
637
  msgid "Left Sidebar"
638
  msgstr ""
639
 
640
- #: ../includes/ot-functions-admin.php:3199
641
  msgid "Right Sidebar"
642
  msgstr ""
643
 
644
- #: ../includes/ot-functions-admin.php:3204
645
  msgid "Full Width (no sidebar)"
646
  msgstr ""
647
 
648
- #: ../includes/ot-functions-admin.php:3209
649
  msgid "Dual Sidebar"
650
  msgstr ""
651
 
652
- #: ../includes/ot-functions-admin.php:3214
653
  msgid "Left Dual Sidebar"
654
  msgstr ""
655
 
656
- #: ../includes/ot-functions-admin.php:3219
657
  msgid "Right Dual Sidebar"
658
  msgstr ""
659
 
660
- #: ../includes/ot-functions-admin.php:3260
661
- #: ../includes/ot-functions-admin.php:3316
662
- #: ../includes/ot-functions-admin.php:5503
663
  msgid "Link"
664
  msgstr ""
665
 
666
- #: ../includes/ot-functions-admin.php:3271
667
- #: ../includes/ot-functions-admin.php:3322
668
  #: ../includes/ot-functions-docs-page.php:43
669
  #: ../includes/ot-functions-docs-page.php:428
670
  #: ../includes/ot-functions-docs-page.php:478
671
  msgid "Description"
672
  msgstr ""
673
 
674
- #: ../includes/ot-functions-admin.php:3386
675
  msgid "Name"
676
  msgstr ""
677
 
678
- #: ../includes/ot-functions-admin.php:3387
679
  msgid "Enter the name of the social website."
680
  msgstr ""
681
 
682
- #: ../includes/ot-functions-admin.php:3395
683
  msgid "Enter the text shown in the title attribute of the link."
684
  msgstr ""
685
 
686
- #: ../includes/ot-functions-admin.php:3401
687
  #, php-format
688
  msgid ""
689
  "Enter a link to the profile or page on the social website. Remember to add "
690
  "the %s part to the front of the link."
691
  msgstr ""
692
 
693
- #: ../includes/ot-functions-admin.php:3753
694
  #, php-format
695
  msgid "Unable to write to file %s."
696
  msgstr ""
697
 
698
- #: ../includes/ot-functions-admin.php:4023
699
  msgid "edit"
700
  msgstr ""
701
 
702
- #: ../includes/ot-functions-admin.php:4024
703
- #: ../includes/ot-functions-admin.php:4092
704
  #: ../includes/ot-functions-admin.php:4093
705
- #: ../includes/ot-functions-admin.php:4255
706
  #: ../includes/ot-functions-admin.php:4256
707
- #: ../includes/ot-functions-admin.php:4321
708
  #: ../includes/ot-functions-admin.php:4322
709
- #: ../includes/ot-functions-admin.php:4449
710
  #: ../includes/ot-functions-admin.php:4450
711
- #: ../includes/ot-functions-admin.php:4602
712
  #: ../includes/ot-functions-admin.php:4603
 
713
  msgid "Edit"
714
  msgstr ""
715
 
716
- #: ../includes/ot-functions-admin.php:4026
717
  #: ../includes/ot-functions-admin.php:4027
718
- #: ../includes/ot-functions-admin.php:4095
719
  #: ../includes/ot-functions-admin.php:4096
720
- #: ../includes/ot-functions-admin.php:4258
721
  #: ../includes/ot-functions-admin.php:4259
722
- #: ../includes/ot-functions-admin.php:4324
723
  #: ../includes/ot-functions-admin.php:4325
724
- #: ../includes/ot-functions-admin.php:4383
725
  #: ../includes/ot-functions-admin.php:4384
726
- #: ../includes/ot-functions-admin.php:4452
727
  #: ../includes/ot-functions-admin.php:4453
728
- #: ../includes/ot-functions-admin.php:4605
729
  #: ../includes/ot-functions-admin.php:4606
 
730
  msgid "Delete"
731
  msgstr ""
732
 
733
- #: ../includes/ot-functions-admin.php:4033
734
  msgid ""
735
  "<strong>Section Title</strong>: Displayed as a menu item on the Theme "
736
  "Options page."
737
  msgstr ""
738
 
739
- #: ../includes/ot-functions-admin.php:4041
740
  msgid ""
741
  "<strong>Section ID</strong>: A unique lower case alphanumeric string, "
742
  "underscores allowed."
743
  msgstr ""
744
 
745
- #: ../includes/ot-functions-admin.php:4102
746
  msgid ""
747
  "<strong>Label</strong>: Displayed as the label of a form element on the "
748
  "Theme Options page."
749
  msgstr ""
750
 
751
- #: ../includes/ot-functions-admin.php:4110
752
- #: ../includes/ot-functions-admin.php:4339
753
  msgid ""
754
  "<strong>ID</strong>: A unique lower case alphanumeric string, underscores "
755
  "allowed."
756
  msgstr ""
757
 
758
- #: ../includes/ot-functions-admin.php:4118
759
  msgid ""
760
  "<strong>Type</strong>: Choose one of the available option types from the "
761
  "dropdown."
762
  msgstr ""
763
 
764
- #: ../includes/ot-functions-admin.php:4129
765
  msgid ""
766
  "<strong>Description</strong>: Enter a detailed description for the users to "
767
  "read on the Theme Options page, HTML is allowed. This is also where you "
768
  "enter content for both the Textblock & Textblock Titled option types."
769
  msgstr ""
770
 
771
- #: ../includes/ot-functions-admin.php:4137
772
  msgid ""
773
  "<strong>Choices</strong>: This will only affect the following option types: "
774
  "Checkbox, Radio, Select & Select Image."
775
  msgstr ""
776
 
777
- #: ../includes/ot-functions-admin.php:4142
778
  msgid "Add Choice"
779
  msgstr ""
780
 
781
- #: ../includes/ot-functions-admin.php:4148
782
  msgid ""
783
  "<strong>Settings</strong>: This will only affect the List Item option type."
784
  msgstr ""
785
 
786
- #: ../includes/ot-functions-admin.php:4153
787
  #: ../includes/ot-functions-settings-page.php:93
788
  msgid "Add Setting"
789
  msgstr ""
790
 
791
- #: ../includes/ot-functions-admin.php:4159
792
  msgid ""
793
  "<strong>Standard</strong>: Setting the standard value for your option only "
794
  "works for some option types. Read the <code>OptionTree->Documentation</code> "
795
  "for more information on which ones."
796
  msgstr ""
797
 
798
- #: ../includes/ot-functions-admin.php:4167
799
  msgid ""
800
  "<strong>Rows</strong>: Enter a numeric value for the number of rows in your "
801
  "textarea. This will only affect the following option types: CSS, Textarea, & "
802
  "Textarea Simple."
803
  msgstr ""
804
 
805
- #: ../includes/ot-functions-admin.php:4175
806
  msgid ""
807
  "<strong>Post Type</strong>: Add a comma separated list of post type like "
808
  "'post,page'. This will only affect the following option types: Custom Post "
809
  "Type Checkbox, & Custom Post Type Select."
810
  msgstr ""
811
 
812
- #: ../includes/ot-functions-admin.php:4183
813
  msgid ""
814
  "<strong>Taxonomy</strong>: Add a comma separated list of any registered "
815
  "taxonomy like 'category,post_tag'. This will only affect the following "
816
  "option types: Taxonomy Checkbox, & Taxonomy Select."
817
  msgstr ""
818
 
819
- #: ../includes/ot-functions-admin.php:4191
820
  msgid ""
821
  "<strong>Min, Max, & Step</strong>: Add a comma separated list of options in "
822
  "the following format <code>0,100,1</code> (slide from <code>0-100</code> in "
@@ -825,11 +825,11 @@ msgid ""
825
  "type."
826
  msgstr ""
827
 
828
- #: ../includes/ot-functions-admin.php:4199
829
  msgid "<strong>CSS Class</strong>: Add and optional class to this option type."
830
  msgstr ""
831
 
832
- #: ../includes/ot-functions-admin.php:4207
833
  #, php-format
834
  msgid ""
835
  "<strong>Condition</strong>: Add a comma separated list (no spaces) of "
@@ -838,98 +838,98 @@ msgid ""
838
  "placeholder for your condition, which can be in the form of %s."
839
  msgstr ""
840
 
841
- #: ../includes/ot-functions-admin.php:4215
842
  msgid ""
843
  "<strong>Operator</strong>: Choose the logical operator to compute the result "
844
  "of the conditions."
845
  msgstr ""
846
 
847
- #: ../includes/ot-functions-admin.php:4218
848
  #: ../includes/ot-functions-docs-page.php:111
849
  #: ../includes/ot-functions-docs-page.php:378
850
  msgid "and"
851
  msgstr ""
852
 
853
- #: ../includes/ot-functions-admin.php:4219
854
  msgid "or"
855
  msgstr ""
856
 
857
- #: ../includes/ot-functions-admin.php:4265
858
  #: ../includes/ot-functions-docs-page.php:29
859
  msgid "Label"
860
  msgstr ""
861
 
862
- #: ../includes/ot-functions-admin.php:4275
863
  msgid "Value"
864
  msgstr ""
865
 
866
- #: ../includes/ot-functions-admin.php:4285
867
  msgid "Image Source (Radio Image only)"
868
  msgstr ""
869
 
870
- #: ../includes/ot-functions-admin.php:4331
871
  msgid ""
872
  "<strong>Title</strong>: Displayed as a contextual help menu item on the "
873
  "Theme Options page."
874
  msgstr ""
875
 
876
- #: ../includes/ot-functions-admin.php:4347
877
  msgid ""
878
  "<strong>Content</strong>: Enter the HTML content about this contextual help "
879
  "item displayed on the Theme Option page for end users to read."
880
  msgstr ""
881
 
882
- #: ../includes/ot-functions-admin.php:4378
883
  msgid "Layout"
884
  msgstr ""
885
 
886
- #: ../includes/ot-functions-admin.php:4380
887
  #: ../includes/ot-functions-admin.php:4381
 
888
  msgid "Activate"
889
  msgstr ""
890
 
891
- #: ../includes/ot-functions-admin.php:4417 ../includes/ot-meta-box-api.php:223
892
  #: ../includes/ot-settings-api.php:610
893
  msgid "Title"
894
  msgstr ""
895
 
896
- #: ../includes/ot-functions-admin.php:4757
897
  msgid "New Layout"
898
  msgstr ""
899
 
900
- #: ../includes/ot-functions-admin.php:5512
901
  msgid "Link URL"
902
  msgstr ""
903
 
904
- #: ../includes/ot-functions-admin.php:5519
905
  msgid "Link Title"
906
  msgstr ""
907
 
908
- #: ../includes/ot-functions-admin.php:5549
909
  msgid "Quote"
910
  msgstr ""
911
 
912
- #: ../includes/ot-functions-admin.php:5558
913
  msgid "Source Name (ex. author, singer, actor)"
914
  msgstr ""
915
 
916
- #: ../includes/ot-functions-admin.php:5565
917
  msgid "Source URL"
918
  msgstr ""
919
 
920
- #: ../includes/ot-functions-admin.php:5572
921
  msgid "Source Title (ex. book, song, movie)"
922
  msgstr ""
923
 
924
- #: ../includes/ot-functions-admin.php:5579
925
  msgid "Source Date"
926
  msgstr ""
927
 
928
- #: ../includes/ot-functions-admin.php:5609
929
  msgid "Video"
930
  msgstr ""
931
 
932
- #: ../includes/ot-functions-admin.php:5618
933
  #, php-format
934
  msgid ""
935
  "Embed video from services like Youtube, Vimeo, or Hulu. You can find a list "
@@ -937,16 +937,16 @@ msgid ""
937
  "built-in %2$s shortcode."
938
  msgstr ""
939
 
940
- #: ../includes/ot-functions-admin.php:5618
941
- #: ../includes/ot-functions-admin.php:5657
942
  msgid "Wordpress Codex"
943
  msgstr ""
944
 
945
- #: ../includes/ot-functions-admin.php:5648
946
  msgid "Audio"
947
  msgstr ""
948
 
949
- #: ../includes/ot-functions-admin.php:5657
950
  #, php-format
951
  msgid ""
952
  "Embed audio from services like SoundCloud and Rdio. You can find a list of "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: OptionTree\n"
4
+ "POT-Creation-Date: 2015-04-21 22:10-0800\n"
5
+ "PO-Revision-Date: 2015-04-21 22:10-0800\n"
6
  "Last-Translator: Derek Herman <derek@valendesigns.com>\n"
7
  "Language-Team: Valen Designs\n"
8
  "Language: en\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: Poedit 1.7.6\n"
13
  "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
14
  "_n_noop:1,2;_c;_nc:4c,1,2;_x:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2;_ex:1,2c;"
15
  "esc_attr__;esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c\n"
20
  "X-Poedit-SearchPathExcluded-1: ../composer.json\n"
21
  "X-Poedit-SearchPathExcluded-2: ../assets\n"
22
 
23
+ #: ../includes/ot-cleanup-api.php:84 ../includes/ot-cleanup-api.php:101
24
+ #: ../includes/ot-cleanup-api.php:130
25
  msgid "OptionTree Cleanup"
26
  msgstr ""
27
 
28
+ #: ../includes/ot-cleanup-api.php:101
29
  #, php-format
30
  msgid ""
31
  "OptionTree has outdated data that should be removed. Please go to %s for "
32
  "more information."
33
  msgstr ""
34
 
35
+ #: ../includes/ot-cleanup-api.php:136
36
  msgid "Multiple Media Posts"
37
  msgstr ""
38
 
39
+ #: ../includes/ot-cleanup-api.php:138
40
  #, php-format
41
  msgid ""
42
  "There are currently %s OptionTree media posts in your database. At some "
47
  "posts and get your database cleaned up."
48
  msgstr ""
49
 
50
+ #: ../includes/ot-cleanup-api.php:140
51
  #, php-format
52
  msgid ""
53
  "By clicking the button below, OptionTree will delete %s records and "
56
  "updated to the correct media post."
57
  msgstr ""
58
 
59
+ #: ../includes/ot-cleanup-api.php:142
60
  msgid ""
61
  "This could take a while to fully process depending on how many records you "
62
  "have in your database, so please be patient and wait for the script to "
63
  "finish."
64
  msgstr ""
65
 
66
+ #: ../includes/ot-cleanup-api.php:144
67
  #, php-format
68
  msgid ""
69
  "%s Your server is running in safe mode. Which means this page will "
71
  "using %s if your server is having trouble processing that many at one time."
72
  msgstr ""
73
 
74
+ #: ../includes/ot-cleanup-api.php:146
75
  msgid "Consolidate Posts"
76
  msgstr ""
77
 
78
+ #: ../includes/ot-cleanup-api.php:174
79
  msgid "Reloading..."
80
  msgstr ""
81
 
82
+ #: ../includes/ot-cleanup-api.php:210
83
  msgid "Clean up script has completed, the page will now reload..."
84
  msgstr ""
85
 
86
+ #: ../includes/ot-cleanup-api.php:230
87
  msgid "Outdated Table"
88
  msgstr ""
89
 
90
+ #: ../includes/ot-cleanup-api.php:232
91
  #, php-format
92
  msgid ""
93
  "If you have upgraded from an old 1.x version of OptionTree at some point, "
96
  "Click the button below."
97
  msgstr ""
98
 
99
+ #: ../includes/ot-cleanup-api.php:234
100
  msgid "Drop Table"
101
  msgstr ""
102
 
103
+ #: ../includes/ot-cleanup-api.php:238
104
  #, php-format
105
  msgid "Deleting the outdated and unused %s table..."
106
  msgstr ""
107
 
108
+ #: ../includes/ot-cleanup-api.php:244
109
  #, php-format
110
  msgid "The %s table has been successfully deleted. The page will now reload..."
111
  msgstr ""
112
 
113
+ #: ../includes/ot-cleanup-api.php:256
114
  #, php-format
115
  msgid "Something went wrong. The %s table was not deleted."
116
  msgstr ""
338
  msgstr ""
339
 
340
  #: ../includes/ot-functions-admin.php:861
341
+ #: ../includes/ot-functions-admin.php:3250
342
+ #: ../includes/ot-functions-admin.php:3311
343
  msgid "Image"
344
  msgstr ""
345
 
347
  msgid "Option Tree"
348
  msgstr ""
349
 
350
+ #: ../includes/ot-functions-admin.php:1067
351
  msgid "General"
352
  msgstr ""
353
 
354
+ #: ../includes/ot-functions-admin.php:1073
355
  msgid "Sample Text Field Label"
356
  msgstr ""
357
 
358
+ #: ../includes/ot-functions-admin.php:1074
359
  msgid "Description for the sample text field."
360
  msgstr ""
361
 
362
+ #: ../includes/ot-functions-admin.php:2316
363
  msgid "Settings updated."
364
  msgstr ""
365
 
366
+ #: ../includes/ot-functions-admin.php:2320
367
  msgid "Settings could not be saved."
368
  msgstr ""
369
 
370
+ #: ../includes/ot-functions-admin.php:2328
371
  msgid "Settings Imported."
372
  msgstr ""
373
 
374
+ #: ../includes/ot-functions-admin.php:2332
375
  msgid "Settings could not be imported."
376
  msgstr ""
377
 
378
+ #: ../includes/ot-functions-admin.php:2339
379
  msgid "Data Imported."
380
  msgstr ""
381
 
382
+ #: ../includes/ot-functions-admin.php:2343
383
  msgid "Data could not be imported."
384
  msgstr ""
385
 
386
+ #: ../includes/ot-functions-admin.php:2351
387
  msgid "Layouts Imported."
388
  msgstr ""
389
 
390
+ #: ../includes/ot-functions-admin.php:2355
391
  msgid "Layouts could not be imported."
392
  msgstr ""
393
 
394
+ #: ../includes/ot-functions-admin.php:2363
395
  msgid "Layouts Updated."
396
  msgstr ""
397
 
398
+ #: ../includes/ot-functions-admin.php:2367
399
  msgid "Layouts could not be updated."
400
  msgstr ""
401
 
402
+ #: ../includes/ot-functions-admin.php:2371
403
  msgid "Layouts have been deleted."
404
  msgstr ""
405
 
406
+ #: ../includes/ot-functions-admin.php:2377
407
  msgid "Layout activated."
408
  msgstr ""
409
 
410
+ #: ../includes/ot-functions-admin.php:2416
411
  #: ../includes/ot-functions-docs-page.php:110
412
  msgid "Background"
413
  msgstr ""
414
 
415
+ #: ../includes/ot-functions-admin.php:2417
416
  #: ../includes/ot-functions-docs-page.php:113
417
  msgid "Border"
418
  msgstr ""
419
 
420
+ #: ../includes/ot-functions-admin.php:2418
421
  #: ../includes/ot-functions-docs-page.php:116
422
  msgid "Box Shadow"
423
  msgstr ""
424
 
425
+ #: ../includes/ot-functions-admin.php:2419
426
  #: ../includes/ot-functions-docs-page.php:119
427
  msgid "Category Checkbox"
428
  msgstr ""
429
 
430
+ #: ../includes/ot-functions-admin.php:2420
431
  #: ../includes/ot-functions-docs-page.php:122
432
  msgid "Category Select"
433
  msgstr ""
434
 
435
+ #: ../includes/ot-functions-admin.php:2421
436
  #: ../includes/ot-functions-docs-page.php:125
437
  msgid "Checkbox"
438
  msgstr ""
439
 
440
+ #: ../includes/ot-functions-admin.php:2422
441
  #: ../includes/ot-functions-docs-page.php:128
442
  msgid "Colorpicker"
443
  msgstr ""
444
 
445
+ #: ../includes/ot-functions-admin.php:2423
446
  #: ../includes/ot-functions-docs-page.php:131
447
  msgid "Colorpicker Opacity"
448
  msgstr ""
449
 
450
+ #: ../includes/ot-functions-admin.php:2424
451
  #: ../includes/ot-functions-docs-page.php:134
452
  msgid "CSS"
453
  msgstr ""
454
 
455
+ #: ../includes/ot-functions-admin.php:2425
456
  #: ../includes/ot-functions-docs-page.php:153
457
  msgid "Custom Post Type Checkbox"
458
  msgstr ""
459
 
460
+ #: ../includes/ot-functions-admin.php:2426
461
  #: ../includes/ot-functions-docs-page.php:156
462
  msgid "Custom Post Type Select"
463
  msgstr ""
464
 
465
+ #: ../includes/ot-functions-admin.php:2427
466
  #: ../includes/ot-functions-docs-page.php:159
467
  msgid "Date Picker"
468
  msgstr ""
469
 
470
+ #: ../includes/ot-functions-admin.php:2428
471
  #: ../includes/ot-functions-docs-page.php:162
472
  msgid "Date Time Picker"
473
  msgstr ""
474
 
475
+ #: ../includes/ot-functions-admin.php:2429
476
  #: ../includes/ot-functions-docs-page.php:165
477
  msgid "Dimension"
478
  msgstr ""
479
 
480
+ #: ../includes/ot-functions-admin.php:2430
481
+ #: ../includes/ot-functions-admin.php:5464
482
  #: ../includes/ot-functions-docs-page.php:168
483
  msgid "Gallery"
484
  msgstr ""
485
 
486
+ #: ../includes/ot-functions-admin.php:2431
487
  #: ../includes/ot-functions-docs-page.php:171
488
  msgid "Google Fonts"
489
  msgstr ""
490
 
491
+ #: ../includes/ot-functions-admin.php:2432
492
  #: ../includes/ot-functions-docs-page.php:174
493
  msgid "JavaScript"
494
  msgstr ""
495
 
496
+ #: ../includes/ot-functions-admin.php:2433
497
  #: ../includes/ot-functions-docs-page.php:177
498
  msgid "Link Color"
499
  msgstr ""
500
 
501
+ #: ../includes/ot-functions-admin.php:2434
502
  #: ../includes/ot-functions-docs-page.php:180
503
  msgid "List Item"
504
  msgstr ""
505
 
506
+ #: ../includes/ot-functions-admin.php:2435
507
  #: ../includes/ot-functions-docs-page.php:183
508
  msgid "Measurement"
509
  msgstr ""
510
 
511
+ #: ../includes/ot-functions-admin.php:2436
512
  #: ../includes/ot-functions-docs-page.php:214
513
  msgid "Numeric Slider"
514
  msgstr ""
515
 
516
+ #: ../includes/ot-functions-admin.php:2437
517
  #: ../includes/ot-functions-docs-page.php:217
518
  msgid "On/Off"
519
  msgstr ""
520
 
521
+ #: ../includes/ot-functions-admin.php:2438
522
  #: ../includes/ot-functions-docs-page.php:220
523
  msgid "Page Checkbox"
524
  msgstr ""
525
 
526
+ #: ../includes/ot-functions-admin.php:2439
527
  #: ../includes/ot-functions-docs-page.php:223
528
  msgid "Page Select"
529
  msgstr ""
530
 
531
+ #: ../includes/ot-functions-admin.php:2440
532
  #: ../includes/ot-functions-docs-page.php:226
533
  msgid "Post Checkbox"
534
  msgstr ""
535
 
536
+ #: ../includes/ot-functions-admin.php:2441
537
  #: ../includes/ot-functions-docs-page.php:229
538
  msgid "Post Select"
539
  msgstr ""
540
 
541
+ #: ../includes/ot-functions-admin.php:2442
542
  #: ../includes/ot-functions-docs-page.php:232
543
  msgid "Radio"
544
  msgstr ""
545
 
546
+ #: ../includes/ot-functions-admin.php:2443
547
  #: ../includes/ot-functions-docs-page.php:235
548
  msgid "Radio Image"
549
  msgstr ""
550
 
551
+ #: ../includes/ot-functions-admin.php:2444
552
  #: ../includes/ot-functions-docs-page.php:262
553
  msgid "Select"
554
  msgstr ""
555
 
556
+ #: ../includes/ot-functions-admin.php:2445
557
  #: ../includes/ot-functions-docs-page.php:265
558
  msgid "Sidebar Select"
559
  msgstr ""
560
 
561
+ #: ../includes/ot-functions-admin.php:2446
562
  #: ../includes/ot-functions-docs-page.php:269
563
  msgid "Slider"
564
  msgstr ""
565
 
566
+ #: ../includes/ot-functions-admin.php:2447
567
  #: ../includes/ot-functions-docs-page.php:272
568
  msgid "Social Links"
569
  msgstr ""
570
 
571
+ #: ../includes/ot-functions-admin.php:2448
572
  #: ../includes/ot-functions-docs-page.php:275
573
  msgid "Spacing"
574
  msgstr ""
575
 
576
+ #: ../includes/ot-functions-admin.php:2449
577
  #: ../includes/ot-functions-docs-page.php:278
578
  msgid "Tab"
579
  msgstr ""
580
 
581
+ #: ../includes/ot-functions-admin.php:2450
582
  #: ../includes/ot-functions-docs-page.php:281
583
  msgid "Tag Checkbox"
584
  msgstr ""
585
 
586
+ #: ../includes/ot-functions-admin.php:2451
587
  #: ../includes/ot-functions-docs-page.php:284
588
  msgid "Tag Select"
589
  msgstr ""
590
 
591
+ #: ../includes/ot-functions-admin.php:2452
592
  #: ../includes/ot-functions-docs-page.php:287
593
  msgid "Taxonomy Checkbox"
594
  msgstr ""
595
 
596
+ #: ../includes/ot-functions-admin.php:2453
597
  #: ../includes/ot-functions-docs-page.php:290
598
  msgid "Taxonomy Select"
599
  msgstr ""
600
 
601
+ #: ../includes/ot-functions-admin.php:2454
602
  #: ../includes/ot-functions-docs-page.php:293
603
  msgid "Text"
604
  msgstr ""
605
 
606
+ #: ../includes/ot-functions-admin.php:2455
607
  #: ../includes/ot-functions-docs-page.php:296
608
  msgid "Textarea"
609
  msgstr ""
610
 
611
+ #: ../includes/ot-functions-admin.php:2456
612
  #: ../includes/ot-functions-docs-page.php:355
613
  msgid "Textarea Simple"
614
  msgstr ""
615
 
616
+ #: ../includes/ot-functions-admin.php:2457
617
  #: ../includes/ot-functions-docs-page.php:371
618
  msgid "Textblock"
619
  msgstr ""
620
 
621
+ #: ../includes/ot-functions-admin.php:2458
622
  #: ../includes/ot-functions-docs-page.php:374
623
  msgid "Textblock Titled"
624
  msgstr ""
625
 
626
+ #: ../includes/ot-functions-admin.php:2459
627
  #: ../includes/ot-functions-docs-page.php:377
628
  msgid "Typography"
629
  msgstr ""
630
 
631
+ #: ../includes/ot-functions-admin.php:2460
632
  #: ../includes/ot-functions-docs-page.php:397
633
  msgid "Upload"
634
  msgstr ""
635
 
636
+ #: ../includes/ot-functions-admin.php:3195
637
  msgid "Left Sidebar"
638
  msgstr ""
639
 
640
+ #: ../includes/ot-functions-admin.php:3200
641
  msgid "Right Sidebar"
642
  msgstr ""
643
 
644
+ #: ../includes/ot-functions-admin.php:3205
645
  msgid "Full Width (no sidebar)"
646
  msgstr ""
647
 
648
+ #: ../includes/ot-functions-admin.php:3210
649
  msgid "Dual Sidebar"
650
  msgstr ""
651
 
652
+ #: ../includes/ot-functions-admin.php:3215
653
  msgid "Left Dual Sidebar"
654
  msgstr ""
655
 
656
+ #: ../includes/ot-functions-admin.php:3220
657
  msgid "Right Dual Sidebar"
658
  msgstr ""
659
 
660
+ #: ../includes/ot-functions-admin.php:3261
661
+ #: ../includes/ot-functions-admin.php:3317
662
+ #: ../includes/ot-functions-admin.php:5504
663
  msgid "Link"
664
  msgstr ""
665
 
666
+ #: ../includes/ot-functions-admin.php:3272
667
+ #: ../includes/ot-functions-admin.php:3323
668
  #: ../includes/ot-functions-docs-page.php:43
669
  #: ../includes/ot-functions-docs-page.php:428
670
  #: ../includes/ot-functions-docs-page.php:478
671
  msgid "Description"
672
  msgstr ""
673
 
674
+ #: ../includes/ot-functions-admin.php:3387
675
  msgid "Name"
676
  msgstr ""
677
 
678
+ #: ../includes/ot-functions-admin.php:3388
679
  msgid "Enter the name of the social website."
680
  msgstr ""
681
 
682
+ #: ../includes/ot-functions-admin.php:3396
683
  msgid "Enter the text shown in the title attribute of the link."
684
  msgstr ""
685
 
686
+ #: ../includes/ot-functions-admin.php:3402
687
  #, php-format
688
  msgid ""
689
  "Enter a link to the profile or page on the social website. Remember to add "
690
  "the %s part to the front of the link."
691
  msgstr ""
692
 
693
+ #: ../includes/ot-functions-admin.php:3754
694
  #, php-format
695
  msgid "Unable to write to file %s."
696
  msgstr ""
697
 
698
+ #: ../includes/ot-functions-admin.php:4024
699
  msgid "edit"
700
  msgstr ""
701
 
702
+ #: ../includes/ot-functions-admin.php:4025
 
703
  #: ../includes/ot-functions-admin.php:4093
704
+ #: ../includes/ot-functions-admin.php:4094
705
  #: ../includes/ot-functions-admin.php:4256
706
+ #: ../includes/ot-functions-admin.php:4257
707
  #: ../includes/ot-functions-admin.php:4322
708
+ #: ../includes/ot-functions-admin.php:4323
709
  #: ../includes/ot-functions-admin.php:4450
710
+ #: ../includes/ot-functions-admin.php:4451
711
  #: ../includes/ot-functions-admin.php:4603
712
+ #: ../includes/ot-functions-admin.php:4604
713
  msgid "Edit"
714
  msgstr ""
715
 
 
716
  #: ../includes/ot-functions-admin.php:4027
717
+ #: ../includes/ot-functions-admin.php:4028
718
  #: ../includes/ot-functions-admin.php:4096
719
+ #: ../includes/ot-functions-admin.php:4097
720
  #: ../includes/ot-functions-admin.php:4259
721
+ #: ../includes/ot-functions-admin.php:4260
722
  #: ../includes/ot-functions-admin.php:4325
723
+ #: ../includes/ot-functions-admin.php:4326
724
  #: ../includes/ot-functions-admin.php:4384
725
+ #: ../includes/ot-functions-admin.php:4385
726
  #: ../includes/ot-functions-admin.php:4453
727
+ #: ../includes/ot-functions-admin.php:4454
728
  #: ../includes/ot-functions-admin.php:4606
729
+ #: ../includes/ot-functions-admin.php:4607
730
  msgid "Delete"
731
  msgstr ""
732
 
733
+ #: ../includes/ot-functions-admin.php:4034
734
  msgid ""
735
  "<strong>Section Title</strong>: Displayed as a menu item on the Theme "
736
  "Options page."
737
  msgstr ""
738
 
739
+ #: ../includes/ot-functions-admin.php:4042
740
  msgid ""
741
  "<strong>Section ID</strong>: A unique lower case alphanumeric string, "
742
  "underscores allowed."
743
  msgstr ""
744
 
745
+ #: ../includes/ot-functions-admin.php:4103
746
  msgid ""
747
  "<strong>Label</strong>: Displayed as the label of a form element on the "
748
  "Theme Options page."
749
  msgstr ""
750
 
751
+ #: ../includes/ot-functions-admin.php:4111
752
+ #: ../includes/ot-functions-admin.php:4340
753
  msgid ""
754
  "<strong>ID</strong>: A unique lower case alphanumeric string, underscores "
755
  "allowed."
756
  msgstr ""
757
 
758
+ #: ../includes/ot-functions-admin.php:4119
759
  msgid ""
760
  "<strong>Type</strong>: Choose one of the available option types from the "
761
  "dropdown."
762
  msgstr ""
763
 
764
+ #: ../includes/ot-functions-admin.php:4130
765
  msgid ""
766
  "<strong>Description</strong>: Enter a detailed description for the users to "
767
  "read on the Theme Options page, HTML is allowed. This is also where you "
768
  "enter content for both the Textblock & Textblock Titled option types."
769
  msgstr ""
770
 
771
+ #: ../includes/ot-functions-admin.php:4138
772
  msgid ""
773
  "<strong>Choices</strong>: This will only affect the following option types: "
774
  "Checkbox, Radio, Select & Select Image."
775
  msgstr ""
776
 
777
+ #: ../includes/ot-functions-admin.php:4143
778
  msgid "Add Choice"
779
  msgstr ""
780
 
781
+ #: ../includes/ot-functions-admin.php:4149
782
  msgid ""
783
  "<strong>Settings</strong>: This will only affect the List Item option type."
784
  msgstr ""
785
 
786
+ #: ../includes/ot-functions-admin.php:4154
787
  #: ../includes/ot-functions-settings-page.php:93
788
  msgid "Add Setting"
789
  msgstr ""
790
 
791
+ #: ../includes/ot-functions-admin.php:4160
792
  msgid ""
793
  "<strong>Standard</strong>: Setting the standard value for your option only "
794
  "works for some option types. Read the <code>OptionTree->Documentation</code> "
795
  "for more information on which ones."
796
  msgstr ""
797
 
798
+ #: ../includes/ot-functions-admin.php:4168
799
  msgid ""
800
  "<strong>Rows</strong>: Enter a numeric value for the number of rows in your "
801
  "textarea. This will only affect the following option types: CSS, Textarea, & "
802
  "Textarea Simple."
803
  msgstr ""
804
 
805
+ #: ../includes/ot-functions-admin.php:4176
806
  msgid ""
807
  "<strong>Post Type</strong>: Add a comma separated list of post type like "
808
  "'post,page'. This will only affect the following option types: Custom Post "
809
  "Type Checkbox, & Custom Post Type Select."
810
  msgstr ""
811
 
812
+ #: ../includes/ot-functions-admin.php:4184
813
  msgid ""
814
  "<strong>Taxonomy</strong>: Add a comma separated list of any registered "
815
  "taxonomy like 'category,post_tag'. This will only affect the following "
816
  "option types: Taxonomy Checkbox, & Taxonomy Select."
817
  msgstr ""
818
 
819
+ #: ../includes/ot-functions-admin.php:4192
820
  msgid ""
821
  "<strong>Min, Max, & Step</strong>: Add a comma separated list of options in "
822
  "the following format <code>0,100,1</code> (slide from <code>0-100</code> in "
825
  "type."
826
  msgstr ""
827
 
828
+ #: ../includes/ot-functions-admin.php:4200
829
  msgid "<strong>CSS Class</strong>: Add and optional class to this option type."
830
  msgstr ""
831
 
832
+ #: ../includes/ot-functions-admin.php:4208
833
  #, php-format
834
  msgid ""
835
  "<strong>Condition</strong>: Add a comma separated list (no spaces) of "
838
  "placeholder for your condition, which can be in the form of %s."
839
  msgstr ""
840
 
841
+ #: ../includes/ot-functions-admin.php:4216
842
  msgid ""
843
  "<strong>Operator</strong>: Choose the logical operator to compute the result "
844
  "of the conditions."
845
  msgstr ""
846
 
847
+ #: ../includes/ot-functions-admin.php:4219
848
  #: ../includes/ot-functions-docs-page.php:111
849
  #: ../includes/ot-functions-docs-page.php:378
850
  msgid "and"
851
  msgstr ""
852
 
853
+ #: ../includes/ot-functions-admin.php:4220
854
  msgid "or"
855
  msgstr ""
856
 
857
+ #: ../includes/ot-functions-admin.php:4266
858
  #: ../includes/ot-functions-docs-page.php:29
859
  msgid "Label"
860
  msgstr ""
861
 
862
+ #: ../includes/ot-functions-admin.php:4276
863
  msgid "Value"
864
  msgstr ""
865
 
866
+ #: ../includes/ot-functions-admin.php:4286
867
  msgid "Image Source (Radio Image only)"
868
  msgstr ""
869
 
870
+ #: ../includes/ot-functions-admin.php:4332
871
  msgid ""
872
  "<strong>Title</strong>: Displayed as a contextual help menu item on the "
873
  "Theme Options page."
874
  msgstr ""
875
 
876
+ #: ../includes/ot-functions-admin.php:4348
877
  msgid ""
878
  "<strong>Content</strong>: Enter the HTML content about this contextual help "
879
  "item displayed on the Theme Option page for end users to read."
880
  msgstr ""
881
 
882
+ #: ../includes/ot-functions-admin.php:4379
883
  msgid "Layout"
884
  msgstr ""
885
 
 
886
  #: ../includes/ot-functions-admin.php:4381
887
+ #: ../includes/ot-functions-admin.php:4382
888
  msgid "Activate"
889
  msgstr ""
890
 
891
+ #: ../includes/ot-functions-admin.php:4418 ../includes/ot-meta-box-api.php:231
892
  #: ../includes/ot-settings-api.php:610
893
  msgid "Title"
894
  msgstr ""
895
 
896
+ #: ../includes/ot-functions-admin.php:4758
897
  msgid "New Layout"
898
  msgstr ""
899
 
900
+ #: ../includes/ot-functions-admin.php:5513
901
  msgid "Link URL"
902
  msgstr ""
903
 
904
+ #: ../includes/ot-functions-admin.php:5520
905
  msgid "Link Title"
906
  msgstr ""
907
 
908
+ #: ../includes/ot-functions-admin.php:5550
909
  msgid "Quote"
910
  msgstr ""
911
 
912
+ #: ../includes/ot-functions-admin.php:5559
913
  msgid "Source Name (ex. author, singer, actor)"
914
  msgstr ""
915
 
916
+ #: ../includes/ot-functions-admin.php:5566
917
  msgid "Source URL"
918
  msgstr ""
919
 
920
+ #: ../includes/ot-functions-admin.php:5573
921
  msgid "Source Title (ex. book, song, movie)"
922
  msgstr ""
923
 
924
+ #: ../includes/ot-functions-admin.php:5580
925
  msgid "Source Date"
926
  msgstr ""
927
 
928
+ #: ../includes/ot-functions-admin.php:5610
929
  msgid "Video"
930
  msgstr ""
931
 
932
+ #: ../includes/ot-functions-admin.php:5619
933
  #, php-format
934
  msgid ""
935
  "Embed video from services like Youtube, Vimeo, or Hulu. You can find a list "
937
  "built-in %2$s shortcode."
938
  msgstr ""
939
 
940
+ #: ../includes/ot-functions-admin.php:5619
941
+ #: ../includes/ot-functions-admin.php:5658
942
  msgid "Wordpress Codex"
943
  msgstr ""
944
 
945
+ #: ../includes/ot-functions-admin.php:5649
946
  msgid "Audio"
947
  msgstr ""
948
 
949
+ #: ../includes/ot-functions-admin.php:5658
950
  #, php-format
951
  msgid ""
952
  "Embed audio from services like SoundCloud and Rdio. You can find a list of "
ot-loader.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: OptionTree
4
  * Plugin URI: https://github.com/valendesigns/option-tree/
5
  * Description: Theme Options UI Builder for WordPress. A simple way to create & save Theme Options and Meta Boxes for free or premium themes.
6
- * Version: 2.5.3
7
  * Author: Derek Herman
8
  * Author URI: http://valendesigns.com
9
  * License: GPLv3
@@ -178,7 +178,7 @@ if ( ! class_exists( 'OT_Loader' ) ) {
178
  /**
179
  * Current Version number.
180
  */
181
- define( 'OT_VERSION', '2.5.3' );
182
 
183
  /**
184
  * For developers: Theme mode.
3
  * Plugin Name: OptionTree
4
  * Plugin URI: https://github.com/valendesigns/option-tree/
5
  * Description: Theme Options UI Builder for WordPress. A simple way to create & save Theme Options and Meta Boxes for free or premium themes.
6
+ * Version: 2.5.4
7
  * Author: Derek Herman
8
  * Author URI: http://valendesigns.com
9
  * License: GPLv3
178
  /**
179
  * Current Version number.
180
  */
181
+ define( 'OT_VERSION', '2.5.4' );
182
 
183
  /**
184
  * For developers: Theme mode.
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: valendesigns
3
  Donate link: http://bit.ly/NuXI3T
4
  Tags: options, theme options, meta boxes
5
  Requires at least: 3.8
6
- Tested up to: 4.2-beta3
7
- Stable tag: 2.5.3
8
  License: GPLv3
9
 
10
  Theme Options UI Builder for WordPress. A simple way to create & save Theme Options and Meta Boxes for free or premium themes.
@@ -126,6 +126,12 @@ The most likely scenario is your theme already has OptionTree installed in Theme
126
 
127
  == Changelog ==
128
 
 
 
 
 
 
 
129
  = 2.5.3 =
130
  * Hotfix - Added `inherit` fallback to the `border` option type in dynamic.css.
131
  * Hotfix - Added `none` fallback to the `box-shadow` option type in dynamic.css.
3
  Donate link: http://bit.ly/NuXI3T
4
  Tags: options, theme options, meta boxes
5
  Requires at least: 3.8
6
+ Tested up to: 4.2
7
+ Stable tag: 2.5.4
8
  License: GPLv3
9
 
10
  Theme Options UI Builder for WordPress. A simple way to create & save Theme Options and Meta Boxes for free or premium themes.
126
 
127
  == Changelog ==
128
 
129
+ = 2.5.4 =
130
+ * Hotfix - Support for WordPress 4.2 term splitting.
131
+ * Hotfix - Removed any potential XSS security issues with `add_query_arg` by escaping it.
132
+ * Hotfix - Fixed an issue where Visual Composer was indirectly destroying OptionTree meta box values.
133
+ * Hotfix - Fixed an issue where the select field value was not visible. Contributors via github @sabbirk15.
134
+
135
  = 2.5.3 =
136
  * Hotfix - Added `inherit` fallback to the `border` option type in dynamic.css.
137
  * Hotfix - Added `none` fallback to the `box-shadow` option type in dynamic.css.