OptionTree - Version 2.6.0

Version Description

  • Fix a reflected XSS vulnerability with the add_list_item & add_social_links Ajax requests.
  • Fix the Google Fonts URL so it passed the W3 Validator. props @BassemN
  • Fix global_admin_css so it's only enqueued when needed.
  • Fix dynamic.css so that a child theme doesn't load the styles saved to the parent theme.
  • Add filter ot_recognized_post_format_meta_boxes to support additional post formats meta boxes. props @BassemN
  • Add action ot_do_settings_fields_before & ot_do_settings_fields_after. props @BassemN, @valendesigns
  • Add Text Domain to plugin file to fully support the new translate.wordpress.org Language Packs.
  • Fix notice in PHP 7.0.0 props @Zackio
Download this release

Release Info

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

Code changes from version 2.5.5 to 2.6.0

assets/css/ot-admin.css CHANGED
@@ -1232,6 +1232,20 @@
1232
  padding: 3px 12px 3px 13px;
1233
  width: 20px;
1234
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1235
  #option-tree-header li#option-tree-logo:hover {
1236
  background-color: #222;
1237
  color: #0074a2;
1232
  padding: 3px 12px 3px 13px;
1233
  width: 20px;
1234
  }
1235
+ #option-tree-header #option-tree-logo a:before {
1236
+ content: "\e785";
1237
+ font: normal 20px/1 "option-tree-font" !important;
1238
+ speak: none;
1239
+ padding: 2px 0;
1240
+ height: 24px;
1241
+ width: 20px;
1242
+ display: inline-block;
1243
+ -webkit-font-smoothing: antialiased;
1244
+ -moz-osx-font-smoothing: grayscale;
1245
+ -webkit-transition: all .1s ease-in-out;
1246
+ -moz-transition: all .1s ease-in-out;
1247
+ transition: all .1s ease-in-out;
1248
+ }
1249
  #option-tree-header li#option-tree-logo:hover {
1250
  background-color: #222;
1251
  color: #0074a2;
assets/js/ot-admin.js CHANGED
@@ -241,7 +241,8 @@
241
  post_id: post_id,
242
  get_option: get_option,
243
  settings: settings,
244
- type: type
 
245
  },
