Shortcodes Ultimate - Version 3.5.0

Version Description

Upgrade normally via your Wordpress admin -> Plugins panel.

Download this release

Release Info

Developer gn_themes
Plugin Icon 128x128 Shortcodes Ultimate
Version 3.5.0
Comparing to
See all releases

Code changes from version 3.4.0 to 3.5.0

Files changed (56) hide show
  1. css/generator.css +1 -0
  2. css/style.css +34 -9
  3. images/demo/accordion.png +0 -0
  4. images/demo/bloginfo.png +0 -0
  5. images/demo/box.png +0 -0
  6. images/demo/button.png +0 -0
  7. images/demo/column.png +0 -0
  8. images/demo/custom_gallery.png +0 -0
  9. images/demo/divider.png +0 -0
  10. images/demo/document.png +0 -0
  11. images/demo/dropcap.png +0 -0
  12. images/demo/fancy_link.png +0 -0
  13. images/demo/feed.png +0 -0
  14. images/demo/frame.png +0 -0
  15. images/demo/gmap.png +0 -0
  16. images/demo/guests.png +0 -0
  17. images/demo/heading.png +0 -0
  18. images/demo/highlight.png +0 -0
  19. images/demo/jcarousel.png +0 -0
  20. images/demo/list.png +0 -0
  21. images/demo/media.png +0 -0
  22. images/demo/members.png +0 -0
  23. images/demo/menu.png +0 -0
  24. images/demo/nivo_slider.png +0 -0
  25. images/demo/note.png +0 -0
  26. images/demo/permalink.png +0 -0
  27. images/demo/private.png +0 -0
  28. images/demo/pullquote.png +0 -0
  29. images/demo/quote.png +0 -0
  30. images/demo/service.png +0 -0
  31. images/demo/siblings.png +0 -0
  32. images/demo/spacer.png +0 -0
  33. images/demo/spoiler.png +0 -0
  34. images/demo/subpages.png +0 -0
  35. images/demo/tab.png +0 -0
  36. images/demo/table.png +0 -0
  37. images/demo/tabs.png +0 -0
  38. images/demo/tweets.png +0 -0
  39. images/generator/colorpicker.png +0 -0
  40. images/generator/settings.png +0 -0
  41. images/generator/support.png +0 -0
  42. images/jcarousel/arrows.png +0 -0
  43. images/nivo-slider/arrows.png +0 -0
  44. images/nivo-slider/bullets.png +0 -0
  45. images/nivo-slider/loading.gif +0 -0
  46. images/social/facebook_16.png +0 -0
  47. images/social/twitter_16.png +0 -0
  48. images/spoiler-style-2.png +0 -0
  49. js/init.js +19 -2
  50. languages/shortcodes-ultimate-ru_RU.mo +0 -0
  51. languages/shortcodes-ultimate-ru_RU.po +147 -135
  52. lib/available.php +25 -0
  53. lib/generator.php +1 -1
  54. lib/shortcodes.php +22 -2
  55. readme.txt +12 -7
  56. shortcodes-ultimate.php +2 -2
css/generator.css CHANGED
@@ -24,6 +24,7 @@
24
  }
25
 
26
  #su-generator-select {
 
27
  padding: 5px;
28
  }
29
 
24
  }
25
 
26
  #su-generator-select {
27
+ width: 400px;
28
  padding: 5px;
29
  }
30
 
css/style.css CHANGED
@@ -144,24 +144,49 @@
144
  }
145
 
146
  /* Spoiler */
147
- .su-spoiler {
148
- margin: 0 0 1.5em 0;
149
- }
150
- .su-spoiler-title {
151
  padding: 0.3em 0 0.3em 26px;
152
  font-weight: bold;
153
  background: 0 50% url(../images/spoiler-closed.png) no-repeat;
154
  cursor: pointer;
155
  }
156
- .su-spoiler-content {
 
 
 
157
  padding: 15px 0;
158
  display: none;
159
  }
160
- .su-spoiler-open .su-spoiler-title {
161
- background: 0 50% url(../images/spoiler-open.png) no-repeat;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
162
  }
163
- .su-spoiler-open .su-spoiler-content {
164
- display: block;
 
 
 
 
 
165
  }
166
 
167
  /* Tabs */
144
  }
145
 
146
  /* Spoiler */
147
+ .su-spoiler-style-1 { margin: 0 0 1.5em 0 }
148
+ .su-spoiler-style-1 .su-spoiler-title {
 
 
149
  padding: 0.3em 0 0.3em 26px;
150
  font-weight: bold;
151
  background: 0 50% url(../images/spoiler-closed.png) no-repeat;
152
  cursor: pointer;
153
  }
154
+ .su-spoiler-style-1.su-spoiler-open .su-spoiler-title {
155
+ background: 0 50% url(../images/spoiler-open.png) no-repeat;
156
+ }
157
+ .su-spoiler-style-1 .su-spoiler-content {
158
  padding: 15px 0;
159
  display: none;
160
  }
161
+
162
+ .su-spoiler-style-2 {
163
+ margin-bottom: 1em;
164
+ background: #fff;
165
+ border: 1px solid #ccc;
166
+ border-radius: 10px;
167
+ -moz-border-radius: 10px;
168
+ -webkit-border-radius: 10px;
169
+ }
170
+ .su-spoiler-style-2 .su-spoiler-title {
171
+ padding: 10px 10px 10px 40px;
172
+ background: #f0f0f0 12px 8px url(../images/spoiler-style-2.png) no-repeat;
173
+ font-size: 14px;
174
+ height: 14px;
175
+ line-height: 14px;
176
+ font-weight: bold;
177
+ color: #000;
178
+ cursor: pointer;
179
+ border-radius: 10px;
180
+ -moz-border-radius: 10px;
181
+ -webkit-border-radius: 10px;
182
  }
183
+ .su-spoiler-style-2.su-spoiler-open .su-spoiler-title {
184
+ border-bottom: 1px solid #ccc;
185
+ background: #f0f0f0 12px -92px url(../images/spoiler-style-2.png) no-repeat;
186
+ }
187
+ .su-spoiler-style-2 .su-spoiler-content {
188
+ padding: 1em;
189
+ display: none;
190
  }
191
 
192
  /* Tabs */
