OptionTree - Version 2.5.2

Version Description

  • Hotfix - Add inherit fallback to the link-color option type in dynamic.css.
  • Hotfix - Remove $.browser.msie JS error caused by function being deprecated.
  • Hotfix - Change hover to mouseenter mouseleave to stop jQuery migrate error message.
  • Hotfix - Don't allow duplicate Google Fonts in the ot-google-fonts-css enqueue.
  • Hotfix - Fixed an issue with the CSS and JavaScript option types not being initiating inside of tabs.
  • Hotfix - Fixed metabox tab styles for mobile.
  • Hotfix - Separate the post formats JS so it does not interfere with the default behavior and loads only as needed.
  • Hotfix - Adding the not-sortable class to the List Item option type will remove the sortable feature for that option.
Download this release

Release Info

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

Code changes from version 2.5.1 to 2.5.2

assets/css/ot-admin-rtl.css CHANGED
@@ -631,5 +631,5 @@ ul.ot-gallery-list li {
631
  .ot-theme-option-tabs.ui-tabs .ot-theme-option-nav.ui-tabs-nav li.ui-state-default,
632
  #side-sortables .ot-metabox-tabs.ui-tabs .ot-metabox-nav.ui-tabs-nav li.ui-state-default {
633
  float: right;
634
- margin: 0 3px 0 0;
635
  }
631
  .ot-theme-option-tabs.ui-tabs .ot-theme-option-nav.ui-tabs-nav li.ui-state-default,
632
  #side-sortables .ot-metabox-tabs.ui-tabs .ot-metabox-nav.ui-tabs-nav li.ui-state-default {
633
  float: right;
634
+ margin: 0 3px 0 0 !important;
635
  }
assets/css/ot-admin.css CHANGED
@@ -1841,12 +1841,14 @@ div.option-tree-ui-media-wrap {
1841
  }
1842
  .option-tree-setting .open {
1843
  background: #fafafa;
1844
- cursor: move;
1845
  line-height: 21px;
1846
  height: 21px;
1847
  padding: 10px 100px 10px 10px;
1848
  display: block;
1849
  }
 
 
 
1850
  .ui-state-disabled .option-tree-setting .open {
1851
  cursor: default;
1852
  }
@@ -3910,28 +3912,24 @@ a.ui-datepicker-next {
3910
  #side-sortables .ot-metabox-tabs.ui-tabs .ot-metabox-nav.ui-tabs-nav {
3911
  margin-top: 10px;
3912
  }
3913
- .ot-metabox-tabs.ui-tabs .ot-metabox-nav.ui-tabs-nav li.ui-state-default {
3914
  background: #fafafa;
3915
- border: 1px solid #ccc;
3916
- border-width: 1px 1px 0px 1px;
3917
- display: block;
3918
- float: left;
3919
- margin: 0 0 0 3px;
3920
- padding: 0;
3921
- outline: 0;
3922
  -webkit-border-radius: 2px 2px 0 0;
3923
  -moz-border-radius: 2px 2px 0 0;
3924
  border-radius: 2px 2px 0 0;
3925
  }
3926
  .ot-metabox-tabs.ui-tabs .ot-metabox-nav.ui-tabs-nav li:hover {
3927
  background: #f1f1f1;
3928
- border: 1px solid #ccc;
3929
- border-width: 1px 1px 0px 1px;
3930
  }
3931
  .ot-metabox-tabs.ui-tabs .ot-metabox-nav.ui-tabs-nav li.ui-state-active {
3932
  background: white;
3933
- border-color: #ccc;
3934
- border-width: 1px 1px 0px 1px;
3935
  color: black;
3936
  padding: 0;
3937
  -webkit-border-radius: 2px 2px 0 0;
1841
  }
1842
  .option-tree-setting .open {
1843
  background: #fafafa;
 
1844
  line-height: 21px;
1845
  height: 21px;
1846
  padding: 10px 100px 10px 10px;
1847
  display: block;
1848
  }
1849
+ .option-tree-sortable .open {
1850
+ cursor: move;
1851
+ }
1852
  .ui-state-disabled .option-tree-setting .open {
1853
  cursor: default;
1854
  }
3912
  #side-sortables .ot-metabox-tabs.ui-tabs .ot-metabox-nav.ui-tabs-nav {
3913
  margin-top: 10px;
3914
  }
3915
+ .ot-metabox-tabs.ui-tabs .ot-metabox-nav.ui-tabs-nav li {
3916
  background: #fafafa;
3917
+ border: 1px solid #ccc !important;
3918
+ border-width: 1px 1px 0px 1px !important;
3919
+ display: inline-block !important;
3920
+ margin: 0 0 0 3px !important;
3921
+ padding: 0 !important;
3922
+ outline: 0 !important;
3923
+ width: auto !important;
3924
  -webkit-border-radius: 2px 2px 0 0;
3925
  -moz-border-radius: 2px 2px 0 0;
3926
  border-radius: 2px 2px 0 0;
3927
  }
3928
  .ot-metabox-tabs.ui-tabs .ot-metabox-nav.ui-tabs-nav li:hover {
3929
  background: #f1f1f1;
 
 
3930
  }
3931
  .ot-metabox-tabs.ui-tabs .ot-metabox-nav.ui-tabs-nav li.ui-state-active {
3932
  background: white;
 
 
3933
  color: black;
3934
  padding: 0;
3935
  -webkit-border-radius: 2px 2px 0 0;
assets/js/ot-admin.js CHANGED
@@ -413,6 +413,7 @@
413
  } else {
414
  OT_UI.parse_condition();
415
  }
 
416
  });
417
  OT_UI.parse_condition();
418
  },
@@ -586,10 +587,7 @@
586
  });
587
  },
588
  bind_select_wrapper: function() {
589
- $(document).on('change', '.option-tree-ui-select', function () {
590
- $(this).prev('span').replaceWith('<span>' + $(this).find('option:selected').text() + '</span>');
591
- });
592
- $(document).on($.browser.msie ? 'click' : 'change', '.option-tree-ui-select', function(event) {
593
  $(this).prev('span').replaceWith('<span>' + $(this).find('option:selected').text() + '</span>');
594
  });
595
  },
@@ -755,6 +753,10 @@
755
  });
756
  });
757
  },
 
 
 
 
758
  url_exists: function(url) {
759
  var link = document.createElement('a')
760
  link.href = url
@@ -967,8 +969,7 @@
967
  if ( $(this).find('.ot-metabox-panels').css('padding') == '12px' && child < parent ) {
968
  $(this).find('.ot-metabox-panels').css({ minHeight: minHeight })
969
  }
970
- OT_UI.css_editor_mode();
971
- OT_UI.javascript_editor_mode();
972
  }
973
  })
974
 
@@ -979,7 +980,7 @@
979
  $(this).find('.ot-metabox-tabs').removeClass('ui-widget ui-widget-content ui-corner-all')
980
  $(this).find('.ot-metabox-nav').removeClass('ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all')
981
  $(this).find('.ot-metabox-nav li').removeClass('ui-state-default ui-corner-top ui-tabs-active ui-tabs-active')
982
- $(this).find('.ot-metabox-nav li').on('hover', function() { $(this).removeClass('ui-state-hover') })
983
 
984
  }
985
 
@@ -1034,7 +1035,11 @@
1034
  })
1035
 
1036
  // Create the tabs
1037
- $(this).find('.ot-theme-option-tabs').tabs()
 
 
 
 
1038
 
1039
  // Move the orphaned settings to the top
1040
  $(this).find('.ot-theme-option-panels > .format-settings').prependTo($(this).find('.ot-theme-option-tabs'))
@@ -1107,123 +1112,6 @@
1107
 
1108
  }(window.jQuery);
1109
 
1110
- /*!
1111
- * postformats.js v1.0
1112
- */
1113
- !function ($) {
1114
-
1115
- "use strict"; // jshint ;_;
1116
-
1117
- /* POSTFORMATS CLASS DEFINITION
1118
- * ====================== */
1119
- var formats = "input.post-format"
1120
- , metaboxes = [
1121
- '#ot-post-format-gallery'
1122
- , '#ot-post-format-link'
1123
- , '#ot-post-format-image'
1124
- , '#ot-post-format-quote'
1125
- , '#ot-post-format-video'
1126
- , '#ot-post-format-audio'
1127
- ]
1128
- , ids = metaboxes.join(',')
1129
- , insertAfter = '#titlediv'
1130
- , imageBox = '#postimagediv'
1131
- , placeholder = 'postimagediv-placeholder'
1132
- , Postformats = function (element, options) {
1133
- this.$element = $(element)
1134
- .on('click.postformats.data-api', $.proxy(this.toggle, this))
1135
- this.$id = this.$element.attr('id')
1136
- this.init()
1137
- }
1138
-
1139
- Postformats.prototype = {
1140
-
1141
- constructor: Postformats
1142
-
1143
- , init: function () {
1144
-
1145
- // Moves the metaboxes into place
1146
- $( '#ot-' + this.$id ).insertAfter( $( insertAfter ) ).hide()
1147
-
1148
- // Show the checked metabox
1149
- if ( this.$element.is(':checked') ) {
1150
-
1151
- this.show()
1152
-
1153
- }
1154
-
1155
- }
1156
-
1157
- , toggle: function () {
1158
-
1159
- // Hides all the post format metaboxes
1160
- $(ids).each(function() {
1161
-
1162
- $(this).hide()
1163
-
1164
- })
1165
-
1166
- // Shows the clicked post format metabox
1167
- this.show()
1168
-
1169
- }
1170
-
1171
- , show: function () {
1172
-
1173
- // Featured image is never really hidden so it requires different code
1174
- if ( this.$id == 'post-format-image' ) {
1175
-
1176
- if ( $( '#' + placeholder ).length == 0 )
1177
- $( imageBox ).after( '<div id="' + placeholder + '"></div>' ).insertAfter( insertAfter ).find('h3 span').text(option_tree.with)
1178
-
1179
- // Revert image
1180
- } else {
1181
-
1182
- $( '#' + placeholder ).replaceWith( $( imageBox ) )
1183
- $( imageBox ).find('h3 span').text(option_tree.replace)
1184
-
1185
- }
1186
-
1187
- // Show the metabox
1188
- $( '#ot-' + this.$id ).show()
1189
-
1190
- }
1191
-
1192
- }
1193
-
1194
- /* POSTFORMATS PLUGIN DEFINITION
1195
- * ======================= */
1196
- var old = $.fn.postformats
1197
-
1198
- $.fn.postformats = function (option) {
1199
- return this.each(function () {
1200
- var $this = $(this)
1201
- , data = $this.data('postformats')
1202
- , options = typeof option == 'object' && option
1203
- if (!data) $this.data('postformats', (data = new Postformats(this, options)))
1204
- if (typeof option == 'string') data[option]()
1205
- })
1206
- }
1207
-
1208
- $.fn.postformats.Constructor = Postformats
1209
-
1210
- /* POSTFORMATS NO CONFLICT
1211
- * ================= */
1212
- $.fn.postformats.noConflict = function () {
1213
- $.fn.postformats = old
1214
- return this
1215
- }
1216
-
1217
- /* POSTFORMATS DATA-API
1218
- * ============== */
1219
- $(document).on('ready.postformats.data-api', function () {
1220
- $(formats).each(function () {
1221
- $(this).postformats()
1222
- })
1223
- })
1224
-
1225
- }(window.jQuery);
1226
-
1227
  /*!
1228
  * Adds opacity to the default colorpicker
1229
  *
413
  } else {
414
  OT_UI.parse_condition();
415
  }
416
+ OT_UI.load_editors();
417
  });
418
  OT_UI.parse_condition();
419
  },
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
  },
753
  });
754
  });
755
  },
756
+ load_editors: function() {
757
+ OT_UI.css_editor_mode();
758
+ OT_UI.javascript_editor_mode();
759
+ },
760
  url_exists: function(url) {
761
  var link = document.createElement('a')
762
  link.href = url
969
  if ( $(this).find('.ot-metabox-panels').css('padding') == '12px' && child < parent ) {
970
  $(this).find('.ot-metabox-panels').css({ minHeight: minHeight })
971
  }
972
+ OT_UI.load_editors();
 
973
  }
974
  })
975
 
980
  $(this).find('.ot-metabox-tabs').removeClass('ui-widget ui-widget-content ui-corner-all')
981
  $(this).find('.ot-metabox-nav').removeClass('ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all')
982
  $(this).find('.ot-metabox-nav li').removeClass('ui-state-default ui-corner-top ui-tabs-active ui-tabs-active')
983
+ $(this).find('.ot-metabox-nav li').on('mouseenter mouseleave', function() { $(this).removeClass('ui-state-hover') })
984
 
985
  }
986
 
1035
  })
1036
 
1037
  // Create the tabs
1038
+ $(this).find('.ot-theme-option-tabs').tabs({
1039
+ activate: function( event, ui ) {
1040
+ OT_UI.load_editors();
1041
+ }
1042
+ })
1043
 
1044
  // Move the orphaned settings to the top
1045
  $(this).find('.ot-theme-option-panels > .format-settings').prependTo($(this).find('.ot-theme-option-tabs'))
1112
 
1113
  }(window.jQuery);
1114
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1115
  /*!
1116
  * Adds opacity to the default colorpicker
1117
  *
assets/js/ot-postformats.js ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*!
2
+ * postformats.js v1.0.1
3
+ */
4
+ !function ($) {
5
+
6
+ "use strict"; // jshint ;_;
7
+
8
+ /* POSTFORMATS CLASS DEFINITION
9
+ * ====================== */
10
+ var formats = "input.post-format"
11
+ , metaboxes = [
12
+ '#ot-post-format-gallery'
13
+ , '#ot-post-format-link'
14
+ , '#ot-post-format-image'
15
+ , '#ot-post-format-quote'
16
+ , '#ot-post-format-video'
17
+ , '#ot-post-format-audio'
18
+ ]
19
+ , ids = metaboxes.join(',')
20
+ , insertAfter = '#titlediv'
21
+ , imageBox = '#postimagediv'
22
+ , placeholder = 'postimagediv-placeholder'
23
+ , Postformats = function (element, options) {
24
+ this.$element = $(element)
25
+ .on('click.postformats.data-api', $.proxy(this.toggle, this))
26
+ this.$id = this.$element.attr('id')
27
+ this.init()
28
+ }
29
+
30
+ Postformats.prototype = {
31
+
32
+ constructor: Postformats
33
+
34
+ , init: function () {
35
+
36
+ // Moves the metaboxes into place
37
+ $( '#ot-' + this.$id ).insertAfter( $( insertAfter ) ).hide()
38
+
39
+ // Show the checked metabox
40
+ if ( this.$element.is(':checked') ) {
41
+
42
+ this.show()
43
+
44
+ }
45
+
46
+ }
47
+
48
+ , toggle: function () {
49
+
50
+ // Hides all the post format metaboxes
51
+ $(ids).each(function() {
52
+
53
+ $(this).hide()
54
+
55
+ })
56
+
57
+ // Shows the clicked post format metabox
58
+ this.show()
59
+
60
+ }
61
+
62
+ , show: function () {
63
+
64
+ // Featured image is never really hidden so it requires different code
65
+ if ( this.$id == 'post-format-image' ) {
66
+
67
+ if ( $( '#' + placeholder ).length == 0 )
68
+ $( imageBox ).after( '<div id="' + placeholder + '"></div>' ).insertAfter( insertAfter ).css({'marginTop':'20px','marginBottom':'0px'}).find('h3 span').text(option_tree.with)
69
+
70
+ // Revert image
71
+ } else {
72
+
73
+ $( '#' + placeholder ).replaceWith( $( imageBox ).css({'marginTop':'0px','marginBottom':'20px'}) )
74
+ $( imageBox ).find('h3 span').text(option_tree.replace)
75
+
76
+ }
77
+
78
+ // Show the metabox
79
+ $( '#ot-' + this.$id ).css({'marginTop':'20px','marginBottom':'0px'}).show()
80
+
81
+ }
82
+
83
+ }
84
+
85
+ /* POSTFORMATS PLUGIN DEFINITION
86
+ * ======================= */
87
+ var old = $.fn.postformats
88
+
89
+ $.fn.postformats = function (option) {
90
+ return this.each(function () {
91
+ var $this = $(this)
92
+ , data = $this.data('postformats')
93
+ , options = typeof option == 'object' && option
94
+ if (!data) $this.data('postformats', (data = new Postformats(this, options)))
95
+ if (typeof option == 'string') data[option]()
96
+ })
97
+ }
98
+
99
+ $.fn.postformats.Constructor = Postformats
100
+
101
+ /* POSTFORMATS NO CONFLICT
102
+ * ================= */
103
+ $.fn.postformats.noConflict = function () {
104
+ $.fn.postformats = old
105
+ return this
106
+ }
107
+
108
+ /* POSTFORMATS DATA-API
109
+ * ============== */
110
+ $(document).on('ready.postformats.data-api', function () {
111
+ $(formats).each(function () {
112
+ $(this).postformats()
113
+ })
114
+ })
115
+
116
+ }(window.jQuery);
includes/ot-functions-admin.php CHANGED
@@ -816,22 +816,27 @@ if ( ! function_exists( 'ot_admin_scripts' ) ) {
816
  /* Legacy Thickbox */
817
  add_thickbox();
818
  }