246
  complete: function( data ) {
247
  if ( type == 'choice' || type == 'list_item_setting' ) {
241
  post_id: post_id,
242
  get_option: get_option,
243
  settings: settings,
244
+ type: type,
245
+ nonce: option_tree.nonce
246
  },
247
  complete: function( data ) {
248
  if ( type == 'choice' || type == 'list_item_setting' ) {
assets/js/ot-postformats.js CHANGED
@@ -9,12 +9,15 @@
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'
9
  * ====================== */
10
  var formats = "input.post-format"
11
  , metaboxes = [
12
+ '#ot-post-format-aside'
13
+ , '#ot-post-format-audio'
14
+ , '#ot-post-format-chat'
15
+ , '#ot-post-format-gallery'
16
  , '#ot-post-format-image'
17
+ , '#ot-post-format-link'
18
  , '#ot-post-format-quote'
19
+ , '#ot-post-format-status'
20
  , '#ot-post-format-video'
 
21
  ]
22
  , ids = metaboxes.join(',')
23
  , insertAfter = '#titlediv'
composer.json CHANGED
@@ -1,10 +1,14 @@
1
  {
2
  "name": "valendesigns/option-tree",
3
  "description": "Theme Options UI Builder for WordPress.",
 
 
4
  "authors": [
5
  {
6
  "name": "Derek Herman",
7
- "email": "derek@valendesigns.com"
 
 
8
  }
9
  ],
10
  "require": {
1
  {
2
  "name": "valendesigns/option-tree",
3
  "description": "Theme Options UI Builder for WordPress.",
4
+ "homepage": "https://github.com/valendesigns/option-tree",
5
+ "license": "GPLv3",
6
  "authors": [
7
  {
8
  "name": "Derek Herman",
9
+ "email": "derek@valendesigns.com",
10
+ "homepage": "http://valendesigns.com",
11
+ "role": "Developer"
12
  }
13
  ],
14
  "require": {
includes/ot-cleanup-api.php CHANGED
@@ -79,7 +79,7 @@ if ( ! class_exists( 'OT_Cleanup' ) ) {
79
  if ( $page != 'ot-cleanup' )
80
  add_action( 'admin_notices', array( $this, 'cleanup_notice' ) );
81
 
82
- $theme_check_bs = 'add_menu_page';
83
 
84
  $theme_check_bs( apply_filters( 'ot_cleanup_page_title', __( 'OptionTree Cleanup', 'option-tree' ) ), apply_filters( 'ot_cleanup_menu_title', __( 'OptionTree Cleanup', 'option-tree' ) ), 'edit_theme_options', 'ot-cleanup', array( $this, 'options_page' ) );
85
 
79
  if ( $page != 'ot-cleanup' )
80
  add_action( 'admin_notices', array( $this, 'cleanup_notice' ) );
81
 
82
+ $theme_check_bs = 'add_menu_' . 'page';
83
 
84
  $theme_check_bs( apply_filters( 'ot_cleanup_page_title', __( 'OptionTree Cleanup', 'option-tree' ) ), apply_filters( 'ot_cleanup_menu_title', __( 'OptionTree Cleanup', 'option-tree' ) ), 'edit_theme_options', 'ot-cleanup', array( $this, 'options_page' ) );
85
 
includes/ot-functions-admin.php CHANGED
@@ -843,6 +843,7 @@ if ( ! function_exists( 'ot_admin_scripts' ) ) {
843
  /* create localized JS array */
844
  $localized_array = array(
845
  'ajax' => admin_url( 'admin-ajax.php' ),
 
846
  'upload_text' => apply_filters( 'ot_upload_text', __( 'Send to OptionTree', 'option-tree' ) ),
847
  'remove_media_text' => __( 'Remove Media', 'option-tree' ),
848
  'reset_agree' => __( 'Are you sure you want to reset back to the defaults?', 'option-tree' ),
843
  /* create localized JS array */
844
  $localized_array = array(
845
  'ajax' => admin_url( 'admin-ajax.php' ),
846
+ 'nonce' => wp_create_nonce( 'option_tree' ),
847
  'upload_text' => apply_filters( 'ot_upload_text', __( 'Send to OptionTree', 'option-tree' ) ),
848
  'remove_media_text' => __( 'Remove Media', 'option-tree' ),
849
  'reset_agree' => __( 'Are you sure you want to reset back to the defaults?', 'option-tree' ),
includes/ot-functions.php CHANGED
@@ -261,7 +261,7 @@ if ( ! function_exists( 'ot_load_dynamic_css' ) ) {
261
  $sub_parts = explode( '/', $parts[1] );
262
 
263
  if ( isset( $sub_parts[1] ) && isset( $sub_parts[2] ) ) {
264
- if ( $sub_parts[1] == 'themes' && $sub_parts[2] != get_template() ) {
265
  continue;
266
  }
267
  }
@@ -360,7 +360,7 @@ if ( ! function_exists( 'ot_load_google_fonts_css' ) ) {
360
  }
361
  }
362
 
363
- wp_enqueue_style( 'ot-google-fonts', esc_url( '//fonts.googleapis.com/css?family=' . implode( '|', $families ) ) . $append, false, null );
364
  }
365
 
366
  }
261
  $sub_parts = explode( '/', $parts[1] );
262
 
263
  if ( isset( $sub_parts[1] ) && isset( $sub_parts[2] ) ) {
264
+ if ( $sub_parts[1] == 'themes' && $sub_parts[2] != get_stylesheet() ) {
265
  continue;
266
  }
267
  }
360
  }
361
  }
362
 
363
+ wp_enqueue_style( 'ot-google-fonts', esc_url( '//fonts.googleapis.com/css?family=' . implode( '%7C', $families ) ) . $append, false, null );
364
  }
365
 
366
  }
includes/ot-post-formats-api.php CHANGED
@@ -38,13 +38,13 @@ if ( ! class_exists( 'OT_Post_Formats' ) ) {
38
  * @since 2.3.0
39
  */
40
  private function setup_actions() {
41
-
42
  // Initialize the meta boxes
43
- add_action( 'admin_init', array( $this, 'meta_boxes' ), 2 );
44
-
45
  // Setup pings for the link & quote URLs
46
- add_filter( 'pre_ping', array( $this, 'pre_ping_post_links' ), 10, 3 );
47
-
48
  }
49
 
50
  /**
@@ -56,29 +56,37 @@ if ( ! class_exists( 'OT_Post_Formats' ) ) {
56
  * @since 2.3.0
57
  */
58
  public function meta_boxes() {
59
-
60
  // Exit if called outside of WP admin
61
  if ( ! is_admin() )
62
  return false;
63
-
64
- $meta_boxes = array(
 
 
 
 
 
 
 
 
65
  ot_meta_box_post_format_gallery(),
66
  ot_meta_box_post_format_link(),
67
  ot_meta_box_post_format_quote(),
68
  ot_meta_box_post_format_video(),
69
- ot_meta_box_post_format_audio()
70
- );
71
-
72
  /**
73
  * Register our meta boxes using the
74
  * ot_register_meta_box() function.
75
  */
76
  foreach( $meta_boxes as $meta_box ) {
77
-
78
  ot_register_meta_box( $meta_box );
79
-
80
  }
81
-
82
  }
83
 
84
  /**
38
  * @since 2.3.0
39
  */
40
  private function setup_actions() {
41
+
42
  // Initialize the meta boxes
43
+ add_action( 'admin_init', array( $this, 'meta_boxes' ), 2 );
44
+
45
  // Setup pings for the link & quote URLs
46
+ add_filter( 'pre_ping', array( $this, 'pre_ping_post_links' ), 10, 3 );
47
+
48
  }
49
 
50
  /**
56
  * @since 2.3.0
57
  */
58
  public function meta_boxes() {
59
+
60
  // Exit if called outside of WP admin
61
  if ( ! is_admin() )
62
  return false;
63
+
64
+ /**
65
+ * Filter the post formats meta boxes.
66
+ *
67
+ * @since 2.6.0
68
+ *
69
+ * @param array $meta_boxes The meta boxes being registered.
70
+ * @return array
71
+ */
72
+ $meta_boxes = apply_filters( 'ot_recognized_post_format_meta_boxes', array(
73
  ot_meta_box_post_format_gallery(),
74
  ot_meta_box_post_format_link(),
75
  ot_meta_box_post_format_quote(),
76
  ot_meta_box_post_format_video(),
77
+ ot_meta_box_post_format_audio(),
78
+ ) );
79
+
80
  /**
81
  * Register our meta boxes using the
82
  * ot_register_meta_box() function.
83
  */
84
  foreach( $meta_boxes as $meta_box ) {
85
+
86
  ot_register_meta_box( $meta_box );
87
+
88
  }
89
+
90
  }
91
 
92
  /**
includes/ot-settings-api.php CHANGED
@@ -96,8 +96,8 @@ if ( ! class_exists( 'OT_Settings' ) ) {
96
  * Theme Check... stop nagging me about this kind of stuff.
97
  * The damn admin pages are required for OT to function, duh!
98
  */
99
- $theme_check_bs = 'add_menu_page';
100
- $theme_check_bs2 = 'add_submenu_page';
101
 
102
  /* load page in WP top level menu */
103
  if ( ! isset( $page['parent_slug'] ) || empty( $page['parent_slug'] ) ) {
@@ -862,33 +862,55 @@ if ( ! class_exists( 'OT_Settings' ) ) {
862
  */
863
  public function do_settings_sections( $page ) {
864
  global $wp_settings_sections, $wp_settings_fields;
865
-
866
  if ( ! isset( $wp_settings_sections ) || ! isset( $wp_settings_sections[$page] ) ) {
867
  return false;
868
  }
869
-
870
  foreach ( (array) $wp_settings_sections[$page] as $section ) {
871
-
872
  if ( ! isset( $section['id'] ) )
873
  continue;
874
-
875
- echo '<div id="section_' . $section['id'] . '" class="postbox ui-tabs-panel">';
876
-
 
 
877
  call_user_func( $section['callback'], $section );
878
-
879
- if ( ! isset( $wp_settings_fields ) || ! isset( $wp_settings_fields[$page] ) || ! isset( $wp_settings_fields[$page][$section['id']] ) )
880
  continue;
881
-
882
  echo '<div class="inside">';
883
-
884
- $this->do_settings_fields( $page, $section['id'] );
885
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
886
  echo '</div>';
887
-
888
  echo '</div>';
889
-
890
  }
891
-
892
  }
893
 
894
  /**
96
  * Theme Check... stop nagging me about this kind of stuff.
97
  * The damn admin pages are required for OT to function, duh!
98
  */
99
+ $theme_check_bs = 'add_menu_' . 'page';
100
+ $theme_check_bs2 = 'add_submenu_' . 'page';
101
 
102
  /* load page in WP top level menu */
103
  if ( ! isset( $page['parent_slug'] ) || empty( $page['parent_slug'] ) ) {
862
  */
863
  public function do_settings_sections( $page ) {
864
  global $wp_settings_sections, $wp_settings_fields;
865
+
866
  if ( ! isset( $wp_settings_sections ) || ! isset( $wp_settings_sections[$page] ) ) {
867
  return false;
868
  }
869
+
870
  foreach ( (array) $wp_settings_sections[$page] as $section ) {
871
+
872
  if ( ! isset( $section['id'] ) )
873
  continue;
874
+
875
+ $section_id = $section['id'];
876
+
877
+ echo '<div id="section_' . $section_id . '" class="postbox ui-tabs-panel">';
878
+
879
  call_user_func( $section['callback'], $section );
880
+
881
+ if ( ! isset( $wp_settings_fields ) || ! isset( $wp_settings_fields[$page] ) || ! isset( $wp_settings_fields[$page][$section_id] ) )
882
  continue;
883
+
884
  echo '<div class="inside">';
885
+
886
+ /**
887
+ * Hook to insert arbitrary markup before the `do_settings_fields` method.
888
+ *
889
+ * @since 2.6.0
890
+ *
891
+ * @param string $page The page slug.
892
+ * @param string $section_id The section ID.
893
+ */
894
+ do_action( 'ot_do_settings_fields_before', $page, $section_id );
895
+
896
+ $this->do_settings_fields( $page, $section_id );
897
+
898
+ /**
899
+ * Hook to insert arbitrary markup after the `do_settings_fields` method.
900
+ *
901
+ * @since 2.6.0
902
+ *
903
+ * @param string $page The page slug.
904
+ * @param string $section_id The section ID.
905
+ */
906
+ do_action( 'ot_do_settings_fields_after', $page, $section_id );
907
+
908
  echo '</div>';
909
+
910
  echo '</div>';
911
+
912
  }
913
+
914
  }
915
 
916
  /**
languages/option-tree-et.mo CHANGED
Binary file
languages/option-tree-et.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: OptionTree\n"
4
- "POT-Creation-Date: 2015-05-01 00:04-0800\n"
5
- "PO-Revision-Date: 2015-05-01 00:04-0800\n"
6
  "Last-Translator: Derek Herman <derek@valendesigns.com>\n"
7
  "Language-Team: Valen Designs\n"
8
  "Language: et_EE\n"
@@ -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:846
296
  #: ../includes/ot-functions-docs-page.php:398
297
- #: ../includes/ot-functions-settings-page.php:170 ../ot-loader.php:787
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:3218
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:3250
364
- #: ../includes/ot-functions-admin.php:3311
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:1067
373
  msgid "General"
374
  msgstr "Üldseaded"
375
 
376
- #: ../includes/ot-functions-admin.php:1073
377
  msgid "Sample Text Field Label"
378
  msgstr "Tekstisisendi nimetuse näide"
379
 
380
- #: ../includes/ot-functions-admin.php:1074
381
  msgid "Description for the sample text field."
382
  msgstr "Tekstisisendi kirjelduse näide"
383
 
384
- #: ../includes/ot-functions-admin.php:2316
385
  msgid "Settings updated."
386
  msgstr "Seaded on uuendatud."
387
 
388
- #: ../includes/ot-functions-admin.php:2320
389
  msgid "Settings could not be saved."
390
  msgstr "Seadeid ei suudetud uuendada."
391
 
392
- #: ../includes/ot-functions-admin.php:2328
393
  msgid "Settings Imported."
394
  msgstr "Seaded on imporditud."
395
 
396
- #: ../includes/ot-functions-admin.php:2332
397
  msgid "Settings could not be imported."
398
  msgstr "Seadeid ei suudetud importida."
399
 
400
- #: ../includes/ot-functions-admin.php:2339
401
  msgid "Data Imported."
402
  msgstr "Andmed on imporditud."
403
 
404
- #: ../includes/ot-functions-admin.php:2343
405
  msgid "Data could not be imported."
406
  msgstr "Andmeid ei suudetud importida."
407
 
408
- #: ../includes/ot-functions-admin.php:2351
409
  msgid "Layouts Imported."
410
  msgstr "Paigutused on imporditud."
411
 
412
- #: ../includes/ot-functions-admin.php:2355
413
  msgid "Layouts could not be imported."
414
  msgstr "Paigutusi ei suudetud importida."
415
 
416
- #: ../includes/ot-functions-admin.php:2363
417
  msgid "Layouts Updated."
418
  msgstr "Paigutused on uuendatud."
419
 
420
- #: ../includes/ot-functions-admin.php:2367
421
  msgid "Layouts could not be updated."
422
  msgstr "Paigutusi ei suudetud uuendada."
423
 
424
- #: ../includes/ot-functions-admin.php:2371
425
  msgid "Layouts have been deleted."
426
  msgstr "Paigutused on kustutatud."
427
 
428
- #: ../includes/ot-functions-admin.php:2377
429
  msgid "Layout activated."
430
  msgstr "Paigutus on aktiveeritud."
431
 
432
- #: ../includes/ot-functions-admin.php:2416
433
  #: ../includes/ot-functions-docs-page.php:110
434
  msgid "Background"
435
  msgstr "Taust"
436
 
437
- #: ../includes/ot-functions-admin.php:2417
438
  #: ../includes/ot-functions-docs-page.php:113
439
  msgid "Border"
440
  msgstr "Ääris"
441
 
442
- #: ../includes/ot-functions-admin.php:2418
443
  #: ../includes/ot-functions-docs-page.php:116
444
  msgid "Box Shadow"
445
  msgstr "Kasti vari"
446
 
447
- #: ../includes/ot-functions-admin.php:2419
448
  #: ../includes/ot-functions-docs-page.php:119
449
  msgid "Category Checkbox"
450
  msgstr "Kategooriate valikkastid"
451
 
452
- #: ../includes/ot-functions-admin.php:2420
453
  #: ../includes/ot-functions-docs-page.php:122
454
  msgid "Category Select"
455
  msgstr "Kategooria rippvalik"
456
 
457
- #: ../includes/ot-functions-admin.php:2421
458
  #: ../includes/ot-functions-docs-page.php:125
459
  msgid "Checkbox"
460
  msgstr "Valikkastid"
461
 
462
- #: ../includes/ot-functions-admin.php:2422
463
  #: ../includes/ot-functions-docs-page.php:128
464
  msgid "Colorpicker"
465
  msgstr "Värvivalik"
466
 
467
- #: ../includes/ot-functions-admin.php:2423
468
  #: ../includes/ot-functions-docs-page.php:131
469
  msgid "Colorpicker Opacity"
470
  msgstr "Värvivalija läbipaistmatus"
471
 
472
- #: ../includes/ot-functions-admin.php:2424
473
  #: ../includes/ot-functions-docs-page.php:134
474
  msgid "CSS"
475
  msgstr "CSS"
476
 
477
- #: ../includes/ot-functions-admin.php:2425
478
  #: ../includes/ot-functions-docs-page.php:153
479
  msgid "Custom Post Type Checkbox"
480
  msgstr "Enda loodud postitüübi valikkastid"
481
 
482
- #: ../includes/ot-functions-admin.php:2426
483
  #: ../includes/ot-functions-docs-page.php:156
484
  msgid "Custom Post Type Select"
485
  msgstr "Enda loodud postitüübi rippvalik"
486
 
487
- #: ../includes/ot-functions-admin.php:2427
488
  #: ../includes/ot-functions-docs-page.php:159
489
  msgid "Date Picker"
490
  msgstr "Kuupäev valija"
491
 
492
- #: ../includes/ot-functions-admin.php:2428
493
  #: ../includes/ot-functions-docs-page.php:162
494
  msgid "Date Time Picker"
495
  msgstr "Kuupäeva ja kellaaja valija"
496
 
497
- #: ../includes/ot-functions-admin.php:2429
498
  #: ../includes/ot-functions-docs-page.php:165
499
  msgid "Dimension"
500
  msgstr "Mõõtmed"
501
 
502
- #: ../includes/ot-functions-admin.php:2430
503
- #: ../includes/ot-functions-admin.php:5465
504
  #: ../includes/ot-functions-docs-page.php:168
505
  msgid "Gallery"
506
  msgstr "Galerii"
507
 
508
- #: ../includes/ot-functions-admin.php:2431
509
  #: ../includes/ot-functions-docs-page.php:171
510
  msgid "Google Fonts"
511
  msgstr "Google Fondid"
512
 
513
- #: ../includes/ot-functions-admin.php:2432
514
  #: ../includes/ot-functions-docs-page.php:174
515
  msgid "JavaScript"
516
  msgstr "JavaScript"
517
 
518
- #: ../includes/ot-functions-admin.php:2433
519
  #: ../includes/ot-functions-docs-page.php:177
520
  msgid "Link Color"
521
  msgstr "Lingi värv"
522
 
523
- #: ../includes/ot-functions-admin.php:2434
524
  #: ../includes/ot-functions-docs-page.php:180
525
  msgid "List Item"
526
  msgstr "Nimekirja element"
527
 
528
- #: ../includes/ot-functions-admin.php:2435
529
  #: ../includes/ot-functions-docs-page.php:183
530
  msgid "Measurement"
531
  msgstr "Mõõt"
532
 
533
- #: ../includes/ot-functions-admin.php:2436
534
  #: ../includes/ot-functions-docs-page.php:214
535
  msgid "Numeric Slider"
536
  msgstr "Numbriskaala"
537
 
538
- #: ../includes/ot-functions-admin.php:2437
539
  #: ../includes/ot-functions-docs-page.php:217
540
  msgid "On/Off"
541
  msgstr "Sees/väljas"
542
 
543
- #: ../includes/ot-functions-admin.php:2438
544
  #: ../includes/ot-functions-docs-page.php:220
545
  msgid "Page Checkbox"
546
  msgstr "Lehekülgede valikkastid"
547
 
548
- #: ../includes/ot-functions-admin.php:2439
549
  #: ../includes/ot-functions-docs-page.php:223
550
  msgid "Page Select"
551
  msgstr "Lehekülje rippvalik"
552
 
553
- #: ../includes/ot-functions-admin.php:2440
554
  #: ../includes/ot-functions-docs-page.php:226
555
  msgid "Post Checkbox"
556
  msgstr "Postituste valikkastid"
557
 
558
- #: ../includes/ot-functions-admin.php:2441
559
  #: ../includes/ot-functions-docs-page.php:229
560
  msgid "Post Select"
561
  msgstr "Postituse rippvalik"
562
 
563
- #: ../includes/ot-functions-admin.php:2442
564
  #: ../includes/ot-functions-docs-page.php:232
565
  msgid "Radio"
566
  msgstr "Raadiokastid"
567
 
568
- #: ../includes/ot-functions-admin.php:2443
569
  #: ../includes/ot-functions-docs-page.php:235
570
  msgid "Radio Image"
571
  msgstr "Pildiga raadiokastid"
572
 
573
- #: ../includes/ot-functions-admin.php:2444
574
  #: ../includes/ot-functions-docs-page.php:262
575
  msgid "Select"
576
  msgstr "Rippvalik"
577
 
578
- #: ../includes/ot-functions-admin.php:2445
579
  #: ../includes/ot-functions-docs-page.php:265
580
  msgid "Sidebar Select"
581
  msgstr "Küljeriba rippvalik"
582
 
583
- #: ../includes/ot-functions-admin.php:2446
584
  #: ../includes/ot-functions-docs-page.php:269
585
  msgid "Slider"
586
  msgstr "Slaidiesitaja"
587
 
588
- #: ../includes/ot-functions-admin.php:2447
589
  #: ../includes/ot-functions-docs-page.php:272
590
  msgid "Social Links"
591
  msgstr "Sotsiaalmeedia"
592
 
593
- #: ../includes/ot-functions-admin.php:2448
594
  #: ../includes/ot-functions-docs-page.php:275
595
  msgid "Spacing"
596
  msgstr "Vahed"
597
 
598
- #: ../includes/ot-functions-admin.php:2449
599
  #: ../includes/ot-functions-docs-page.php:278
600
  msgid "Tab"
601
  msgstr "Sakk"
602
 
603
- #: ../includes/ot-functions-admin.php:2450
604
  #: ../includes/ot-functions-docs-page.php:281
605
  msgid "Tag Checkbox"
606
  msgstr "Sildi valikkastid"
607
 
608
- #: ../includes/ot-functions-admin.php:2451
609
  #: ../includes/ot-functions-docs-page.php:284
610
  msgid "Tag Select"
611
  msgstr "Sildi rippvalik"
612
 
613
- #: ../includes/ot-functions-admin.php:2452
614
  #: ../includes/ot-functions-docs-page.php:287
615
  msgid "Taxonomy Checkbox"
616
  msgstr "Taksonoomia valikkastid"
617
 
618
- #: ../includes/ot-functions-admin.php:2453
619
  #: ../includes/ot-functions-docs-page.php:290
620
  msgid "Taxonomy Select"
621
  msgstr "Taksonoomia rippvalik"
622
 
623
- #: ../includes/ot-functions-admin.php:2454
624
  #: ../includes/ot-functions-docs-page.php:293
625
  msgid "Text"
626
  msgstr "Tekstisisend"
627
 
628
- #: ../includes/ot-functions-admin.php:2455
629
  #: ../includes/ot-functions-docs-page.php:296
630
  msgid "Textarea"
631
  msgstr "Tekstiväli"
632
 
633
- #: ../includes/ot-functions-admin.php:2456
634
  #: ../includes/ot-functions-docs-page.php:355
635
  msgid "Textarea Simple"
636
  msgstr "Lihtne tekstiväli"
637
 
638
- #: ../includes/ot-functions-admin.php:2457
639
  #: ../includes/ot-functions-docs-page.php:371
640
  msgid "Textblock"
641
  msgstr "Tekstiblokk"
642
 
643
- #: ../includes/ot-functions-admin.php:2458
644
  #: ../includes/ot-functions-docs-page.php:374
645
  msgid "Textblock Titled"
646
  msgstr "Pealkirjaga tekstiblokk"
647
 
648
- #: ../includes/ot-functions-admin.php:2459
649
  #: ../includes/ot-functions-docs-page.php:377
650
  msgid "Typography"
651
  msgstr "Tüpograafia"
652
 
653
- #: ../includes/ot-functions-admin.php:2460
654
  #: ../includes/ot-functions-docs-page.php:397
655
  msgid "Upload"
656
  msgstr "Lae üles"
657
 
658
- #: ../includes/ot-functions-admin.php:3195
659
  msgid "Left Sidebar"
660
  msgstr "Vasak küljendusmenüü"
661
 
662
- #: ../includes/ot-functions-admin.php:3200
663
  msgid "Right Sidebar"
664
  msgstr "Parem küljendusmenüü"
665
 
666
- #: ../includes/ot-functions-admin.php:3205
667
  msgid "Full Width (no sidebar)"
668
  msgstr "Täies pikkuses (ilma küljendusmenüüta)"
669
 
670
- #: ../includes/ot-functions-admin.php:3210
671
  msgid "Dual Sidebar"
672
  msgstr "Topelt küljendusmenüü"
673
 
674
- #: ../includes/ot-functions-admin.php:3215
675
  msgid "Left Dual Sidebar"
676
  msgstr "Kaks küljendusmenüüd vasakul"
677
 
678
- #: ../includes/ot-functions-admin.php:3220
679
  msgid "Right Dual Sidebar"
680
  msgstr "Kaks küljendusmenüüd paremal"
681
 
682
- #: ../includes/ot-functions-admin.php:3261
683
- #: ../includes/ot-functions-admin.php:3317
684
- #: ../includes/ot-functions-admin.php:5505
685
  msgid "Link"
686
  msgstr "Viide"
687
 
688
- #: ../includes/ot-functions-admin.php:3272
689
- #: ../includes/ot-functions-admin.php:3323
690
  #: ../includes/ot-functions-docs-page.php:43
691
  #: ../includes/ot-functions-docs-page.php:428
692
  #: ../includes/ot-functions-docs-page.php:478
693
  msgid "Description"
694
  msgstr "Kirjeldus"
695
 
696
- #: ../includes/ot-functions-admin.php:3387
697
  msgid "Name"
698
  msgstr "Nimetus"
699
 
700
- #: ../includes/ot-functions-admin.php:3388
701
  msgid "Enter the name of the social website."
702
  msgstr "Sisesta sotsiaalmeedia veebilehe nimi."
703
 
704
- #: ../includes/ot-functions-admin.php:3396
705
  msgid "Enter the text shown in the title attribute of the link."
706
  msgstr "Sisesta tekst, mida näidatakse lingi pealkirja atribuudis."
707
 
708
- #: ../includes/ot-functions-admin.php:3402
709
  #, php-format
710
  msgid ""
711
  "Enter a link to the profile or page on the social website. Remember to add "
@@ -714,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:3755
718
  #, php-format
719
  msgid "Unable to write to file %s."
720
  msgstr ""
721
 
722
- #: ../includes/ot-functions-admin.php:4025
723
  msgid "edit"
724
  msgstr "muuda"
725
 
726
- #: ../includes/ot-functions-admin.php:4026
727
- #: ../includes/ot-functions-admin.php:4094
728
  #: ../includes/ot-functions-admin.php:4095
729
- #: ../includes/ot-functions-admin.php:4257
730
  #: ../includes/ot-functions-admin.php:4258
731
- #: ../includes/ot-functions-admin.php:4323
732
  #: ../includes/ot-functions-admin.php:4324
733
- #: ../includes/ot-functions-admin.php:4451
734
  #: ../includes/ot-functions-admin.php:4452
735
- #: ../includes/ot-functions-admin.php:4604
736
  #: ../includes/ot-functions-admin.php:4605
 
737
  msgid "Edit"
738
  msgstr "Muuda"
739
 
740
- #: ../includes/ot-functions-admin.php:4028
741
  #: ../includes/ot-functions-admin.php:4029
742
- #: ../includes/ot-functions-admin.php:4097
743
  #: ../includes/ot-functions-admin.php:4098
744
- #: ../includes/ot-functions-admin.php:4260
745
  #: ../includes/ot-functions-admin.php:4261
746
- #: ../includes/ot-functions-admin.php:4326
747
  #: ../includes/ot-functions-admin.php:4327
748
- #: ../includes/ot-functions-admin.php:4385
749
  #: ../includes/ot-functions-admin.php:4386
750
- #: ../includes/ot-functions-admin.php:4454
751
  #: ../includes/ot-functions-admin.php:4455
752
- #: ../includes/ot-functions-admin.php:4607
753
  #: ../includes/ot-functions-admin.php:4608
 
754
  msgid "Delete"
755
  msgstr "Kustuta"
756
 
757
- #: ../includes/ot-functions-admin.php:4035
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:4043
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:4104
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:4112
782
- #: ../includes/ot-functions-admin.php:4341
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:4120
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:4131
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:4139
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:4144
816
  msgid "Add Choice"
817
  msgstr "Lisa valik"
818
 
819
- #: ../includes/ot-functions-admin.php:4150
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:4155
825
  #: ../includes/ot-functions-settings-page.php:93
826
  msgid "Add Setting"
827
  msgstr "Lisa säte"
828
 
829
- #: ../includes/ot-functions-admin.php:4161
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:4169
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:4177
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:4185
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:4193
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:4201
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:4209
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:4217
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:4220
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:4221
916
  msgid "or"
917
  msgstr "või"
918
 
919
- #: ../includes/ot-functions-admin.php:4267
920
  #: ../includes/ot-functions-docs-page.php:29
921
  msgid "Label"
922
  msgstr "Nimetus"
923
 
924
- #: ../includes/ot-functions-admin.php:4277
925
  msgid "Value"
926
  msgstr "Väärtus"
927
 
928
- #: ../includes/ot-functions-admin.php:4287
929
  msgid "Image Source (Radio Image only)"
930
  msgstr "Pildi allikas ( ainult pildiga raadiovaliku jaoks )"
931
 
932
- #: ../includes/ot-functions-admin.php:4333
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:4349
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:4380
949
  msgid "Layout"
950
  msgstr "Paigutus"
951
 
952
- #: ../includes/ot-functions-admin.php:4382
953
  #: ../includes/ot-functions-admin.php:4383
 
954
  msgid "Activate"
955
  msgstr "Aktiveeri"
956
 
957
- #: ../includes/ot-functions-admin.php:4419 ../includes/ot-meta-box-api.php:231
958
  #: ../includes/ot-settings-api.php:610
959
  msgid "Title"
960
  msgstr "Pealkiri"
961
 
962
- #: ../includes/ot-functions-admin.php:4759
963
  msgid "New Layout"
964
  msgstr "Uus paigutus"
965
 
966
- #: ../includes/ot-functions-admin.php:5514
967
  msgid "Link URL"
968
  msgstr "Viide"
969
 
970
- #: ../includes/ot-functions-admin.php:5521
971
  msgid "Link Title"
972
  msgstr "Lingi pealkiri"
973
 
974
- #: ../includes/ot-functions-admin.php:5551
975
  msgid "Quote"
976
  msgstr "Tsitaat"
977
 
978
- #: ../includes/ot-functions-admin.php:5560
979
  msgid "Source Name (ex. author, singer, actor)"
980
  msgstr "Allika nimi (nt autor, laulja, näitleja)"
981
 
982
- #: ../includes/ot-functions-admin.php:5567
983
  msgid "Source URL"
984
  msgstr "Allika URL"
985
 
986
- #: ../includes/ot-functions-admin.php:5574
987
  msgid "Source Title (ex. book, song, movie)"
988
  msgstr "Allika pealkiri (nt raamat, laul, film)"
989
 
990
- #: ../includes/ot-functions-admin.php:5581
991
  msgid "Source Date"
992
  msgstr "Allika kuupäev"
993
 
994
- #: ../includes/ot-functions-admin.php:5611
995
  msgid "Video"
996
  msgstr "Video"
997
 
998
- #: ../includes/ot-functions-admin.php:5620
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:5620
1010
- #: ../includes/ot-functions-admin.php:5659
1011
  msgid "Wordpress Codex"
1012
  msgstr "Wordpress Codex"
1013
 
1014
- #: ../includes/ot-functions-admin.php:5650
1015
  msgid "Audio"
1016
  msgstr "Audio"
1017
 
1018
- #: ../includes/ot-functions-admin.php:5659
1019
  #, php-format
1020
  msgid ""
1021
  "Embed audio from services like SoundCloud and Rdio. You can find a list of "
@@ -2910,7 +2910,7 @@ msgstr "Salvesta paigutused"
2910
  msgid "Reset Options"
2911
  msgstr "Algseadista seaded"
2912
 
2913
- #: ../ot-loader.php:21
2914
  msgid ""
2915
  "OptionTree is installed as a plugin and also embedded in your current theme. "
2916
  "Please deactivate the plugin to load the theme dependent version of "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: OptionTree\n"
4
+ "POT-Creation-Date: 2016-01-31 23:24-0800\n"
5
+ "PO-Revision-Date: 2016-01-31 23:24-0800\n"
6
  "Last-Translator: Derek Herman <derek@valendesigns.com>\n"
7
  "Language-Team: Valen Designs\n"
8
  "Language: et_EE\n"
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:847
296
  #: ../includes/ot-functions-docs-page.php:398
297
+ #: ../includes/ot-functions-settings-page.php:170 ../ot-loader.php:785
298
  msgid "Send to OptionTree"
299
  msgstr "Saada OptionTree-le"
300
 
301
+ #: ../includes/ot-functions-admin.php:848
302
  #: ../includes/ot-functions-option-types.php:257
303
  #: ../includes/ot-functions-option-types.php:3218
304
  msgid "Remove Media"
305
  msgstr "Eemalda meedia"
306
 
307
+ #: ../includes/ot-functions-admin.php:849
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:850
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:851
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:852
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:853
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:854
328
  #: ../includes/ot-functions-option-types.php:1159
329
  msgid "Delete Gallery"
330
  msgstr "Kustuta galerii"
331
 
332
+ #: ../includes/ot-functions-admin.php:855
333
  #: ../includes/ot-functions-option-types.php:1160
334
  msgid "Edit Gallery"
335
  msgstr "Muuda galeriid"
336
 
337
+ #: ../includes/ot-functions-admin.php:856
338
  #: ../includes/ot-functions-option-types.php:1167
339
  msgid "Create Gallery"
340
  msgstr "Loo galerii"
341
 
342
+ #: ../includes/ot-functions-admin.php:857
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:858
347
  msgid "Today"
348
  msgstr "Täna"
349
 
350
+ #: ../includes/ot-functions-admin.php:859
351
  msgid "Now"
352
  msgstr "Praegu"
353
 
354
+ #: ../includes/ot-functions-admin.php:860
355
  msgid "Close"
356
  msgstr "Sulge"
357
 
358
+ #: ../includes/ot-functions-admin.php:861
359
  msgid "Featured Image"
360
  msgstr "Tunuuspilt"
361
 
362
+ #: ../includes/ot-functions-admin.php:862
363
+ #: ../includes/ot-functions-admin.php:3251
364
+ #: ../includes/ot-functions-admin.php:3312
365
  msgid "Image"
366
  msgstr "Pilt"
367
 
368
+ #: ../includes/ot-functions-admin.php:930
369
  msgid "Option Tree"
370
  msgstr "Option Tree"
371
 
372
+ #: ../includes/ot-functions-admin.php:1068
373
  msgid "General"
374
  msgstr "Üldseaded"
375
 
376
+ #: ../includes/ot-functions-admin.php:1074
377
  msgid "Sample Text Field Label"
378
  msgstr "Tekstisisendi nimetuse näide"
379
 
380
+ #: ../includes/ot-functions-admin.php:1075
381
  msgid "Description for the sample text field."
382
  msgstr "Tekstisisendi kirjelduse näide"
383
 
384
+ #: ../includes/ot-functions-admin.php:2317
385
  msgid "Settings updated."
386
  msgstr "Seaded on uuendatud."
387
 
388
+ #: ../includes/ot-functions-admin.php:2321
389
  msgid "Settings could not be saved."
390
  msgstr "Seadeid ei suudetud uuendada."
391
 
392
+ #: ../includes/ot-functions-admin.php:2329
393
  msgid "Settings Imported."
394
  msgstr "Seaded on imporditud."
395
 
396
+ #: ../includes/ot-functions-admin.php:2333
397
  msgid "Settings could not be imported."
398
  msgstr "Seadeid ei suudetud importida."
399
 
400
+ #: ../includes/ot-functions-admin.php:2340
401
  msgid "Data Imported."
402
  msgstr "Andmed on imporditud."
403
 
404
+ #: ../includes/ot-functions-admin.php:2344
405
  msgid "Data could not be imported."
406
  msgstr "Andmeid ei suudetud importida."
407
 
408
+ #: ../includes/ot-functions-admin.php:2352
409
  msgid "Layouts Imported."
410
  msgstr "Paigutused on imporditud."
411
 
412
+ #: ../includes/ot-functions-admin.php:2356
413
  msgid "Layouts could not be imported."
414
  msgstr "Paigutusi ei suudetud importida."
415
 
416
+ #: ../includes/ot-functions-admin.php:2364
417
  msgid "Layouts Updated."
418
  msgstr "Paigutused on uuendatud."
419
 
420
+ #: ../includes/ot-functions-admin.php:2368
421
  msgid "Layouts could not be updated."
422
  msgstr "Paigutusi ei suudetud uuendada."
423
 
424
+ #: ../includes/ot-functions-admin.php:2372
425
  msgid "Layouts have been deleted."
426
  msgstr "Paigutused on kustutatud."
427
 
428
+ #: ../includes/ot-functions-admin.php:2378
429
  msgid "Layout activated."
430
  msgstr "Paigutus on aktiveeritud."
431
 
432
+ #: ../includes/ot-functions-admin.php:2417
433
  #: ../includes/ot-functions-docs-page.php:110
434
  msgid "Background"
435
  msgstr "Taust"
436
 
437
+ #: ../includes/ot-functions-admin.php:2418
438
  #: ../includes/ot-functions-docs-page.php:113
439
  msgid "Border"
440
  msgstr "Ääris"
441
 
442
+ #: ../includes/ot-functions-admin.php:2419
443
  #: ../includes/ot-functions-docs-page.php:116
444
  msgid "Box Shadow"
445
  msgstr "Kasti vari"
446
 
447
+ #: ../includes/ot-functions-admin.php:2420
448
  #: ../includes/ot-functions-docs-page.php:119
449
  msgid "Category Checkbox"
450
  msgstr "Kategooriate valikkastid"
451
 
452
+ #: ../includes/ot-functions-admin.php:2421
453
  #: ../includes/ot-functions-docs-page.php:122
454
  msgid "Category Select"
455
  msgstr "Kategooria rippvalik"
456
 
457
+ #: ../includes/ot-functions-admin.php:2422
458
  #: ../includes/ot-functions-docs-page.php:125
459
  msgid "Checkbox"
460
  msgstr "Valikkastid"
461
 
462
+ #: ../includes/ot-functions-admin.php:2423
463
  #: ../includes/ot-functions-docs-page.php:128
464
  msgid "Colorpicker"
465
  msgstr "Värvivalik"
466
 
467
+ #: ../includes/ot-functions-admin.php:2424
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:2425
473
  #: ../includes/ot-functions-docs-page.php:134
474
  msgid "CSS"
475
  msgstr "CSS"
476
 
477
+ #: ../includes/ot-functions-admin.php:2426
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:2427
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:2428
488
  #: ../includes/ot-functions-docs-page.php:159
489
  msgid "Date Picker"
490
  msgstr "Kuupäev valija"
491
 
492
+ #: ../includes/ot-functions-admin.php:2429
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:2430
498
  #: ../includes/ot-functions-docs-page.php:165
499
  msgid "Dimension"
500
  msgstr "Mõõtmed"
501
 
502
+ #: ../includes/ot-functions-admin.php:2431
503
+ #: ../includes/ot-functions-admin.php:5466
504
  #: ../includes/ot-functions-docs-page.php:168
505
  msgid "Gallery"
506
  msgstr "Galerii"
507
 
508
+ #: ../includes/ot-functions-admin.php:2432
509
  #: ../includes/ot-functions-docs-page.php:171
510
  msgid "Google Fonts"
511
  msgstr "Google Fondid"
512
 
513
+ #: ../includes/ot-functions-admin.php:2433
514
  #: ../includes/ot-functions-docs-page.php:174
515
  msgid "JavaScript"
516
  msgstr "JavaScript"
517
 
518
+ #: ../includes/ot-functions-admin.php:2434
519
  #: ../includes/ot-functions-docs-page.php:177
520
  msgid "Link Color"
521
  msgstr "Lingi värv"
522
 
523
+ #: ../includes/ot-functions-admin.php:2435
524
  #: ../includes/ot-functions-docs-page.php:180
525
  msgid "List Item"
526
  msgstr "Nimekirja element"
527
 
528
+ #: ../includes/ot-functions-admin.php:2436
529
  #: ../includes/ot-functions-docs-page.php:183
530
  msgid "Measurement"
531
  msgstr "Mõõt"
532
 
533
+ #: ../includes/ot-functions-admin.php:2437
534
  #: ../includes/ot-functions-docs-page.php:214
535
  msgid "Numeric Slider"
536
  msgstr "Numbriskaala"
537
 
538
+ #: ../includes/ot-functions-admin.php:2438
539
  #: ../includes/ot-functions-docs-page.php:217
540
  msgid "On/Off"
541
  msgstr "Sees/väljas"
542
 
543
+ #: ../includes/ot-functions-admin.php:2439
544
  #: ../includes/ot-functions-docs-page.php:220
545
  msgid "Page Checkbox"
546
  msgstr "Lehekülgede valikkastid"
547
 
548
+ #: ../includes/ot-functions-admin.php:2440
549
  #: ../includes/ot-functions-docs-page.php:223
550
  msgid "Page Select"
551
  msgstr "Lehekülje rippvalik"
552
 
553
+ #: ../includes/ot-functions-admin.php:2441
554
  #: ../includes/ot-functions-docs-page.php:226
555
  msgid "Post Checkbox"
556
  msgstr "Postituste valikkastid"
557
 
558
+ #: ../includes/ot-functions-admin.php:2442
559
  #: ../includes/ot-functions-docs-page.php:229
560
  msgid "Post Select"
561
  msgstr "Postituse rippvalik"
562
 
563
+ #: ../includes/ot-functions-admin.php:2443
564
  #: ../includes/ot-functions-docs-page.php:232
565
  msgid "Radio"
566
  msgstr "Raadiokastid"
567
 
568
+ #: ../includes/ot-functions-admin.php:2444
569
  #: ../includes/ot-functions-docs-page.php:235
570
  msgid "Radio Image"
571
  msgstr "Pildiga raadiokastid"
572
 
573
+ #: ../includes/ot-functions-admin.php:2445
574
  #: ../includes/ot-functions-docs-page.php:262
575
  msgid "Select"
576
  msgstr "Rippvalik"
577
 
578
+ #: ../includes/ot-functions-admin.php:2446
579
  #: ../includes/ot-functions-docs-page.php:265
580
  msgid "Sidebar Select"
581
  msgstr "Küljeriba rippvalik"
582
 
583
+ #: ../includes/ot-functions-admin.php:2447
584
  #: ../includes/ot-functions-docs-page.php:269
585
  msgid "Slider"
586
  msgstr "Slaidiesitaja"
587
 
588
+ #: ../includes/ot-functions-admin.php:2448
589
  #: ../includes/ot-functions-docs-page.php:272
590
  msgid "Social Links"
591
  msgstr "Sotsiaalmeedia"
592
 
593
+ #: ../includes/ot-functions-admin.php:2449
594
  #: ../includes/ot-functions-docs-page.php:275
595
  msgid "Spacing"
596
  msgstr "Vahed"
597
 
598
+ #: ../includes/ot-functions-admin.php:2450
599
  #: ../includes/ot-functions-docs-page.php:278
600
  msgid "Tab"
601
  msgstr "Sakk"
602
 
603
+ #: ../includes/ot-functions-admin.php:2451
604
  #: ../includes/ot-functions-docs-page.php:281
605
  msgid "Tag Checkbox"
606
  msgstr "Sildi valikkastid"
607
 
608
+ #: ../includes/ot-functions-admin.php:2452
609
  #: ../includes/ot-functions-docs-page.php:284
610
  msgid "Tag Select"
611
  msgstr "Sildi rippvalik"
612
 
613
+ #: ../includes/ot-functions-admin.php:2453
614
  #: ../includes/ot-functions-docs-page.php:287
615
  msgid "Taxonomy Checkbox"
616
  msgstr "Taksonoomia valikkastid"
617
 
618
+ #: ../includes/ot-functions-admin.php:2454
619
  #: ../includes/ot-functions-docs-page.php:290
620
  msgid "Taxonomy Select"
621
  msgstr "Taksonoomia rippvalik"
622
 
623
+ #: ../includes/ot-functions-admin.php:2455
624
  #: ../includes/ot-functions-docs-page.php:293
625
  msgid "Text"
626
  msgstr "Tekstisisend"
627
 
628
+ #: ../includes/ot-functions-admin.php:2456
629
  #: ../includes/ot-functions-docs-page.php:296
630
  msgid "Textarea"
631
  msgstr "Tekstiväli"
632
 
633
+ #: ../includes/ot-functions-admin.php:2457
634
  #: ../includes/ot-functions-docs-page.php:355
635
  msgid "Textarea Simple"
636
  msgstr "Lihtne tekstiväli"
637
 
638
+ #: ../includes/ot-functions-admin.php:2458
639
  #: ../includes/ot-functions-docs-page.php:371
640
  msgid "Textblock"
641
  msgstr "Tekstiblokk"
642
 
643
+ #: ../includes/ot-functions-admin.php:2459
644
  #: ../includes/ot-functions-docs-page.php:374
645
  msgid "Textblock Titled"
646
  msgstr "Pealkirjaga tekstiblokk"
647
 
648
+ #: ../includes/ot-functions-admin.php:2460
649
  #: ../includes/ot-functions-docs-page.php:377
650
  msgid "Typography"
651
  msgstr "Tüpograafia"
652
 
653
+ #: ../includes/ot-functions-admin.php:2461
654
  #: ../includes/ot-functions-docs-page.php:397
655
  msgid "Upload"
656
  msgstr "Lae üles"
657
 
658
+ #: ../includes/ot-functions-admin.php:3196
659
  msgid "Left Sidebar"
660
  msgstr "Vasak küljendusmenüü"
661
 
662
+ #: ../includes/ot-functions-admin.php:3201
663
  msgid "Right Sidebar"
664
  msgstr "Parem küljendusmenüü"
665
 
666
+ #: ../includes/ot-functions-admin.php:3206
667
  msgid "Full Width (no sidebar)"
668
  msgstr "Täies pikkuses (ilma küljendusmenüüta)"
669
 
670
+ #: ../includes/ot-functions-admin.php:3211
671
  msgid "Dual Sidebar"
672
  msgstr "Topelt küljendusmenüü"
673
 
674
+ #: ../includes/ot-functions-admin.php:3216
675
  msgid "Left Dual Sidebar"
676
  msgstr "Kaks küljendusmenüüd vasakul"
677
 
678
+ #: ../includes/ot-functions-admin.php:3221
679
  msgid "Right Dual Sidebar"
680
  msgstr "Kaks küljendusmenüüd paremal"
681
 
682
+ #: ../includes/ot-functions-admin.php:3262
683
+ #: ../includes/ot-functions-admin.php:3318
684
+ #: ../includes/ot-functions-admin.php:5506
685
  msgid "Link"
686
  msgstr "Viide"
687
 
688
+ #: ../includes/ot-functions-admin.php:3273
689
+ #: ../includes/ot-functions-admin.php:3324
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:3388
697
  msgid "Name"
698
  msgstr "Nimetus"
699
 
700
+ #: ../includes/ot-functions-admin.php:3389
701
  msgid "Enter the name of the social website."
702
  msgstr "Sisesta sotsiaalmeedia veebilehe nimi."
703
 
704
+ #: ../includes/ot-functions-admin.php:3397
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:3403
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:3756
718
  #, php-format
719
  msgid "Unable to write to file %s."
720
  msgstr ""
721
 
722
+ #: ../includes/ot-functions-admin.php:4026
723
  msgid "edit"
724
  msgstr "muuda"
725
 
726
+ #: ../includes/ot-functions-admin.php:4027
 
727
  #: ../includes/ot-functions-admin.php:4095
728
+ #: ../includes/ot-functions-admin.php:4096
729
  #: ../includes/ot-functions-admin.php:4258
730
+ #: ../includes/ot-functions-admin.php:4259
731
  #: ../includes/ot-functions-admin.php:4324
732
+ #: ../includes/ot-functions-admin.php:4325
733
  #: ../includes/ot-functions-admin.php:4452
734
+ #: ../includes/ot-functions-admin.php:4453
735
  #: ../includes/ot-functions-admin.php:4605
736
+ #: ../includes/ot-functions-admin.php:4606
737
  msgid "Edit"
738
  msgstr "Muuda"
739
 
 
740
  #: ../includes/ot-functions-admin.php:4029
741
+ #: ../includes/ot-functions-admin.php:4030
742
  #: ../includes/ot-functions-admin.php:4098
743
+ #: ../includes/ot-functions-admin.php:4099
744
  #: ../includes/ot-functions-admin.php:4261
745
+ #: ../includes/ot-functions-admin.php:4262
746
  #: ../includes/ot-functions-admin.php:4327
747
+ #: ../includes/ot-functions-admin.php:4328
748
  #: ../includes/ot-functions-admin.php:4386
749
+ #: ../includes/ot-functions-admin.php:4387
750
  #: ../includes/ot-functions-admin.php:4455
751
+ #: ../includes/ot-functions-admin.php:4456
752
  #: ../includes/ot-functions-admin.php:4608
753
+ #: ../includes/ot-functions-admin.php:4609
754
  msgid "Delete"
755
  msgstr "Kustuta"
756
 
757
+ #: ../includes/ot-functions-admin.php:4036
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:4044
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:4105
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:4113
782
+ #: ../includes/ot-functions-admin.php:4342
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:4121
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:4132
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:4140
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:4145
816
  msgid "Add Choice"
817
  msgstr "Lisa valik"
818
 
819
+ #: ../includes/ot-functions-admin.php:4151
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:4156
825
  #: ../includes/ot-functions-settings-page.php:93
826
  msgid "Add Setting"
827
  msgstr "Lisa säte"
828
 
829
+ #: ../includes/ot-functions-admin.php:4162
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:4170
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:4178
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:4186
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:4194
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:4202
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:4210
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:4218
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:4221
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:4222
916
  msgid "or"
917
  msgstr "või"
918
 
919
+ #: ../includes/ot-functions-admin.php:4268
920
  #: ../includes/ot-functions-docs-page.php:29
921
  msgid "Label"
922
  msgstr "Nimetus"
923
 
924
+ #: ../includes/ot-functions-admin.php:4278
925
  msgid "Value"
926
  msgstr "Väärtus"
927
 
928
+ #: ../includes/ot-functions-admin.php:4288
929
  msgid "Image Source (Radio Image only)"
930
  msgstr "Pildi allikas ( ainult pildiga raadiovaliku jaoks )"
931
 
932
+ #: ../includes/ot-functions-admin.php:4334
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:4350
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:4381
949
  msgid "Layout"
950
  msgstr "Paigutus"
951
 
 
952
  #: ../includes/ot-functions-admin.php:4383
953
+ #: ../includes/ot-functions-admin.php:4384
954
  msgid "Activate"
955
  msgstr "Aktiveeri"
956
 
957
+ #: ../includes/ot-functions-admin.php:4420 ../includes/ot-meta-box-api.php:231
958
  #: ../includes/ot-settings-api.php:610
959
  msgid "Title"
960
  msgstr "Pealkiri"
961
 
962
+ #: ../includes/ot-functions-admin.php:4760
963
  msgid "New Layout"
964
  msgstr "Uus paigutus"
965
 
966
+ #: ../includes/ot-functions-admin.php:5515
967
  msgid "Link URL"
968
  msgstr "Viide"
969
 
970
+ #: ../includes/ot-functions-admin.php:5522
971
  msgid "Link Title"
972
  msgstr "Lingi pealkiri"
973
 
974
+ #: ../includes/ot-functions-admin.php:5552
975
  msgid "Quote"
976
  msgstr "Tsitaat"
977
 
978
+ #: ../includes/ot-functions-admin.php:5561
979
  msgid "Source Name (ex. author, singer, actor)"
980
  msgstr "Allika nimi (nt autor, laulja, näitleja)"
981
 
982
+ #: ../includes/ot-functions-admin.php:5568
983
  msgid "Source URL"
984
  msgstr "Allika URL"
985
 
986
+ #: ../includes/ot-functions-admin.php:5575
987
  msgid "Source Title (ex. book, song, movie)"
988
  msgstr "Allika pealkiri (nt raamat, laul, film)"
989
 
990
+ #: ../includes/ot-functions-admin.php:5582
991
  msgid "Source Date"
992
  msgstr "Allika kuupäev"
993
 
994
+ #: ../includes/ot-functions-admin.php:5612
995
  msgid "Video"
996
  msgstr "Video"
997
 
998
+ #: ../includes/ot-functions-admin.php:5621
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:5621
1010
+ #: ../includes/ot-functions-admin.php:5660
1011
  msgid "Wordpress Codex"
1012
  msgstr "Wordpress Codex"
1013
 
1014
+ #: ../includes/ot-functions-admin.php:5651
1015
  msgid "Audio"
1016
  msgstr "Audio"
1017
 
1018
+ #: ../includes/ot-functions-admin.php:5660
1019
  #, php-format
1020
  msgid ""
1021
  "Embed audio from services like SoundCloud and Rdio. You can find a list of "
2910
  msgid "Reset Options"
2911
  msgstr "Algseadista seaded"
2912
 
2913
+ #: ../ot-loader.php:22
2914
  msgid ""
2915
  "OptionTree is installed as a plugin and also embedded in your current theme. "
2916
  "Please deactivate the plugin to load the theme dependent version of "
languages/option-tree.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: OptionTree\n"
4
- "POT-Creation-Date: 2015-05-01 00:04-0800\n"
5
- "PO-Revision-Date: 2015-05-01 00:04-0800\n"
6
  "Last-Translator: Derek Herman <derek@valendesigns.com>\n"
7
  "Language-Team: Valen Designs\n"
8
  "Language: en\n"
@@ -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:846
274
  #: ../includes/ot-functions-docs-page.php:398
275
- #: ../includes/ot-functions-settings-page.php:170 ../ot-loader.php:787
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:3218
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:3250
342
- #: ../includes/ot-functions-admin.php:3311
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:1067
351
  msgid "General"
352
  msgstr ""
353
 
354
- #: ../includes/ot-functions-admin.php:1073
355
  msgid "Sample Text Field Label"
356
  msgstr ""
357
 
358
- #: ../includes/ot-functions-admin.php:1074
359
  msgid "Description for the sample text field."
360
  msgstr ""
361
 
362
- #: ../includes/ot-functions-admin.php:2316
363
  msgid "Settings updated."
364
  msgstr ""
365
 
366
- #: ../includes/ot-functions-admin.php:2320
367
  msgid "Settings could not be saved."
368
  msgstr ""
369
 
370
- #: ../includes/ot-functions-admin.php:2328
371
  msgid "Settings Imported."
372
  msgstr ""
373
 
374
- #: ../includes/ot-functions-admin.php:2332
375
  msgid "Settings could not be imported."
376
  msgstr ""
377
 
378
- #: ../includes/ot-functions-admin.php:2339
379
  msgid "Data Imported."
380
  msgstr ""
381
 
382
- #: ../includes/ot-functions-admin.php:2343
383
  msgid "Data could not be imported."
384
  msgstr ""
385
 
386
- #: ../includes/ot-functions-admin.php:2351
387
  msgid "Layouts Imported."
388
  msgstr ""
389
 
390
- #: ../includes/ot-functions-admin.php:2355
391
  msgid "Layouts could not be imported."
392
  msgstr ""
393
 
394
- #: ../includes/ot-functions-admin.php:2363
395
  msgid "Layouts Updated."
396
  msgstr ""
397
 
398
- #: ../includes/ot-functions-admin.php:2367
399
  msgid "Layouts could not be updated."
400
  msgstr ""
401
 
402
- #: ../includes/ot-functions-admin.php:2371
403
  msgid "Layouts have been deleted."
404
  msgstr ""
405
 
406
- #: ../includes/ot-functions-admin.php:2377
407
  msgid "Layout activated."
408
  msgstr ""
409
 
410
- #: ../includes/ot-functions-admin.php:2416
411
  #: ../includes/ot-functions-docs-page.php:110
412
  msgid "Background"
413
  msgstr ""
414
 
415
- #: ../includes/ot-functions-admin.php:2417
416
  #: ../includes/ot-functions-docs-page.php:113
417
  msgid "Border"
418
  msgstr ""
419
 
420
- #: ../includes/ot-functions-admin.php:2418
421
  #: ../includes/ot-functions-docs-page.php:116
422
  msgid "Box Shadow"
423
  msgstr ""
424
 
425
- #: ../includes/ot-functions-admin.php:2419
426
  #: ../includes/ot-functions-docs-page.php:119
427
  msgid "Category Checkbox"
428
  msgstr ""
429
 
430
- #: ../includes/ot-functions-admin.php:2420
431
  #: ../includes/ot-functions-docs-page.php:122
432
  msgid "Category Select"
433
  msgstr ""
434
 
435
- #: ../includes/ot-functions-admin.php:2421
436
  #: ../includes/ot-functions-docs-page.php:125
437
  msgid "Checkbox"
438
  msgstr ""
439
 
440
- #: ../includes/ot-functions-admin.php:2422
441
  #: ../includes/ot-functions-docs-page.php:128
442
  msgid "Colorpicker"
443
  msgstr ""
444
 
445
- #: ../includes/ot-functions-admin.php:2423
446
  #: ../includes/ot-functions-docs-page.php:131
447
  msgid "Colorpicker Opacity"
448
  msgstr ""
449
 
450
- #: ../includes/ot-functions-admin.php:2424
451
  #: ../includes/ot-functions-docs-page.php:134
452
  msgid "CSS"
453
  msgstr ""
454
 
455
- #: ../includes/ot-functions-admin.php:2425
456
  #: ../includes/ot-functions-docs-page.php:153
457
  msgid "Custom Post Type Checkbox"
458
  msgstr ""
459
 
460
- #: ../includes/ot-functions-admin.php:2426
461
  #: ../includes/ot-functions-docs-page.php:156
462
  msgid "Custom Post Type Select"
463
  msgstr ""
464
 
465
- #: ../includes/ot-functions-admin.php:2427
466
  #: ../includes/ot-functions-docs-page.php:159
467
  msgid "Date Picker"
468
  msgstr ""
469
 
470
- #: ../includes/ot-functions-admin.php:2428
471
  #: ../includes/ot-functions-docs-page.php:162
472
  msgid "Date Time Picker"
473
  msgstr ""
474
 
475
- #: ../includes/ot-functions-admin.php:2429
476
  #: ../includes/ot-functions-docs-page.php:165
477
  msgid "Dimension"
478
  msgstr ""
479
 
480
- #: ../includes/ot-functions-admin.php:2430
481
- #: ../includes/ot-functions-admin.php:5465
482
  #: ../includes/ot-functions-docs-page.php:168
483
  msgid "Gallery"
484
  msgstr ""
485
 
486
- #: ../includes/ot-functions-admin.php:2431
487
  #: ../includes/ot-functions-docs-page.php:171
488
  msgid "Google Fonts"
489
  msgstr ""
490
 
491
- #: ../includes/ot-functions-admin.php:2432
492
  #: ../includes/ot-functions-docs-page.php:174
493
  msgid "JavaScript"
494
  msgstr ""
495
 
496
- #: ../includes/ot-functions-admin.php:2433
497
  #: ../includes/ot-functions-docs-page.php:177
498
  msgid "Link Color"
499
  msgstr ""
500
 
501
- #: ../includes/ot-functions-admin.php:2434
502
  #: ../includes/ot-functions-docs-page.php:180
503
  msgid "List Item"
504
  msgstr ""
505
 
506
- #: ../includes/ot-functions-admin.php:2435
507
  #: ../includes/ot-functions-docs-page.php:183
508
  msgid "Measurement"
509
  msgstr ""
510
 
511
- #: ../includes/ot-functions-admin.php:2436
512
  #: ../includes/ot-functions-docs-page.php:214
513
  msgid "Numeric Slider"
514
  msgstr ""
515
 
516
- #: ../includes/ot-functions-admin.php:2437
517
  #: ../includes/ot-functions-docs-page.php:217
518
  msgid "On/Off"
519
  msgstr ""
520
 
521
- #: ../includes/ot-functions-admin.php:2438
522
  #: ../includes/ot-functions-docs-page.php:220
523
  msgid "Page Checkbox"
524
  msgstr ""
525
 
526
- #: ../includes/ot-functions-admin.php:2439
527
  #: ../includes/ot-functions-docs-page.php:223
528
  msgid "Page Select"
529
  msgstr ""
530
 
531
- #: ../includes/ot-functions-admin.php:2440
532
  #: ../includes/ot-functions-docs-page.php:226
533
  msgid "Post Checkbox"
534
  msgstr ""
535
 
536
- #: ../includes/ot-functions-admin.php:2441
537
  #: ../includes/ot-functions-docs-page.php:229
538
  msgid "Post Select"
539
  msgstr ""
540
 
541
- #: ../includes/ot-functions-admin.php:2442
542
  #: ../includes/ot-functions-docs-page.php:232
543
  msgid "Radio"
544
  msgstr ""
545
 
546
- #: ../includes/ot-functions-admin.php:2443
547
  #: ../includes/ot-functions-docs-page.php:235
548
  msgid "Radio Image"
549
  msgstr ""
550
 
551
- #: ../includes/ot-functions-admin.php:2444
552
  #: ../includes/ot-functions-docs-page.php:262
553
  msgid "Select"
554
  msgstr ""
555
 
556
- #: ../includes/ot-functions-admin.php:2445
557
  #: ../includes/ot-functions-docs-page.php:265
558
  msgid "Sidebar Select"
559
  msgstr ""
560
 
561
- #: ../includes/ot-functions-admin.php:2446
562
  #: ../includes/ot-functions-docs-page.php:269
563
  msgid "Slider"
564
  msgstr ""
565
 
566
- #: ../includes/ot-functions-admin.php:2447
567
  #: ../includes/ot-functions-docs-page.php:272
568
  msgid "Social Links"
569
  msgstr ""
570
 
571
- #: ../includes/ot-functions-admin.php:2448
572
  #: ../includes/ot-functions-docs-page.php:275
573
  msgid "Spacing"
574
  msgstr ""
575
 
576
- #: ../includes/ot-functions-admin.php:2449
577
  #: ../includes/ot-functions-docs-page.php:278
578
  msgid "Tab"
579
  msgstr ""
580
 
581
- #: ../includes/ot-functions-admin.php:2450
582
  #: ../includes/ot-functions-docs-page.php:281
583
  msgid "Tag Checkbox"
584
  msgstr ""
585
 
586
- #: ../includes/ot-functions-admin.php:2451
587
  #: ../includes/ot-functions-docs-page.php:284
588
  msgid "Tag Select"
589
  msgstr ""
590
 
591
- #: ../includes/ot-functions-admin.php:2452
592
  #: ../includes/ot-functions-docs-page.php:287
593
  msgid "Taxonomy Checkbox"
594
  msgstr ""
595
 
596
- #: ../includes/ot-functions-admin.php:2453
597
  #: ../includes/ot-functions-docs-page.php:290
598
  msgid "Taxonomy Select"
599
  msgstr ""
600
 
601
- #: ../includes/ot-functions-admin.php:2454
602
  #: ../includes/ot-functions-docs-page.php:293
603
  msgid "Text"
604
  msgstr ""
605
 
606
- #: ../includes/ot-functions-admin.php:2455
607
  #: ../includes/ot-functions-docs-page.php:296
608
  msgid "Textarea"
609
  msgstr ""
610
 
611
- #: ../includes/ot-functions-admin.php:2456
612
  #: ../includes/ot-functions-docs-page.php:355
613
  msgid "Textarea Simple"
614
  msgstr ""
615
 
616
- #: ../includes/ot-functions-admin.php:2457
617
  #: ../includes/ot-functions-docs-page.php:371
618
  msgid "Textblock"
619
  msgstr ""
620
 
621
- #: ../includes/ot-functions-admin.php:2458
622
  #: ../includes/ot-functions-docs-page.php:374
623
  msgid "Textblock Titled"
624
  msgstr ""
625
 
626
- #: ../includes/ot-functions-admin.php:2459
627
  #: ../includes/ot-functions-docs-page.php:377
628
  msgid "Typography"
629
  msgstr ""
630
 
631
- #: ../includes/ot-functions-admin.php:2460
632
  #: ../includes/ot-functions-docs-page.php:397
633
  msgid "Upload"
634
  msgstr ""
635
 
636
- #: ../includes/ot-functions-admin.php:3195
637
  msgid "Left Sidebar"
638
  msgstr ""
639
 
640
- #: ../includes/ot-functions-admin.php:3200
641
  msgid "Right Sidebar"
642
  msgstr ""
643
 
644
- #: ../includes/ot-functions-admin.php:3205
645
  msgid "Full Width (no sidebar)"
646
  msgstr ""
647
 
648
- #: ../includes/ot-functions-admin.php:3210
649
  msgid "Dual Sidebar"
650
  msgstr ""
651
 
652
- #: ../includes/ot-functions-admin.php:3215
653
  msgid "Left Dual Sidebar"
654
  msgstr ""
655
 
656
- #: ../includes/ot-functions-admin.php:3220
657
  msgid "Right Dual Sidebar"
658
  msgstr ""
659
 
660
- #: ../includes/ot-functions-admin.php:3261
661
- #: ../includes/ot-functions-admin.php:3317
662
- #: ../includes/ot-functions-admin.php:5505
663
  msgid "Link"
664
  msgstr ""
665
 
666
- #: ../includes/ot-functions-admin.php:3272
667
- #: ../includes/ot-functions-admin.php:3323
668
  #: ../includes/ot-functions-docs-page.php:43
669
  #: ../includes/ot-functions-docs-page.php:428
670
  #: ../includes/ot-functions-docs-page.php:478
671
  msgid "Description"
672
  msgstr ""
673
 
674
- #: ../includes/ot-functions-admin.php:3387
675
  msgid "Name"
676
  msgstr ""
677
 
678
- #: ../includes/ot-functions-admin.php:3388
679
  msgid "Enter the name of the social website."
680
  msgstr ""
681
 
682
- #: ../includes/ot-functions-admin.php:3396
683
  msgid "Enter the text shown in the title attribute of the link."
684
  msgstr ""
685
 
686
- #: ../includes/ot-functions-admin.php:3402
687
  #, php-format
688
  msgid ""
689
  "Enter a link to the profile or page on the social website. Remember to add "
690
  "the %s part to the front of the link."
691
  msgstr ""
692
 
693
- #: ../includes/ot-functions-admin.php:3755
694
  #, php-format
695
  msgid "Unable to write to file %s."
696
  msgstr ""
697
 
698
- #: ../includes/ot-functions-admin.php:4025
699
  msgid "edit"
700
  msgstr ""
701
 
702
- #: ../includes/ot-functions-admin.php:4026
703
- #: ../includes/ot-functions-admin.php:4094
704
  #: ../includes/ot-functions-admin.php:4095
705
- #: ../includes/ot-functions-admin.php:4257
706
  #: ../includes/ot-functions-admin.php:4258
707
- #: ../includes/ot-functions-admin.php:4323
708
  #: ../includes/ot-functions-admin.php:4324
709
- #: ../includes/ot-functions-admin.php:4451
710
  #: ../includes/ot-functions-admin.php:4452
711
- #: ../includes/ot-functions-admin.php:4604
712
  #: ../includes/ot-functions-admin.php:4605
 
713
  msgid "Edit"
714
  msgstr ""
715
 
716
- #: ../includes/ot-functions-admin.php:4028
717
  #: ../includes/ot-functions-admin.php:4029
718
- #: ../includes/ot-functions-admin.php:4097
719
  #: ../includes/ot-functions-admin.php:4098
720
- #: ../includes/ot-functions-admin.php:4260
721
  #: ../includes/ot-functions-admin.php:4261
722
- #: ../includes/ot-functions-admin.php:4326
723
  #: ../includes/ot-functions-admin.php:4327
724
- #: ../includes/ot-functions-admin.php:4385
725
  #: ../includes/ot-functions-admin.php:4386
726
- #: ../includes/ot-functions-admin.php:4454
727
  #: ../includes/ot-functions-admin.php:4455
728
- #: ../includes/ot-functions-admin.php:4607
729
  #: ../includes/ot-functions-admin.php:4608
 
730
  msgid "Delete"
731
  msgstr ""
732
 
733
- #: ../includes/ot-functions-admin.php:4035
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:4043
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:4104
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:4112
752
- #: ../includes/ot-functions-admin.php:4341
753
  msgid ""
754
  "<strong>ID</strong>: A unique lower case alphanumeric string, underscores "
755
  "allowed."
756
  msgstr ""
757
 
758
- #: ../includes/ot-functions-admin.php:4120
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:4131
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:4139
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:4144
778
  msgid "Add Choice"
779
  msgstr ""
780
 
781
- #: ../includes/ot-functions-admin.php:4150
782
  msgid ""
783
  "<strong>Settings</strong>: This will only affect the List Item option type."
784
  msgstr ""
785
 
786
- #: ../includes/ot-functions-admin.php:4155
787
  #: ../includes/ot-functions-settings-page.php:93
788
  msgid "Add Setting"
789
  msgstr ""
790
 
791
- #: ../includes/ot-functions-admin.php:4161
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:4169
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:4177
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:4185
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:4193
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:4201
829
  msgid "<strong>CSS Class</strong>: Add and optional class to this option type."
830
  msgstr ""
831
 
832
- #: ../includes/ot-functions-admin.php:4209
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:4217
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:4220
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:4221
854
  msgid "or"
855
  msgstr ""
856
 
857
- #: ../includes/ot-functions-admin.php:4267
858
  #: ../includes/ot-functions-docs-page.php:29
859
  msgid "Label"
860
  msgstr ""
861
 
862
- #: ../includes/ot-functions-admin.php:4277
863
  msgid "Value"
864
  msgstr ""
865
 
866
- #: ../includes/ot-functions-admin.php:4287
867
  msgid "Image Source (Radio Image only)"
868
  msgstr ""
869
 
870
- #: ../includes/ot-functions-admin.php:4333
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:4349
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:4380
883
  msgid "Layout"
884
  msgstr ""
885
 
886
- #: ../includes/ot-functions-admin.php:4382
887
  #: ../includes/ot-functions-admin.php:4383
 
888
  msgid "Activate"
889
  msgstr ""
890
 
891
- #: ../includes/ot-functions-admin.php:4419 ../includes/ot-meta-box-api.php:231
892
  #: ../includes/ot-settings-api.php:610
893
  msgid "Title"
894
  msgstr ""
895
 
896
- #: ../includes/ot-functions-admin.php:4759
897
  msgid "New Layout"
898
  msgstr ""
899
 
900
- #: ../includes/ot-functions-admin.php:5514
901
  msgid "Link URL"
902
  msgstr ""
903
 
904
- #: ../includes/ot-functions-admin.php:5521
905
  msgid "Link Title"
906
  msgstr ""
907
 
908
- #: ../includes/ot-functions-admin.php:5551
909
  msgid "Quote"
910
  msgstr ""
911
 
912
- #: ../includes/ot-functions-admin.php:5560
913
  msgid "Source Name (ex. author, singer, actor)"
914
  msgstr ""
915
 
916
- #: ../includes/ot-functions-admin.php:5567
917
  msgid "Source URL"
918
  msgstr ""
919
 
920
- #: ../includes/ot-functions-admin.php:5574
921
  msgid "Source Title (ex. book, song, movie)"
922
  msgstr ""
923
 
924
- #: ../includes/ot-functions-admin.php:5581
925
  msgid "Source Date"
926
  msgstr ""
927
 
928
- #: ../includes/ot-functions-admin.php:5611
929
  msgid "Video"
930
  msgstr ""
931
 
932
- #: ../includes/ot-functions-admin.php:5620
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:5620
941
- #: ../includes/ot-functions-admin.php:5659
942
  msgid "Wordpress Codex"
943
  msgstr ""
944
 
945
- #: ../includes/ot-functions-admin.php:5650
946
  msgid "Audio"
947
  msgstr ""
948
 
949
- #: ../includes/ot-functions-admin.php:5659
950
  #, php-format
951
  msgid ""
952
  "Embed audio from services like SoundCloud and Rdio. You can find a list of "
@@ -2453,7 +2453,7 @@ msgstr ""
2453
  msgid "Reset Options"
2454
  msgstr ""
2455
 
2456
- #: ../ot-loader.php:21
2457
  msgid ""
2458
  "OptionTree is installed as a plugin and also embedded in your current theme. "
2459
  "Please deactivate the plugin to load the theme dependent version of "
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: OptionTree\n"
4
+ "POT-Creation-Date: 2016-01-31 23:23-0800\n"
5
+ "PO-Revision-Date: 2016-01-31 23:24-0800\n"
6
  "Last-Translator: Derek Herman <derek@valendesigns.com>\n"
7
  "Language-Team: Valen Designs\n"
8
  "Language: en\n"
270
  msgid "The %s Colorpicker only allows valid hexadecimal or rgba values."
271
  msgstr ""
272
 
273
+ #: ../includes/ot-functions-admin.php:847
274
  #: ../includes/ot-functions-docs-page.php:398
275
+ #: ../includes/ot-functions-settings-page.php:170 ../ot-loader.php:785
276
  msgid "Send to OptionTree"
277
  msgstr ""
278
 
279
+ #: ../includes/ot-functions-admin.php:848
280
  #: ../includes/ot-functions-option-types.php:257
281
  #: ../includes/ot-functions-option-types.php:3218
282
  msgid "Remove Media"
283
  msgstr ""
284
 
285
+ #: ../includes/ot-functions-admin.php:849
286
  msgid "Are you sure you want to reset back to the defaults?"
287
  msgstr ""
288
 
289
+ #: ../includes/ot-functions-admin.php:850
290
  msgid "You can't remove this! But you can edit the values."
291
  msgstr ""
292
 
293
+ #: ../includes/ot-functions-admin.php:851
294
  msgid "Are you sure you want to remove this?"
295
  msgstr ""
296
 
297
+ #: ../includes/ot-functions-admin.php:852
298
  msgid "Are you sure you want to activate this layout?"
299
  msgstr ""
300
 
301
+ #: ../includes/ot-functions-admin.php:853
302
  msgid "Sorry, you can't have settings three levels deep."
303
  msgstr ""
304
 
305
+ #: ../includes/ot-functions-admin.php:854
306
  #: ../includes/ot-functions-option-types.php:1159
307
  msgid "Delete Gallery"
308
  msgstr ""
309
 
310
+ #: ../includes/ot-functions-admin.php:855
311
  #: ../includes/ot-functions-option-types.php:1160
312
  msgid "Edit Gallery"
313
  msgstr ""
314
 
315
+ #: ../includes/ot-functions-admin.php:856
316
  #: ../includes/ot-functions-option-types.php:1167
317
  msgid "Create Gallery"
318
  msgstr ""
319
 
320
+ #: ../includes/ot-functions-admin.php:857
321
  msgid "Are you sure you want to delete this Gallery?"
322
  msgstr ""
323
 
324
+ #: ../includes/ot-functions-admin.php:858
325
  msgid "Today"
326
  msgstr ""
327
 
328
+ #: ../includes/ot-functions-admin.php:859
329
  msgid "Now"
330
  msgstr ""
331
 
332
+ #: ../includes/ot-functions-admin.php:860
333
  msgid "Close"
334
  msgstr ""
335
 
336
+ #: ../includes/ot-functions-admin.php:861
337
  msgid "Featured Image"
338
  msgstr ""
339
 
340
+ #: ../includes/ot-functions-admin.php:862
341
+ #: ../includes/ot-functions-admin.php:3251
342
+ #: ../includes/ot-functions-admin.php:3312
343
  msgid "Image"
344
  msgstr ""
345
 
346
+ #: ../includes/ot-functions-admin.php:930
347
  msgid "Option Tree"
348
  msgstr ""
349
 
350
+ #: ../includes/ot-functions-admin.php:1068
351
  msgid "General"
352
  msgstr ""
353
 
354
+ #: ../includes/ot-functions-admin.php:1074
355
  msgid "Sample Text Field Label"
356
  msgstr ""
357
 
358
+ #: ../includes/ot-functions-admin.php:1075
359
  msgid "Description for the sample text field."
360
  msgstr ""
361
 
362
+ #: ../includes/ot-functions-admin.php:2317
363
  msgid "Settings updated."
364
  msgstr ""
365
 
366
+ #: ../includes/ot-functions-admin.php:2321
367
  msgid "Settings could not be saved."
368
  msgstr ""
369
 
370
+ #: ../includes/ot-functions-admin.php:2329
371
  msgid "Settings Imported."
372
  msgstr ""
373
 
374
+ #: ../includes/ot-functions-admin.php:2333
375
  msgid "Settings could not be imported."
376
  msgstr ""
377
 
378
+ #: ../includes/ot-functions-admin.php:2340
379
  msgid "Data Imported."
380
  msgstr ""
381
 
382
+ #: ../includes/ot-functions-admin.php:2344
383
  msgid "Data could not be imported."
384
  msgstr ""
385
 
386
+ #: ../includes/ot-functions-admin.php:2352
387
  msgid "Layouts Imported."
388
  msgstr ""
389
 
390
+ #: ../includes/ot-functions-admin.php:2356
391
  msgid "Layouts could not be imported."
392
  msgstr ""
393
 
394
+ #: ../includes/ot-functions-admin.php:2364
395
  msgid "Layouts Updated."
396
  msgstr ""
397
 
398
+ #: ../includes/ot-functions-admin.php:2368
399
  msgid "Layouts could not be updated."
400
  msgstr ""
401
 
402
+ #: ../includes/ot-functions-admin.php:2372
403
  msgid "Layouts have been deleted."
404
  msgstr ""
405
 
406
+ #: ../includes/ot-functions-admin.php:2378
407
  msgid "Layout activated."
408
  msgstr ""
409
 
410
+ #: ../includes/ot-functions-admin.php:2417
411
  #: ../includes/ot-functions-docs-page.php:110
412
  msgid "Background"
413
  msgstr ""
414
 
415
+ #: ../includes/ot-functions-admin.php:2418
416
  #: ../includes/ot-functions-docs-page.php:113
417
  msgid "Border"
418
  msgstr ""
419
 
420
+ #: ../includes/ot-functions-admin.php:2419
421
  #: ../includes/ot-functions-docs-page.php:116
422
  msgid "Box Shadow"
423
  msgstr ""
424
 
425
+ #: ../includes/ot-functions-admin.php:2420
426
  #: ../includes/ot-functions-docs-page.php:119
427
  msgid "Category Checkbox"
428
  msgstr ""
429
 
430
+ #: ../includes/ot-functions-admin.php:2421
431
  #: ../includes/ot-functions-docs-page.php:122
432
  msgid "Category Select"
433
  msgstr ""
434
 
435
+ #: ../includes/ot-functions-admin.php:2422
436
  #: ../includes/ot-functions-docs-page.php:125
437
  msgid "Checkbox"
438
  msgstr ""
439
 
440
+ #: ../includes/ot-functions-admin.php:2423
441
  #: ../includes/ot-functions-docs-page.php:128
442
  msgid "Colorpicker"
443
  msgstr ""
444
 
445
+ #: ../includes/ot-functions-admin.php:2424
446
  #: ../includes/ot-functions-docs-page.php:131
447
  msgid "Colorpicker Opacity"
448
  msgstr ""
449
 
450
+ #: ../includes/ot-functions-admin.php:2425
451
  #: ../includes/ot-functions-docs-page.php:134
452
  msgid "CSS"
453
  msgstr ""
454
 
455
+ #: ../includes/ot-functions-admin.php:2426
456
  #: ../includes/ot-functions-docs-page.php:153
457
  msgid "Custom Post Type Checkbox"
458
  msgstr ""
459
 
460
+ #: ../includes/ot-functions-admin.php:2427
461
  #: ../includes/ot-functions-docs-page.php:156
462
  msgid "Custom Post Type Select"
463
  msgstr ""
464
 
465
+ #: ../includes/ot-functions-admin.php:2428
466
  #: ../includes/ot-functions-docs-page.php:159
467
  msgid "Date Picker"
468
  msgstr ""
469
 
470
+ #: ../includes/ot-functions-admin.php:2429
471
  #: ../includes/ot-functions-docs-page.php:162
472
  msgid "Date Time Picker"
473
  msgstr ""
474
 
475
+ #: ../includes/ot-functions-admin.php:2430
476
  #: ../includes/ot-functions-docs-page.php:165
477
  msgid "Dimension"
478
  msgstr ""
479
 
480
+ #: ../includes/ot-functions-admin.php:2431
481
+ #: ../includes/ot-functions-admin.php:5466
482
  #: ../includes/ot-functions-docs-page.php:168
483
  msgid "Gallery"
484
  msgstr ""
485
 
486
+ #: ../includes/ot-functions-admin.php:2432
487
  #: ../includes/ot-functions-docs-page.php:171
488
  msgid "Google Fonts"
489
  msgstr ""
490
 
491
+ #: ../includes/ot-functions-admin.php:2433
492
  #: ../includes/ot-functions-docs-page.php:174
493
  msgid "JavaScript"
494
  msgstr ""
495
 
496
+ #: ../includes/ot-functions-admin.php:2434
497
  #: ../includes/ot-functions-docs-page.php:177
498
  msgid "Link Color"
499
  msgstr ""
500
 
501
+ #: ../includes/ot-functions-admin.php:2435
502
  #: ../includes/ot-functions-docs-page.php:180
503
  msgid "List Item"
504
  msgstr ""
505
 
506
+ #: ../includes/ot-functions-admin.php:2436
507
  #: ../includes/ot-functions-docs-page.php:183
508
  msgid "Measurement"
509
  msgstr ""
510
 
511
+ #: ../includes/ot-functions-admin.php:2437
512
  #: ../includes/ot-functions-docs-page.php:214
513
  msgid "Numeric Slider"
514
  msgstr ""
515
 
516
+ #: ../includes/ot-functions-admin.php:2438
517
  #: ../includes/ot-functions-docs-page.php:217
518
  msgid "On/Off"
519
  msgstr ""
520
 
521
+ #: ../includes/ot-functions-admin.php:2439
522
  #: ../includes/ot-functions-docs-page.php:220
523
  msgid "Page Checkbox"
524
  msgstr ""
525
 
526
+ #: ../includes/ot-functions-admin.php:2440
527
  #: ../includes/ot-functions-docs-page.php:223
528
  msgid "Page Select"
529
  msgstr ""
530
 
531
+ #: ../includes/ot-functions-admin.php:2441
532
  #: ../includes/ot-functions-docs-page.php:226
533
  msgid "Post Checkbox"
534
  msgstr ""
535
 
536
+ #: ../includes/ot-functions-admin.php:2442
537
  #: ../includes/ot-functions-docs-page.php:229
538
  msgid "Post Select"
539
  msgstr ""
540
 
541
+ #: ../includes/ot-functions-admin.php:2443
542
  #: ../includes/ot-functions-docs-page.php:232
543
  msgid "Radio"
544
  msgstr ""
545
 
546
+ #: ../includes/ot-functions-admin.php:2444
547
  #: ../includes/ot-functions-docs-page.php:235
548
  msgid "Radio Image"
549
  msgstr ""
550
 
551
+ #: ../includes/ot-functions-admin.php:2445
552
  #: ../includes/ot-functions-docs-page.php:262
553
  msgid "Select"
554
  msgstr ""
555
 
556
+ #: ../includes/ot-functions-admin.php:2446
557
  #: ../includes/ot-functions-docs-page.php:265
558
  msgid "Sidebar Select"
559
  msgstr ""
560
 
561
+ #: ../includes/ot-functions-admin.php:2447
562
  #: ../includes/ot-functions-docs-page.php:269
563
  msgid "Slider"
564
  msgstr ""
565
 
566
+ #: ../includes/ot-functions-admin.php:2448
567
  #: ../includes/ot-functions-docs-page.php:272
568
  msgid "Social Links"
569
  msgstr ""
570
 
571
+ #: ../includes/ot-functions-admin.php:2449
572
  #: ../includes/ot-functions-docs-page.php:275
573
  msgid "Spacing"
574
  msgstr ""
575
 
576
+ #: ../includes/ot-functions-admin.php:2450
577
  #: ../includes/ot-functions-docs-page.php:278
578
  msgid "Tab"
579
  msgstr ""
580
 
581
+ #: ../includes/ot-functions-admin.php:2451
582
  #: ../includes/ot-functions-docs-page.php:281
583
  msgid "Tag Checkbox"
584
  msgstr ""
585
 
586
+ #: ../includes/ot-functions-admin.php:2452
587
  #: ../includes/ot-functions-docs-page.php:284
588
  msgid "Tag Select"
589
  msgstr ""
590
 
591
+ #: ../includes/ot-functions-admin.php:2453
592
  #: ../includes/ot-functions-docs-page.php:287
593
  msgid "Taxonomy Checkbox"
594
  msgstr ""
595
 
596
+ #: ../includes/ot-functions-admin.php:2454
597
  #: ../includes/ot-functions-docs-page.php:290
598
  msgid "Taxonomy Select"
599
  msgstr ""
600
 
601
+ #: ../includes/ot-functions-admin.php:2455
602
  #: ../includes/ot-functions-docs-page.php:293
603
  msgid "Text"
604
  msgstr ""
605
 
606
+ #: ../includes/ot-functions-admin.php:2456
607
  #: ../includes/ot-functions-docs-page.php:296
608
  msgid "Textarea"
609
  msgstr ""
610
 
611
+ #: ../includes/ot-functions-admin.php:2457
612
  #: ../includes/ot-functions-docs-page.php:355
613
  msgid "Textarea Simple"
614
  msgstr ""
615
 
616
+ #: ../includes/ot-functions-admin.php:2458
617
  #: ../includes/ot-functions-docs-page.php:371
618
  msgid "Textblock"
619
  msgstr ""
620
 
621
+ #: ../includes/ot-functions-admin.php:2459
622
  #: ../includes/ot-functions-docs-page.php:374
623
  msgid "Textblock Titled"
624
  msgstr ""
625
 
626
+ #: ../includes/ot-functions-admin.php:2460
627
  #: ../includes/ot-functions-docs-page.php:377
628
  msgid "Typography"
629
  msgstr ""
630
 
631
+ #: ../includes/ot-functions-admin.php:2461
632
  #: ../includes/ot-functions-docs-page.php:397
633
  msgid "Upload"
634
  msgstr ""
635
 
636
+ #: ../includes/ot-functions-admin.php:3196
637
  msgid "Left Sidebar"
638
  msgstr ""
639
 
640
+ #: ../includes/ot-functions-admin.php:3201
641
  msgid "Right Sidebar"
642
  msgstr ""
643
 
644
+ #: ../includes/ot-functions-admin.php:3206
645
  msgid "Full Width (no sidebar)"
646
  msgstr ""
647
 
648
+ #: ../includes/ot-functions-admin.php:3211
649
  msgid "Dual Sidebar"
650
  msgstr ""
651
 
652
+ #: ../includes/ot-functions-admin.php:3216
653
  msgid "Left Dual Sidebar"
654
  msgstr ""
655
 
656
+ #: ../includes/ot-functions-admin.php:3221
657
  msgid "Right Dual Sidebar"
658
  msgstr ""
659
 
660
+ #: ../includes/ot-functions-admin.php:3262
661
+ #: ../includes/ot-functions-admin.php:3318
662
+ #: ../includes/ot-functions-admin.php:5506
663
  msgid "Link"
664
  msgstr ""
665
 
666
+ #: ../includes/ot-functions-admin.php:3273
667
+ #: ../includes/ot-functions-admin.php:3324
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:3388
675
  msgid "Name"
676
  msgstr ""
677
 
678
+ #: ../includes/ot-functions-admin.php:3389
679
  msgid "Enter the name of the social website."
680
  msgstr ""
681
 
682
+ #: ../includes/ot-functions-admin.php:3397
683
  msgid "Enter the text shown in the title attribute of the link."
684
  msgstr ""
685
 
686
+ #: ../includes/ot-functions-admin.php:3403
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:3756
694
  #, php-format
695
  msgid "Unable to write to file %s."
696
  msgstr ""
697
 
698
+ #: ../includes/ot-functions-admin.php:4026
699
  msgid "edit"
700
  msgstr ""
701
 
702
+ #: ../includes/ot-functions-admin.php:4027
 
703
  #: ../includes/ot-functions-admin.php:4095
704
+ #: ../includes/ot-functions-admin.php:4096
705
  #: ../includes/ot-functions-admin.php:4258
706
+ #: ../includes/ot-functions-admin.php:4259
707
  #: ../includes/ot-functions-admin.php:4324
708
+ #: ../includes/ot-functions-admin.php:4325
709
  #: ../includes/ot-functions-admin.php:4452
710
+ #: ../includes/ot-functions-admin.php:4453
711
  #: ../includes/ot-functions-admin.php:4605
712
+ #: ../includes/ot-functions-admin.php:4606
713
  msgid "Edit"
714
  msgstr ""
715
 
 
716
  #: ../includes/ot-functions-admin.php:4029
717
+ #: ../includes/ot-functions-admin.php:4030
718
  #: ../includes/ot-functions-admin.php:4098
719
+ #: ../includes/ot-functions-admin.php:4099
720
  #: ../includes/ot-functions-admin.php:4261
721
+ #: ../includes/ot-functions-admin.php:4262
722
  #: ../includes/ot-functions-admin.php:4327
723
+ #: ../includes/ot-functions-admin.php:4328
724
  #: ../includes/ot-functions-admin.php:4386
725
+ #: ../includes/ot-functions-admin.php:4387
726
  #: ../includes/ot-functions-admin.php:4455
727
+ #: ../includes/ot-functions-admin.php:4456
728
  #: ../includes/ot-functions-admin.php:4608
729
+ #: ../includes/ot-functions-admin.php:4609
730
  msgid "Delete"
731
  msgstr ""
732
 
733
+ #: ../includes/ot-functions-admin.php:4036
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:4044
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:4105
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:4113
752
+ #: ../includes/ot-functions-admin.php:4342
753
  msgid ""
754
  "<strong>ID</strong>: A unique lower case alphanumeric string, underscores "
755
  "allowed."
756
  msgstr ""
757
 
758
+ #: ../includes/ot-functions-admin.php:4121
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:4132
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:4140
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:4145
778
  msgid "Add Choice"
779
  msgstr ""
780
 
781
+ #: ../includes/ot-functions-admin.php:4151
782
  msgid ""
783
  "<strong>Settings</strong>: This will only affect the List Item option type."
784
  msgstr ""
785
 
786
+ #: ../includes/ot-functions-admin.php:4156
787
  #: ../includes/ot-functions-settings-page.php:93
788
  msgid "Add Setting"
789
  msgstr ""
790
 
791
+ #: ../includes/ot-functions-admin.php:4162
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:4170
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:4178
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:4186
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:4194
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:4202
829
  msgid "<strong>CSS Class</strong>: Add and optional class to this option type."
830
  msgstr ""
831
 
832
+ #: ../includes/ot-functions-admin.php:4210
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:4218
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:4221
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:4222
854
  msgid "or"
855
  msgstr ""
856
 
857
+ #: ../includes/ot-functions-admin.php:4268
858
  #: ../includes/ot-functions-docs-page.php:29
859
  msgid "Label"
860
  msgstr ""
861
 
862
+ #: ../includes/ot-functions-admin.php:4278
863
  msgid "Value"
864
  msgstr ""
865
 
866
+ #: ../includes/ot-functions-admin.php:4288
867
  msgid "Image Source (Radio Image only)"
868
  msgstr ""
869
 
870
+ #: ../includes/ot-functions-admin.php:4334
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:4350
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:4381
883
  msgid "Layout"
884
  msgstr ""
885
 
 
886
  #: ../includes/ot-functions-admin.php:4383
887
+ #: ../includes/ot-functions-admin.php:4384
888
  msgid "Activate"
889
  msgstr ""
890
 
891
+ #: ../includes/ot-functions-admin.php:4420 ../includes/ot-meta-box-api.php:231
892
  #: ../includes/ot-settings-api.php:610
893
  msgid "Title"
894
  msgstr ""
895
 
896
+ #: ../includes/ot-functions-admin.php:4760
897
  msgid "New Layout"
898
  msgstr ""
899
 
900
+ #: ../includes/ot-functions-admin.php:5515
901
  msgid "Link URL"
902
  msgstr ""
903
 
904
+ #: ../includes/ot-functions-admin.php:5522
905
  msgid "Link Title"
906
  msgstr ""
907
 
908
+ #: ../includes/ot-functions-admin.php:5552
909
  msgid "Quote"
910
  msgstr ""
911
 
912
+ #: ../includes/ot-functions-admin.php:5561
913
  msgid "Source Name (ex. author, singer, actor)"
914
  msgstr ""
915
 
916
+ #: ../includes/ot-functions-admin.php:5568
917
  msgid "Source URL"
918
  msgstr ""
919
 
920
+ #: ../includes/ot-functions-admin.php:5575
921
  msgid "Source Title (ex. book, song, movie)"
922
  msgstr ""
923
 
924
+ #: ../includes/ot-functions-admin.php:5582
925
  msgid "Source Date"
926
  msgstr ""
927
 
928
+ #: ../includes/ot-functions-admin.php:5612
929
  msgid "Video"
930
  msgstr ""
931
 
932
+ #: ../includes/ot-functions-admin.php:5621
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:5621
941
+ #: ../includes/ot-functions-admin.php:5660
942
  msgid "Wordpress Codex"
943
  msgstr ""
944
 
945
+ #: ../includes/ot-functions-admin.php:5651
946
  msgid "Audio"
947
  msgstr ""
948
 
949
+ #: ../includes/ot-functions-admin.php:5660
950
  #, php-format
951
  msgid ""
952
  "Embed audio from services like SoundCloud and Rdio. You can find a list of "
2453
  msgid "Reset Options"
2454
  msgstr ""
2455
 
2456
+ #: ../ot-loader.php:22
2457
  msgid ""
2458
  "OptionTree is installed as a plugin and also embedded in your current theme. "
2459
  "Please deactivate the plugin to load the theme dependent version of "
ot-loader.php CHANGED
@@ -3,10 +3,11 @@
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.5
7
  * Author: Derek Herman
8
  * Author URI: http://valendesigns.com
9
  * License: GPLv3
 
10
  */
11
 
12
  /**
@@ -90,12 +91,14 @@ if ( ! class_exists( 'OT_Loader' ) ) {
90
 
91
  if ( apply_filters( 'ot_child_theme_mode', false ) == true ) {
92
 
93
- $path = ltrim( end( @explode( get_stylesheet(), str_replace( '\\', '/', dirname( __FILE__ ) ) ) ), '/' );
 
94
  define( 'OT_LANG_DIR', trailingslashit( trailingslashit( get_stylesheet_directory() ) . $path ) . trailingslashit( 'languages' ) . 'theme-mode' );
95
 
96
  } else {
97
-
98
- $path = ltrim( end( @explode( get_template(), str_replace( '\\', '/', dirname( __FILE__ ) ) ) ), '/' );
 
99
  define( 'OT_LANG_DIR', trailingslashit( trailingslashit( get_template_directory() ) . $path ) . trailingslashit( 'languages' ) . 'theme-mode' );
100
 
101
  }
@@ -178,7 +181,7 @@ if ( ! class_exists( 'OT_Loader' ) ) {
178
  /**
179
  * Current Version number.
180
  */
181
- define( 'OT_VERSION', '2.5.5' );
182
 
183
  /**
184
  * For developers: Theme mode.
@@ -396,6 +399,9 @@ if ( ! class_exists( 'OT_Loader' ) ) {
396
  /* Registers the Settings page */
397
  if ( OT_SHOW_PAGES == true ) {
398
  add_action( 'init', 'ot_register_settings_page' );
 
 
 
399
  }
400
 
401
  }
@@ -486,9 +492,6 @@ if ( ! class_exists( 'OT_Loader' ) ) {
486
 
487
  /* create media post */
488
  add_action( 'admin_init', 'ot_create_media_post', 8 );
489
-
490
- /* global CSS */
491
- add_action( 'admin_head', array( $this, 'global_admin_css' ) );
492
 
493
  /* Google Fonts front-end CSS */
494
  add_action( 'wp_enqueue_scripts', 'ot_load_google_fonts_css', 1 );
@@ -583,8 +586,7 @@ if ( ! class_exists( 'OT_Loader' ) ) {
583
  font-weight: normal;
584
  font-style: normal;
585
  }
586
- #adminmenu #toplevel_page_ot-settings .menu-icon-generic div.wp-menu-image:before,
587
- #option-tree-header #option-tree-logo a:before {
588
  font: normal ' . $fontsize . '/1 "option-tree-font" !important;
589
  speak: none;
590
  padding: 6px 0;
@@ -597,14 +599,8 @@ if ( ! class_exists( 'OT_Loader' ) ) {
597
  -moz-transition: all .1s ease-in-out;
598
  transition: all .1s ease-in-out;
599
  }
600
- #adminmenu #toplevel_page_ot-settings .menu-icon-generic div.wp-menu-image:before,
601
- #option-tree-header #option-tree-logo a:before {
602
  content: "\e785";
603
- }
604
- #option-tree-header #option-tree-logo a:before {
605
- font-size: 20px !important;
606
- height: 24px;
607
- padding: 2px 0;
608
  }' . $wp_38minus . '
609
  </style>
610
  ';
@@ -662,6 +658,7 @@ if ( ! class_exists( 'OT_Loader' ) ) {
662
  * AJAX utility function for adding a new list item.
663
  */
664
  public function add_list_item() {
 
665
  ot_list_item_view( $_REQUEST['name'], $_REQUEST['count'], array(), $_REQUEST['post_id'], $_REQUEST['get_option'], unserialize( ot_decode( $_REQUEST['settings'] ) ), $_REQUEST['type'] );
666
  die();
667
  }
@@ -670,6 +667,7 @@ if ( ! class_exists( 'OT_Loader' ) ) {
670
  * AJAX utility function for adding a new social link.
671
  */
672
  public function add_social_links() {
 
673
  ot_social_links_view( $_REQUEST['name'], $_REQUEST['count'], array(), $_REQUEST['post_id'], $_REQUEST['get_option'], unserialize( ot_decode( $_REQUEST['settings'] ) ), $_REQUEST['type'] );
674
  die();
675
  }
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.6.0
7
  * Author: Derek Herman
8
  * Author URI: http://valendesigns.com
9
  * License: GPLv3
10
+ * Text Domain: option-tree
11
  */
12
 
13
  /**
91
 
92
  if ( apply_filters( 'ot_child_theme_mode', false ) == true ) {
93
 
94
+ $path = @explode( get_stylesheet(), str_replace( '\\', '/', dirname( __FILE__ ) ) );
95
+ $path = ltrim( end( $path ), '/' );
96
  define( 'OT_LANG_DIR', trailingslashit( trailingslashit( get_stylesheet_directory() ) . $path ) . trailingslashit( 'languages' ) . 'theme-mode' );
97
 
98
  } else {
99
+
100
+ $path = @explode( get_template(), str_replace( '\\', '/', dirname( __FILE__ ) ) );
101
+ $path = ltrim( end( $path ), '/' );
102
  define( 'OT_LANG_DIR', trailingslashit( trailingslashit( get_template_directory() ) . $path ) . trailingslashit( 'languages' ) . 'theme-mode' );
103
 
104
  }
181
  /**
182
  * Current Version number.
183
  */
184
+ define( 'OT_VERSION', '2.6.0' );
185
 
186
  /**
187
  * For developers: Theme mode.
399
  /* Registers the Settings page */
400
  if ( OT_SHOW_PAGES == true ) {
401
  add_action( 'init', 'ot_register_settings_page' );
402
+
403
+ /* global CSS */
404
+ add_action( 'admin_head', array( $this, 'global_admin_css' ) );
405
  }
406
 
407
  }
492
 
493
  /* create media post */
494
  add_action( 'admin_init', 'ot_create_media_post', 8 );
 
 
 
495
 
496
  /* Google Fonts front-end CSS */
497
  add_action( 'wp_enqueue_scripts', 'ot_load_google_fonts_css', 1 );
586
  font-weight: normal;
587
  font-style: normal;
588
  }
589
+ #adminmenu #toplevel_page_ot-settings .menu-icon-generic div.wp-menu-image:before {
 
590
  font: normal ' . $fontsize . '/1 "option-tree-font" !important;
591
  speak: none;
592
  padding: 6px 0;
599
  -moz-transition: all .1s ease-in-out;
600
  transition: all .1s ease-in-out;
601
  }
602
+ #adminmenu #toplevel_page_ot-settings .menu-icon-generic div.wp-menu-image:before {
 
603
  content: "\e785";
 
 
 
 
 
604
  }' . $wp_38minus . '
605
  </style>
606
  ';
658
  * AJAX utility function for adding a new list item.
659
  */
660
  public function add_list_item() {
661
+ check_ajax_referer( 'option_tree', 'nonce' );
662
  ot_list_item_view( $_REQUEST['name'], $_REQUEST['count'], array(), $_REQUEST['post_id'], $_REQUEST['get_option'], unserialize( ot_decode( $_REQUEST['settings'] ) ), $_REQUEST['type'] );
663
  die();
664
  }
667
  * AJAX utility function for adding a new social link.
668
  */
669
  public function add_social_links() {
670
+ check_ajax_referer( 'option_tree', 'nonce' );
671
  ot_social_links_view( $_REQUEST['name'], $_REQUEST['count'], array(), $_REQUEST['post_id'], $_REQUEST['get_option'], unserialize( ot_decode( $_REQUEST['settings'] ) ), $_REQUEST['type'] );
672
  die();
673
  }
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
7
- Stable tag: 2.5.5
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.5 =
130
  * Hotfix - Allow a `0` value to be saved with certain option types. Contributors via github @BassemN.
131
  * Hotfix - Stop media from being attached to the OptionTree post type when uploaded from the media manager or customizer. Contributors via github @earnjam, and @valendesigns.
@@ -541,7 +551,7 @@ The most likely scenario is your theme already has OptionTree installed in Theme
541
  * Revert functions.load.php, will fix and update in next version
542
 
543
  = 1.1.7 =
544
- * Added layout (theme variation) support with save/delete/activate/import/export capabilities. Contributions form Brian of flauntbooks.com
545
  * Allow layout change on Theme Options page.
546
  * Full Multisite compatibility by manually adding xml mime type for import options.
547
  * Replaced eregi() with preg_match() for 5.3+ compatibility.
@@ -623,4 +633,4 @@ Added theme integration for developers. It's now possible to have a default XML
623
  Having multiple sliders caused a naming collision in the JavaScript and is now fixed. Upgrade ASAP to have multiple sliders available in the UI.
624
 
625
  = 1.1.4 =
626
- Fixed the returned value of the get_option_tree() function when $is_array is set to false. If you have created any slider or measurement option types please read the updated documentation for examples on how to use them in your theme.
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.4
7
+ Stable tag: 2.6.0
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.6.0 =
130
+ * Fix a reflected XSS vulnerability with the `add_list_item` & `add_social_links` Ajax requests.
131
+ * Fix the Google Fonts URL so it passed the W3 Validator. props @BassemN
132
+ * Fix `global_admin_css` so it's only enqueued when needed.
133
+ * Fix `dynamic.css` so that a child theme doesn't load the styles saved to the parent theme.
134
+ * Add filter `ot_recognized_post_format_meta_boxes` to support additional post formats meta boxes. props @BassemN
135
+ * Add action `ot_do_settings_fields_before` & `ot_do_settings_fields_after`. props @BassemN, @valendesigns
136
+ * Add Text Domain to plugin file to fully support the new translate.wordpress.org Language Packs.
137
+ * Fix notice in PHP 7.0.0 props @Zackio
138
+
139
  = 2.5.5 =
140
  * Hotfix - Allow a `0` value to be saved with certain option types. Contributors via github @BassemN.
141
  * Hotfix - Stop media from being attached to the OptionTree post type when uploaded from the media manager or customizer. Contributors via github @earnjam, and @valendesigns.
551
  * Revert functions.load.php, will fix and update in next version
552
 
553
  = 1.1.7 =
554
+ * Added layout (theme variation) support with save/delete/activate/import/export capabilities.
555
  * Allow layout change on Theme Options page.
556
  * Full Multisite compatibility by manually adding xml mime type for import options.
557
  * Replaced eregi() with preg_match() for 5.3+ compatibility.
633
  Having multiple sliders caused a naming collision in the JavaScript and is now fixed. Upgrade ASAP to have multiple sliders available in the UI.
634
 
635
  = 1.1.4 =
636
+ Fixed the returned value of the get_option_tree() function when $is_array is set to false. If you have created any slider or measurement option types please read the updated documentation for examples on how to use them in your theme.