images/demo/accordion.png ADDED
Binary file
images/demo/bloginfo.png ADDED
Binary file
images/demo/box.png ADDED
Binary file
images/demo/button.png ADDED
Binary file
images/demo/column.png ADDED
Binary file
images/demo/custom_gallery.png ADDED
Binary file
images/demo/divider.png ADDED
Binary file
images/demo/document.png ADDED
Binary file
images/demo/dropcap.png ADDED
Binary file
images/demo/fancy_link.png ADDED
Binary file
images/demo/feed.png ADDED
Binary file
images/demo/frame.png ADDED
Binary file
images/demo/gmap.png ADDED
Binary file
images/demo/guests.png ADDED
Binary file
images/demo/heading.png ADDED
Binary file
images/demo/highlight.png ADDED
Binary file
images/demo/jcarousel.png ADDED
Binary file
images/demo/list.png ADDED
Binary file
images/demo/media.png ADDED
Binary file
images/demo/members.png ADDED
Binary file
images/demo/menu.png ADDED
Binary file
images/demo/nivo_slider.png ADDED
Binary file
images/demo/note.png ADDED
Binary file
images/demo/permalink.png ADDED
Binary file
images/demo/private.png ADDED
Binary file
images/demo/pullquote.png ADDED
Binary file
images/demo/quote.png ADDED
Binary file
images/demo/service.png ADDED
Binary file
images/demo/siblings.png ADDED
Binary file
images/demo/spacer.png ADDED
Binary file
images/demo/spoiler.png ADDED
Binary file
images/demo/subpages.png ADDED
Binary file
images/demo/tab.png ADDED
Binary file
images/demo/table.png ADDED
Binary file
images/demo/tabs.png ADDED
Binary file
images/demo/tweets.png ADDED
Binary file
images/generator/colorpicker.png ADDED
Binary file
images/generator/settings.png ADDED
Binary file
images/generator/support.png ADDED
Binary file
images/jcarousel/arrows.png ADDED
Binary file
images/nivo-slider/arrows.png ADDED
Binary file
images/nivo-slider/bullets.png ADDED
Binary file
images/nivo-slider/loading.gif ADDED
Binary file
images/social/facebook_16.png ADDED
Binary file
images/social/twitter_16.png ADDED
Binary file
images/spoiler-style-2.png ADDED
Binary file
js/init.js CHANGED
@@ -7,9 +7,26 @@ jQuery(document).ready(function($) {
7
  });
8
 
9
  // Spoiler
10
- $('.su-spoiler').removeClass('su-spoiler-open');
11
  $('.su-spoiler .su-spoiler-title').click(function() {
12
- $(this).parent('.su-spoiler').toggleClass('su-spoiler-open');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  });
14
 
15
  // Tabs
7
  });
8
 
9
  // Spoiler
 
10
  $('.su-spoiler .su-spoiler-title').click(function() {
11
+
12
+ var // Spoiler elements
13
+ spoiler = $(this).parent('.su-spoiler').filter(':first'),
14
+ title = spoiler.children('.su-spoiler-title'),
15
+ content = spoiler.children('.su-spoiler-content'),
16
+ isAccordion = ( spoiler.parent('.su-accordion').length > 0 ) ? true : false;
17
+
18
+ if ( spoiler.hasClass('su-spoiler-open') ) {
19
+ if ( !isAccordion ) {
20
+ content.hide(200);
21
+ spoiler.removeClass('su-spoiler-open');
22
+ }
23
+ }
24
+ else {
25
+ spoiler.parent('.su-accordion').children('.su-spoiler').removeClass('su-spoiler-open');
26
+ spoiler.parent('.su-accordion').find('.su-spoiler-content').hide(200);
27
+ content.show(100);
28
+ spoiler.addClass('su-spoiler-open');
29
+ }
30
  });
31
 
32
  // Tabs
languages/shortcodes-ultimate-ru_RU.mo CHANGED
Binary file
languages/shortcodes-ultimate-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: gn_themes\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2011-12-22 11:29+0300\n"
6
- "PO-Revision-Date: 2011-12-22 11:30+0300\n"
7
  "Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -252,450 +252,462 @@ msgstr "Одиночная вкладка"
252
 
253
  #: lib/available.php:84
254
  #: lib/available.php:85
255
- #: lib/shortcodes.php:82
256
  msgid "Spoiler title"
257
  msgstr "Скрытый текст"
258
 
259
- #: lib/available.php:89
 
 
 
 
 
 
 
 
260
  msgid "Hidden content"
261
  msgstr "Скрытое содержимое"
262
 
263
- #: lib/available.php:90
264
  msgid "Hidden text"
265
  msgstr "Скрытый текст"
266
 
267
- #: lib/available.php:103
 
 
 
 
268
  msgid "Show TOP link"
269
  msgstr "Показать ссылку ВВЕРХ"
270
 
271
- #: lib/available.php:107
272
  msgid "Content divider with optional TOP link"
273
  msgstr "Разделитель текста со ссылкой ВВЕРХ"
274
 
275
- #: lib/available.php:123
276
  msgid "Spacer height in pixels"
277
  msgstr "Высота разделителя в пикселях"
278
 
279
- #: lib/available.php:127
280
  msgid "Empty space with adjustable height"
281
  msgstr "Пробел с настраиваемой высотой"
282
 
283
- #: lib/available.php:141
284
  msgid "Quote style"
285
  msgstr "Стиль цитаты"
286
 
287
- #: lib/available.php:145
288
  msgid "Quote"
289
  msgstr "Цитата"
290
 
291
- #: lib/available.php:146
292
  msgid "Blockquote alternative"
293
  msgstr "Альтернатива цитаты"
294
 
295
- #: lib/available.php:159
296
  msgid "Pullquote alignment"
297
  msgstr "Выравнивание цитаты"
298
 
299
- #: lib/available.php:163
300
- #: lib/available.php:164
301
  msgid "Pullquote"
302
  msgstr "Цитата с обтеканием"
303
 
304
- #: lib/available.php:174
305
  msgid "Background color"
306
  msgstr "Цвет фона"
307
 
308
- #: lib/available.php:180
309
  msgid "Text color"
310
  msgstr "Цвет текста"
311
 
312
- #: lib/available.php:185
313
- #: lib/available.php:186
314
  msgid "Highlighted text"
315
  msgstr "Подсвеченный текст"
316
 
317
- #: lib/available.php:200
318
  msgid "Dropcap style"
319
  msgstr "Стиль буквицы"
320
 
321
- #: lib/available.php:211
322
  msgid "Dropcap size"
323
  msgstr "Размер буквицы"
324
 
325
- #: lib/available.php:215
326
  msgid "D"
327
  msgstr "D"
328
 
329
- #: lib/available.php:216
330
  msgid "Dropcap"
331
  msgstr "Буквица"
332
 
333
- #: lib/available.php:239
334
  msgid "Option name"
335
  msgstr "Имя опции"
336
 
337
- #: lib/available.php:243
338
  msgid "Blog info"
339
  msgstr "Инфо блога"
340
 
341
- #: lib/available.php:253
342
  msgid "Post/page ID"
343
  msgstr "ID записи/страницы"
344
 
345
- #: lib/available.php:261
346
  msgid "Link target"
347
  msgstr "Цель ссылки"
