Plugin Directory

Changeset 2155446


Ignore:
Timestamp:
09/12/2019 11:04:27 AM (7 years ago)
Author:
freshlabs
Message:

Updated Trunk to 1.0.3 and Tag to 1.0

Location:
fresh-podcaster
Files:
1 deleted
10 edited
16 copied

Legend:

Unmodified
Added
Removed
  • fresh-podcaster/trunk/README.txt

    r2147792 r2155446  
    2020AUTOMATIC INSTALLATION
    2121
    22 1. Go to Plugins > Add New
     221. Go to Plugins & Add New
    23232. Type “fresh Podcaster” in the search field and click “Search Plugins”
    24243. Click “Install Now” to install
     
    2929
    30301. Download a copy of the “fresh Podcaster” plugin
    31 2. Upload freshPodcaster to the /wp-content/plugins/ directory
     312. Upload fresh Podcaster to the /wp-content/plugins/ directory
    32323. Activate the plugin through the “Plugins” menu in WordPress
    33334. Use the fresh Podcast menu from the sidebar
     
    4646
    4747== Changelog ==
     48
     49= 1.0.3 =
     50Release Date: September 12th, 2019
     51
     52* configurable menu hierarchy
     53   In the plugin settings you can change the plugins menu position in the sidebar to either top level or second level under wordpress settings.
     54* Typos fixed
     55* Added Russian language support
    4856
    4957= 1.0.2 =
  • fresh-podcaster/trunk/admin/class-fresh-podcaster-admin.php

    r2141982 r2155446  
    108108     */
    109109    public function add_admin_menu() {
    110         add_menu_page( 'Fresh podcaster settings', 'fresh Podcaster', 'edit_others_posts', 'fresh-podcaster-settings', array( $this, 'create_admin_interface' ), plugins_url( 'admin/img/icon.png', dirname(__FILE__)), 76.3 );
     110       
     111        if(get_option('fp_custom_menu_mode') == 2) {
     112            add_options_page( 'Fresh podcaster settings', 'fresh Podcaster', 'edit_others_posts', 'fresh-podcaster-settings', array( $this, 'create_admin_interface' ));
     113        } else {
     114            add_menu_page( 'Fresh podcaster settings', 'fresh Podcaster', 'edit_others_posts', 'fresh-podcaster-settings', array( $this, 'create_admin_interface' ), plugins_url( 'admin/img/icon.png', dirname(__FILE__)), 76.3 );
     115        }
    111116    }
    112117    /**
     
    118123        add_option( 'fresh_podcaster_css', 'fl-style');
    119124        register_setting( 'fresh-podcaster-options', 'fl-podcaster-custom-style', 'myplugin_callback' );
     125        register_setting( 'fresh-podcaster-menu', 'fp_custom_menu_mode', 'myplugin_callback');
    120126    }
    121127
  • fresh-podcaster/trunk/admin/css/fresh-podcaster-admin.css

    r2141982 r2155446  
    192192  cursor:pointer;
    193193}
     194 .fp .fp_rad {
     195  margin-bottom:5px;
     196  padding-left:30%;
     197}
     198 .fp .inner-title.options-title {
     199  margin-bottom:40px;
     200}
  • fresh-podcaster/trunk/admin/partials/fresh-podcaster-admin-display.php

    r2141982 r2155446  
    7373           
    7474          </header>
    75 
     75         
    7676          <form method="post" action="options.php" class="form">
    7777            <?php settings_fields( 'fresh-podcaster-options' ); ?>
     
    7979            <div class='field'>
    8080<textarea type="text" id="fl-podcaster-custom-style" name="fl-podcaster-custom-style" value="<?php echo get_option('fl-podcaster-custom-style'); ?>" style="min-height:300px;">
    81                 <?php
    82                 if(get_option('fl-podcaster-custom-style')) {
    83                   echo get_option('fl-podcaster-custom-style');
    84                 } else {?>
     81<?php
     82if(get_option('fl-podcaster-custom-style')) {
     83echo get_option('fl-podcaster-custom-style');
     84} else {?>
    8585
    8686.fp {
     
    9696          </form>
    9797      </div>
    98     </div><!-- /.container -->
     98
     99
     100
     101
     102      <div class="container edit-css">
     103         
     104          <form method="post" action="options.php" class="form">
     105            <?php
     106            settings_fields( 'fresh-podcaster-menu' );
     107            $menu_pos = get_option('fp_custom_menu_mode');
     108            ?>
     109            <h2 class="inner-title options-title"><?php _e('Menu position', 'fresh-podcaster'); ?></h2>
     110
     111            <div class="fp_rad">
     112              <input type="radio" id="1" name="fp_custom_menu_mode" value="1"<?php
     113                if($menu_pos == false || $menu_pos == 1) {
     114                  echo ' checked';
     115                }
     116               ?>>
     117              <label for="1"><?php _e('Menu page', 'fresh-podcaster'); ?></label>
     118            </div>
     119
     120            <div class="fp_rad">
     121              <input type="radio" id="2" name="fp_custom_menu_mode" value="2"<?php
     122                if($menu_pos == 2) {
     123                  echo ' checked';
     124                }
     125               ?>>
     126              <label for="2"><?php _e('Options page', 'fresh-podcaster'); ?></label>
     127            </div>
     128
     129            <div class="clear"></div>
     130            <input type="submit" name="submit" id="submit" value="<?php _e('Save position', 'fresh-podcaster'); ?>">
     131            <?php  //submit_button(); ?>
     132          </form>
     133      </div>
     134
     135
     136
    99137
    100138</div>
  • fresh-podcaster/trunk/fresh-podcaster.php

    r2147792 r2155446  
    1717 * Plugin URI:        freshlabs.de
    1818 * Description:       fresh Podcaster is a simple yet customizable plugin to embed podcasts
    19  * Version:           1.0.2
     19 * Version:           1.0.3
    2020 * Author:            freshlabs.de
    2121 * Author URI:        freshlabs.de
     
    3636 * Rename this for your plugin and update it as you release new versions.
    3737 */
    38 define( 'FRESH_PODCASTER_VERSION', '1.0.2' );
     38define( 'FRESH_PODCASTER_VERSION', '1.0.3' );
    3939
    4040/**
  • fresh-podcaster/trunk/languages/fresh-podcaster-de_DE.po

    r2141982 r2155446  
    33"Project-Id-Version: Bfresh-podcaster\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2019-08-01 11:07+0200\n"
    6 "PO-Revision-Date: 2019-08-15 15:24+0200\n"
     5"POT-Creation-Date: 2019-09-12 00:29+0200\n"
     6"PO-Revision-Date: 2019-09-12 00:39+0200\n"
    77"Last-Translator: bonness <vlad@freshlabs.de>\n"
    88"Language-Team: \n"
     
    1515"X-Generator: Poedit 2.2.3\n"
    1616"X-Poedit-Basepath: ..\n"
    17 "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
     17"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
     18"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
     19"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
     20"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
     21"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
    1822"X-Loco-Target-Locale: de_DE\n"
    1923"X-Poedit-SearchPath-0: .\n"
    2024
    2125#: admin/partials/fresh-podcaster-admin-display.php:30
    22 msgid "fresh Podcaster is a simple yet customizable plugin to embed podcasts in your pages. Just add a shortcode to the post. You can add multiple podcasts to a single page and you can use all sorts of source formats like mp4, m4a or wav and many more. And you can customize the podcast player using your own CSS."
    23 msgstr "Der fresh Podcaster ist ein sehr einfaches aber voll konfigurierbares Plugin um Podcasts auf einer Seite einzubinden. Es können mehrere Podcasts auf einer Seite dargestellt werden und diese können unterschiedlichste Quellformate haben, wie z.B. mp4, m4a oder wav. Der fresh Podcaster kann mit custom CSS in den Plugin-Einstellungen oder im Wordpress Customizer angepasst werden."
     26msgid ""
     27"fresh Podcaster is a simple yet customizable plugin to embed podcasts in "
     28"your pages. Just add a shortcode to the post. You can add multiple podcasts "
     29"to a single page and you can use all sorts of source formats like mp4, m4a "
     30"or wav and many more. And you can customize the podcast player using your "
     31"own CSS."
     32msgstr ""
     33"Der fresh Podcaster ist ein sehr einfaches aber voll konfigurierbares Plugin "
     34"um Podcasts auf einer Seite einzubinden. Es können mehrere Podcasts auf "
     35"einer Seite dargestellt werden und diese können unterschiedlichste "
     36"Quellformate haben, wie z.B. mp4, m4a oder wav. Der fresh Podcaster kann mit "
     37"custom CSS in den Plugin-Einstellungen oder im Wordpress Customizer "
     38"angepasst werden."
    2439
    2540#: admin/partials/fresh-podcaster-admin-display.php:35
     
    6075
    6176#: admin/partials/fresh-podcaster-admin-display.php:71
    62 msgid "You can add your custom CSS code on the plugin page here or in the Wordpress customizer. See the plugin FAQ on wordpress.org for more examples."
    63 msgstr "Es kann eigener CSS Code verwendet werden. Schau die Plugin-FAQ auf Wordpress.org an für weitere CSS Beispiele."
     77msgid ""
     78"You can add your custom CSS code on the plugin page here or in the Wordpress "
     79"customizer. See the plugin FAQ on wordpress.org for more examples."
     80msgstr ""
     81"Es kann eigener CSS Code verwendet werden. Schau die Plugin-FAQ auf "
     82"Wordpress.org an für weitere CSS Beispiele."
    6483
    6584#: admin/partials/fresh-podcaster-admin-display.php:78
     
    6786msgstr "Custom CSS Code"
    6887
    69 #: admin/partials/fresh-podcaster-admin-display.php:83
     88#: admin/partials/fresh-podcaster-admin-display.php:94
    7089msgid "Save CSS"
    7190msgstr "CSS speichern"
     91
     92#: admin/partials/fresh-podcaster-admin-display.php:109
     93msgid "Menu position"
     94msgstr "Position im Menü"
     95
     96#: admin/partials/fresh-podcaster-admin-display.php:117
     97msgid "Menu page"
     98msgstr "In der Admin-Sidebar"
     99
     100#: admin/partials/fresh-podcaster-admin-display.php:126
     101msgid "Options page"
     102msgstr "Unter Einstellungen"
     103
     104#: admin/partials/fresh-podcaster-admin-display.php:130
     105msgid "Save position"
     106msgstr "Position spreichern"
     107
     108#~ msgid "fresh Podcaster menu position"
     109#~ msgstr "fresh Podcaster Position im Menü"
    72110
    73111#, fuzzy
  • fresh-podcaster/trunk/languages/fresh-podcaster-ru_RU.po

    r2141982 r2155446  
    33"Project-Id-Version: Bfresh-podcaster\n"
    44"Report-Msgid-Bugs-To: \n"
    5 "POT-Creation-Date: 2018-11-10 09:35+0800\n"
    6 "PO-Revision-Date: 2019-08-01 08:11+0200\n"
     5"POT-Creation-Date: 2019-09-12 00:29+0200\n"
     6"PO-Revision-Date: 2019-09-12 00:38+0200\n"
    77"Last-Translator: bonness <vlad@freshlabs.de>\n"
    88"Language-Team: \n"
    99"Language: de\n"
    10 "Plural-Forms: nplurals=2; plural=n != 1;\n"
    1110"MIME-Version: 1.0\n"
    1211"Content-Type: text/plain; charset=UTF-8\n"
    1312"Content-Transfer-Encoding: 8bit\n"
     13"Plural-Forms: nplurals=2; plural=n != 1;\n"
    1414"X-Poedit-SourceCharset: UTF-8\n"
    1515"X-Generator: Poedit 2.2.3\n"
    1616"X-Poedit-Basepath: ..\n"
    17 "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
     17"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
     18"__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
     19"_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
     20"esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
     21"esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
    1822"X-Loco-Target-Locale: de_DE\n"
    1923"X-Poedit-SearchPath-0: .\n"
    2024
    21 #: admin/partials/fresh-podcaster-admin-display.php:26
    22 msgid "fresh Podcaster is a simple yet customizable plugin to embed podcasts in your pages. Just add a shortcode to the post. You can add multiple podcasts to a single page and you can use all sorts of source formats like mp4, m4a or wav and many more.  And you can customize the podcast player using our CSS wizard or write your own CSS."
    23 msgstr "Russian Desk."
     25#: admin/partials/fresh-podcaster-admin-display.php:30
     26msgid ""
     27"fresh Podcaster is a simple yet customizable plugin to embed podcasts in "
     28"your pages. Just add a shortcode to the post. You can add multiple podcasts "
     29"to a single page and you can use all sorts of source formats like mp4, m4a "
     30"or wav and many more. And you can customize the podcast player using your "
     31"own CSS."
     32msgstr ""
     33"Простой, кастомизируемый плагин, дли проигрывания подкастов на вашем сайте."
    2434
    25 #: admin/partials/fresh-podcaster-admin-display.php:31
     35#: admin/partials/fresh-podcaster-admin-display.php:35
    2636msgid "Shortcode generation Wizard"
    27 msgstr "Это fresh Shortcode Generator"
    28 
    29 #: admin/partials/fresh-podcaster-admin-display.php:33
    30 msgid "Podcast Author"
    31 msgstr "Автор"
     37msgstr "Генератор Shortcode"
    3238
    3339#: admin/partials/fresh-podcaster-admin-display.php:37
    34 msgid "Podcast name"
    35 msgstr "Название"
     40msgid "Podcast Author"
     41msgstr "Автор подкаста"
    3642
    3743#: admin/partials/fresh-podcaster-admin-display.php:41
     44msgid "Podcast name"
     45msgstr "Название подкаста"
     46
     47#: admin/partials/fresh-podcaster-admin-display.php:45
    3848msgid "Podcast URL"
    39 msgstr "URL Адрес"
     49msgstr "URL подкаста"
    4050
    41 #: admin/partials/fresh-podcaster-admin-display.php:46
     51#: admin/partials/fresh-podcaster-admin-display.php:50
    4252msgid "Custom Color 1"
    4353msgstr "Цвет градиента 1"
    4454
    45 #: admin/partials/fresh-podcaster-admin-display.php:50
     55#: admin/partials/fresh-podcaster-admin-display.php:54
    4656msgid "Custom Color 2"
    4757msgstr "Цвет градиента 2"
    4858
    49 #: admin/partials/fresh-podcaster-admin-display.php:55
     59#: admin/partials/fresh-podcaster-admin-display.php:59
    5060msgid "Generate shortcode"
    51 msgstr "Создать шорткод"
     61msgstr "Создать shortcode"
    5262
    53 #: admin/partials/fresh-podcaster-admin-display.php:57
     63#: admin/partials/fresh-podcaster-admin-display.php:61
    5464msgid "Your shortcode:"
    55 msgstr "Твой шорткод:"
     65msgstr "Ваш shortcode:"
    5666
    57 #: admin/partials/fresh-podcaster-admin-display.php:64
    58 msgid "You can customize your Layout"
    59 msgstr "Твои стили CSS"
     67#: admin/partials/fresh-podcaster-admin-display.php:68
     68msgid "Customizing the fresh Podcaster design"
     69msgstr "Кастомизировать дизайн плагина:"
    6070
    61 #: admin/partials/fresh-podcaster-admin-display.php:67
    62 msgid "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aspernatur dolores deleniti repudiandae perferendis porro quidem, hic est provident sint similique rem vitae quisquam aut ducimus quaerat quas, tempore doloribus magni"
    63 msgstr "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aspernatur dolores deleniti repudiandae perferendis porro quidem, hic est provident sint similique rem vitae quisquam aut ducimus quaerat quas, tempore doloribus magni DE"
     71#: admin/partials/fresh-podcaster-admin-display.php:71
     72msgid ""
     73"You can add your custom CSS code on the plugin page here or in the Wordpress "
     74"customizer. See the plugin FAQ on wordpress.org for more examples."
     75msgstr "Здесь вы можете добавить ваш уникальный CSS код."
    6476
    65 #: admin/partials/fresh-podcaster-admin-display.php:74
     77#: admin/partials/fresh-podcaster-admin-display.php:78
    6678msgid "Custom CSS code"
    67 msgstr "Твой кастомный CSS"
     79msgstr "Ваш кастомный CSS"
    6880
    69 #: admin/partials/fresh-podcaster-admin-display.php:79
     81#: admin/partials/fresh-podcaster-admin-display.php:94
    7082msgid "Save CSS"
    7183msgstr "Сохранить CSS"
     84
     85#: admin/partials/fresh-podcaster-admin-display.php:109
     86msgid "Menu position"
     87msgstr "Позиция в меню"
     88
     89#: admin/partials/fresh-podcaster-admin-display.php:117
     90msgid "Menu page"
     91msgstr "Сайдбар Wordpress"
     92
     93#: admin/partials/fresh-podcaster-admin-display.php:126
     94msgid "Options page"
     95msgstr "Настройки Wordpress"
     96
     97#: admin/partials/fresh-podcaster-admin-display.php:130
     98msgid "Save position"
     99msgstr "Сохранить позицию"
     100
     101#~ msgid "You can customize your Layout"
     102#~ msgstr "Твои стили CSS"
     103
     104#~ msgid ""
     105#~ "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aspernatur "
     106#~ "dolores deleniti repudiandae perferendis porro quidem, hic est provident "
     107#~ "sint similique rem vitae quisquam aut ducimus quaerat quas, tempore "
     108#~ "doloribus magni"
     109#~ msgstr ""
     110#~ "Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aspernatur "
     111#~ "dolores deleniti repudiandae perferendis porro quidem, hic est provident "
     112#~ "sint similique rem vitae quisquam aut ducimus quaerat quas, tempore "
     113#~ "doloribus magni DE"
  • fresh-podcaster/trunk/languages/fresh-podcaster.pot

    r2141982 r2155446  
    44"Project-Id-Version: fresh-podcaster\n"
    55"Report-Msgid-Bugs-To: \n"
    6 "POT-Creation-Date: 2018-09-15 08:14+0000\n"
     6"POT-Creation-Date: 2019-09-12 00:29+0200\n"
    77"POT-Revision-Date: Thu Jun 02 2016 13:26:44 GMT+0200 (CEST)\n"
    88"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    99"Last-Translator: \n"
    1010"Language-Team: \n"
    11 "Language: \n"
    1211"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION\n"
    1312"MIME-Version: 1.0\n"
     
    1514"Content-Transfer-Encoding: 8bit\n"
    1615"X-Poedit-SourceCharset: UTF-8\n"
    17 "X-Generator: Loco - https://localise.biz/\n"
     16"X-Generator: Poedit 2.2.3\n"
    1817"X-Poedit-Basepath: ..\n"
    19 "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
    20 "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
    21 "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
    22 "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
    23 "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
    24 "X-Poedit-SearchPath-0: ."
     18"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;"
     19"comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
     20"X-Poedit-SearchPath-0: .\n"
    2521
    26 #: admin/partials/fresh-podcaster-admin-display.php:26
     22#: admin/partials/fresh-podcaster-admin-display.php:30
    2723msgid ""
    2824"fresh Podcaster is a simple yet customizable plugin to embed podcasts in your pages. Just add a shortcode to the post. You can add multiple podcasts to a single page and you can use all sorts of source formats like mp4, m4a or wav and many more. And you can customize the podcast player using your own CSS."
    2925msgstr ""
    3026
    31 #: admin/partials/fresh-podcaster-admin-display.php:31
    32 msgid ""
    33 "Shortcode generation Wizard"
    34 msgstr ""
    35 
    36 #: admin/partials/fresh-podcaster-admin-display.php:33
    37 msgid ""
    38 "Podcast Author"
     27#: admin/partials/fresh-podcaster-admin-display.php:35
     28msgid "Shortcode generation Wizard"
    3929msgstr ""
    4030
    4131#: admin/partials/fresh-podcaster-admin-display.php:37
    42 msgid ""
    43 "Podcast name"
     32msgid "Podcast Author"
    4433msgstr ""
    4534
    4635#: admin/partials/fresh-podcaster-admin-display.php:41
    47 msgid ""
    48 "Podcast URL"
     36msgid "Podcast name"
    4937msgstr ""
    5038
    51 #: admin/partials/fresh-podcaster-admin-display.php:46
    52 msgid ""
    53 "Custom Color 1"
     39#: admin/partials/fresh-podcaster-admin-display.php:45
     40msgid "Podcast URL"
    5441msgstr ""
    5542
    5643#: admin/partials/fresh-podcaster-admin-display.php:50
    57 msgid ""
    58 "Custom Color 2"
     44msgid "Custom Color 1"
    5945msgstr ""
    6046
    61 #: admin/partials/fresh-podcaster-admin-display.php:55
    62 msgid ""
    63 "Generate shortcode"
     47#: admin/partials/fresh-podcaster-admin-display.php:54
     48msgid "Custom Color 2"
    6449msgstr ""
    6550
    66 #: admin/partials/fresh-podcaster-admin-display.php:57
    67 msgid ""
    68 "Your shortcode:"
     51#: admin/partials/fresh-podcaster-admin-display.php:59
     52msgid "Generate shortcode"
    6953msgstr ""
    7054
    71 #: admin/partials/fresh-podcaster-admin-display.php:64
    72 msgid ""
    73 "Customizing the fresh Podcaster design"
     55#: admin/partials/fresh-podcaster-admin-display.php:61
     56msgid "Your shortcode:"
    7457msgstr ""
    7558
    76 
    77 #: admin/partials/fresh-podcaster-admin-display.php:67
    78 msgid ""
    79 "You can add your custom CSS code on the plugin page here or in the Wordpress customizer. See the plugin FAQ on wordpress.org for more examples."
     59#: admin/partials/fresh-podcaster-admin-display.php:68
     60msgid "Customizing the fresh Podcaster design"
    8061msgstr ""
    8162
    82 
    83 #: admin/partials/fresh-podcaster-admin-display.php:74
    84 msgid ""
    85 "Custom CSS code"
     63#: admin/partials/fresh-podcaster-admin-display.php:71
     64msgid "You can add your custom CSS code on the plugin page here or in the Wordpress customizer. See the plugin FAQ on wordpress.org for more examples."
    8665msgstr ""
    8766
    88 #: admin/partials/fresh-podcaster-admin-display.php:79
    89 msgid ""
    90 "Save CSS"
     67#: admin/partials/fresh-podcaster-admin-display.php:78
     68msgid "Custom CSS code"
    9169msgstr ""
     70
     71#: admin/partials/fresh-podcaster-admin-display.php:94
     72msgid "Save CSS"
     73msgstr ""
     74
     75#: admin/partials/fresh-podcaster-admin-display.php:109
     76msgid "Menu position"
     77msgstr ""
     78
     79#: admin/partials/fresh-podcaster-admin-display.php:117
     80msgid "Menu page"
     81msgstr ""
     82
     83#: admin/partials/fresh-podcaster-admin-display.php:126
     84msgid "Options page"
     85msgstr ""
     86
     87#: admin/partials/fresh-podcaster-admin-display.php:130
     88msgid "Save position"
     89msgstr ""
Note: See TracChangeset for help on using the changeset viewer.