Ticket #1073: additional_explanations_feed_settings.patch

File additional_explanations_feed_settings.patch, 7.9 KB (added by ntm, 2 years ago)
  • podpress_admin_class.php

     
    13661366                        echo '                          <td width="50%">'; 
    13671367                        echo '                                  <label for="iTunesImageChoice"><strong>'.__('iTunes:Image', 'podpress').'</strong></label>'."\n"; 
    13681368                        echo '                                  <br/>'; 
    1369                         echo '                                  '.__('The iTunes image should be a square image with <a href="http://www.apple.com/itunes/podcasts/specs.html#image" target="_blank">at least 600 x 600 pixels</a> as Apple writes (01/2010) in "<a href="http://www.apple.com/itunes/podcasts/specs.html" target="_blank">Making a Podcast</a>" of their own Podcasting Resources. In the past 300 x 300 pixels were recommended. iTunes supports JPEG and PNG images (the file name extensions should ".jpg" or ".png").', 'podpress')."\n"; 
     1369                        echo '                                  '.__('The iTunes image should be a square image with <a href="http://www.apple.com/itunes/podcasts/specs.html#image" target="_blank">at least 600 x 600 pixels</a> as Apple writes (01/2010) in "<a href="http://www.apple.com/itunes/podcasts/specs.html" target="_blank">Making a Podcast</a>" of their own Podcasting Resources. In the "<a href="http://www.apple.com/itunes/podcasts/creatorfaq.html" target="_blank">FAQs: For Podcast Makers</a>" 300 x 300 pixels are recommended by Apple. iTunes supports JPEG and PNG images (the file name extensions should ".jpg" or ".png").', 'podpress')."\n"; 
    13701370                        echo '                                  <br/>'; 
    13711371                        echo '                                  <select id="iTunesImageChoice" name="iTunesImageChoice" onchange="javascript: podPress_updateCategoryCasting();">'."\n"; 
    13721372                        echo '                                          <option value="Global" '; if($data['iTunesImageChoice'] != 'Custom') { echo 'selected="selected"';      }       echo '>'.__('Use Global', 'podpress').'</option>'."\n"; 
     
    15261526                        echo '                                          <option value="Clean" '; if($data['iTunesExplicit'] == 'Clean') { echo 'selected="selected"';   }       echo '>'.__('Clean', 'podpress').'</option>'."\n"; 
    15271527                        echo '                                  </select>'."\n"; 
    15281528                        echo '                                  <div id="iTunesExplicitHelp" style="display: none;">'."\n"; 
    1529                         echo '                                          '.__('Headphones Required? Sets the parental advisory graphic in name column.', 'podpress')."\n"; 
     1529                        echo '                                  '.__('Setting to indicate whether or not your podcast contains explicit material', 'podpress')."\n"; 
     1530                        echo '                                  <br/>'.__('"No" (default) - no indicator will show up', 'podpress')."\n"; 
     1531                        echo '                                  <br/>'.__('"Yes" - an "EXPLICIT" parental advisory graphic will appear next to your podcast artwork or name in iTunes', 'podpress')."\n"; 
     1532                        echo '                                  <br/>'.__('"Clean" - means that you are sure that no explicit language or adult content is included any of the episodes, and a "CLEAN" graphic will appear', 'podpress')."\n"; 
     1533                        echo '                                  <p>'.__('You can also use such an option for each of your podcast episodes (in the post/page editor).', 'podpress').'</p>'."\n"; 
    15301534                        echo '                                  </div>'."\n"; 
    15311535                        echo '                          </td>'."\n"; 
    15321536                        echo '                          <td width="50%">'."\n"; 
     
    15771581                        echo '                                          <option value="Yes" '; if($data['iTunesBlock'] == 'Yes') { echo 'selected="selected"';  }       echo '>'.__('Yes', 'podpress').'</option>'."\n"; 
    15781582                        echo '                                  </select>'."\n"; 
    15791583                        echo '                                  <div id="itunesBlockHelp" style="display: none;">'."\n"; 
    1580                         echo '                                          '.__('Prevent this episode or podcast from appearing in iTunes.', 'podpress')."\n"; 
     1584                        echo '                                  '.__('Use this if you are no longer creating a podcast and you want it removed from iTunes.', 'podpress')."\n"; 
     1585                        echo '                                  <br/>'.__('"No" (default) - the podcast appears in the iTunes Podcast directory', 'podpress')."\n"; 
     1586                        echo '                                  <br/>'.__('"Yes" - prevent the entire podcast from appearing in the iTunes Podcast directory', 'podpress')."\n"; 
     1587                        echo '                                  <p>'.__('You can also use such an option for each of your podcast episodes (in the post/page editor).', 'podpress').'</p>'."\n"; 
    15811588                        echo '                                  </div>'."\n"; 
    15821589                        echo '                          </td>'."\n"; 
    15831590                        echo '                          <td width="50%">&nbsp;</td>'."\n"; 
  • podpress_admin_feed_class.php

     
    127127                        echo '                          <td width="50%">'."\n"; 
    128128                        echo '                                  <label for="iTunesImage"><strong>'.__('iTunes:Image', 'podpress').'</strong></label>'; 
    129129                        echo '                                  <br/>'; 
    130                         echo '                                  '.__('The iTunes image should be a square image with <a href="http://www.apple.com/itunes/podcasts/specs.html#image" target="_blank">at least 600 x 600 pixels</a> as Apple writes (2009) in "<a href="http://www.apple.com/itunes/podcasts/specs.html" target="_blank">Making a Podcast</a>" of their own Podcasting Resources. In the past 300 x 300 pixels were recommended. iTunes supports JPEG and PNG images (the file name extensions should ".jpg" or ".png").', 'podpress')."\n"; 
     130                        echo '                                  '.__('The iTunes image should be a square image with <a href="http://www.apple.com/itunes/podcasts/specs.html#image" target="_blank">at least 600 x 600 pixels</a> as Apple writes (01/2010) in "<a href="http://www.apple.com/itunes/podcasts/specs.html" target="_blank">Making a Podcast</a>" of their own Podcasting Resources. In the "<a href="http://www.apple.com/itunes/podcasts/creatorfaq.html" target="_blank">FAQs: For Podcast Makers</a>" 300 x 300 pixels are recommended by Apple. iTunes supports JPEG and PNG images (the file name extensions should ".jpg" or ".png").', 'podpress')."\n"; 
    131131                        echo '                                  <br/>'; 
    132132                        echo '                                  <input id="iTunesImage" type="text" name="iTunes[image]" value="'.$this->settings['iTunes']['image'].'" size="40" onchange="podPress_updateFeedSettings();"/>'."\n"; 
    133133                        echo '                                  <br />'; 
     
    229229                        echo '                                          <option value="Yes" '; if($this->settings['iTunes']['explicit'] == 'Yes') { echo 'selected="selected"'; } echo '>'.__('Yes', 'podpress').'</option>'."\n"; 
    230230                        echo '                                          <option value="Clean" '; if($this->settings['iTunes']['explicit'] == 'Clean') { echo 'selected="selected"'; } echo '>'.__('Clean', 'podpress').'</option>'."\n"; 
    231231                        echo '                                  </select>'."\n"; 
    232                         echo '                                  <br/>'.__('Sets the parental advisory graphic in name column.', 'podpress')."\n"; 
     232                        echo '                                  <br/>'.__('Setting to indicate whether or not your podcast contains explicit material', 'podpress')."\n"; 
     233                        echo '                                  <br/>'.__('"No" (default) - no indicator will show up', 'podpress')."\n"; 
     234                        echo '                                  <br/>'.__('"Yes" - an "EXPLICIT" parental advisory graphic will appear next to your podcast artwork or name in iTunes', 'podpress')."\n"; 
     235                        echo '                                  <br/>'.__('"Clean" - means that you are sure that no explicit language or adult content is included any of the episodes, and a "CLEAN" graphic will appear', 'podpress')."\n"; 
     236                        echo '                                  <p>'.__('You can also use such an option for each of your podcast episodes (in the post/page editor).', 'podpress').'</p>'."\n"; 
    233237                        echo '                          </td>'."\n"; 
    234238                        echo '                          <td width="50%">'."\n"; 
    235239                        echo '                                  <label for="rss_copyright"><strong>'.__('Feed Copyright / license name', 'podpress').'</strong></label>'; 
     
    275279                        echo '                                          <option value="Yes" '; if($this->settings['iTunes']['block'] == 'Yes') { echo 'selected="selected"'; } echo '>'.__('Yes', 'podpress').'</option>'."\n"; 
    276280                        echo '                                  </select>'."\n"; 
    277281                        echo '                                  <br/>'.__('Use this if you are no longer creating a podcast and you want it removed from iTunes.', 'podpress')."\n"; 
     282                        echo '                                  <br/>'.__('"No" (default) - the podcast appears in the iTunes Podcast directory', 'podpress')."\n"; 
     283                        echo '                                  <br/>'.__('"Yes" - prevent the entire podcast from appearing in the iTunes Podcast directory', 'podpress')."\n"; 
     284                        echo '                                  <p>'.__('You can also use such an option for each of your podcast episodes (in the post/page editor).', 'podpress').'</p>'."\n"; 
     285                         
    278286                        echo '                          </td>'."\n"; 
    279287                        echo '                          <td width="50%">'; 
    280288                        echo '                                  <label for="blog_charset"><strong>'.__('Encoding for pages and feeds', 'podpress').'</strong></label>';