348
 
349
- #: lib/available.php:265
350
  msgid "Permalink text"
351
  msgstr "Текст постоянной ссылки"
352
 
353
- #: lib/available.php:266
354
  msgid "Permalink to specified post/page"
355
  msgstr "Постоянная ссылка на указанную запись/страницу"
356
 
357
- #: lib/available.php:276
358
  msgid "Button link"
359
  msgstr "Ссылка кнопки"
360
 
361
- #: lib/available.php:281
362
  msgid "Button background color"
363
  msgstr "Цвет фона кнопки"
364
 
365
- #: lib/available.php:300
366
  msgid "Button size"
367
  msgstr "Размер кнопки"
368
 
369
- #: lib/available.php:310
370
  msgid "Button background style"
371
  msgstr "Стиль фона кнопки"
372
 
373
- #: lib/available.php:318
374
  msgid "Dark text color"
375
  msgstr "Темный цвет текста"
376
 
377
- #: lib/available.php:326
378
  msgid "Disable rounded corners"
379
  msgstr "Отключить скругленные уголки"
380
 
381
- #: lib/available.php:331
382
  msgid "Button icon"
383
  msgstr "Иконка кнопки"
384
 
385
- #: lib/available.php:336
386
  msgid "Button class"
387
  msgstr "Класс кнопки"
388
 
389
- #: lib/available.php:344
390
  msgid "Button link target"
391
  msgstr "Цель ссылки кнопки"
392
 
393
- #: lib/available.php:348
394
  msgid "Button text"
395
  msgstr "Текст кнопки"
396
 
397
- #: lib/available.php:349
398
  msgid "Styled button"
399
  msgstr "Стильная кнопка"
400
 
401
- #: lib/available.php:362
402
  msgid "Link color"
403
  msgstr "Цвет ссылки"
404
 
405
- #: lib/available.php:367
406
  msgid "URL"
407
  msgstr "URL"
408
 
409
- #: lib/available.php:371
410
  msgid "Link text"
411
  msgstr "Текст ссылки"
412
 
413
- #: lib/available.php:372
414
  msgid "Fancy link"
415
  msgstr "Стильная ссылка"
416
 
417
- #: lib/available.php:381
418
- #: lib/available.php:382
419
  msgid "Service title"
420
  msgstr "Название услуги"
421
 
422
- #: lib/available.php:387
423
  msgid "Service icon"
424
  msgstr "Иконка услуги"
425
 
426
- #: lib/available.php:396
427
  msgid "Icon size"
428
  msgstr "Размер иконки"
429
 
430
- #: lib/available.php:400
431
  msgid "Service description"
432
  msgstr "Описание услуги"
433
 
434
- #: lib/available.php:401
435
  msgid "Service box with title"
436
  msgstr "Блок услуга с заголовком"
437
 
438
- #: lib/available.php:415
439
  msgid "Box style"
440
  msgstr "Стиль блока"
441
 
442
- #: lib/available.php:423
443
  msgid "Show login message"
444
  msgstr "Показывать предложение войти"
445
 
446
- #: lib/available.php:427
447
  msgid "Content for logged members"
448
  msgstr "Содержимое для залогиненых пользователей"
449
 
450
- #: lib/available.php:428
451
  msgid "Content for logged in members only"
452
  msgstr "Ссодержимое только для залогиненных"
453
 
454
- #: lib/available.php:436
455
  msgid "Content for guests"
456
  msgstr "Содержимое для гостей"
457
 
458
- #: lib/available.php:437
459
  msgid "Content for guests only"
460
  msgstr "Ссодержимое только для гостей"
461
 
462
- #: lib/available.php:446
463
- #: lib/available.php:447
464
  msgid "Box title"
465
  msgstr "Заголовок блока"
466
 
467
- #: lib/available.php:452
468
  msgid "Box color"
469
  msgstr "Цвет блока"
470
 
471
- #: lib/available.php:457
472
  msgid "Box content"
473
  msgstr "Содержимое блока"
474
 
475
- #: lib/available.php:458
476
  msgid "Colored box with caption"
477
  msgstr "Цветной блок с заголовком"
478
 
479
- #: lib/available.php:468
480
  msgid "Note color"
481
  msgstr "Цвет блока"
482
 
483
- #: lib/available.php:473
484
  msgid "Note text"
485
  msgstr "Текст заметки"
486
 
487
- #: lib/available.php:474
488
  msgid "Colored box"
489
  msgstr "Цветной блок"
490
 
491
- #: lib/available.php:482
492
  msgid "Private note text"
493
  msgstr "Текст приватной заметки"
494
 
495
- #: lib/available.php:483
496
  msgid "Private note for post authors"
497
  msgstr "Приватный текст для других авторов"
498
 
499
- #: lib/available.php:509
500
  msgid "List style"
501
  msgstr "Стиль списка"
502
 
503
- #: lib/available.php:513
504
  msgid "List item "
505
  msgstr "Элемент списка"
506
 
507
- #: lib/available.php:514
508
  msgid "Styled unordered list"
509
  msgstr "Стильный неупорядоченный список"
510
 
511
- #: lib/available.php:524
512
  msgid "Feed URL"
513
  msgstr "URL ленты"
514
 
515
- #: lib/available.php:535
516
  msgid "Number of item to show"
517
  msgstr "Количество элементов для показа"
518
 
519
- #: lib/available.php:539
520
  msgid "Feed grabber"
521
  msgstr "Граббер новостных лент"
522
 
523
- #: lib/available.php:549
524
  msgid "Custom menu name"
525
  msgstr "Имя произвольного меню"
526
 
527
- #: lib/available.php:553
528
  msgid "Custom menu by name"
529
  msgstr "Произвольное меню"
530
 
531
- #: lib/available.php:567
532
- #: lib/available.php:590
533
  msgid "Depth level"
534
  msgstr "Глубина"
535
 
536
- #: lib/available.php:572
537
  msgid "Parent page ID"
538
  msgstr "ID родительской страницы"
539
 
540
- #: lib/available.php:576
541
  msgid "Page childrens"
542
  msgstr "Потомки страницы"
543
 
544
- #: lib/available.php:594
545
  msgid "Page siblings"
546
  msgstr "Братья страницы"
547
 
548
- #: lib/available.php:616
549
  msgid "Column width"
550
  msgstr "Ширина колонки"
551
 
552
- #: lib/available.php:624
553
  msgid "Last column"
554
  msgstr "Последняя колонка"
555
 
556
- #: lib/available.php:633
557
  msgid "Column style"
558
  msgstr "Стиль колонки"
559
 
560
- #: lib/available.php:637
561
  msgid "Column content"
562
  msgstr "Содержимое колонки"
563
 
564
- #: lib/available.php:638
565
  msgid "Flexible columns"