819
-
820
  /* load jQuery-ui slider */
821
  wp_enqueue_script( 'jquery-ui-slider' );
822
-
823
  /* load jQuery-ui datepicker */
824
  wp_enqueue_script( 'jquery-ui-datepicker' );
825
-
826
  /* load WP colorpicker */
827
  wp_enqueue_script( 'wp-color-picker' );
828
-
829
- /* Load Ace Editor for CSS Editing */
830
  wp_enqueue_script( 'ace-editor', 'https://cdnjs.cloudflare.com/ajax/libs/ace/1.1.3/ace.js', null, '1.1.3' );
831
-
832
  /* load jQuery UI timepicker addon */
833
  wp_enqueue_script( 'jquery-ui-timepicker', OT_URL . 'assets/js/vendor/jquery/jquery-ui-timepicker.js', array( 'jquery', 'jquery-ui-slider', 'jquery-ui-datepicker' ), '1.4.3' );
834
-
 
 
 
 
 
835
  /* load all the required scripts */
836
  wp_enqueue_script( 'ot-admin-js', OT_URL . 'assets/js/ot-admin.js', array( 'jquery', 'jquery-ui-tabs', 'jquery-ui-sortable', 'jquery-ui-slider', 'wp-color-picker', 'ace-editor', 'jquery-ui-datepicker', 'jquery-ui-timepicker' ), OT_VERSION );
837
 
@@ -3675,7 +3680,16 @@ if ( ! function_exists( 'ot_insert_css_with_markers' ) ) {
3675
  }
3676
 
3677
  }
3678
-
 
 
 
 
 
 
 
 
 
3679
  // Filter the CSS
3680
  $value = apply_filters( 'ot_insert_css_with_markers_value', $value, $option_id );
3681
 
816
  /* Legacy Thickbox */
817
  add_thickbox();
818
  }
819
+
820
  /* load jQuery-ui slider */
821
  wp_enqueue_script( 'jquery-ui-slider' );
822
+
823
  /* load jQuery-ui datepicker */
824
  wp_enqueue_script( 'jquery-ui-datepicker' );
825
+
826
  /* load WP colorpicker */
827
  wp_enqueue_script( 'wp-color-picker' );
828
+
829
+ /* load Ace Editor for CSS Editing */
830
  wp_enqueue_script( 'ace-editor', 'https://cdnjs.cloudflare.com/ajax/libs/ace/1.1.3/ace.js', null, '1.1.3' );
831
+
832
  /* load jQuery UI timepicker addon */
833
  wp_enqueue_script( 'jquery-ui-timepicker', OT_URL . 'assets/js/vendor/jquery/jquery-ui-timepicker.js', array( 'jquery', 'jquery-ui-slider', 'jquery-ui-datepicker' ), '1.4.3' );
834
+
835
+ /* load the post formats */
836
+ if ( OT_META_BOXES == true && OT_POST_FORMATS == true ) {
837
+ wp_enqueue_script( 'ot-postformats', OT_URL . 'assets/js/ot-postformats.js', array( 'jquery' ), '1.0.1' );
838
+ }
839
+
840
  /* load all the required scripts */
841
  wp_enqueue_script( 'ot-admin-js', OT_URL . 'assets/js/ot-admin.js', array( 'jquery', 'jquery-ui-tabs', 'jquery-ui-sortable', 'jquery-ui-slider', 'wp-color-picker', 'ace-editor', 'jquery-ui-datepicker', 'jquery-ui-timepicker' ), OT_VERSION );
842
 
3680
  }
3681
 
3682
  }
3683
+
3684
+ // Fallback when value is empty
3685
+ if ( empty( $value ) && isset( $option_array[1] ) ) {
3686
+
3687
+ // Link Color `inherit` fallback
3688
+ if ( in_array( $option_array[1], array( 'link', 'hover', 'active', 'visited', 'focus' ) ) ) {
3689
+ $value = 'inherit';
3690
+ }
3691
+ }
3692
+
3693
  // Filter the CSS
3694
  $value = apply_filters( 'ot_insert_css_with_markers_value', $value, $option_id );
3695
 
