Changeset 2155446
- Timestamp:
- 09/12/2019 11:04:27 AM (7 years ago)
- Location:
- fresh-podcaster
- Files:
-
- 1 deleted
- 10 edited
- 16 copied
-
tags/1.0/LICENSE.txt (copied) (copied from fresh-podcaster/trunk/LICENSE.txt)
-
tags/1.0/README.txt (copied) (copied from fresh-podcaster/trunk/README.txt)
-
tags/1.0/admin (copied) (copied from fresh-podcaster/trunk/admin)
-
tags/1.0/fresh-podcaster.php (copied) (copied from fresh-podcaster/trunk/fresh-podcaster.php)
-
tags/1.0/icon-256x256.png (copied) (copied from fresh-podcaster/trunk/icon-256x256.png)
-
tags/1.0/includes (copied) (copied from fresh-podcaster/trunk/includes)
-
tags/1.0/index.php (copied) (copied from fresh-podcaster/trunk/index.php)
-
tags/1.0/languages (copied) (copied from fresh-podcaster/trunk/languages)
-
tags/1.0/public (copied) (copied from fresh-podcaster/trunk/public)
-
tags/1.0/public/css/fresh-podcaster-public.css (copied) (copied from fresh-podcaster/trunk/public/css/fresh-podcaster-public.css)
-
tags/1.0/public/js/fresh-podcaster-public.js (copied) (copied from fresh-podcaster/trunk/public/js/fresh-podcaster-public.js)
-
tags/1.0/public/partials/fresh-podcaster-public-display.php (copied) (copied from fresh-podcaster/trunk/public/partials/fresh-podcaster-public-display.php)
-
tags/1.0/screenshot-1.png (copied) (copied from fresh-podcaster/trunk/screenshot-1.png)
-
tags/1.0/screenshot-2.png (copied) (copied from fresh-podcaster/trunk/screenshot-2.png)
-
tags/1.0/screenshot-3.png (copied) (copied from fresh-podcaster/trunk/screenshot-3.png)
-
tags/1.0/trunk (deleted)
-
tags/1.0/uninstall.php (copied) (copied from fresh-podcaster/trunk/uninstall.php)
-
trunk/README.txt (modified) (3 diffs)
-
trunk/admin/class-fresh-podcaster-admin.php (modified) (2 diffs)
-
trunk/admin/css/fresh-podcaster-admin.css (modified) (1 diff)
-
trunk/admin/partials/fresh-podcaster-admin-display.php (modified) (3 diffs)
-
trunk/fresh-podcaster.php (modified) (2 diffs)
-
trunk/languages/fresh-podcaster-de_DE.mo (modified) (previous)
-
trunk/languages/fresh-podcaster-de_DE.po (modified) (4 diffs)
-
trunk/languages/fresh-podcaster-ru_RU.mo (modified) (previous)
-
trunk/languages/fresh-podcaster-ru_RU.po (modified) (1 diff)
-
trunk/languages/fresh-podcaster.pot (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fresh-podcaster/trunk/README.txt
r2147792 r2155446 20 20 AUTOMATIC INSTALLATION 21 21 22 1. Go to Plugins >Add New22 1. Go to Plugins & Add New 23 23 2. Type “fresh Podcaster” in the search field and click “Search Plugins” 24 24 3. Click “Install Now” to install … … 29 29 30 30 1. Download a copy of the “fresh Podcaster” plugin 31 2. Upload fresh Podcaster to the /wp-content/plugins/ directory31 2. Upload fresh Podcaster to the /wp-content/plugins/ directory 32 32 3. Activate the plugin through the “Plugins” menu in WordPress 33 33 4. Use the fresh Podcast menu from the sidebar … … 46 46 47 47 == Changelog == 48 49 = 1.0.3 = 50 Release 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 48 56 49 57 = 1.0.2 = -
fresh-podcaster/trunk/admin/class-fresh-podcaster-admin.php
r2141982 r2155446 108 108 */ 109 109 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 } 111 116 } 112 117 /** … … 118 123 add_option( 'fresh_podcaster_css', 'fl-style'); 119 124 register_setting( 'fresh-podcaster-options', 'fl-podcaster-custom-style', 'myplugin_callback' ); 125 register_setting( 'fresh-podcaster-menu', 'fp_custom_menu_mode', 'myplugin_callback'); 120 126 } 121 127 -
fresh-podcaster/trunk/admin/css/fresh-podcaster-admin.css
r2141982 r2155446 192 192 cursor:pointer; 193 193 } 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 73 73 74 74 </header> 75 75 76 76 <form method="post" action="options.php" class="form"> 77 77 <?php settings_fields( 'fresh-podcaster-options' ); ?> … … 79 79 <div class='field'> 80 80 <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 <?php82 if(get_option('fl-podcaster-custom-style')) {83 echo get_option('fl-podcaster-custom-style');84 } else {?>81 <?php 82 if(get_option('fl-podcaster-custom-style')) { 83 echo get_option('fl-podcaster-custom-style'); 84 } else {?> 85 85 86 86 .fp { … … 96 96 </form> 97 97 </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 99 137 100 138 </div> -
fresh-podcaster/trunk/fresh-podcaster.php
r2147792 r2155446 17 17 * Plugin URI: freshlabs.de 18 18 * Description: fresh Podcaster is a simple yet customizable plugin to embed podcasts 19 * Version: 1.0. 219 * Version: 1.0.3 20 20 * Author: freshlabs.de 21 21 * Author URI: freshlabs.de … … 36 36 * Rename this for your plugin and update it as you release new versions. 37 37 */ 38 define( 'FRESH_PODCASTER_VERSION', '1.0. 2' );38 define( 'FRESH_PODCASTER_VERSION', '1.0.3' ); 39 39 40 40 /** -
fresh-podcaster/trunk/languages/fresh-podcaster-de_DE.po
r2141982 r2155446 3 3 "Project-Id-Version: Bfresh-podcaster\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 2019-0 8-01 11:07+0200\n"6 "PO-Revision-Date: 2019-0 8-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" 7 7 "Last-Translator: bonness <vlad@freshlabs.de>\n" 8 8 "Language-Team: \n" … … 15 15 "X-Generator: Poedit 2.2.3\n" 16 16 "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" 18 22 "X-Loco-Target-Locale: de_DE\n" 19 23 "X-Poedit-SearchPath-0: .\n" 20 24 21 25 #: 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." 26 msgid "" 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." 32 msgstr "" 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." 24 39 25 40 #: admin/partials/fresh-podcaster-admin-display.php:35 … … 60 75 61 76 #: 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." 77 msgid "" 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." 80 msgstr "" 81 "Es kann eigener CSS Code verwendet werden. Schau die Plugin-FAQ auf " 82 "Wordpress.org an für weitere CSS Beispiele." 64 83 65 84 #: admin/partials/fresh-podcaster-admin-display.php:78 … … 67 86 msgstr "Custom CSS Code" 68 87 69 #: admin/partials/fresh-podcaster-admin-display.php: 8388 #: admin/partials/fresh-podcaster-admin-display.php:94 70 89 msgid "Save CSS" 71 90 msgstr "CSS speichern" 91 92 #: admin/partials/fresh-podcaster-admin-display.php:109 93 msgid "Menu position" 94 msgstr "Position im Menü" 95 96 #: admin/partials/fresh-podcaster-admin-display.php:117 97 msgid "Menu page" 98 msgstr "In der Admin-Sidebar" 99 100 #: admin/partials/fresh-podcaster-admin-display.php:126 101 msgid "Options page" 102 msgstr "Unter Einstellungen" 103 104 #: admin/partials/fresh-podcaster-admin-display.php:130 105 msgid "Save position" 106 msgstr "Position spreichern" 107 108 #~ msgid "fresh Podcaster menu position" 109 #~ msgstr "fresh Podcaster Position im Menü" 72 110 73 111 #, fuzzy -
fresh-podcaster/trunk/languages/fresh-podcaster-ru_RU.po
r2141982 r2155446 3 3 "Project-Id-Version: Bfresh-podcaster\n" 4 4 "Report-Msgid-Bugs-To: \n" 5 "POT-Creation-Date: 201 8-11-10 09:35+0800\n"6 "PO-Revision-Date: 2019-0 8-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" 7 7 "Last-Translator: bonness <vlad@freshlabs.de>\n" 8 8 "Language-Team: \n" 9 9 "Language: de\n" 10 "Plural-Forms: nplurals=2; plural=n != 1;\n"11 10 "MIME-Version: 1.0\n" 12 11 "Content-Type: text/plain; charset=UTF-8\n" 13 12 "Content-Transfer-Encoding: 8bit\n" 13 "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 14 "X-Poedit-SourceCharset: UTF-8\n" 15 15 "X-Generator: Poedit 2.2.3\n" 16 16 "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" 18 22 "X-Loco-Target-Locale: de_DE\n" 19 23 "X-Poedit-SearchPath-0: .\n" 20 24 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 26 msgid "" 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." 32 msgstr "" 33 "Простой, кастомизируемый плагин, дли проигрывания подкастов на вашем сайте." 24 34 25 #: admin/partials/fresh-podcaster-admin-display.php:3 135 #: admin/partials/fresh-podcaster-admin-display.php:35 26 36 msgid "Shortcode generation Wizard" 27 msgstr "Это fresh Shortcode Generator" 28 29 #: admin/partials/fresh-podcaster-admin-display.php:33 30 msgid "Podcast Author" 31 msgstr "Автор" 37 msgstr "Генератор Shortcode" 32 38 33 39 #: admin/partials/fresh-podcaster-admin-display.php:37 34 msgid "Podcast name"35 msgstr " Название"40 msgid "Podcast Author" 41 msgstr "Автор подкаста" 36 42 37 43 #: admin/partials/fresh-podcaster-admin-display.php:41 44 msgid "Podcast name" 45 msgstr "Название подкаста" 46 47 #: admin/partials/fresh-podcaster-admin-display.php:45 38 48 msgid "Podcast URL" 39 msgstr "URL Адрес"49 msgstr "URL подкаста" 40 50 41 #: admin/partials/fresh-podcaster-admin-display.php: 4651 #: admin/partials/fresh-podcaster-admin-display.php:50 42 52 msgid "Custom Color 1" 43 53 msgstr "Цвет градиента 1" 44 54 45 #: admin/partials/fresh-podcaster-admin-display.php:5 055 #: admin/partials/fresh-podcaster-admin-display.php:54 46 56 msgid "Custom Color 2" 47 57 msgstr "Цвет градиента 2" 48 58 49 #: admin/partials/fresh-podcaster-admin-display.php:5 559 #: admin/partials/fresh-podcaster-admin-display.php:59 50 60 msgid "Generate shortcode" 51 msgstr "Создать шорткод"61 msgstr "Создать shortcode" 52 62 53 #: admin/partials/fresh-podcaster-admin-display.php: 5763 #: admin/partials/fresh-podcaster-admin-display.php:61 54 64 msgid "Your shortcode:" 55 msgstr " Твой шорткод:"65 msgstr "Ваш shortcode:" 56 66 57 #: admin/partials/fresh-podcaster-admin-display.php:6 458 msgid " You can customize your Layout"59 msgstr " Твои стили CSS"67 #: admin/partials/fresh-podcaster-admin-display.php:68 68 msgid "Customizing the fresh Podcaster design" 69 msgstr "Кастомизировать дизайн плагина:" 60 70 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 72 msgid "" 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." 75 msgstr "Здесь вы можете добавить ваш уникальный CSS код." 64 76 65 #: admin/partials/fresh-podcaster-admin-display.php:7 477 #: admin/partials/fresh-podcaster-admin-display.php:78 66 78 msgid "Custom CSS code" 67 msgstr " Твойкастомный CSS"79 msgstr "Ваш кастомный CSS" 68 80 69 #: admin/partials/fresh-podcaster-admin-display.php: 7981 #: admin/partials/fresh-podcaster-admin-display.php:94 70 82 msgid "Save CSS" 71 83 msgstr "Сохранить CSS" 84 85 #: admin/partials/fresh-podcaster-admin-display.php:109 86 msgid "Menu position" 87 msgstr "Позиция в меню" 88 89 #: admin/partials/fresh-podcaster-admin-display.php:117 90 msgid "Menu page" 91 msgstr "Сайдбар Wordpress" 92 93 #: admin/partials/fresh-podcaster-admin-display.php:126 94 msgid "Options page" 95 msgstr "Настройки Wordpress" 96 97 #: admin/partials/fresh-podcaster-admin-display.php:130 98 msgid "Save position" 99 msgstr "Сохранить позицию" 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 4 4 "Project-Id-Version: fresh-podcaster\n" 5 5 "Report-Msgid-Bugs-To: \n" 6 "POT-Creation-Date: 201 8-09-15 08:14+0000\n"6 "POT-Creation-Date: 2019-09-12 00:29+0200\n" 7 7 "POT-Revision-Date: Thu Jun 02 2016 13:26:44 GMT+0200 (CEST)\n" 8 8 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 9 9 "Last-Translator: \n" 10 10 "Language-Team: \n" 11 "Language: \n"12 11 "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION\n" 13 12 "MIME-Version: 1.0\n" … … 15 14 "Content-Transfer-Encoding: 8bit\n" 16 15 "X-Poedit-SourceCharset: UTF-8\n" 17 "X-Generator: Loco - https://localise.biz/\n"16 "X-Generator: Poedit 2.2.3\n" 18 17 "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" 25 21 26 #: admin/partials/fresh-podcaster-admin-display.php: 2622 #: admin/partials/fresh-podcaster-admin-display.php:30 27 23 msgid "" 28 24 "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." 29 25 msgstr "" 30 26 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 28 msgid "Shortcode generation Wizard" 39 29 msgstr "" 40 30 41 31 #: admin/partials/fresh-podcaster-admin-display.php:37 42 msgid "" 43 "Podcast name" 32 msgid "Podcast Author" 44 33 msgstr "" 45 34 46 35 #: admin/partials/fresh-podcaster-admin-display.php:41 47 msgid "" 48 "Podcast URL" 36 msgid "Podcast name" 49 37 msgstr "" 50 38 51 #: admin/partials/fresh-podcaster-admin-display.php:46 52 msgid "" 53 "Custom Color 1" 39 #: admin/partials/fresh-podcaster-admin-display.php:45 40 msgid "Podcast URL" 54 41 msgstr "" 55 42 56 43 #: admin/partials/fresh-podcaster-admin-display.php:50 57 msgid "" 58 "Custom Color 2" 44 msgid "Custom Color 1" 59 45 msgstr "" 60 46 61 #: admin/partials/fresh-podcaster-admin-display.php:55 62 msgid "" 63 "Generate shortcode" 47 #: admin/partials/fresh-podcaster-admin-display.php:54 48 msgid "Custom Color 2" 64 49 msgstr "" 65 50 66 #: admin/partials/fresh-podcaster-admin-display.php:57 67 msgid "" 68 "Your shortcode:" 51 #: admin/partials/fresh-podcaster-admin-display.php:59 52 msgid "Generate shortcode" 69 53 msgstr "" 70 54 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 56 msgid "Your shortcode:" 74 57 msgstr "" 75 58 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 60 msgid "Customizing the fresh Podcaster design" 80 61 msgstr "" 81 62 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 64 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." 86 65 msgstr "" 87 66 88 #: admin/partials/fresh-podcaster-admin-display.php:79 89 msgid "" 90 "Save CSS" 67 #: admin/partials/fresh-podcaster-admin-display.php:78 68 msgid "Custom CSS code" 91 69 msgstr "" 70 71 #: admin/partials/fresh-podcaster-admin-display.php:94 72 msgid "Save CSS" 73 msgstr "" 74 75 #: admin/partials/fresh-podcaster-admin-display.php:109 76 msgid "Menu position" 77 msgstr "" 78 79 #: admin/partials/fresh-podcaster-admin-display.php:117 80 msgid "Menu page" 81 msgstr "" 82 83 #: admin/partials/fresh-podcaster-admin-display.php:126 84 msgid "Options page" 85 msgstr "" 86 87 #: admin/partials/fresh-podcaster-admin-display.php:130 88 msgid "Save position" 89 msgstr ""
Note: See TracChangeset
for help on using the changeset viewer.