566
  msgstr "Резновые колонки"
567
 
568
- #: lib/available.php:652
569
  msgid "Table style"
570
  msgstr "Стиль таблицы"
571
 
572
- #: lib/available.php:657
573
  msgid "Create table from CSV"
574
  msgstr "Создание таблицы из CSV файла"
575
 
576
- #: lib/available.php:662
577
  msgid "Styled table from HTML or CSV file"
578
  msgstr "Стильная таблица из HTML или CSV файла"
579
 
580
- #: lib/available.php:738
581
  msgid "Media URL"
582
  msgstr "Ссылка на медиа"
583
 
584
- #: lib/available.php:743
585
- #: lib/available.php:767
586
- #: lib/available.php:786
587
  msgid "Width"
588
  msgstr "Ширина"
589
 
590
- #: lib/available.php:748
591
- #: lib/available.php:772
592
- #: lib/available.php:791
593
  msgid "Height"
594
  msgstr "Высота"
595
 
596
- #: lib/available.php:752
597
  msgid "YouTube video, Vimeo video, .mp4/.flv video, .mp3 file or images"
598
  msgstr "YouTube видео, Vimeo видео, .mp4/.flv видео, .mp3 файл или изображения"
599
 
600
- #: lib/available.php:762
601
  msgid "Document URL"
602
  msgstr "Ссылка на документ"
603
 
604
- #: lib/available.php:776
605
  msgid ".doc, .xls, .pdf viewer by Google"
606
  msgstr ".doc, .xls, .pdf просмотрщик от Google"
607
 
608
- #: lib/available.php:796
609
  msgid "Marker address"
610
  msgstr "Адрес маркера"
611
 
612
- #: lib/available.php:800
613
  msgid "Maps by Google"
614
  msgstr "Карты от Google"
615
 
616
- #: lib/available.php:814
617
- #: lib/available.php:884
618
- #: lib/available.php:956
619
  msgid "Source of images"
620
  msgstr "Источник изображений"
621
 
622
- #: lib/available.php:825
623
- #: lib/available.php:895
624
- #: lib/available.php:967
625
  msgid "Images links"
626
  msgstr "Ссылки с изображений"
627
 
628
- #: lib/available.php:836
629
  msgid "Slider size"
630
  msgstr "Размер слайдера"
631
 
632
- #: lib/available.php:846
633
  msgid "Number of slides"
634
  msgstr "Количество слайдов"
635
 
636
- #: lib/available.php:856
637
  msgid "Animation effect"
638
  msgstr "Эффект анимации"
639
 
640
- #: lib/available.php:861
641
- #: lib/available.php:929
642
  msgid "Animation speed (1000 = 1 second)"
643
  msgstr "Скорость анимации (1000 = 1 секунда)"
644
 
645
- #: lib/available.php:866
646
  msgid "Animation delay (1000 = 1 second)"
647
  msgstr "Задержка анимации (1000 = 1 секунда)"
648
 
649
- #: lib/available.php:870
650
  msgid "Nivo slider by attached to post images"
651
  msgstr "Nivo slider из изображений записи"
652
 
653
- #: lib/available.php:905
654
  msgid "Carousel item size"
655
  msgstr "Размер элементов карусели"
656
 
657
- #: lib/available.php:915
658
- #: lib/available.php:987
659
  msgid "Number of items"
660
  msgstr "Количество элементов"
661
 
662
- #: lib/available.php:924
663
  msgid "Number of items in viewport"
664
  msgstr "Количество элементов в видмой части"
665
 
666
- #: lib/available.php:938
667
  msgid "Space between items in pixels"
668
  msgstr "Расстояние между элементами в пикселях"
669
 
670
- #: lib/available.php:942
671
  msgid "jCarousel by attached to post images"
672
  msgstr "jCarousel из изображений записи"
673
 
674
- #: lib/available.php:977
675
  msgid "Gallery item size"
676
  msgstr "Размер миниатюр"
677
 
678
- #: lib/available.php:991
679
  msgid "Custom gallery by attached to post images"
680
  msgstr "Произвольная галерея"
681
 
682
- #: lib/available.php:1001
683
  msgid "Twitter username"
684
  msgstr "Имя пользователя"
685
 
686
- #: lib/available.php:1012
687
  msgid "Number of tweets to show"
688
  msgstr "Количество твитов для показа"
689
 
690
- #: lib/available.php:1020
691
  msgid "Tweets style"
692
  msgstr "Стиль твитов"
693
 
694
- #: lib/available.php:1028
695
  msgid "Show relative time"
696
  msgstr "Показывать время"
697
 
698
- #: lib/available.php:1032
699
  msgid "Recent tweets"
700
  msgstr "Последние твиты"
701
 
@@ -707,37 +719,37 @@ msgstr "Содержимое"
707
  msgid "Insert"
708
  msgstr "Вставить"
709
 
710
- #: lib/shortcodes.php:101
711
  msgid "Top"
712
  msgstr "Вверх"
713
 
714
- #: lib/shortcodes.php:319
715
  msgid "Service name"
716
  msgstr "Название услуги"
717
 
718
- #: lib/shortcodes.php:337
719
  msgid "This is box title"
720
  msgstr "Заголовок блока"
721
 
722
- #: lib/shortcodes.php:399
723
  msgid "Please specify media url"
724
  msgstr "Укажите ссылку на медиа"
725
 
726
- #: lib/shortcodes.php:538
727
- #: lib/shortcodes.php:591
728
- #: lib/shortcodes.php:635
729
  msgid "no attached images, or only one attached image"
730
  msgstr "не найдены загруженные изображения, или изображение всего одно"
731
 
732
- #: lib/shortcodes.php:750
733
  msgid "This menu doesn't exists, or has no elements"
734
  msgstr "Такое меню не существует, или в нем нет ни одного элемента"
735
 
736
- #: lib/shortcodes.php:807
737
  msgid "This content is for members only."
738
  msgstr "Это содержимое только для участников."
739
 
740
- #: lib/shortcodes.php:807
741
  msgid "Please login"
742
  msgstr "Пожалуйста войдите"
743
 
2
  msgstr ""
3
  "Project-Id-Version: gn_themes\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-01-08 00:27+0300\n"
6
+ "PO-Revision-Date: 2012-01-08 00:27+0300\n"
7
  "Last-Translator: Vladimir Anokhin <ano.vladimir@gmail.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
252
 
253
  #: lib/available.php:84
254
  #: lib/available.php:85
255
+ #: lib/shortcodes.php:86
256
  msgid "Spoiler title"
257
  msgstr "Скрытый текст"
258
 