includes/ot-functions-option-types.php CHANGED
@@ -1444,6 +1444,18 @@ if ( ! function_exists( 'ot_type_list_item' ) ) {
1444
  /* verify a description */
1445
  $has_desc = $field_desc ? true : false;
1446
 
 
 
 
 
 
 
 
 
 
 
 
 
1447
  /* format setting outer wrapper */
1448
  echo '<div class="format-setting type-list-item ' . ( $has_desc ? 'has-desc' : 'no-desc' ) . '">';
1449
 
@@ -1465,7 +1477,7 @@ if ( ! function_exists( 'ot_type_list_item' ) ) {
1465
  $get_option = '';
1466
 
1467
  /* build list items */
1468
- echo '<ul class="option-tree-setting-wrap option-tree-sortable" data-name="' . esc_attr( $field_id ) . '" data-id="' . esc_attr( $post_id ) . '" data-get-option="' . esc_attr( $get_option ) . '" data-type="' . esc_attr( $type ) . '">';
1469
 
1470
  if ( is_array( $field_value ) && ! empty( $field_value ) ) {
1471
 
@@ -1485,7 +1497,8 @@ if ( ! function_exists( 'ot_type_list_item' ) ) {
1485
  echo '<a href="javascript:void(0);" class="option-tree-list-item-add option-tree-ui-button button button-primary right hug-right" title="' . __( 'Add New', 'option-tree' ) . '">' . __( 'Add New', 'option-tree' ) . '</a>';
1486
 
1487
  /* description */
1488
- echo '<div class="list-item-description">' . apply_filters( 'ot_list_item_description', __( 'You can re-order with drag & drop, the order will update after saving.', 'option-tree' ), $field_id ) . '</div>';
 
1489
 
1490
  echo '</div>';
1491
 
1444
  /* verify a description */
1445
  $has_desc = $field_desc ? true : false;
1446
 
1447
+ // Default
1448
+ $sortable = true;
1449
+
1450
+ // Check if the list can be sorted
1451
+ if ( ! empty( $field_class ) ) {
1452
+ $classes = explode( ' ', $field_class );
1453
+ if ( in_array( 'not-sortable', $classes ) ) {
1454
+ $sortable = false;
1455
+ str_replace( 'not-sortable', '', $field_class );
1456
+ }
1457
+ }
1458
+
1459
  /* format setting outer wrapper */
1460
  echo '<div class="format-setting type-list-item ' . ( $has_desc ? 'has-desc' : 'no-desc' ) . '">';
1461
 
1477
  $get_option = '';
1478
 
1479
  /* build list items */
1480
+ echo '<ul class="option-tree-setting-wrap' . ( $sortable ? ' option-tree-sortable' : '' ) .'" data-name="' . esc_attr( $field_id ) . '" data-id="' . esc_attr( $post_id ) . '" data-get-option="' . esc_attr( $get_option ) . '" data-type="' . esc_attr( $type ) . '">';
1481
 
1482
  if ( is_array( $field_value ) && ! empty( $field_value ) ) {
1483
 
1497
  echo '<a href="javascript:void(0);" class="option-tree-list-item-add option-tree-ui-button button button-primary right hug-right" title="' . __( 'Add New', 'option-tree' ) . '">' . __( 'Add New', 'option-tree' ) . '</a>';
1498
 
1499
  /* description */
1500
+ $list_desc = $sortable ? __( 'You can re-order with drag & drop, the order will update after saving.', 'option-tree' ) : '';
1501
+ echo '<div class="list-item-description">' . apply_filters( 'ot_list_item_description', $list_desc, $field_id ) . '</div>';
1502
 
1503
  echo '</div>';
1504
 
includes/ot-functions.php CHANGED
@@ -325,6 +325,8 @@ if ( ! function_exists( 'ot_load_google_fonts_css' ) ) {
325
 
326
  if ( ! empty( $families ) ) {
327
 
 
 
328
  // Append all subsets to the path, unless the only subset is latin.
329
  if ( ! empty( $subsets ) ) {
330
  $subsets = implode( ',', array_unique( $subsets ) );
325
 
326
  if ( ! empty( $families ) ) {
327
 
328
+ $families = array_unique( $families );
329
+
330
  // Append all subsets to the path, unless the only subset is latin.
331
  if ( ! empty( $subsets ) ) {
332
  $subsets = implode( ',', array_unique( $subsets ) );
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-02-13 19:31-0800\n"
5
- "PO-Revision-Date: 2015-02-13 19:32-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.4\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"
@@ -136,7 +136,7 @@ msgstr "Midagi läks valesti. Tabelit %s ei kustutatud."
136
 
137
  #: ../includes/ot-functions-admin.php:50 ../includes/ot-functions-admin.php:51
138
  #: ../includes/ot-functions-admin.php:169
139
- #: ../includes/ot-functions-admin.php:193 ../includes/ot-functions.php:361
140
  msgid "Theme Options"
141
  msgstr "Teema seaded"
142
 
@@ -292,420 +292,420 @@ msgstr "%s sisendväli %s jaoks lubab vaid numbrilisi väärtusi."
292
  msgid "The %s Colorpicker only allows valid hexadecimal or rgba values."
293
  msgstr "%s värvi valija lubab väärtuseid vaid kuueteistkümnendiksüsteemis."
294
 
295
- #: ../includes/ot-functions-admin.php:841
296
  #: ../includes/ot-functions-docs-page.php:398
297
  #: ../includes/ot-functions-settings-page.php:170 ../ot-loader.php:782
298
  msgid "Send to OptionTree"
299
  msgstr "Saada OptionTree-le"
300
 
301
- #: ../includes/ot-functions-admin.php:842
302
  #: ../includes/ot-functions-option-types.php:257
303
- #: ../includes/ot-functions-option-types.php:3194
304
  msgid "Remove Media"
305
  msgstr "Eemalda meedia"
306
 
307
- #: ../includes/ot-functions-admin.php:843
308
  msgid "Are you sure you want to reset back to the defaults?"
309
  msgstr "Kas olete kindel, et soovite taastada algseaded?"
310
 
311
- #: ../includes/ot-functions-admin.php:844
312
  msgid "You can't remove this! But you can edit the values."
313
  msgstr "Te ei saa seda eemaldada! Väärtuste muutmine on lubatud."
314
 
315
- #: ../includes/ot-functions-admin.php:845
316
  msgid "Are you sure you want to remove this?"
317
  msgstr "Kas olete kindel, et soovite seda eemaldada?"
318
 
319
- #: ../includes/ot-functions-admin.php:846
320
  msgid "Are you sure you want to activate this layout?"
321
  msgstr "Kas olete kindel, et soovite seda paigutust aktiveerida?"
322
 
323
- #: ../includes/ot-functions-admin.php:847
324
  msgid "Sorry, you can't have settings three levels deep."
325
  msgstr "Kahjuks ei saa sätteid määrata kolmanda taseme sügavusega."
326
 
327
- #: ../includes/ot-functions-admin.php:848
328
  #: ../includes/ot-functions-option-types.php:1159
329
  msgid "Delete Gallery"
330
  msgstr "Kustuta galerii"
331
 
332
- #: ../includes/ot-functions-admin.php:849
333
  #: ../includes/ot-functions-option-types.php:1160
334
  msgid "Edit Gallery"
335
  msgstr "Muuda galeriid"
336
 
337
- #: ../includes/ot-functions-admin.php:850
338
  #: ../includes/ot-functions-option-types.php:1167
339
  msgid "Create Gallery"
340
  msgstr "Loo galerii"
341
 
342
- #: ../includes/ot-functions-admin.php:851
343
  msgid "Are you sure you want to delete this Gallery?"
344
  msgstr "Kas olete kindel, et soovite seda galeriid kustutada?"
345
 
346
- #: ../includes/ot-functions-admin.php:852
347
  msgid "Today"
348
  msgstr "Täna"
349
 
350
- #: ../includes/ot-functions-admin.php:853
351
  msgid "Now"
352
  msgstr "Praegu"
353
 
354
- #: ../includes/ot-functions-admin.php:854
355
  msgid "Close"
356
  msgstr "Sulge"
357
 
358
- #: ../includes/ot-functions-admin.php:855
359
  msgid "Featured Image"
360
  msgstr "Tunuuspilt"
361
 
362
- #: ../includes/ot-functions-admin.php:856
363
- #: ../includes/ot-functions-admin.php:3244
364
- #: ../includes/ot-functions-admin.php:3305
365
  msgid "Image"
366
  msgstr "Pilt"
367
 
368
- #: ../includes/ot-functions-admin.php:924
369
  msgid "Option Tree"
370
  msgstr "Option Tree"
371
 
372
- #: ../includes/ot-functions-admin.php:1061
373
  msgid "General"
374
  msgstr "Üldseaded"
375
 
376
- #: ../includes/ot-functions-admin.php:1067
377
  msgid "Sample Text Field Label"
378
  msgstr "Tekstisisendi nimetuse näide"
379
 
380
- #: ../includes/ot-functions-admin.php:1068
381
  msgid "Description for the sample text field."
382
  msgstr "Tekstisisendi kirjelduse näide"
383
 
384
- #: ../includes/ot-functions-admin.php:2310
385
  msgid "Settings updated."
386
  msgstr "Seaded on uuendatud."
387
 
388
- #: ../includes/ot-functions-admin.php:2314
389
  msgid "Settings could not be saved."
390
  msgstr "Seadeid ei suudetud uuendada."
391
 
392
- #: ../includes/ot-functions-admin.php:2322
393
  msgid "Settings Imported."
394
  msgstr "Seaded on imporditud."
395
 
396
- #: ../includes/ot-functions-admin.php:2326
397
  msgid "Settings could not be imported."
398
  msgstr "Seadeid ei suudetud importida."
399
 
400
- #: ../includes/ot-functions-admin.php:2333
401
  msgid "Data Imported."
402
  msgstr "Andmed on imporditud."
403
 
404
- #: ../includes/ot-functions-admin.php:2337
405
  msgid "Data could not be imported."
406
  msgstr "Andmeid ei suudetud importida."
407
 
408
- #: ../includes/ot-functions-admin.php:2345
409
  msgid "Layouts Imported."
410
  msgstr "Paigutused on imporditud."
411
 
412
- #: ../includes/ot-functions-admin.php:2349
413
  msgid "Layouts could not be imported."
414
  msgstr "Paigutusi ei suudetud importida."
415
 
416
- #: ../includes/ot-functions-admin.php:2357
417
  msgid "Layouts Updated."
418
  msgstr "Paigutused on uuendatud."
419
 
420
- #: ../includes/ot-functions-admin.php:2361
421
  msgid "Layouts could not be updated."
422
  msgstr "Paigutusi ei suudetud uuendada."
423
 
424
- #: ../includes/ot-functions-admin.php:2365
425
  msgid "Layouts have been deleted."
426
  msgstr "Paigutused on kustutatud."
427
 
428
- #: ../includes/ot-functions-admin.php:2371
429
  msgid "Layout activated."
430
  msgstr "Paigutus on aktiveeritud."
431
 
432
- #: ../includes/ot-functions-admin.php:2410
433
  #: ../includes/ot-functions-docs-page.php:110
434
  msgid "Background"
435
  msgstr "Taust"
436
 
437
- #: ../includes/ot-functions-admin.php:2411
438
  #: ../includes/ot-functions-docs-page.php:113
439
  msgid "Border"
440
  msgstr "Ääris"
441
 
442
- #: ../includes/ot-functions-admin.php:2412
443
  #: ../includes/ot-functions-docs-page.php:116
444
  msgid "Box Shadow"
445
  msgstr "Kasti vari"
446
 
447
- #: ../includes/ot-functions-admin.php:2413
448
  #: ../includes/ot-functions-docs-page.php:119
449
  msgid "Category Checkbox"
450
  msgstr "Kategooriate valikkastid"
451
 
452
- #: ../includes/ot-functions-admin.php:2414
453
  #: ../includes/ot-functions-docs-page.php:122
454
  msgid "Category Select"
455
  msgstr "Kategooria rippvalik"
456
 
457
- #: ../includes/ot-functions-admin.php:2415
458
  #: ../includes/ot-functions-docs-page.php:125
459
  msgid "Checkbox"
460
  msgstr "Valikkastid"
461
 
462
- #: ../includes/ot-functions-admin.php:2416
463
  #: ../includes/ot-functions-docs-page.php:128
464
  msgid "Colorpicker"
465
  msgstr "Värvivalik"
466
 
467
- #: ../includes/ot-functions-admin.php:2417
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:2418
473
  #: ../includes/ot-functions-docs-page.php:134
474
  msgid "CSS"
475
  msgstr "CSS"
476
 
477
- #: ../includes/ot-functions-admin.php:2419
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:2420
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:2421
488
  #: ../includes/ot-functions-docs-page.php:159
489
  msgid "Date Picker"
490
  msgstr "Kuupäev valija"
491
 
492
- #: ../includes/ot-functions-admin.php:2422
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:2423
498
  #: ../includes/ot-functions-docs-page.php:165
499
  msgid "Dimension"
500
  msgstr "Mõõtmed"
501
 
502
- #: ../includes/ot-functions-admin.php:2424
503
- #: ../includes/ot-functions-admin.php:5399
504
  #: ../includes/ot-functions-docs-page.php:168
505
  msgid "Gallery"
506
  msgstr "Galerii"
507
 
508
- #: ../includes/ot-functions-admin.php:2425
509
  #: ../includes/ot-functions-docs-page.php:171
510
  msgid "Google Fonts"
511
  msgstr "Google Fondid"
512
 
513
- #: ../includes/ot-functions-admin.php:2426
514
  #: ../includes/ot-functions-docs-page.php:174
515
  msgid "JavaScript"
516
  msgstr "JavaScript"
517
 
518
- #: ../includes/ot-functions-admin.php:2427
519
  #: ../includes/ot-functions-docs-page.php:177
520
  msgid "Link Color"
521
  msgstr "Lingi värv"
522
 
523
- #: ../includes/ot-functions-admin.php:2428
524
  #: ../includes/ot-functions-docs-page.php:180
525
  msgid "List Item"
526
  msgstr "Nimekirja element"
527
 
528
- #: ../includes/ot-functions-admin.php:2429
529
  #: ../includes/ot-functions-docs-page.php:183
530
  msgid "Measurement"
531
  msgstr "Mõõt"
532
 
533
- #: ../includes/ot-functions-admin.php:2430
534
  #: ../includes/ot-functions-docs-page.php:214
535
  msgid "Numeric Slider"
536
  msgstr "Numbriskaala"
537
 
538
- #: ../includes/ot-functions-admin.php:2431
539
  #: ../includes/ot-functions-docs-page.php:217
540
  msgid "On/Off"
541
  msgstr "Sees/väljas"
542
 
543
- #: ../includes/ot-functions-admin.php:2432
544
  #: ../includes/ot-functions-docs-page.php:220
545
  msgid "Page Checkbox"
546
  msgstr "Lehekülgede valikkastid"
547
 
548
- #: ../includes/ot-functions-admin.php:2433
549
  #: ../includes/ot-functions-docs-page.php:223
550
  msgid "Page Select"
551
  msgstr "Lehekülje rippvalik"
552
 
553
- #: ../includes/ot-functions-admin.php:2434
554
  #: ../includes/ot-functions-docs-page.php:226
555
  msgid "Post Checkbox"
556
  msgstr "Postituste valikkastid"
557
 
558
- #: ../includes/ot-functions-admin.php:2435
559
  #: ../includes/ot-functions-docs-page.php:229
560
  msgid "Post Select"
561
  msgstr "Postituse rippvalik"
562
 
563
- #: ../includes/ot-functions-admin.php:2436
564
  #: ../includes/ot-functions-docs-page.php:232
565
  msgid "Radio"
566
  msgstr "Raadiokastid"
567
 
568
- #: ../includes/ot-functions-admin.php:2437
569
  #: ../includes/ot-functions-docs-page.php:235
570
  msgid "Radio Image"
571
  msgstr "Pildiga raadiokastid"
572
 
573
- #: ../includes/ot-functions-admin.php:2438
574
  #: ../includes/ot-functions-docs-page.php:262
575
  msgid "Select"
576
  msgstr "Rippvalik"
577
 
578
- #: ../includes/ot-functions-admin.php:2439
579
  #: ../includes/ot-functions-docs-page.php:265
580
  msgid "Sidebar Select"
581
  msgstr "Küljeriba rippvalik"
582
 
583
- #: ../includes/ot-functions-admin.php:2440
584
  #: ../includes/ot-functions-docs-page.php:269
585
  msgid "Slider"
586
  msgstr "Slaidiesitaja"
587
 
588
- #: ../includes/ot-functions-admin.php:2441
589
  #: ../includes/ot-functions-docs-page.php:272
590
  msgid "Social Links"
591
  msgstr "Sotsiaalmeedia"
592
 
593
- #: ../includes/ot-functions-admin.php:2442
594
  #: ../includes/ot-functions-docs-page.php:275
595
  msgid "Spacing"
596
  msgstr "Vahed"
597
 
598
- #: ../includes/ot-functions-admin.php:2443
599
  #: ../includes/ot-functions-docs-page.php:278
600
  msgid "Tab"
601
  msgstr "Sakk"
602
 
603
- #: ../includes/ot-functions-admin.php:2444
604
  #: ../includes/ot-functions-docs-page.php:281
605
  msgid "Tag Checkbox"
606
  msgstr "Sildi valikkastid"
607
 
608
- #: ../includes/ot-functions-admin.php:2445
609
  #: ../includes/ot-functions-docs-page.php:284
610
  msgid "Tag Select"
611
  msgstr "Sildi rippvalik"
612
 
613
- #: ../includes/ot-functions-admin.php:2446
614
  #: ../includes/ot-functions-docs-page.php:287
615
  msgid "Taxonomy Checkbox"
616
  msgstr "Taksonoomia valikkastid"
617
 
618
- #: ../includes/ot-functions-admin.php:2447
619
  #: ../includes/ot-functions-docs-page.php:290
620
  msgid "Taxonomy Select"
621
  msgstr "Taksonoomia rippvalik"
622
 
623
- #: ../includes/ot-functions-admin.php:2448
624
  #: ../includes/ot-functions-docs-page.php:293
625
  msgid "Text"
626
  msgstr "Tekstisisend"
627
 
628
- #: ../includes/ot-functions-admin.php:2449
629
  #: ../includes/ot-functions-docs-page.php:296
630
  msgid "Textarea"
631
  msgstr "Tekstiväli"
632
 
633
- #: ../includes/ot-functions-admin.php:2450
634
  #: ../includes/ot-functions-docs-page.php:355
635
  msgid "Textarea Simple"
636
  msgstr "Lihtne tekstiväli"
637
 
638
- #: ../includes/ot-functions-admin.php:2451
639
  #: ../includes/ot-functions-docs-page.php:371
640
  msgid "Textblock"
641
  msgstr "Tekstiblokk"
642
 
643
- #: ../includes/ot-functions-admin.php:2452
644
  #: ../includes/ot-functions-docs-page.php:374
645
  msgid "Textblock Titled"
646
  msgstr "Pealkirjaga tekstiblokk"
647
 
648
- #: ../includes/ot-functions-admin.php:2453
649
  #: ../includes/ot-functions-docs-page.php:377
650
  msgid "Typography"
651
  msgstr "Tüpograafia"
652
 
653
- #: ../includes/ot-functions-admin.php:2454
654
  #: ../includes/ot-functions-docs-page.php:397
655
  msgid "Upload"
656
  msgstr "Lae üles"
657
 
658
- #: ../includes/ot-functions-admin.php:3189
659
  msgid "Left Sidebar"
660
  msgstr "Vasak küljendusmenüü"
661
 
662
- #: ../includes/ot-functions-admin.php:3194
663
  msgid "Right Sidebar"
664
  msgstr "Parem küljendusmenüü"
665
 
666
- #: ../includes/ot-functions-admin.php:3199
667
  msgid "Full Width (no sidebar)"
668
  msgstr "Täies pikkuses (ilma küljendusmenüüta)"
669
 
670
- #: ../includes/ot-functions-admin.php:3204
671
  msgid "Dual Sidebar"
672
  msgstr "Topelt küljendusmenüü"
673
 
674
- #: ../includes/ot-functions-admin.php:3209
675
  msgid "Left Dual Sidebar"
676
  msgstr "Kaks küljendusmenüüd vasakul"
677
 
678
- #: ../includes/ot-functions-admin.php:3214
679
  msgid "Right Dual Sidebar"
680
  msgstr "Kaks küljendusmenüüd paremal"
681
 
682
- #: ../includes/ot-functions-admin.php:3255
683
- #: ../includes/ot-functions-admin.php:3311
684
- #: ../includes/ot-functions-admin.php:5439
685
  msgid "Link"
686
  msgstr "Viide"
687
 
688
- #: ../includes/ot-functions-admin.php:3266
689
- #: ../includes/ot-functions-admin.php:3317
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:3381
697
  msgid "Name"
698
  msgstr "Nimetus"
699
 
700
- #: ../includes/ot-functions-admin.php:3382
701
  msgid "Enter the name of the social website."
702
  msgstr "Sisesta sotsiaalmeedia veebilehe nimi."
703
 
704
- #: ../includes/ot-functions-admin.php:3390
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:3396
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:3689
718
  #, php-format
719
  msgid "Unable to write to file %s."
720
  msgstr ""
721
 
722
- #: ../includes/ot-functions-admin.php:3959
723
  msgid "edit"
724
  msgstr "muuda"
725
 
726
- #: ../includes/ot-functions-admin.php:3960
727
- #: ../includes/ot-functions-admin.php:4028
728
- #: ../includes/ot-functions-admin.php:4029
729
- #: ../includes/ot-functions-admin.php:4191
730
- #: ../includes/ot-functions-admin.php:4192
731
- #: ../includes/ot-functions-admin.php:4257
732
- #: ../includes/ot-functions-admin.php:4258
733
- #: ../includes/ot-functions-admin.php:4385
734
- #: ../includes/ot-functions-admin.php:4386
735
- #: ../includes/ot-functions-admin.php:4538
736
- #: ../includes/ot-functions-admin.php:4539
737
  msgid "Edit"
738
  msgstr "Muuda"
739
 
740
- #: ../includes/ot-functions-admin.php:3962
741
- #: ../includes/ot-functions-admin.php:3963
742
- #: ../includes/ot-functions-admin.php:4031
743
- #: ../includes/ot-functions-admin.php:4032
744
- #: ../includes/ot-functions-admin.php:4194
745
- #: ../includes/ot-functions-admin.php:4195
746
- #: ../includes/ot-functions-admin.php:4260
747
- #: ../includes/ot-functions-admin.php:4261
748
- #: ../includes/ot-functions-admin.php:4319
749
- #: ../includes/ot-functions-admin.php:4320
750
- #: ../includes/ot-functions-admin.php:4388
751
- #: ../includes/ot-functions-admin.php:4389
752
- #: ../includes/ot-functions-admin.php:4541
753
- #: ../includes/ot-functions-admin.php:4542
754
  msgid "Delete"
755
  msgstr "Kustuta"
756
 
757
- #: ../includes/ot-functions-admin.php:3969
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:3977
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:4038
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:4046
782
- #: ../includes/ot-functions-admin.php:4275
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:4054
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:4065
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:4073
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:4078
816
  msgid "Add Choice"
817
  msgstr "Lisa valik"
818
 
819
- #: ../includes/ot-functions-admin.php:4084
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:4089
825
  #: ../includes/ot-functions-settings-page.php:93
826
  msgid "Add Setting"
827
  msgstr "Lisa säte"
828
 
829
- #: ../includes/ot-functions-admin.php:4095
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:4103
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:4111
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:4119
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:4127
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:4135
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:4143
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:4151
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:4154
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:4155
916
  msgid "or"
917
  msgstr "või"
918
 
919
- #: ../includes/ot-functions-admin.php:4201
920
  #: ../includes/ot-functions-docs-page.php:29
921
  msgid "Label"
922
  msgstr "Nimetus"
923
 
924
- #: ../includes/ot-functions-admin.php:4211
925
  msgid "Value"
926
  msgstr "Väärtus"
927
 
928
- #: ../includes/ot-functions-admin.php:4221
929
  msgid "Image Source (Radio Image only)"
930
  msgstr "Pildi allikas ( ainult pildiga raadiovaliku jaoks )"
931
 
932
- #: ../includes/ot-functions-admin.php:4267
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:4283
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:4314
949
  msgid "Layout"
950
  msgstr "Paigutus"
951
 
952
- #: ../includes/ot-functions-admin.php:4316
953
- #: ../includes/ot-functions-admin.php:4317
954
  msgid "Activate"
955
  msgstr "Aktiveeri"
956
 
957
- #: ../includes/ot-functions-admin.php:4353 ../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:4693
963
  msgid "New Layout"
964
  msgstr "Uus paigutus"
965
 
966
- #: ../includes/ot-functions-admin.php:5448
967
  msgid "Link URL"
968
  msgstr "Viide"
969
 
970
- #: ../includes/ot-functions-admin.php:5455
971
  msgid "Link Title"
972
  msgstr "Lingi pealkiri"
973
 
974
- #: ../includes/ot-functions-admin.php:5485
975
  msgid "Quote"
976
  msgstr "Tsitaat"
977
 
978
- #: ../includes/ot-functions-admin.php:5494
979
  msgid "Source Name (ex. author, singer, actor)"
980
  msgstr "Allika nimi (nt autor, laulja, näitleja)"
981
 
982
- #: ../includes/ot-functions-admin.php:5501
983
  msgid "Source URL"
984
  msgstr "Allika URL"
985
 
986
- #: ../includes/ot-functions-admin.php:5508
987
  msgid "Source Title (ex. book, song, movie)"
988
  msgstr "Allika pealkiri (nt raamat, laul, film)"
989
 
990
- #: ../includes/ot-functions-admin.php:5515
991
  msgid "Source Date"
992
  msgstr "Allika kuupäev"
993
 
994
- #: ../includes/ot-functions-admin.php:5545
995
  msgid "Video"
996
  msgstr "Video"
997
 
998
- #: ../includes/ot-functions-admin.php:5554
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:5554
1010
- #: ../includes/ot-functions-admin.php:5593
1011
  msgid "Wordpress Codex"
1012
  msgstr "Wordpress Codex"
1013
 
1014
- #: ../includes/ot-functions-admin.php:5584
1015
  msgid "Audio"
1016
  msgstr "Audio"
1017
 
1018
- #: ../includes/ot-functions-admin.php:5593
1019
  #, php-format
1020
  msgid ""
1021
  "Embed audio from services like SoundCloud and Rdio. You can find a list of "
@@ -2402,7 +2402,7 @@ msgid "background-image"
2402
  msgstr "background-image"
2403
 
2404
  #: ../includes/ot-functions-option-types.php:241
2405
- #: ../includes/ot-functions-option-types.php:3178
2406
  msgid "Add Media"
2407
  msgstr "Lisa meediat"
2408
 
@@ -2413,8 +2413,8 @@ msgstr "width"
2413
 
2414
  #: ../includes/ot-functions-option-types.php:327
2415
  #: ../includes/ot-functions-option-types.php:1065
2416
- #: ../includes/ot-functions-option-types.php:1537
2417
- #: ../includes/ot-functions-option-types.php:2482
2418
  msgid "unit"
2419
  msgstr "ühik"
2420
 
@@ -2445,17 +2445,17 @@ msgstr "Kategooriaid ei leitud"
2445
 
2446
  #: ../includes/ot-functions-option-types.php:587
2447
  #: ../includes/ot-functions-option-types.php:870
2448
- #: ../includes/ot-functions-option-types.php:1806
2449
- #: ../includes/ot-functions-option-types.php:1917
2450
- #: ../includes/ot-functions-option-types.php:2622
2451
- #: ../includes/ot-functions-option-types.php:2737
2452
  msgid "Choose One"
2453
  msgstr "Valik üks"
2454
 
2455
  #: ../includes/ot-functions-option-types.php:818
2456
  #: ../includes/ot-functions-option-types.php:876
2457
- #: ../includes/ot-functions-option-types.php:1868
2458
- #: ../includes/ot-functions-option-types.php:1923
2459
  msgid "No Posts Found"
2460
  msgstr "Postitusi ei leitud"
2461
 
@@ -2502,132 +2502,132 @@ msgctxt "color picker"
2502
  msgid "Focus"
2503
  msgstr "Fookus"
2504
 
2505
- #: ../includes/ot-functions-option-types.php:1485
2506
- #: ../includes/ot-functions-option-types.php:2222
2507
- #: ../includes/ot-functions-option-types.php:2387
2508
  msgid "Add New"
2509
  msgstr "Lisa uus"
2510
 
2511
- #: ../includes/ot-functions-option-types.php:1488
2512
- #: ../includes/ot-functions-option-types.php:2225
2513
- #: ../includes/ot-functions-option-types.php:2390
2514
  msgid "You can re-order with drag & drop, the order will update after saving."
2515
  msgstr ""
2516
  "Lohistades saab elemente ümber paigutada. Järjekord uueneb peale "
2517
  "salvestamist."
2518
 
2519
- #: ../includes/ot-functions-option-types.php:1657
2520
  msgid "On"
2521
  msgstr "Sees"
2522
 
2523
- #: ../includes/ot-functions-option-types.php:1679
2524
  msgid "Off"
2525
  msgstr "Väljas"
2526
 
2527
- #: ../includes/ot-functions-option-types.php:1757
2528
- #: ../includes/ot-functions-option-types.php:1812
2529
  msgid "No Pages Found"
2530
  msgstr "Lehekülgi ei leitud"
2531
 
2532
- #: ../includes/ot-functions-option-types.php:2145
2533
  msgid "Choose Sidebar"
2534
  msgstr "Vali küljendusmenüü"
2535
 
2536
- #: ../includes/ot-functions-option-types.php:2150
2537
  msgid "No Sidebars"
2538
  msgstr "Küljendusmenüüd puuduvad"
2539
 
2540
- #: ../includes/ot-functions-option-types.php:2258
2541
  msgid "Facebook"
2542
  msgstr "Facebook"
2543
 
2544
- #: ../includes/ot-functions-option-types.php:2263
2545
  msgid "Twitter"
2546
  msgstr "Twitter"
2547
 
2548
- #: ../includes/ot-functions-option-types.php:2268
2549
  msgid "Google+"
2550
  msgstr "Google+"
2551
 
2552
- #: ../includes/ot-functions-option-types.php:2273
2553
  msgid "LinkedIn"
2554
  msgstr "LinkedIn"
2555
 
2556
- #: ../includes/ot-functions-option-types.php:2278
2557
  msgid "Pinterest"
2558
  msgstr "Pinterest"
2559
 
2560
- #: ../includes/ot-functions-option-types.php:2283
2561
  msgid "Youtube"
2562
  msgstr "Youtube"
2563
 
2564
- #: ../includes/ot-functions-option-types.php:2288
2565
  msgid "Dribbble"
2566
  msgstr "Dribbble"
2567
 
2568
- #: ../includes/ot-functions-option-types.php:2293
2569
  msgid "Github"
2570
  msgstr "Github"
2571
 
2572
- #: ../includes/ot-functions-option-types.php:2298
2573
  msgid "Forrst"
2574
  msgstr "Forrst"
2575
 
2576
- #: ../includes/ot-functions-option-types.php:2303
2577
  msgid "Digg"
2578
  msgstr "Digg"
2579
 
2580
- #: ../includes/ot-functions-option-types.php:2308
2581
  msgid "Delicious"
2582
  msgstr "Delicious"
2583
 
2584
- #: ../includes/ot-functions-option-types.php:2313
2585
  msgid "Tumblr"
2586
  msgstr "Tumblr"
2587
 
2588
- #: ../includes/ot-functions-option-types.php:2318
2589
  msgid "Skype"
2590
  msgstr "Skype"
2591
 
2592
- #: ../includes/ot-functions-option-types.php:2323
2593
  msgid "SoundCloud"
2594
  msgstr "SoundCloud"
2595
 
2596
- #: ../includes/ot-functions-option-types.php:2328
2597
  msgid "Vimeo"
2598
  msgstr "Vimeo"
2599
 
2600
- #: ../includes/ot-functions-option-types.php:2333
2601
  msgid "Flickr"
2602
  msgstr "Flickr"
2603
 
2604
- #: ../includes/ot-functions-option-types.php:2338
2605
  msgid "VK.com"
2606
  msgstr "VK.com"
2607
 
2608
- #: ../includes/ot-functions-option-types.php:2444
2609
  msgid "top"
2610
  msgstr "top"
2611
 
2612
- #: ../includes/ot-functions-option-types.php:2453
2613
  msgid "right"
2614
  msgstr "right"
2615
 
2616
- #: ../includes/ot-functions-option-types.php:2462
2617
  msgid "bottom"
2618
  msgstr "bottom"
2619
 
2620
- #: ../includes/ot-functions-option-types.php:2471
2621
  msgid "left"
2622
  msgstr "left"
2623
 
2624
- #: ../includes/ot-functions-option-types.php:2573
2625
- #: ../includes/ot-functions-option-types.php:2627
2626
  msgid "No Tags Found"
2627
  msgstr "Märksõnu ei leitud"
2628
 
2629
- #: ../includes/ot-functions-option-types.php:2685
2630
- #: ../includes/ot-functions-option-types.php:2742
2631
  msgid "No Taxonomies Found"
2632
  msgstr "Taksonoomiaid ei leitud"
2633
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: OptionTree\n"
4
+ "POT-Creation-Date: 2015-03-30 18:37-0800\n"
5
+ "PO-Revision-Date: 2015-03-30 18:38-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"
136
 
137
  #: ../includes/ot-functions-admin.php:50 ../includes/ot-functions-admin.php:51
138
  #: ../includes/ot-functions-admin.php:169
139
+ #: ../includes/ot-functions-admin.php:193 ../includes/ot-functions.php:363
140
  msgid "Theme Options"
141
  msgstr "Teema seaded"
142
 
292
  msgid "The %s Colorpicker only allows valid hexadecimal or rgba values."
293
  msgstr "%s värvi valija lubab väärtuseid vaid kuueteistkümnendiksüsteemis."
294
 
295
+ #: ../includes/ot-functions-admin.php:846
296
  #: ../includes/ot-functions-docs-page.php:398
297
  #: ../includes/ot-functions-settings-page.php:170 ../ot-loader.php:782
298
  msgid "Send to OptionTree"
299
  msgstr "Saada OptionTree-le"
300
 
301
+ #: ../includes/ot-functions-admin.php:847
302
  #: ../includes/ot-functions-option-types.php:257
303
+ #: ../includes/ot-functions-option-types.php:3207
304
  msgid "Remove Media"
305
  msgstr "Eemalda meedia"
306
 
307
+ #: ../includes/ot-functions-admin.php:848
308
  msgid "Are you sure you want to reset back to the defaults?"
309
  msgstr "Kas olete kindel, et soovite taastada algseaded?"
310
 
311
+ #: ../includes/ot-functions-admin.php:849
312
  msgid "You can't remove this! But you can edit the values."
313
  msgstr "Te ei saa seda eemaldada! Väärtuste muutmine on lubatud."
314
 
315
+ #: ../includes/ot-functions-admin.php:850
316
  msgid "Are you sure you want to remove this?"
317
  msgstr "Kas olete kindel, et soovite seda eemaldada?"
318
 
319
+ #: ../includes/ot-functions-admin.php:851
320
  msgid "Are you sure you want to activate this layout?"
321
  msgstr "Kas olete kindel, et soovite seda paigutust aktiveerida?"
322
 
323
+ #: ../includes/ot-functions-admin.php:852
324
  msgid "Sorry, you can't have settings three levels deep."
325
  msgstr "Kahjuks ei saa sätteid määrata kolmanda taseme sügavusega."
326
 
327
+ #: ../includes/ot-functions-admin.php:853
328
  #: ../includes/ot-functions-option-types.php:1159
329
  msgid "Delete Gallery"
330
  msgstr "Kustuta galerii"
331
 
332
+ #: ../includes/ot-functions-admin.php:854
333
  #: ../includes/ot-functions-option-types.php:1160
334
  msgid "Edit Gallery"
335
  msgstr "Muuda galeriid"
336
 
337
+ #: ../includes/ot-functions-admin.php:855
338
  #: ../includes/ot-functions-option-types.php:1167
339
  msgid "Create Gallery"
340
  msgstr "Loo galerii"
341
 
342
+ #: ../includes/ot-functions-admin.php:856
343
  msgid "Are you sure you want to delete this Gallery?"
344
  msgstr "Kas olete kindel, et soovite seda galeriid kustutada?"
345
 
346
+ #: ../includes/ot-functions-admin.php:857
347
  msgid "Today"
348
  msgstr "Täna"
349
 
350
+ #: ../includes/ot-functions-admin.php:858
351
  msgid "Now"
352
  msgstr "Praegu"
353
 
354
+ #: ../includes/ot-functions-admin.php:859
355
  msgid "Close"
356
  msgstr "Sulge"
357
 
358
+ #: ../includes/ot-functions-admin.php:860
359
  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
 
368
+ #: ../includes/ot-functions-admin.php:929
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:5413
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:5453
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
  "Sisesta link profiilile või lehele sellel sotsiaalmeedia veebilehel. Ära "
715
  "unusta lisada lingi ette %s osa."
716
 
717
+ #: ../includes/ot-functions-admin.php:3703
718
  #, php-format
719
  msgid "Unable to write to file %s."
720
  msgstr ""
721
 
722
+ #: ../includes/ot-functions-admin.php:3973
723
  msgid "edit"
724
  msgstr "muuda"
725
 
726
+ #: ../includes/ot-functions-admin.php:3974
727
+ #: ../includes/ot-functions-admin.php:4042
728
+ #: ../includes/ot-functions-admin.php:4043
729
+ #: ../includes/ot-functions-admin.php:4205
730
+ #: ../includes/ot-functions-admin.php:4206
731
+ #: ../includes/ot-functions-admin.php:4271
732
+ #: ../includes/ot-functions-admin.php:4272
733
+ #: ../includes/ot-functions-admin.php:4399
734
+ #: ../includes/ot-functions-admin.php:4400
735
+ #: ../includes/ot-functions-admin.php:4552
736
+ #: ../includes/ot-functions-admin.php:4553
737
  msgid "Edit"
738
  msgstr "Muuda"
739
 
740
+ #: ../includes/ot-functions-admin.php:3976
741
+ #: ../includes/ot-functions-admin.php:3977
742
+ #: ../includes/ot-functions-admin.php:4045
743
+ #: ../includes/ot-functions-admin.php:4046
744
+ #: ../includes/ot-functions-admin.php:4208
745
+ #: ../includes/ot-functions-admin.php:4209
746
+ #: ../includes/ot-functions-admin.php:4274
747
+ #: ../includes/ot-functions-admin.php:4275
748
+ #: ../includes/ot-functions-admin.php:4333
749
+ #: ../includes/ot-functions-admin.php:4334
750
+ #: ../includes/ot-functions-admin.php:4402
751
+ #: ../includes/ot-functions-admin.php:4403
752
+ #: ../includes/ot-functions-admin.php:4555
753
+ #: ../includes/ot-functions-admin.php:4556
754
  msgid "Delete"
755
  msgstr "Kustuta"
756
 
757
+ #: ../includes/ot-functions-admin.php:3983
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:3991
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:4052
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:4060
782
+ #: ../includes/ot-functions-admin.php:4289
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:4068
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:4079
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:4087
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:4092
816
  msgid "Add Choice"
817
  msgstr "Lisa valik"
818
 
819
+ #: ../includes/ot-functions-admin.php:4098
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:4103
825
  #: ../includes/ot-functions-settings-page.php:93
826
  msgid "Add Setting"
827
  msgstr "Lisa säte"
828
 
829
+ #: ../includes/ot-functions-admin.php:4109
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:4117
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:4125
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:4133
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:4141
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:4149
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:4157
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:4165
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:4168
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:4169
916
  msgid "or"
917
  msgstr "või"
918
 
919
+ #: ../includes/ot-functions-admin.php:4215
920
  #: ../includes/ot-functions-docs-page.php:29
921
  msgid "Label"
922
  msgstr "Nimetus"
923
 
924
+ #: ../includes/ot-functions-admin.php:4225
925
  msgid "Value"
926
  msgstr "Väärtus"
927
 
928
+ #: ../includes/ot-functions-admin.php:4235
929
  msgid "Image Source (Radio Image only)"
930
  msgstr "Pildi allikas ( ainult pildiga raadiovaliku jaoks )"
931
 
932
+ #: ../includes/ot-functions-admin.php:4281
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:4297
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:4328
949
  msgid "Layout"
950
  msgstr "Paigutus"
951
 
952
+ #: ../includes/ot-functions-admin.php:4330
953
+ #: ../includes/ot-functions-admin.php:4331
954
  msgid "Activate"
955
  msgstr "Aktiveeri"
956
 
957
+ #: ../includes/ot-functions-admin.php:4367 ../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:4707
963
  msgid "New Layout"
964
  msgstr "Uus paigutus"
965
 
966
+ #: ../includes/ot-functions-admin.php:5462
967
  msgid "Link URL"
968
  msgstr "Viide"
969
 
970
+ #: ../includes/ot-functions-admin.php:5469
971
  msgid "Link Title"
972
  msgstr "Lingi pealkiri"
973
 
974
+ #: ../includes/ot-functions-admin.php:5499
975
  msgid "Quote"
976
  msgstr "Tsitaat"
977
 
978
+ #: ../includes/ot-functions-admin.php:5508
979
  msgid "Source Name (ex. author, singer, actor)"
980
  msgstr "Allika nimi (nt autor, laulja, näitleja)"
981
 
982
+ #: ../includes/ot-functions-admin.php:5515
983
  msgid "Source URL"
984
  msgstr "Allika URL"
985
 
986
+ #: ../includes/ot-functions-admin.php:5522
987
  msgid "Source Title (ex. book, song, movie)"
988
  msgstr "Allika pealkiri (nt raamat, laul, film)"
989
 
990
+ #: ../includes/ot-functions-admin.php:5529
991
  msgid "Source Date"
992
  msgstr "Allika kuupäev"
993
 
994
+ #: ../includes/ot-functions-admin.php:5559
995
  msgid "Video"
996
  msgstr "Video"
997
 
998
+ #: ../includes/ot-functions-admin.php:5568
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:5568
1010
+ #: ../includes/ot-functions-admin.php:5607
1011
  msgid "Wordpress Codex"
1012
  msgstr "Wordpress Codex"
1013
 
1014
+ #: ../includes/ot-functions-admin.php:5598
1015
  msgid "Audio"
1016
  msgstr "Audio"
1017
 
1018
+ #: ../includes/ot-functions-admin.php:5607
1019
  #, php-format
1020
  msgid ""
1021
  "Embed audio from services like SoundCloud and Rdio. You can find a list of "
2402
  msgstr "background-image"
2403
 
2404
  #: ../includes/ot-functions-option-types.php:241
2405
+ #: ../includes/ot-functions-option-types.php:3191
2406
  msgid "Add Media"
2407
  msgstr "Lisa meediat"
2408
 
2413
 
2414
  #: ../includes/ot-functions-option-types.php:327
2415
  #: ../includes/ot-functions-option-types.php:1065
2416
+ #: ../includes/ot-functions-option-types.php:1550
2417
+ #: ../includes/ot-functions-option-types.php:2495
2418
  msgid "unit"
2419
  msgstr "ühik"
2420
 
2445
 
2446
  #: ../includes/ot-functions-option-types.php:587
2447
  #: ../includes/ot-functions-option-types.php:870
2448
+ #: ../includes/ot-functions-option-types.php:1819
2449
+ #: ../includes/ot-functions-option-types.php:1930
2450
+ #: ../includes/ot-functions-option-types.php:2635
2451
+ #: ../includes/ot-functions-option-types.php:2750
2452
  msgid "Choose One"
2453
  msgstr "Valik üks"
2454
 
2455
  #: ../includes/ot-functions-option-types.php:818
2456
  #: ../includes/ot-functions-option-types.php:876
2457
+ #: ../includes/ot-functions-option-types.php:1881
2458
+ #: ../includes/ot-functions-option-types.php:1936
2459
  msgid "No Posts Found"
2460
  msgstr "Postitusi ei leitud"
2461
 
2502
  msgid "Focus"
2503
  msgstr "Fookus"
2504
 
2505
+ #: ../includes/ot-functions-option-types.php:1497
2506
+ #: ../includes/ot-functions-option-types.php:2235
2507
+ #: ../includes/ot-functions-option-types.php:2400
2508
  msgid "Add New"
2509
  msgstr "Lisa uus"
2510
 
2511
+ #: ../includes/ot-functions-option-types.php:1500
2512
+ #: ../includes/ot-functions-option-types.php:2238
2513
+ #: ../includes/ot-functions-option-types.php:2403
2514
  msgid "You can re-order with drag & drop, the order will update after saving."
2515
  msgstr ""
2516
  "Lohistades saab elemente ümber paigutada. Järjekord uueneb peale "
2517
  "salvestamist."
2518
 
2519
+ #: ../includes/ot-functions-option-types.php:1670
2520
  msgid "On"
2521
  msgstr "Sees"
2522
 
2523
+ #: ../includes/ot-functions-option-types.php:1692
2524
  msgid "Off"
2525
  msgstr "Väljas"
2526
 
2527
+ #: ../includes/ot-functions-option-types.php:1770
2528
+ #: ../includes/ot-functions-option-types.php:1825
2529
  msgid "No Pages Found"
2530
  msgstr "Lehekülgi ei leitud"
2531
 
2532
+ #: ../includes/ot-functions-option-types.php:2158
2533
  msgid "Choose Sidebar"
2534
  msgstr "Vali küljendusmenüü"
2535
 
2536
+ #: ../includes/ot-functions-option-types.php:2163
2537
  msgid "No Sidebars"
2538
  msgstr "Küljendusmenüüd puuduvad"
2539
 
2540
+ #: ../includes/ot-functions-option-types.php:2271
2541
  msgid "Facebook"
2542
  msgstr "Facebook"
2543
 
2544
+ #: ../includes/ot-functions-option-types.php:2276
2545
  msgid "Twitter"
2546
  msgstr "Twitter"
2547
 
2548
+ #: ../includes/ot-functions-option-types.php:2281
2549
  msgid "Google+"
2550
  msgstr "Google+"
2551
 
2552
+ #: ../includes/ot-functions-option-types.php:2286
2553
  msgid "LinkedIn"
2554
  msgstr "LinkedIn"
2555
 
2556
+ #: ../includes/ot-functions-option-types.php:2291
2557
  msgid "Pinterest"
2558
  msgstr "Pinterest"
2559
 
2560
+ #: ../includes/ot-functions-option-types.php:2296
2561
  msgid "Youtube"
2562
  msgstr "Youtube"
2563
 
2564
+ #: ../includes/ot-functions-option-types.php:2301
2565
  msgid "Dribbble"
2566
  msgstr "Dribbble"
2567
 
2568
+ #: ../includes/ot-functions-option-types.php:2306
2569
  msgid "Github"
2570
  msgstr "Github"
2571
 
2572
+ #: ../includes/ot-functions-option-types.php:2311
2573
  msgid "Forrst"
2574
  msgstr "Forrst"
2575
 
2576
+ #: ../includes/ot-functions-option-types.php:2316
2577
  msgid "Digg"
2578
  msgstr "Digg"
2579
 
2580
+ #: ../includes/ot-functions-option-types.php:2321
2581
  msgid "Delicious"
2582
  msgstr "Delicious"
2583
 
2584
+ #: ../includes/ot-functions-option-types.php:2326
2585
  msgid "Tumblr"
2586
  msgstr "Tumblr"
2587
 
2588
+ #: ../includes/ot-functions-option-types.php:2331
2589
  msgid "Skype"
2590
  msgstr "Skype"
2591
 
2592
+ #: ../includes/ot-functions-option-types.php:2336
2593
  msgid "SoundCloud"
2594
  msgstr "SoundCloud"
2595
 
2596
+ #: ../includes/ot-functions-option-types.php:2341
2597
  msgid "Vimeo"
2598
  msgstr "Vimeo"
2599
 
2600
+ #: ../includes/ot-functions-option-types.php:2346
2601
  msgid "Flickr"
2602
  msgstr "Flickr"
2603
 
2604
+ #: ../includes/ot-functions-option-types.php:2351
2605
  msgid "VK.com"
2606
  msgstr "VK.com"
2607
 
2608
+ #: ../includes/ot-functions-option-types.php:2457
2609
  msgid "top"
2610
  msgstr "top"
2611
 
2612
+ #: ../includes/ot-functions-option-types.php:2466
2613
  msgid "right"
2614
  msgstr "right"
2615
 
2616
+ #: ../includes/ot-functions-option-types.php:2475
2617
  msgid "bottom"
2618
  msgstr "bottom"
2619
 
2620
+ #: ../includes/ot-functions-option-types.php:2484
2621
  msgid "left"
2622
  msgstr "left"
2623
 
2624
+ #: ../includes/ot-functions-option-types.php:2586
2625
+ #: ../includes/ot-functions-option-types.php:2640
2626
  msgid "No Tags Found"
2627
  msgstr "Märksõnu ei leitud"
2628
 
2629
+ #: ../includes/ot-functions-option-types.php:2698
2630
+ #: ../includes/ot-functions-option-types.php:2755
2631
  msgid "No Taxonomies Found"
2632
  msgstr "Taksonoomiaid ei leitud"
2633
 
languages/option-tree.po CHANGED
@@ -1,15 +1,15 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: OptionTree\n"
4
- "POT-Creation-Date: 2015-02-13 19:31-0800\n"
5
- "PO-Revision-Date: 2015-02-13 19:31-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.4\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"
@@ -117,7 +117,7 @@ msgstr ""
117
 
118
  #: ../includes/ot-functions-admin.php:50 ../includes/ot-functions-admin.php:51
119
  #: ../includes/ot-functions-admin.php:169
120
- #: ../includes/ot-functions-admin.php:193 ../includes/ot-functions.php:361
121
  msgid "Theme Options"
122
  msgstr ""
123
 
@@ -270,553 +270,553 @@ msgstr ""
270
  msgid "The %s Colorpicker only allows valid hexadecimal or rgba values."
271
  msgstr ""
272
 
273
- #: ../includes/ot-functions-admin.php:841
274
  #: ../includes/ot-functions-docs-page.php:398
275
  #: ../includes/ot-functions-settings-page.php:170 ../ot-loader.php:782
276
  msgid "Send to OptionTree"
277
  msgstr ""
278
 
279
- #: ../includes/ot-functions-admin.php:842
280
  #: ../includes/ot-functions-option-types.php:257
281
- #: ../includes/ot-functions-option-types.php:3194
282
  msgid "Remove Media"
283
  msgstr ""
284
 
285
- #: ../includes/ot-functions-admin.php:843
286
  msgid "Are you sure you want to reset back to the defaults?"
287
  msgstr ""
288
 
289
- #: ../includes/ot-functions-admin.php:844
290
  msgid "You can't remove this! But you can edit the values."
291
  msgstr ""
292
 
293
- #: ../includes/ot-functions-admin.php:845
294
  msgid "Are you sure you want to remove this?"
295
  msgstr ""
296
 
297
- #: ../includes/ot-functions-admin.php:846
298
  msgid "Are you sure you want to activate this layout?"
299
  msgstr ""
300
 
301
- #: ../includes/ot-functions-admin.php:847
302
  msgid "Sorry, you can't have settings three levels deep."
303
  msgstr ""
304
 
305
- #: ../includes/ot-functions-admin.php:848
306
  #: ../includes/ot-functions-option-types.php:1159
307
  msgid "Delete Gallery"
308
  msgstr ""
309
 
310
- #: ../includes/ot-functions-admin.php:849
311
  #: ../includes/ot-functions-option-types.php:1160
312
  msgid "Edit Gallery"
313
  msgstr ""
314
 
315
- #: ../includes/ot-functions-admin.php:850
316
  #: ../includes/ot-functions-option-types.php:1167
317
  msgid "Create Gallery"
318
  msgstr ""
319
 
320
- #: ../includes/ot-functions-admin.php:851
321
  msgid "Are you sure you want to delete this Gallery?"
322
  msgstr ""
323
 
324
- #: ../includes/ot-functions-admin.php:852
325
  msgid "Today"
326
  msgstr ""
327
 
328
- #: ../includes/ot-functions-admin.php:853
329
  msgid "Now"
330
  msgstr ""
331
 
332
- #: ../includes/ot-functions-admin.php:854
333
  msgid "Close"
334
  msgstr ""
335
 
336
- #: ../includes/ot-functions-admin.php:855
337
  msgid "Featured Image"
338
  msgstr ""
339
 
340
- #: ../includes/ot-functions-admin.php:856
341
- #: ../includes/ot-functions-admin.php:3244
342
- #: ../includes/ot-functions-admin.php:3305
343
  msgid "Image"
344
  msgstr ""
345
 
346
- #: ../includes/ot-functions-admin.php:924
347
  msgid "Option Tree"
348
  msgstr ""
349
 
350
- #: ../includes/ot-functions-admin.php:1061
351
  msgid "General"
352
  msgstr ""
353
 
354
- #: ../includes/ot-functions-admin.php:1067
355
  msgid "Sample Text Field Label"
356
  msgstr ""
357
 
358
- #: ../includes/ot-functions-admin.php:1068
359
  msgid "Description for the sample text field."
360
  msgstr ""
361
 
362
- #: ../includes/ot-functions-admin.php:2310
363
  msgid "Settings updated."
364
  msgstr ""
365
 
366
- #: ../includes/ot-functions-admin.php:2314
367
  msgid "Settings could not be saved."
368
  msgstr ""
369
 
370
- #: ../includes/ot-functions-admin.php:2322
371
  msgid "Settings Imported."
372
  msgstr ""
373
 
374
- #: ../includes/ot-functions-admin.php:2326
375
  msgid "Settings could not be imported."
376
  msgstr ""
377
 
378
- #: ../includes/ot-functions-admin.php:2333
379
  msgid "Data Imported."
380
  msgstr ""
381
 
382
- #: ../includes/ot-functions-admin.php:2337
383
  msgid "Data could not be imported."
384
  msgstr ""
385
 
386
- #: ../includes/ot-functions-admin.php:2345
387
  msgid "Layouts Imported."
388
  msgstr ""
389
 
390
- #: ../includes/ot-functions-admin.php:2349
391
  msgid "Layouts could not be imported."
392
  msgstr ""
393
 
394
- #: ../includes/ot-functions-admin.php:2357
395
  msgid "Layouts Updated."
396
  msgstr ""
397
 
398
- #: ../includes/ot-functions-admin.php:2361
399
  msgid "Layouts could not be updated."
400
  msgstr ""
401
 
402
- #: ../includes/ot-functions-admin.php:2365
403
  msgid "Layouts have been deleted."
404
  msgstr ""
405
 
406
- #: ../includes/ot-functions-admin.php:2371
407
  msgid "Layout activated."
408
  msgstr ""
409
 
410
- #: ../includes/ot-functions-admin.php:2410
411
  #: ../includes/ot-functions-docs-page.php:110
412
  msgid "Background"
413
  msgstr ""
414
 
415
- #: ../includes/ot-functions-admin.php:2411
416
  #: ../includes/ot-functions-docs-page.php:113
417
  msgid "Border"
418
  msgstr ""
419
 
420
- #: ../includes/ot-functions-admin.php:2412
421
  #: ../includes/ot-functions-docs-page.php:116
422
  msgid "Box Shadow"
423
  msgstr ""
424
 
425
- #: ../includes/ot-functions-admin.php:2413
426
  #: ../includes/ot-functions-docs-page.php:119
427
  msgid "Category Checkbox"
428
  msgstr ""
429
 
430
- #: ../includes/ot-functions-admin.php:2414
431
  #: ../includes/ot-functions-docs-page.php:122
432
  msgid "Category Select"
433
  msgstr ""
434
 
435
- #: ../includes/ot-functions-admin.php:2415
436
  #: ../includes/ot-functions-docs-page.php:125
437
  msgid "Checkbox"
438
  msgstr ""
439
 
440
- #: ../includes/ot-functions-admin.php:2416
441
  #: ../includes/ot-functions-docs-page.php:128
442
  msgid "Colorpicker"
443
  msgstr ""
444
 
445
- #: ../includes/ot-functions-admin.php:2417
446
  #: ../includes/ot-functions-docs-page.php:131
447
  msgid "Colorpicker Opacity"
448
  msgstr ""
449
 
450
- #: ../includes/ot-functions-admin.php:2418
451
  #: ../includes/ot-functions-docs-page.php:134
452
  msgid "CSS"
453
  msgstr ""
454
 
455
- #: ../includes/ot-functions-admin.php:2419
456
  #: ../includes/ot-functions-docs-page.php:153
457
  msgid "Custom Post Type Checkbox"
458
  msgstr ""
459
 
460
- #: ../includes/ot-functions-admin.php:2420
461
  #: ../includes/ot-functions-docs-page.php:156
462
  msgid "Custom Post Type Select"
463
  msgstr ""
464
 
465
- #: ../includes/ot-functions-admin.php:2421
466
  #: ../includes/ot-functions-docs-page.php:159
467
  msgid "Date Picker"
468
  msgstr ""
469
 
470
- #: ../includes/ot-functions-admin.php:2422
471
  #: ../includes/ot-functions-docs-page.php:162
472
  msgid "Date Time Picker"
473
  msgstr ""
474
 
475
- #: ../includes/ot-functions-admin.php:2423
476
  #: ../includes/ot-functions-docs-page.php:165
477
  msgid "Dimension"
478
  msgstr ""
479
 
480
- #: ../includes/ot-functions-admin.php:2424
481
- #: ../includes/ot-functions-admin.php:5399
482
  #: ../includes/ot-functions-docs-page.php:168
483
  msgid "Gallery"
484
  msgstr ""
485
 
486
- #: ../includes/ot-functions-admin.php:2425
487
  #: ../includes/ot-functions-docs-page.php:171
488
  msgid "Google Fonts"
489
  msgstr ""
490
 
491
- #: ../includes/ot-functions-admin.php:2426
492
  #: ../includes/ot-functions-docs-page.php:174
493
  msgid "JavaScript"
494
  msgstr ""
495
 
496
- #: ../includes/ot-functions-admin.php:2427
497
  #: ../includes/ot-functions-docs-page.php:177
498
  msgid "Link Color"
499
  msgstr ""
500
 
501
- #: ../includes/ot-functions-admin.php:2428
502
  #: ../includes/ot-functions-docs-page.php:180
503
  msgid "List Item"
504
  msgstr ""
505
 
506
- #: ../includes/ot-functions-admin.php:2429
507
  #: ../includes/ot-functions-docs-page.php:183
508
  msgid "Measurement"
509
  msgstr ""
510
 
511
- #: ../includes/ot-functions-admin.php:2430
512
  #: ../includes/ot-functions-docs-page.php:214
513
  msgid "Numeric Slider"
514
  msgstr ""
515
 
516
- #: ../includes/ot-functions-admin.php:2431
517
  #: ../includes/ot-functions-docs-page.php:217
518
  msgid "On/Off"
519
  msgstr ""
520
 
521
- #: ../includes/ot-functions-admin.php:2432
522
  #: ../includes/ot-functions-docs-page.php:220
523
  msgid "Page Checkbox"
524
  msgstr ""
525
 
526
- #: ../includes/ot-functions-admin.php:2433
527
  #: ../includes/ot-functions-docs-page.php:223
528
  msgid "Page Select"
529
  msgstr ""
530
 
531
- #: ../includes/ot-functions-admin.php:2434
532
  #: ../includes/ot-functions-docs-page.php:226
533
  msgid "Post Checkbox"
534
  msgstr ""
535
 
536
- #: ../includes/ot-functions-admin.php:2435
537
  #: ../includes/ot-functions-docs-page.php:229
538
  msgid "Post Select"
539
  msgstr ""
540
 
541
- #: ../includes/ot-functions-admin.php:2436
542
  #: ../includes/ot-functions-docs-page.php:232
543
  msgid "Radio"
544
  msgstr ""
545
 
546
- #: ../includes/ot-functions-admin.php:2437
547
  #: ../includes/ot-functions-docs-page.php:235
548
  msgid "Radio Image"
549
  msgstr ""
550
 
551
- #: ../includes/ot-functions-admin.php:2438
552
  #: ../includes/ot-functions-docs-page.php:262
553
  msgid "Select"
554
  msgstr ""
555
 
556
- #: ../includes/ot-functions-admin.php:2439
557
  #: ../includes/ot-functions-docs-page.php:265
558
  msgid "Sidebar Select"
559
  msgstr ""
560
 
561
- #: ../includes/ot-functions-admin.php:2440
562
  #: ../includes/ot-functions-docs-page.php:269
563
  msgid "Slider"
564
  msgstr ""
565
 
566
- #: ../includes/ot-functions-admin.php:2441
567
  #: ../includes/ot-functions-docs-page.php:272
568
  msgid "Social Links"
569
  msgstr ""
570
 
571
- #: ../includes/ot-functions-admin.php:2442
572
  #: ../includes/ot-functions-docs-page.php:275
573
  msgid "Spacing"
574
  msgstr ""
575
 
576
- #: ../includes/ot-functions-admin.php:2443
577
  #: ../includes/ot-functions-docs-page.php:278
578
  msgid "Tab"
579
  msgstr ""
580
 
581
- #: ../includes/ot-functions-admin.php:2444
582
  #: ../includes/ot-functions-docs-page.php:281
583
  msgid "Tag Checkbox"
584
  msgstr ""
585
 
586
- #: ../includes/ot-functions-admin.php:2445
587
  #: ../includes/ot-functions-docs-page.php:284
588
  msgid "Tag Select"
589
  msgstr ""
590
 
591
- #: ../includes/ot-functions-admin.php:2446
592
  #: ../includes/ot-functions-docs-page.php:287
593
  msgid "Taxonomy Checkbox"
594
  msgstr ""
595
 
596
- #: ../includes/ot-functions-admin.php:2447
597
  #: ../includes/ot-functions-docs-page.php:290
598
  msgid "Taxonomy Select"
599
  msgstr ""
600
 
601
- #: ../includes/ot-functions-admin.php:2448
602
  #: ../includes/ot-functions-docs-page.php:293
603
  msgid "Text"
604
  msgstr ""
605
 
606
- #: ../includes/ot-functions-admin.php:2449
607
  #: ../includes/ot-functions-docs-page.php:296
608
  msgid "Textarea"
609
  msgstr ""
610
 
611
- #: ../includes/ot-functions-admin.php:2450
612
  #: ../includes/ot-functions-docs-page.php:355
613
  msgid "Textarea Simple"
614
  msgstr ""
615
 
616
- #: ../includes/ot-functions-admin.php:2451
617
  #: ../includes/ot-functions-docs-page.php:371
618
  msgid "Textblock"
619
  msgstr ""
620
 
621
- #: ../includes/ot-functions-admin.php:2452
622
  #: ../includes/ot-functions-docs-page.php:374
623
  msgid "Textblock Titled"
624
  msgstr ""
625
 
626
- #: ../includes/ot-functions-admin.php:2453
627
  #: ../includes/ot-functions-docs-page.php:377
628
  msgid "Typography"
629
  msgstr ""
630
 
631
- #: ../includes/ot-functions-admin.php:2454
632
  #: ../includes/ot-functions-docs-page.php:397
633
  msgid "Upload"
634
  msgstr ""
635
 
636
- #: ../includes/ot-functions-admin.php:3189
637
  msgid "Left Sidebar"
638
  msgstr ""
639
 
640
- #: ../includes/ot-functions-admin.php:3194
641
  msgid "Right Sidebar"
642
  msgstr ""
643
 
644
- #: ../includes/ot-functions-admin.php:3199
645
  msgid "Full Width (no sidebar)"
646
  msgstr ""
647
 
648
- #: ../includes/ot-functions-admin.php:3204
649
  msgid "Dual Sidebar"
650
  msgstr ""
651
 
652
- #: ../includes/ot-functions-admin.php:3209
653
  msgid "Left Dual Sidebar"
654
  msgstr ""
655
 
656
- #: ../includes/ot-functions-admin.php:3214
657
  msgid "Right Dual Sidebar"
658
  msgstr ""
659
 
660
- #: ../includes/ot-functions-admin.php:3255
661
- #: ../includes/ot-functions-admin.php:3311
662
- #: ../includes/ot-functions-admin.php:5439
663
  msgid "Link"
664
  msgstr ""
665
 
666
- #: ../includes/ot-functions-admin.php:3266
667
- #: ../includes/ot-functions-admin.php:3317
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:3381
675
  msgid "Name"
676
  msgstr ""
677
 
678
- #: ../includes/ot-functions-admin.php:3382
679
  msgid "Enter the name of the social website."
680
  msgstr ""
681
 
682
- #: ../includes/ot-functions-admin.php:3390
683
  msgid "Enter the text shown in the title attribute of the link."
684
  msgstr ""
685
 
686
- #: ../includes/ot-functions-admin.php:3396
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:3689
694
  #, php-format
695
  msgid "Unable to write to file %s."
696
  msgstr ""
697
 
698
- #: ../includes/ot-functions-admin.php:3959
699
  msgid "edit"
700
  msgstr ""
701
 
702
- #: ../includes/ot-functions-admin.php:3960
703
- #: ../includes/ot-functions-admin.php:4028
704
- #: ../includes/ot-functions-admin.php:4029
705
- #: ../includes/ot-functions-admin.php:4191
706
- #: ../includes/ot-functions-admin.php:4192
707
- #: ../includes/ot-functions-admin.php:4257
708
- #: ../includes/ot-functions-admin.php:4258
709
- #: ../includes/ot-functions-admin.php:4385
710
- #: ../includes/ot-functions-admin.php:4386
711
- #: ../includes/ot-functions-admin.php:4538
712
- #: ../includes/ot-functions-admin.php:4539
713
  msgid "Edit"
714
  msgstr ""
715
 
716
- #: ../includes/ot-functions-admin.php:3962
717
- #: ../includes/ot-functions-admin.php:3963
718
- #: ../includes/ot-functions-admin.php:4031
719
- #: ../includes/ot-functions-admin.php:4032
720
- #: ../includes/ot-functions-admin.php:4194
721
- #: ../includes/ot-functions-admin.php:4195
722
- #: ../includes/ot-functions-admin.php:4260
723
- #: ../includes/ot-functions-admin.php:4261
724
- #: ../includes/ot-functions-admin.php:4319
725
- #: ../includes/ot-functions-admin.php:4320
726
- #: ../includes/ot-functions-admin.php:4388
727
- #: ../includes/ot-functions-admin.php:4389
728
- #: ../includes/ot-functions-admin.php:4541
729
- #: ../includes/ot-functions-admin.php:4542
730
  msgid "Delete"
731
  msgstr ""
732
 
733
- #: ../includes/ot-functions-admin.php:3969
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:3977
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:4038
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:4046
752
- #: ../includes/ot-functions-admin.php:4275
753
  msgid ""
754
  "<strong>ID</strong>: A unique lower case alphanumeric string, underscores "
755
  "allowed."
756
  msgstr ""
757
 
758
- #: ../includes/ot-functions-admin.php:4054
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:4065
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:4073
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:4078
778
  msgid "Add Choice"
779
  msgstr ""
780
 
781
- #: ../includes/ot-functions-admin.php:4084
782
  msgid ""
783
  "<strong>Settings</strong>: This will only affect the List Item option type."
784
  msgstr ""
785
 
786
- #: ../includes/ot-functions-admin.php:4089
787
  #: ../includes/ot-functions-settings-page.php:93
788
  msgid "Add Setting"
789
  msgstr ""
790
 
791
- #: ../includes/ot-functions-admin.php:4095
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:4103
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:4111
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:4119
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:4127
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:4135
829
  msgid "<strong>CSS Class</strong>: Add and optional class to this option type."
830
  msgstr ""
831
 
832
- #: ../includes/ot-functions-admin.php:4143
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:4151
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:4154
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:4155
854
  msgid "or"
855
  msgstr ""
856
 
857
- #: ../includes/ot-functions-admin.php:4201
858
  #: ../includes/ot-functions-docs-page.php:29
859
  msgid "Label"
860
  msgstr ""
861
 
862
- #: ../includes/ot-functions-admin.php:4211
863
  msgid "Value"
864
  msgstr ""
865
 
866
- #: ../includes/ot-functions-admin.php:4221
867
  msgid "Image Source (Radio Image only)"
868
  msgstr ""
869
 
870
- #: ../includes/ot-functions-admin.php:4267
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:4283
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:4314
883
  msgid "Layout"
884
  msgstr ""
885
 
886
- #: ../includes/ot-functions-admin.php:4316
887
- #: ../includes/ot-functions-admin.php:4317
888
  msgid "Activate"
889
  msgstr ""
890
 
891
- #: ../includes/ot-functions-admin.php:4353 ../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:4693
897
  msgid "New Layout"
898
  msgstr ""
899
 
900
- #: ../includes/ot-functions-admin.php:5448
901
  msgid "Link URL"
902
  msgstr ""
903
 
904
- #: ../includes/ot-functions-admin.php:5455
905
  msgid "Link Title"
906
  msgstr ""
907
 
908
- #: ../includes/ot-functions-admin.php:5485
909
  msgid "Quote"
910
  msgstr ""
911
 
912
- #: ../includes/ot-functions-admin.php:5494
913
  msgid "Source Name (ex. author, singer, actor)"
914
  msgstr ""
915
 
916
- #: ../includes/ot-functions-admin.php:5501
917
  msgid "Source URL"
918
  msgstr ""
919
 
920
- #: ../includes/ot-functions-admin.php:5508
921
  msgid "Source Title (ex. book, song, movie)"
922
  msgstr ""
923
 
924
- #: ../includes/ot-functions-admin.php:5515
925
  msgid "Source Date"
926
  msgstr ""
927
 
928
- #: ../includes/ot-functions-admin.php:5545
929
  msgid "Video"
930
  msgstr ""
931
 
932
- #: ../includes/ot-functions-admin.php:5554
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:5554
941
- #: ../includes/ot-functions-admin.php:5593
942
  msgid "Wordpress Codex"
943
  msgstr ""
944
 
945
- #: ../includes/ot-functions-admin.php:5584
946
  msgid "Audio"
947
  msgstr ""
948
 
949
- #: ../includes/ot-functions-admin.php:5593
950
  #, php-format
951
  msgid ""
952
  "Embed audio from services like SoundCloud and Rdio. You can find a list of "
@@ -2010,7 +2010,7 @@ msgid "background-image"
2010
  msgstr ""
2011
 
2012
  #: ../includes/ot-functions-option-types.php:241
2013
- #: ../includes/ot-functions-option-types.php:3178
2014
  msgid "Add Media"
2015
  msgstr ""
2016
 
@@ -2021,8 +2021,8 @@ msgstr ""
2021
 
2022
  #: ../includes/ot-functions-option-types.php:327
2023
  #: ../includes/ot-functions-option-types.php:1065
2024
- #: ../includes/ot-functions-option-types.php:1537
2025
- #: ../includes/ot-functions-option-types.php:2482
2026
  msgid "unit"
2027
  msgstr ""
2028
 
@@ -2053,17 +2053,17 @@ msgstr ""
2053
 
2054
  #: ../includes/ot-functions-option-types.php:587
2055
  #: ../includes/ot-functions-option-types.php:870
2056
- #: ../includes/ot-functions-option-types.php:1806
2057
- #: ../includes/ot-functions-option-types.php:1917
2058
- #: ../includes/ot-functions-option-types.php:2622
2059
- #: ../includes/ot-functions-option-types.php:2737
2060
  msgid "Choose One"
2061
  msgstr ""
2062
 
2063
  #: ../includes/ot-functions-option-types.php:818
2064
  #: ../includes/ot-functions-option-types.php:876
2065
- #: ../includes/ot-functions-option-types.php:1868
2066
- #: ../includes/ot-functions-option-types.php:1923
2067
  msgid "No Posts Found"
2068
  msgstr ""
2069
 
@@ -2110,130 +2110,130 @@ msgctxt "color picker"
2110
  msgid "Focus"
2111
  msgstr ""
2112
 
2113
- #: ../includes/ot-functions-option-types.php:1485
2114
- #: ../includes/ot-functions-option-types.php:2222
2115
- #: ../includes/ot-functions-option-types.php:2387
2116
  msgid "Add New"
2117
  msgstr ""
2118
 
2119
- #: ../includes/ot-functions-option-types.php:1488
2120
- #: ../includes/ot-functions-option-types.php:2225
2121
- #: ../includes/ot-functions-option-types.php:2390
2122
  msgid "You can re-order with drag & drop, the order will update after saving."
2123
  msgstr ""
2124
 
2125
- #: ../includes/ot-functions-option-types.php:1657
2126
  msgid "On"
2127
  msgstr ""
2128
 
2129
- #: ../includes/ot-functions-option-types.php:1679
2130
  msgid "Off"
2131
  msgstr ""
2132
 
2133
- #: ../includes/ot-functions-option-types.php:1757
2134
- #: ../includes/ot-functions-option-types.php:1812
2135
  msgid "No Pages Found"
2136
  msgstr ""
2137
 
2138
- #: ../includes/ot-functions-option-types.php:2145
2139
  msgid "Choose Sidebar"
2140
  msgstr ""
2141
 
2142
- #: ../includes/ot-functions-option-types.php:2150
2143
  msgid "No Sidebars"
2144
  msgstr ""
2145
 
2146
- #: ../includes/ot-functions-option-types.php:2258
2147
  msgid "Facebook"
2148
  msgstr ""
2149
 
2150
- #: ../includes/ot-functions-option-types.php:2263
2151
  msgid "Twitter"
2152
  msgstr ""
2153
 
2154
- #: ../includes/ot-functions-option-types.php:2268
2155
  msgid "Google+"
2156
  msgstr ""
2157
 
2158
- #: ../includes/ot-functions-option-types.php:2273
2159
  msgid "LinkedIn"
2160
  msgstr ""
2161
 
2162
- #: ../includes/ot-functions-option-types.php:2278
2163
  msgid "Pinterest"
2164
  msgstr ""
2165
 
2166
- #: ../includes/ot-functions-option-types.php:2283
2167
  msgid "Youtube"
2168
  msgstr ""
2169
 
2170
- #: ../includes/ot-functions-option-types.php:2288
2171
  msgid "Dribbble"
2172
  msgstr ""
2173
 
2174
- #: ../includes/ot-functions-option-types.php:2293
2175
  msgid "Github"
2176
  msgstr ""
2177
 
2178
- #: ../includes/ot-functions-option-types.php:2298
2179
  msgid "Forrst"
2180
  msgstr ""
2181
 
2182
- #: ../includes/ot-functions-option-types.php:2303
2183
  msgid "Digg"
2184
  msgstr ""
2185
 
2186
- #: ../includes/ot-functions-option-types.php:2308
2187
  msgid "Delicious"
2188
  msgstr ""
2189
 
2190
- #: ../includes/ot-functions-option-types.php:2313
2191
  msgid "Tumblr"
2192
  msgstr ""
2193
 
2194
- #: ../includes/ot-functions-option-types.php:2318
2195
  msgid "Skype"
2196
  msgstr ""
2197
 
2198
- #: ../includes/ot-functions-option-types.php:2323
2199
  msgid "SoundCloud"
2200
  msgstr ""
2201
 
2202
- #: ../includes/ot-functions-option-types.php:2328
2203
  msgid "Vimeo"
2204
  msgstr ""
2205
 
2206
- #: ../includes/ot-functions-option-types.php:2333
2207
  msgid "Flickr"
2208
  msgstr ""
2209
 
2210
- #: ../includes/ot-functions-option-types.php:2338
2211
  msgid "VK.com"
2212
  msgstr ""
2213
 
2214
- #: ../includes/ot-functions-option-types.php:2444
2215
  msgid "top"
2216
  msgstr ""
2217
 
2218
- #: ../includes/ot-functions-option-types.php:2453
2219
  msgid "right"
2220
  msgstr ""
2221
 
2222
- #: ../includes/ot-functions-option-types.php:2462
2223
  msgid "bottom"
2224
  msgstr ""
2225
 
2226
- #: ../includes/ot-functions-option-types.php:2471
2227
  msgid "left"
2228
  msgstr ""
2229
 
2230
- #: ../includes/ot-functions-option-types.php:2573
2231
- #: ../includes/ot-functions-option-types.php:2627
2232
  msgid "No Tags Found"
2233
  msgstr ""
2234
 
2235
- #: ../includes/ot-functions-option-types.php:2685
2236
- #: ../includes/ot-functions-option-types.php:2742
2237
  msgid "No Taxonomies Found"
2238
  msgstr ""
2239
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: OptionTree\n"
4
+ "POT-Creation-Date: 2015-03-30 18:36-0800\n"
5
+ "PO-Revision-Date: 2015-03-30 18:37-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"
117
 
118
  #: ../includes/ot-functions-admin.php:50 ../includes/ot-functions-admin.php:51
119
  #: ../includes/ot-functions-admin.php:169
120
+ #: ../includes/ot-functions-admin.php:193 ../includes/ot-functions.php:363
121
  msgid "Theme Options"
122
  msgstr ""
123
 
270
  msgid "The %s Colorpicker only allows valid hexadecimal or rgba values."
271
  msgstr ""
272
 
273
+ #: ../includes/ot-functions-admin.php:846
274
  #: ../includes/ot-functions-docs-page.php:398
275
  #: ../includes/ot-functions-settings-page.php:170 ../ot-loader.php:782
276
  msgid "Send to OptionTree"
277
  msgstr ""
278
 
279
+ #: ../includes/ot-functions-admin.php:847
280
  #: ../includes/ot-functions-option-types.php:257
281
+ #: ../includes/ot-functions-option-types.php:3207
282
  msgid "Remove Media"
283
  msgstr ""
284
 
285
+ #: ../includes/ot-functions-admin.php:848
286
  msgid "Are you sure you want to reset back to the defaults?"
287
  msgstr ""
288
 
289
+ #: ../includes/ot-functions-admin.php:849
290
  msgid "You can't remove this! But you can edit the values."
291
  msgstr ""
292
 
293
+ #: ../includes/ot-functions-admin.php:850
294
  msgid "Are you sure you want to remove this?"
295
  msgstr ""
296
 
297
+ #: ../includes/ot-functions-admin.php:851
298
  msgid "Are you sure you want to activate this layout?"
299
  msgstr ""
300
 
301
+ #: ../includes/ot-functions-admin.php:852
302
  msgid "Sorry, you can't have settings three levels deep."
303
  msgstr ""
304
 
305
+ #: ../includes/ot-functions-admin.php:853
306
  #: ../includes/ot-functions-option-types.php:1159
307
  msgid "Delete Gallery"
308
  msgstr ""
309
 
310
+ #: ../includes/ot-functions-admin.php:854
311
  #: ../includes/ot-functions-option-types.php:1160
312
  msgid "Edit Gallery"
313
  msgstr ""
314
 
315
+ #: ../includes/ot-functions-admin.php:855
316
  #: ../includes/ot-functions-option-types.php:1167
317
  msgid "Create Gallery"
318
  msgstr ""
319
 
320
+ #: ../includes/ot-functions-admin.php:856
321
  msgid "Are you sure you want to delete this Gallery?"
322
  msgstr ""
323
 
324
+ #: ../includes/ot-functions-admin.php:857
325
  msgid "Today"
326
  msgstr ""
327
 
328
+ #: ../includes/ot-functions-admin.php:858
329
  msgid "Now"
330
  msgstr ""
331
 
332
+ #: ../includes/ot-functions-admin.php:859
333
  msgid "Close"
334
  msgstr ""
335
 
336
+ #: ../includes/ot-functions-admin.php:860
337
  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
 
346
+ #: ../includes/ot-functions-admin.php:929
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:5413
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:5453
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:3703
694
  #, php-format
695
  msgid "Unable to write to file %s."
696
  msgstr ""
697
 
698
+ #: ../includes/ot-functions-admin.php:3973
699
  msgid "edit"
700
  msgstr ""
701
 
702
+ #: ../includes/ot-functions-admin.php:3974
703
+ #: ../includes/ot-functions-admin.php:4042
704
+ #: ../includes/ot-functions-admin.php:4043
705
+ #: ../includes/ot-functions-admin.php:4205
706
+ #: ../includes/ot-functions-admin.php:4206
707
+ #: ../includes/ot-functions-admin.php:4271
708
+ #: ../includes/ot-functions-admin.php:4272
709
+ #: ../includes/ot-functions-admin.php:4399
710
+ #: ../includes/ot-functions-admin.php:4400
711
+ #: ../includes/ot-functions-admin.php:4552
712
+ #: ../includes/ot-functions-admin.php:4553
713
  msgid "Edit"
714
  msgstr ""
715
 
716
+ #: ../includes/ot-functions-admin.php:3976
717
+ #: ../includes/ot-functions-admin.php:3977
718
+ #: ../includes/ot-functions-admin.php:4045
719
+ #: ../includes/ot-functions-admin.php:4046
720
+ #: ../includes/ot-functions-admin.php:4208
721
+ #: ../includes/ot-functions-admin.php:4209
722
+ #: ../includes/ot-functions-admin.php:4274
723
+ #: ../includes/ot-functions-admin.php:4275
724
+ #: ../includes/ot-functions-admin.php:4333
725
+ #: ../includes/ot-functions-admin.php:4334
726
+ #: ../includes/ot-functions-admin.php:4402
727
+ #: ../includes/ot-functions-admin.php:4403
728
+ #: ../includes/ot-functions-admin.php:4555
729
+ #: ../includes/ot-functions-admin.php:4556
730
  msgid "Delete"
731
  msgstr ""
732
 
733
+ #: ../includes/ot-functions-admin.php:3983
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:3991
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:4052
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:4060
752
+ #: ../includes/ot-functions-admin.php:4289
753
  msgid ""
754
  "<strong>ID</strong>: A unique lower case alphanumeric string, underscores "
755
  "allowed."
756
  msgstr ""
757
 
758
+ #: ../includes/ot-functions-admin.php:4068
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:4079
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:4087
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:4092
778
  msgid "Add Choice"
779
  msgstr ""
780
 
781
+ #: ../includes/ot-functions-admin.php:4098
782
  msgid ""
783
  "<strong>Settings</strong>: This will only affect the List Item option type."
784
  msgstr ""
785
 
786
+ #: ../includes/ot-functions-admin.php:4103
787
  #: ../includes/ot-functions-settings-page.php:93
788
  msgid "Add Setting"
789
  msgstr ""
790
 
791
+ #: ../includes/ot-functions-admin.php:4109
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:4117
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:4125
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:4133
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:4141
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:4149
829
  msgid "<strong>CSS Class</strong>: Add and optional class to this option type."
830
  msgstr ""
831
 
832
+ #: ../includes/ot-functions-admin.php:4157
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:4165
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:4168
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:4169
854
  msgid "or"
855
  msgstr ""
856
 
857
+ #: ../includes/ot-functions-admin.php:4215
858
  #: ../includes/ot-functions-docs-page.php:29
859
  msgid "Label"
860
  msgstr ""
861
 
862
+ #: ../includes/ot-functions-admin.php:4225
863
  msgid "Value"
864
  msgstr ""
865
 
866
+ #: ../includes/ot-functions-admin.php:4235
867
  msgid "Image Source (Radio Image only)"
868
  msgstr ""
869
 
870
+ #: ../includes/ot-functions-admin.php:4281
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:4297
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:4328
883
  msgid "Layout"
884
  msgstr ""
885
 
886
+ #: ../includes/ot-functions-admin.php:4330
887
+ #: ../includes/ot-functions-admin.php:4331
888
  msgid "Activate"
889
  msgstr ""
890
 
891
+ #: ../includes/ot-functions-admin.php:4367 ../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:4707
897
  msgid "New Layout"
898
  msgstr ""
899
 
900
+ #: ../includes/ot-functions-admin.php:5462
901
  msgid "Link URL"
902
  msgstr ""
903
 
904
+ #: ../includes/ot-functions-admin.php:5469
905
  msgid "Link Title"
906
  msgstr ""
907
 
908
+ #: ../includes/ot-functions-admin.php:5499
909
  msgid "Quote"
910
  msgstr ""
911
 
912
+ #: ../includes/ot-functions-admin.php:5508
913
  msgid "Source Name (ex. author, singer, actor)"
914
  msgstr ""
915
 
916
+ #: ../includes/ot-functions-admin.php:5515
917
  msgid "Source URL"
918
  msgstr ""
919
 
920
+ #: ../includes/ot-functions-admin.php:5522
921
  msgid "Source Title (ex. book, song, movie)"
922
  msgstr ""
923
 
924
+ #: ../includes/ot-functions-admin.php:5529
925
  msgid "Source Date"
926
  msgstr ""
927
 
928
+ #: ../includes/ot-functions-admin.php:5559
929
  msgid "Video"
930
  msgstr ""
931
 
932
+ #: ../includes/ot-functions-admin.php:5568
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:5568
941
+ #: ../includes/ot-functions-admin.php:5607
942
  msgid "Wordpress Codex"
943
  msgstr ""
944
 
945
+ #: ../includes/ot-functions-admin.php:5598
946
  msgid "Audio"
947
  msgstr ""
948
 
949
+ #: ../includes/ot-functions-admin.php:5607
950
  #, php-format
951
  msgid ""
952
  "Embed audio from services like SoundCloud and Rdio. You can find a list of "
2010
  msgstr ""
2011
 
2012
  #: ../includes/ot-functions-option-types.php:241
2013
+ #: ../includes/ot-functions-option-types.php:3191
2014
  msgid "Add Media"
2015
  msgstr ""
2016
 
2021
 
2022
  #: ../includes/ot-functions-option-types.php:327
2023
  #: ../includes/ot-functions-option-types.php:1065
2024
+ #: ../includes/ot-functions-option-types.php:1550
2025
+ #: ../includes/ot-functions-option-types.php:2495
2026
  msgid "unit"
2027
  msgstr ""
2028
 
2053
 
2054
  #: ../includes/ot-functions-option-types.php:587
2055
  #: ../includes/ot-functions-option-types.php:870
2056
+ #: ../includes/ot-functions-option-types.php:1819
2057
+ #: ../includes/ot-functions-option-types.php:1930
2058
+ #: ../includes/ot-functions-option-types.php:2635
2059
+ #: ../includes/ot-functions-option-types.php:2750
2060
  msgid "Choose One"
2061
  msgstr ""
2062
 
2063
  #: ../includes/ot-functions-option-types.php:818
2064
  #: ../includes/ot-functions-option-types.php:876
2065
+ #: ../includes/ot-functions-option-types.php:1881
2066
+ #: ../includes/ot-functions-option-types.php:1936
2067
  msgid "No Posts Found"
2068
  msgstr ""
2069
 
2110
  msgid "Focus"
2111
  msgstr ""
2112
 
2113
+ #: ../includes/ot-functions-option-types.php:1497
2114
+ #: ../includes/ot-functions-option-types.php:2235
2115
+ #: ../includes/ot-functions-option-types.php:2400
2116
  msgid "Add New"
2117
  msgstr ""
2118
 
2119
+ #: ../includes/ot-functions-option-types.php:1500
2120
+ #: ../includes/ot-functions-option-types.php:2238
2121
+ #: ../includes/ot-functions-option-types.php:2403
2122
  msgid "You can re-order with drag & drop, the order will update after saving."
2123
  msgstr ""
2124
 
2125
+ #: ../includes/ot-functions-option-types.php:1670
2126
  msgid "On"
2127
  msgstr ""
2128
 
2129
+ #: ../includes/ot-functions-option-types.php:1692
2130
  msgid "Off"
2131
  msgstr ""
2132
 
2133
+ #: ../includes/ot-functions-option-types.php:1770
2134
+ #: ../includes/ot-functions-option-types.php:1825
2135
  msgid "No Pages Found"
2136
  msgstr ""
2137
 
2138
+ #: ../includes/ot-functions-option-types.php:2158
2139
  msgid "Choose Sidebar"
2140
  msgstr ""
2141
 
2142
+ #: ../includes/ot-functions-option-types.php:2163
2143
  msgid "No Sidebars"
2144
  msgstr ""
2145
 
2146
+ #: ../includes/ot-functions-option-types.php:2271
2147
  msgid "Facebook"
2148
  msgstr ""
2149
 
2150
+ #: ../includes/ot-functions-option-types.php:2276
2151
  msgid "Twitter"
2152
  msgstr ""
2153
 
2154
+ #: ../includes/ot-functions-option-types.php:2281
2155
  msgid "Google+"
2156
  msgstr ""
2157
 
2158
+ #: ../includes/ot-functions-option-types.php:2286
2159
  msgid "LinkedIn"
2160
  msgstr ""
2161
 
2162
+ #: ../includes/ot-functions-option-types.php:2291
2163
  msgid "Pinterest"
2164
  msgstr ""
2165
 
2166
+ #: ../includes/ot-functions-option-types.php:2296
2167
  msgid "Youtube"
2168
  msgstr ""
2169
 
2170
+ #: ../includes/ot-functions-option-types.php:2301
2171
  msgid "Dribbble"
2172
  msgstr ""
2173
 
2174
+ #: ../includes/ot-functions-option-types.php:2306
2175
  msgid "Github"
2176
  msgstr ""
2177
 
2178
+ #: ../includes/ot-functions-option-types.php:2311
2179
  msgid "Forrst"
2180
  msgstr ""
2181
 
2182
+ #: ../includes/ot-functions-option-types.php:2316
2183
  msgid "Digg"
2184
  msgstr ""
2185
 
2186
+ #: ../includes/ot-functions-option-types.php:2321
2187
  msgid "Delicious"
2188
  msgstr ""
2189
 
2190
+ #: ../includes/ot-functions-option-types.php:2326
2191
  msgid "Tumblr"
2192
  msgstr ""
2193
 
2194
+ #: ../includes/ot-functions-option-types.php:2331
2195
  msgid "Skype"
2196
  msgstr ""
2197
 
2198
+ #: ../includes/ot-functions-option-types.php:2336
2199
  msgid "SoundCloud"
2200
  msgstr ""
2201
 
2202
+ #: ../includes/ot-functions-option-types.php:2341
2203
  msgid "Vimeo"
2204
  msgstr ""
2205
 
2206
+ #: ../includes/ot-functions-option-types.php:2346
2207
  msgid "Flickr"
2208
  msgstr ""
2209
 
2210
+ #: ../includes/ot-functions-option-types.php:2351
2211
  msgid "VK.com"
2212
  msgstr ""
2213
 
2214
+ #: ../includes/ot-functions-option-types.php:2457
2215
  msgid "top"
2216
  msgstr ""
2217
 
2218
+ #: ../includes/ot-functions-option-types.php:2466
2219
  msgid "right"
2220
  msgstr ""
2221
 
2222
+ #: ../includes/ot-functions-option-types.php:2475
2223
  msgid "bottom"
2224
  msgstr ""
2225
 
2226
+ #: ../includes/ot-functions-option-types.php:2484
2227
  msgid "left"
2228
  msgstr ""
2229
 
2230
+ #: ../includes/ot-functions-option-types.php:2586
2231
+ #: ../includes/ot-functions-option-types.php:2640
2232
  msgid "No Tags Found"
2233
  msgstr ""
2234
 
2235
+ #: ../includes/ot-functions-option-types.php:2698
2236
+ #: ../includes/ot-functions-option-types.php:2755
2237
  msgid "No Taxonomies Found"
2238
  msgstr ""
2239
 
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.1
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.1' );
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.2
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.2' );
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-alpha
7
- Stable tag: 2.5.1
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,16 @@ The most likely scenario is your theme already has OptionTree installed in Theme
126
 
127
  == Changelog ==
128
 
 
 
 
 
 
 
 
 
 
 
129
  = 2.5.1 =
130
  * Hotfix - Overhaul the Colorpicker Opacity option type so it saves rgba values, not arrays.
131
  * Hotfix - Added the ability to set opacity on any colorpicker with the `ot-colorpicker-opacity` class.
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.2
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.2 =
130
+ * Hotfix - Add `inherit` fallback to the `link-color` option type in dynamic.css.
131
+ * Hotfix - Remove `$.browser.msie` JS error caused by function being deprecated.
132
+ * Hotfix - Change `hover` to `mouseenter mouseleave` to stop jQuery migrate error message.
133
+ * Hotfix - Don't allow duplicate Google Fonts in the `ot-google-fonts-css` enqueue.
134
+ * Hotfix - Fixed an issue with the CSS and JavaScript option types not being initiating inside of tabs.
135
+ * Hotfix - Fixed metabox tab styles for mobile.
136
+ * Hotfix - Separate the post formats JS so it does not interfere with the default behavior and loads only as needed.
137
+ * Hotfix - Adding the `not-sortable` class to the List Item option type will remove the sortable feature for that option.
138
+
139
  = 2.5.1 =
140
  * Hotfix - Overhaul the Colorpicker Opacity option type so it saves rgba values, not arrays.
141
  * Hotfix - Added the ability to set opacity on any colorpicker with the `ot-colorpicker-opacity` class.