259
+ #: lib/available.php:93
260
+ msgid "Is spoiler open?"
261
+ msgstr "Спойлер открыт?"
262
+
263
+ #: lib/available.php:101
264
+ msgid "Spoiler style"
265
+ msgstr "Стиль спойлера"
266
+
267
+ #: lib/available.php:105
268
  msgid "Hidden content"
269
  msgstr "Скрытое содержимое"
270
 
271
+ #: lib/available.php:106
272
  msgid "Hidden text"
273
  msgstr "Скрытый текст"
274
 
275
+ #: lib/available.php:115
276
+ msgid "Accordion"
277
+ msgstr "Аккордеон"
278
+
279
+ #: lib/available.php:128
280
  msgid "Show TOP link"
281
  msgstr "Показать ссылку ВВЕРХ"
282
 
283
+ #: lib/available.php:132
284
  msgid "Content divider with optional TOP link"
285
  msgstr "Разделитель текста со ссылкой ВВЕРХ"
286
 
287
+ #: lib/available.php:148
288
  msgid "Spacer height in pixels"
289
  msgstr "Высота разделителя в пикселях"
290
 
291
+ #: lib/available.php:152
292
  msgid "Empty space with adjustable height"
293
  msgstr "Пробел с настраиваемой высотой"
294
 
295
+ #: lib/available.php:166
296
  msgid "Quote style"
297
  msgstr "Стиль цитаты"
298
 
299
+ #: lib/available.php:170
300
  msgid "Quote"
301
  msgstr "Цитата"
302
 
303
+ #: lib/available.php:171
304
  msgid "Blockquote alternative"
305
  msgstr "Альтернатива цитаты"
306
 
307
+ #: lib/available.php:184
308
  msgid "Pullquote alignment"
309
  msgstr "Выравнивание цитаты"
310
 
311
+ #: lib/available.php:188
312
+ #: lib/available.php:189
313
  msgid "Pullquote"
314
  msgstr "Цитата с обтеканием"
315
 
316
+ #: lib/available.php:199
317
  msgid "Background color"
318
  msgstr "Цвет фона"
319
 
320
+ #: lib/available.php:205
321
  msgid "Text color"
322
  msgstr "Цвет текста"
323
 
324
+ #: lib/available.php:210
325
+ #: lib/available.php:211
326
  msgid "Highlighted text"
327
  msgstr "Подсвеченный текст"
328
 
329
+ #: lib/available.php:225
330
  msgid "Dropcap style"
331
  msgstr "Стиль буквицы"
332
 
333
+ #: lib/available.php:236
334
  msgid "Dropcap size"
335
  msgstr "Размер буквицы"
336
 
337
+ #: lib/available.php:240
338
  msgid "D"
339
  msgstr "D"
340
 
341
+ #: lib/available.php:241
342
  msgid "Dropcap"
343
  msgstr "Буквица"
344
 
345
+ #: lib/available.php:264
346
  msgid "Option name"
347
  msgstr "Имя опции"
348
 
349
+ #: lib/available.php:268
350
  msgid "Blog info"
351
  msgstr "Инфо блога"
352
 
353
+ #: lib/available.php:278
354
  msgid "Post/page ID"
355
  msgstr "ID записи/страницы"
356
 
357
+ #: lib/available.php:286
358
  msgid "Link target"
359
  msgstr "Цель ссылки"
360
 
361
+ #: lib/available.php:290
362
  msgid "Permalink text"
363
  msgstr "Текст постоянной ссылки"
364
 
365
+ #: lib/available.php:291
366
  msgid "Permalink to specified post/page"
367
  msgstr "Постоянная ссылка на указанную запись/страницу"
368
 
369
+ #: lib/available.php:301
370
  msgid "Button link"
371
  msgstr "Ссылка кнопки"
372
 
373
+ #: lib/available.php:306
374
  msgid "Button background color"
375
  msgstr "Цвет фона кнопки"
376
 
377
+ #: lib/available.php:325
378
  msgid "Button size"
379
  msgstr "Размер кнопки"
380
 
381
+ #: lib/available.php:335
382
  msgid "Button background style"
383
  msgstr "Стиль фона кнопки"
384
 
385
+ #: lib/available.php:343
386
  msgid "Dark text color"
387
  msgstr "Темный цвет текста"
388
 
389
+ #: lib/available.php:351
390
  msgid "Disable rounded corners"
391
  msgstr "Отключить скругленные уголки"
392
 
393
+ #: lib/available.php:356
394
  msgid "Button icon"
395
  msgstr "Иконка кнопки"
396
 
397
+ #: lib/available.php:361
398
  msgid "Button class"
399
  msgstr "Класс кнопки"
400
 
401
+ #: lib/available.php:369
402
  msgid "Button link target"
403
  msgstr "Цель ссылки кнопки"
404
 
405
+ #: lib/available.php:373
406
  msgid "Button text"
407
  msgstr "Текст кнопки"
408
 
409
+ #: lib/available.php:374
410
  msgid "Styled button"
411
  msgstr "Стильная кнопка"
412
 
413
+ #: lib/available.php:387
414
  msgid "Link color"
415
  msgstr "Цвет ссылки"
416
 
417
+ #: lib/available.php:392
418
  msgid "URL"
419
  msgstr "URL"
420
 
421
+ #: lib/available.php:396
422
  msgid "Link text"
423
  msgstr "Текст ссылки"
424
 
425
+ #: lib/available.php:397
426
  msgid "Fancy link"
427
  msgstr "Стильная ссылка"
428
 
429
+ #: lib/available.php:406
430
+ #: lib/available.php:407
431
  msgid "Service title"
432
  msgstr "Название услуги"
433
 
434
+ #: lib/available.php:412
435
  msgid "Service icon"
436
  msgstr "Иконка услуги"
437
 
438
+ #: lib/available.php:421
439
  msgid "Icon size"
440
  msgstr "Размер иконки"
441
 
442
+ #: lib/available.php:425
443
  msgid "Service description"
444
  msgstr "Описание услуги"
445
 
446
+ #: lib/available.php:426
447
  msgid "Service box with title"
448
  msgstr "Блок услуга с заголовком"
449
 
450
+ #: lib/available.php:440
451
  msgid "Box style"
452
  msgstr "Стиль блока"
453
 
454
+ #: lib/available.php:448
455
  msgid "Show login message"
456
  msgstr "Показывать предложение войти"
457
 
458
+ #: lib/available.php:452
459
  msgid "Content for logged members"
460
  msgstr "Содержимое для залогиненых пользователей"
461
 
462
+ #: lib/available.php:453
463
  msgid "Content for logged in members only"
464
  msgstr "Ссодержимое только для залогиненных"
465
 
466
+ #: lib/available.php:461
467
  msgid "Content for guests"
468
  msgstr "Содержимое для гостей"
469
 
470
+ #: lib/available.php:462
471
  msgid "Content for guests only"
472
  msgstr "Ссодержимое только для гостей"
473
 
474
+ #: lib/available.php:471
475
+ #: lib/available.php:472
476
  msgid "Box title"
477
  msgstr "Заголовок блока"
478
 
479
+ #: lib/available.php:477
480
  msgid "Box color"
481
  msgstr "Цвет блока"
482
 
483
+ #: lib/available.php:482
484
  msgid "Box content"
485
  msgstr "Содержимое блока"
486
 
487
+ #: lib/available.php:483
488
  msgid "Colored box with caption"
489
  msgstr "Цветной блок с заголовком"
490
 
491
+ #: lib/available.php:493
492
  msgid "Note color"
493
  msgstr "Цвет блока"
494
 
495
+ #: lib/available.php:498
496
  msgid "Note text"
497
  msgstr "Текст заметки"
498
 
499
+ #: lib/available.php:499
500
  msgid "Colored box"
501
  msgstr "Цветной блок"
502
 
503
+ #: lib/available.php:507
504
  msgid "Private note text"
505
  msgstr "Текст приватной заметки"
506
 
507
+ #: lib/available.php:508
508
  msgid "Private note for post authors"
509
  msgstr "Приватный текст для других авторов"
510
 
511
+ #: lib/available.php:534
512
  msgid "List style"
513
  msgstr "Стиль списка"
514
 
515
+ #: lib/available.php:538
516
  msgid "List item "
517
  msgstr "Элемент списка"
518
 
519
+ #: lib/available.php:539
520
  msgid "Styled unordered list"
521
  msgstr "Стильный неупорядоченный список"
522
 
523
+ #: lib/available.php:549
524
  msgid "Feed URL"
525
  msgstr "URL ленты"
526
 
527
+ #: lib/available.php:560
528
  msgid "Number of item to show"
529
  msgstr "Количество элементов для показа"
530
 
531
+ #: lib/available.php:564
532
  msgid "Feed grabber"
533
  msgstr "Граббер новостных лент"
534
 
535
+ #: lib/available.php:574
536
  msgid "Custom menu name"
537
  msgstr "Имя произвольного меню"
538
 
539
+ #: lib/available.php:578
540
  msgid "Custom menu by name"
541
  msgstr "Произвольное меню"
542
 
543
+ #: lib/available.php:592
544
+ #: lib/available.php:615
545
  msgid "Depth level"
546
  msgstr "Глубина"
547
 
548
+ #: lib/available.php:597
549
  msgid "Parent page ID"
550
  msgstr "ID родительской страницы"
551
 
552
+ #: lib/available.php:601
553
  msgid "Page childrens"
554
  msgstr "Потомки страницы"
555
 
556
+ #: lib/available.php:619
557
  msgid "Page siblings"
558
  msgstr "Братья страницы"
559
 
560
+ #: lib/available.php:641
561
  msgid "Column width"
562
  msgstr "Ширина колонки"
563
 
564
+ #: lib/available.php:649
565
  msgid "Last column"
566
  msgstr "Последняя колонка"
567
 
568
+ #: lib/available.php:658
569
  msgid "Column style"
570
  msgstr "Стиль колонки"
571
 
572
+ #: lib/available.php:662
573
  msgid "Column content"
574
  msgstr "Содержимое колонки"
575
 
576
+ #: lib/available.php:663
577
  msgid "Flexible columns"
578
  msgstr "Резновые колонки"
579
 
580
+ #: lib/available.php:677
581
  msgid "Table style"
582
  msgstr "Стиль таблицы"
583
 
584
+ #: lib/available.php:682
585
  msgid "Create table from CSV"
586
  msgstr "Создание таблицы из CSV файла"
587
 
588
+ #: lib/available.php:687
589
  msgid "Styled table from HTML or CSV file"
590
  msgstr "Стильная таблица из HTML или CSV файла"
591
 
592
+ #: lib/available.php:763
593
  msgid "Media URL"
594
  msgstr "Ссылка на медиа"
595
 
596
+ #: lib/available.php:768
597
+ #: lib/available.php:792
598
+ #: lib/available.php:811
599
  msgid "Width"
600
  msgstr "Ширина"
601
 
602
+ #: lib/available.php:773
603
+ #: lib/available.php:797
604
+ #: lib/available.php:816
605
  msgid "Height"
606
  msgstr "Высота"
607
 
608
+ #: lib/available.php:777
609
  msgid "YouTube video, Vimeo video, .mp4/.flv video, .mp3 file or images"
610
  msgstr "YouTube видео, Vimeo видео, .mp4/.flv видео, .mp3 файл или изображения"
611
 
612
+ #: lib/available.php:787
613
  msgid "Document URL"
614
  msgstr "Ссылка на документ"
615
 
616
+ #: lib/available.php:801
617
  msgid ".doc, .xls, .pdf viewer by Google"
618
  msgstr ".doc, .xls, .pdf просмотрщик от Google"
619
 
620
+ #: lib/available.php:821
621
  msgid "Marker address"
622
  msgstr "Адрес маркера"
623
 
624
+ #: lib/available.php:825
625
  msgid "Maps by Google"
626
  msgstr "Карты от Google"
627
 
628
+ #: lib/available.php:839
629
+ #: lib/available.php:909
630
+ #: lib/available.php:981
631
  msgid "Source of images"
632
  msgstr "Источник изображений"
633
 
634
+ #: lib/available.php:850
635
+ #: lib/available.php:920
636
+ #: lib/available.php:992
637
  msgid "Images links"
638
  msgstr "Ссылки с изображений"
639
 
640
+ #: lib/available.php:861
641
  msgid "Slider size"
642
  msgstr "Размер слайдера"
643
 
644
+ #: lib/available.php:871
645
  msgid "Number of slides"
646
  msgstr "Количество слайдов"
647
 
648
+ #: lib/available.php:881
649
  msgid "Animation effect"
650
  msgstr "Эффект анимации"
651
 
652
+ #: lib/available.php:886
653
+ #: lib/available.php:954
654
  msgid "Animation speed (1000 = 1 second)"
655
  msgstr "Скорость анимации (1000 = 1 секунда)"
656
 
657
+ #: lib/available.php:891
658
  msgid "Animation delay (1000 = 1 second)"
659
  msgstr "Задержка анимации (1000 = 1 секунда)"
660
 
661
+ #: lib/available.php:895
662
  msgid "Nivo slider by attached to post images"
663
  msgstr "Nivo slider из изображений записи"
664
 
665
+ #: lib/available.php:930
666
  msgid "Carousel item size"
667
  msgstr "Размер элементов карусели"
668
 
669
+ #: lib/available.php:940
670
+ #: lib/available.php:1012
671
  msgid "Number of items"
672
  msgstr "Количество элементов"
673
 
674
+ #: lib/available.php:949
675
  msgid "Number of items in viewport"
676
  msgstr "Количество элементов в видмой части"
677
 
678
+ #: lib/available.php:963
679
  msgid "Space between items in pixels"
680
  msgstr "Расстояние между элементами в пикселях"
681
 
682
+ #: lib/available.php:967
683
  msgid "jCarousel by attached to post images"
684
  msgstr "jCarousel из изображений записи"
685
 
686
+ #: lib/available.php:1002
687
  msgid "Gallery item size"
688
  msgstr "Размер миниатюр"
689
 
690
+ #: lib/available.php:1016
691
  msgid "Custom gallery by attached to post images"
692
  msgstr "Произвольная галерея"
693
 
694
+ #: lib/available.php:1026
695
  msgid "Twitter username"
696
  msgstr "Имя пользователя"
697
 
698
+ #: lib/available.php:1037
699
  msgid "Number of tweets to show"
700
  msgstr "Количество твитов для показа"
701
 
702
+ #: lib/available.php:1045
703
  msgid "Tweets style"
704
  msgstr "Стиль твитов"
705
 
706
+ #: lib/available.php:1053
707
  msgid "Show relative time"
708
  msgstr "Показывать время"
709
 
710
+ #: lib/available.php:1057
711
  msgid "Recent tweets"
712
  msgstr "Последние твиты"
713
 
719
  msgid "Insert"
720
  msgstr "Вставить"
721
 
722
+ #: lib/shortcodes.php:121
723
  msgid "Top"
724
  msgstr "Вверх"
725
 
726
+ #: lib/shortcodes.php:339
727
  msgid "Service name"
728
  msgstr "Название услуги"
729
 
730
+ #: lib/shortcodes.php:357
731
  msgid "This is box title"
732
  msgstr "Заголовок блока"
733
 
734
+ #: lib/shortcodes.php:419
735
  msgid "Please specify media url"
736
  msgstr "Укажите ссылку на медиа"
737
 
738
+ #: lib/shortcodes.php:558
739
+ #: lib/shortcodes.php:611
740
+ #: lib/shortcodes.php:655
741
  msgid "no attached images, or only one attached image"
742
  msgstr "не найдены загруженные изображения, или изображение всего одно"
743
 
744
+ #: lib/shortcodes.php:770
745
  msgid "This menu doesn't exists, or has no elements"
746
  msgstr "Такое меню не существует, или в нем нет ни одного элемента"
747
 
748
+ #: lib/shortcodes.php:827
749
  msgid "This content is for members only."
750
  msgstr "Это содержимое только для участников."
751
 
752
+ #: lib/shortcodes.php:827
753
  msgid "Please login"
754
  msgstr "Пожалуйста войдите"
755
 
lib/available.php CHANGED
@@ -83,12 +83,37 @@
83
  'values' => array( ),
84
  'default' => __( 'Spoiler title', 'shortcodes-ultimate' ),
85
  'desc' => __( 'Spoiler title', 'shortcodes-ultimate' )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
  )
87
  ),
88
  'usage' => '[spoiler title="Spoiler title"] Hidden text [/spoiler]',
89
  'content' => __( 'Hidden content', 'shortcodes-ultimate' ),
90
  'desc' => __( 'Hidden text', 'shortcodes-ultimate' )
91
  ),
 
 
 
 
 
 
 
 
 
92
  # divider
93
  'divider' => array(
94
  'name' => 'Divider',
83
  'values' => array( ),
84
  'default' => __( 'Spoiler title', 'shortcodes-ultimate' ),
85
  'desc' => __( 'Spoiler title', 'shortcodes-ultimate' )
86
+ ),
87
+ 'open' => array(
88
+ 'values' => array(
89
+ '0',
90
+ '1'
91
+ ),
92
+ 'default' => '0',
93
+ 'desc' => __( 'Is spoiler open?', 'shortcodes-ultimate' )
94
+ ),
95
+ 'style' => array(
96
+ 'values' => array(
97
+ '1',
98
+ '2'
99
+ ),
100
+ 'default' => '1',
101
+ 'desc' => __( 'Spoiler style', 'shortcodes-ultimate' )
102
  )
103
  ),
104
  'usage' => '[spoiler title="Spoiler title"] Hidden text [/spoiler]',
105
  'content' => __( 'Hidden content', 'shortcodes-ultimate' ),
106
  'desc' => __( 'Hidden text', 'shortcodes-ultimate' )
107
  ),
108
+ # accordion
109
+ 'accordion' => array(
110
+ 'name' => 'Accordion',
111
+ 'type' => 'wrap',
112
+ 'atts' => array( ),
113
+ 'usage' => '[accordion]<br/>[spoiler open="true"] content [/spoiler]<br/>[spoiler] content [/spoiler]<br/>[spoiler] content [/spoiler]<br/>[/accordion]',
114
+ 'content' => '[spoiler] content [/spoiler]',
115
+ 'desc' => __( 'Accordion', 'shortcodes-ultimate' )
116
+ ),
117
  # divider
118
  'divider' => array(
119
  'name' => 'Divider',
lib/generator.php CHANGED
@@ -4,7 +4,7 @@
4
  require( '../../../../wp-load.php' );
5
 
6
  // Capability check
7
- if ( !current_user_can( 'edit_posts' ) || !current_user_can( 'edit_pages' ) )
8
  die( 'Access denied' );
9
 
10
  // Param check
4
  require( '../../../../wp-load.php' );
5
 
6
  // Capability check
7
+ if ( !current_user_can( 'publish_posts' ) )
8
  die( 'Access denied' );
9
 
10
  // Param check
lib/shortcodes.php CHANGED
@@ -53,6 +53,10 @@
53
  }
54
  $return = '<div class="su-tabs su-tabs-style-' . $style . '"><div class="su-tabs-nav">' . implode( '', $tabs ) . '</div><div class="su-tabs-panes">' . implode( "\n", $panes ) . '</div><div class="su-spacer"></div></div>';
55
  }
 
 
 
 
56
  return $return;
57
  }
58
 
@@ -80,10 +84,26 @@
80
  function su_spoiler_shortcode( $atts, $content = null ) {
81
  extract( shortcode_atts( array(
82
  'title' => __( 'Spoiler title', 'shortcodes-ultimate' ),
83
- 'style' => 0
 
84
  ), $atts ) );
85
 
86
- return '<div class="su-spoiler su-spoiler-open su-spoiler-style-' . $style . '"><div class="su-spoiler-title">' . $title . '</div><div class="su-spoiler-content">' . do_shortcode( $content ) . '</div></div>';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
87
  }
88
 
89
  /**
53
  }
54
  $return = '<div class="su-tabs su-tabs-style-' . $style . '"><div class="su-tabs-nav">' . implode( '', $tabs ) . '</div><div class="su-tabs-panes">' . implode( "\n", $panes ) . '</div><div class="su-spacer"></div></div>';
55
  }
56
+
57
+ // Unset globals
58
+ unset( $GLOBALS['tabs'], $GLOBALS['tab_count'] );
59
+
60
  return $return;
61
  }
62
 
84
  function su_spoiler_shortcode( $atts, $content = null ) {
85
  extract( shortcode_atts( array(
86
  'title' => __( 'Spoiler title', 'shortcodes-ultimate' ),
87
+ 'open' => false,
88
+ 'style' => 1
89
  ), $atts ) );
90
 
91
+ $open_class = ( $open ) ? ' su-spoiler-open' : '';
92
+ $open_display = ( $open ) ? ' style="display:block"' : '';
93
+
94
+ return '<div class="su-spoiler su-spoiler-style-' . $style . $open_class . '"><div class="su-spoiler-title">' . $title . '</div><div class="su-spoiler-content"' . $open_display . '>' . do_shortcode( $content ) . '</div></div>';
95
+ }
96
+
97
+ /**
98
+ * Shortcode: accordion
99
+ *
100
+ * @param array $atts Shortcode attributes
101
+ * @param string $content
102
+ * @return string Output html
103
+ */
104
+ function su_accordion_shortcode( $atts = null, $content = null ) {
105
+
106
+ return '<div class="su-accordion">' . do_shortcode( $content ) . '</div>';
107
  }
108
 
109
  /**
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: http://gndev.info/donate/
4
  Tags: shortcode, shortcodes, short code, shortcodes, tab, tabs, button, buttons, jquery, box, boxes, toggle, spoiler, column, columns, services, service, pullquote, list, lists, frame, images, image, links, fancy, fancy link, fancy links, fancy buttons, jquery tabs, accordeon, slider, nivo, nivo slider, plugin, admin, photoshop, gallery, bloginfo, list pages, sub pages, navigation, siblings pages, children pages, permalink, permalinks, feed, document, member, members, documents, jcarousel, rss
5
  Requires at least: 3.0
6
  Tested up to: 3.3
7
- Stable tag: 3.4.0
8
 
9
  Provides support for multiple useful shortcodes
10
 
@@ -21,13 +21,15 @@ With this plugin you can easily create buttons, boxes, different sliders and muc
21
  * International
22
 
23
  = New in this version =
24
- * Belarusian translation
25
- * New shortcode [dropcap]
 
 
26
 
27
  = Got a bug? =
28
- * Support forum - http://wordpress.org/tags/shortcodes-ultimate?forum_id=10
29
- * Plugin page - http://gndev.info/shortcodes-ultimate/
30
- * Twitter: http://twitter.com/gn_themes
31
 
32
  = Translations =
33
  * Fr - [Aurélien DENIS](http://wpchannel.com/)
@@ -36,7 +38,7 @@ With this plugin you can easily create buttons, boxes, different sliders and muc
36
  * Ru - [Vladimir Anokhin](http://gndev.info/)
37
  * By - [Alexander Ovsov](http://webhostinggeeks.com/science/)
38
 
39
- Have a translation? [Contact me](ano.vladimir@gmail.com)
40
 
41
 
42
  == Installation ==
@@ -96,6 +98,9 @@ Also, you can use [jcarousel] and [custom_gallery] according these principles.
96
 
97
  == Changelog ==
98
 
 
 
 
99
  = 3.4 =
100
  * Belarusian translation
101
  * New shortcode [dropcap]
4
  Tags: shortcode, shortcodes, short code, shortcodes, tab, tabs, button, buttons, jquery, box, boxes, toggle, spoiler, column, columns, services, service, pullquote, list, lists, frame, images, image, links, fancy, fancy link, fancy links, fancy buttons, jquery tabs, accordeon, slider, nivo, nivo slider, plugin, admin, photoshop, gallery, bloginfo, list pages, sub pages, navigation, siblings pages, children pages, permalink, permalinks, feed, document, member, members, documents, jcarousel, rss
5
  Requires at least: 3.0
6
  Tested up to: 3.3
7
+ Stable tag: 3.5.0
8
 
9
  Provides support for multiple useful shortcodes
10
 
21
  * International
22
 
23
  = New in this version =
24
+ * New shortcode [accordion] for muliple spoilers
25
+ * Improved spoiler shortcode (check settings page)
26
+ * Multiple tabs bugfix
27
+ * Authors can also use shortcode generator
28
 
29
  = Got a bug? =
30
+ * [Support forum](http://wordpress.org/tags/shortcodes-ultimate?forum_id=10)
31
+ * [Plugin page](http://gndev.info/shortcodes-ultimate/)
32
+ * [Twitter](http://twitter.com/gn_themes)
33
 
34
  = Translations =
35
  * Fr - [Aurélien DENIS](http://wpchannel.com/)
38
  * Ru - [Vladimir Anokhin](http://gndev.info/)
39
  * By - [Alexander Ovsov](http://webhostinggeeks.com/science/)
40
 
41
+ Have a translation? [Contact me](mailto:ano.vladimir@gmail.com)
42
 
43
 
44
  == Installation ==
98
 
99
  == Changelog ==
100
 
101
+ = 3.5 =
102
+
103
+
104
  = 3.4 =
105
  * Belarusian translation
106
  * New shortcode [dropcap]
shortcodes-ultimate.php CHANGED
@@ -2,7 +2,7 @@
2
  /*
3
  Plugin Name: Shortcodes Ultimate
4
  Plugin URI: http://gndev.info/shortcodes-ultimate/
5
- Version: 3.4.0
6
  Author: Vladimir Anokhin
7
  Author URI: http://gndev.info/
8
  Description: Provides support for many easy to use shortcodes
@@ -312,7 +312,7 @@
312
  <?php
313
  foreach ( su_shortcodes() as $name => $shortcode ) {
314
  ?>
315
- <option value="<?php echo $name; ?>"><?php echo strtoupper( $name ); ?>:&nbsp;&nbsp;&nbsp;<?php echo $shortcode['desc']; ?></option>
316
  <?php
317
  }
318
  ?>
2
  /*
3
  Plugin Name: Shortcodes Ultimate
4
  Plugin URI: http://gndev.info/shortcodes-ultimate/
5
+ Version: 3.5.0
6
  Author: Vladimir Anokhin
7
  Author URI: http://gndev.info/
8
  Description: Provides support for many easy to use shortcodes
312
  <?php
313
  foreach ( su_shortcodes() as $name => $shortcode ) {
314
  ?>
315
+ <option value="<?php echo $name; ?>"><?php echo strtoupper( $name ); ?>:&nbsp;&nbsp;<?php echo $shortcode['desc']; ?></option>
316
  <?php
317
  }
318
  ?>