Changeset 36832

Show
Ignore:
Timestamp:
03/30/08 10:02:49 (4 months ago)
Author:
GamerZ
Message:

so that it looks nice on WP2.5

Location:
wp-polls/trunk
Files:
7 modified

Legend:

Unmodified
Added
Removed
  • wp-polls/trunk/polls-add.php

    r35561 r36832  
    9494                  $update_latestpoll = update_option('poll_latestpoll', $latest_pollid); 
    9595                  if(empty($text)) { 
    96                         $text = '<p style="color: green;">'.sprintf(__('Poll \'%s\' Added Successfully.', 'wp-polls'), stripslashes($pollq_question)).' <a href="'.$base_page.'">Manage Polls &raquo;</a></p>'; 
     96                        $text = '<p style="color: green;">'.sprintf(__('Poll \'%s\' Added Successfully.', 'wp-polls'), stripslashes($pollq_question)).' <a href="'.$base_page.'">'.__('Manage Polls', 'wp-polls').'</a></p>'; 
    9797                  } 
    9898                  cron_polls_place(); 
     
    169169      /* ]]> */ 
    170170</script> 
     171<?php if(!empty($text)) { echo '<!-- Last Action --><div id="message" class="updated fade">'.stripslashes($text).'</div>'; } ?> 
    171172<form action="<?php echo htmlspecialchars($_SERVER['REQUEST_URI']); ?>" method="post"> 
    172173<div class="wrap"> 
    173174      <h2><?php _e('Add Poll', 'wp-polls'); ?></h2> 
    174  
    175       <?php if(!empty($text)) { echo '<!-- Last Action --><br class="clear" /><div id="message" class="updated fade">'.stripslashes($text).'</div>'; } ?> 
    176        
    177175      <!-- Poll Question --> 
    178176      <h3><?php _e('Poll Question', 'wp-polls'); ?></h3> 
  • wp-polls/trunk/polls-logs.php

    r35561 r36832  
    119119} 
    120120?> 
     121<?php if(!empty($text)) { echo '<!-- Last Action --><div id="message" class="updated fade">'.stripslashes($text).'</div>'; } else { echo '<div id="message" class="updated" style="display: none;"></div>'; } ?> 
    121122<div class="wrap"> 
    122123      <h2><?php _e('Poll\'s Logs', 'wp-polls'); ?></h2> 
    123       <?php if(!empty($text)) { echo '<!-- Last Action --><br class="clear" /><div id="message" class="updated fade">'.stripslashes($text).'</div>'; } else { echo '<br class="clear" /><div id="message" class="updated" style="display: none;"></div>'; } ?> 
    124124      <h3><?php echo $poll_question; ?></h3> 
    125125      <p> 
  • wp-polls/trunk/polls-manager.php

    r35561 r36832  
    298298            </script> 
    299299 
     300            <?php if(!empty($text)) { echo '<!-- Last Action --><div id="message" class="updated fade">'.stripslashes($text).'</div>'; } else { echo '<div id="message" class="updated" style="display: none;"></div>'; } ?> 
     301 
    300302            <!-- Edit Poll --> 
    301303            <form action="<?php echo htmlspecialchars($_SERVER['REQUEST_URI']); ?>" method="post"> 
     
    304306            <div class="wrap"> 
    305307                  <h2><?php _e('Edit Poll', 'wp-polls'); ?></h2> 
    306  
    307                   <?php if(!empty($text)) { echo '<!-- Last Action --><br class="clear" /><div id="message" class="updated fade">'.stripslashes($text).'</div>'; } else { echo '<br class="clear" /><div id="message" class="updated" style="display: none;"></div>'; } ?> 
    308  
    309308                  <!-- Poll Question --> 
    310309                  <h3><?php _e('Poll Question', 'wp-polls'); ?></h3> 
     
    452451            $total_voters = 0; 
    453452?>     
     453            <!-- Last Action -->           
     454            <div id="message" class="updated" style="display: none;"></div> 
     455 
    454456            <!-- Manage Polls --> 
    455457            <div class="wrap"> 
    456             <h2><?php _e('Manage Polls', 'wp-polls'); ?></h2> 
    457                   <!-- Last Action -->           
    458                   <div id="message" class="updated" style="display: none; margin-top: 15px;"></div> 
     458                  <h2><?php _e('Manage Polls', 'wp-polls'); ?></h2> 
    459459                  <br style="clear" /> 
    460460                  <table class="widefat"> 
    461                   <thead> 
    462                         <tr> 
    463                               <th><?php _e('ID', 'wp-polls'); ?></th> 
    464                               <th><?php _e('Question', 'wp-polls'); ?></th>                      
    465                               <th><?php _e('Total Voters', 'wp-polls'); ?></th> 
    466                               <th><?php _e('Start Date/Time', 'wp-polls'); ?></th> 
    467                               <th><?php _e('End Date/Time', 'wp-polls'); ?></th> 
    468                               <th><?php _e('Status', 'wp-polls'); ?></th> 
    469                               <th colspan="3"><?php _e('Action', 'wp-polls'); ?></th> 
    470                         </tr> 
    471                   </thead> 
    472                   <tbody id="manage_polls"> 
    473                         <?php 
    474                               if($polls) { 
    475                                     if(function_exists('dynamic_sidebar')) { 
    476                                           $options = get_option('widget_polls'); 
    477                                           $multiple_polls = explode(',', $options['multiple_polls']); 
    478                                     } else { 
    479                                           $multiple_polls = array(); 
    480                                     } 
    481                                     $i = 0; 
    482                                     $current_poll = intval(get_option('poll_currentpoll')); 
    483                                     $latest_poll = intval(get_option('poll_latestpoll')); 
    484                                     foreach($polls as $poll) { 
    485                                           $poll_id = intval($poll->pollq_id); 
    486                                           $poll_question = stripslashes($poll->pollq_question); 
    487                                           $poll_date = mysql2date(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), gmdate('Y-m-d H:i:s', $poll->pollq_timestamp));  
    488                                           $poll_totalvotes = intval($poll->pollq_totalvotes); 
    489                                           $poll_totalvoters = intval($poll->pollq_totalvoters); 
    490                                           $poll_active = intval($poll->pollq_active); 
    491                                           $poll_expiry = trim($poll->pollq_expiry); 
    492                                           if(empty($poll_expiry)) { 
    493                                                 $poll_expiry_text  = __('No Expiry', 'wp-polls'); 
     461                        <thead> 
     462                              <tr> 
     463                                    <th><?php _e('ID', 'wp-polls'); ?></th> 
     464                                    <th><?php _e('Question', 'wp-polls'); ?></th>                      
     465                                    <th><?php _e('Total Voters', 'wp-polls'); ?></th> 
     466                                    <th><?php _e('Start Date/Time', 'wp-polls'); ?></th> 
     467                                    <th><?php _e('End Date/Time', 'wp-polls'); ?></th> 
     468                                    <th><?php _e('Status', 'wp-polls'); ?></th> 
     469                                    <th colspan="3"><?php _e('Action', 'wp-polls'); ?></th> 
     470                              </tr> 
     471                        </thead> 
     472                        <tbody id="manage_polls"> 
     473                              <?php 
     474                                    if($polls) { 
     475                                          if(function_exists('dynamic_sidebar')) { 
     476                                                $options = get_option('widget_polls'); 
     477                                                $multiple_polls = explode(',', $options['multiple_polls']); 
    494478                                          } else { 
    495                                                 $poll_expiry_text = mysql2date(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), gmdate('Y-m-d H:i:s', $poll_expiry));  
     479                                                $multiple_polls = array(); 
    496480                                          } 
    497                                           if($i%2 == 0) { 
    498                                                 $style = 'class="alternate"'; 
    499                                           }  else { 
    500                                                 $style = ''; 
    501                                           } 
    502                                           if($current_poll > 0) { 
    503                                                 if($current_poll == $poll_id) { 
     481                                          $i = 0; 
     482                                          $current_poll = intval(get_option('poll_currentpoll')); 
     483                                          $latest_poll = intval(get_option('poll_latestpoll')); 
     484                                          foreach($polls as $poll) { 
     485                                                $poll_id = intval($poll->pollq_id); 
     486                                                $poll_question = stripslashes($poll->pollq_question); 
     487                                                $poll_date = mysql2date(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), gmdate('Y-m-d H:i:s', $poll->pollq_timestamp));  
     488                                                $poll_totalvotes = intval($poll->pollq_totalvotes); 
     489                                                $poll_totalvoters = intval($poll->pollq_totalvoters); 
     490                                                $poll_active = intval($poll->pollq_active); 
     491                                                $poll_expiry = trim($poll->pollq_expiry); 
     492                                                if(empty($poll_expiry)) { 
     493                                                      $poll_expiry_text  = __('No Expiry', 'wp-polls'); 
     494                                                } else { 
     495                                                      $poll_expiry_text = mysql2date(sprintf(__('%s @ %s', 'wp-polls'), get_option('date_format'), get_option('time_format')), gmdate('Y-m-d H:i:s', $poll_expiry));  
     496                                                } 
     497                                                if($i%2 == 0) { 
     498                                                      $style = 'class="alternate"'; 
     499                                                }  else { 
     500                                                      $style = ''; 
     501                                                } 
     502                                                if($current_poll > 0) { 
     503                                                      if($current_poll == $poll_id) { 
     504                                                            $style = 'class="highlight"'; 
     505                                                      } 
     506                                                } elseif($current_poll == 0) { 
     507                                                      if($poll_id == $latest_poll) { 
     508                                                            $style = 'class="highlight"'; 
     509                                                      } 
     510                                                } else if(in_array($poll_id, $multiple_polls)) { 
    504511                                                      $style = 'class="highlight"'; 
    505512                                                } 
    506                                           } elseif($current_poll == 0) { 
    507                                                 if($poll_id == $latest_poll) { 
    508                                                       $style = 'class="highlight"'; 
     513                                                echo "<tr id=\"poll-$poll_id\" $style>\n"; 
     514                                                echo "<td><strong>$poll_id</strong></td>\n"; 
     515                                                echo '<td>'; 
     516                                                if($current_poll > 0) { 
     517                                                      if($current_poll == $poll_id) { 
     518                                                            echo '<strong>'.__('Displayed:', 'wp-polls').'</strong> '; 
     519                                                      } 
     520                                                } elseif($current_poll == 0) { 
     521                                                      if($poll_id == $latest_poll) { 
     522                                                            echo '<strong>'.__('Displayed:', 'wp-polls').'</strong> '; 
     523                                                      } 
     524                                                } else if(in_array($poll_id, $multiple_polls)) { 
     525                                                            echo '<strong>'.__('Displayed:', 'wp-polls').'</strong> '; 
    509526                                                } 
    510                                           } else if(in_array($poll_id, $multiple_polls)) { 
    511                                                 $style = 'class="highlight"'; 
     527                                                echo "$poll_question</td>\n";                                
     528                                                echo '<td>'.number_format_i18n($poll_totalvoters)."</td>\n"; 
     529                                                echo "<td>$poll_date</td>\n"; 
     530                                                echo "<td>$poll_expiry_text</td>\n"; 
     531                                                echo '<td>'; 
     532                                                if($poll_active == 1) { 
     533                                                      _e('Open', 'wp-polls'); 
     534                                                } elseif($poll_active == -1) { 
     535                                                      _e('Future', 'wp-polls'); 
     536                                                } else { 
     537                                                      _e('Closed', 'wp-polls'); 
     538                                                } 
     539                                                echo "</td>\n"; 
     540                                                echo "<td><a href=\"$base_page&amp;mode=logs&amp;id=$poll_id\" class=\"edit\">".__('Logs', 'wp-polls')."</a></td>\n"; 
     541                                                echo "<td><a href=\"$base_page&amp;mode=edit&amp;id=$poll_id\" class=\"edit\">".__('Edit', 'wp-polls')."</a></td>\n"; 
     542                                                echo "<td><a href=\"#DeletePoll\" onclick=\"delete_poll($poll_id, '".sprintf(js_escape(__('You are about to delete this poll, \'%s\'.', 'wp-polls')), js_escape($poll_question))."')\" class=\"delete\">".__('Delete', 'wp-polls')."</a></td>\n"; 
     543                                                echo '</tr>'; 
     544                                                $i++; 
     545                                                $total_votes+= $poll_totalvotes; 
     546                                                $total_voters+= $poll_totalvoters; 
     547                                                 
    512548                                          } 
    513                                           echo "<tr id=\"poll-$poll_id\" $style>\n"; 
    514                                           echo "<td><strong>$poll_id</strong></td>\n"; 
    515                                           echo '<td>'; 
    516                                           if($current_poll > 0) { 
    517                                                 if($current_poll == $poll_id) { 
    518                                                       echo '<strong>'.__('Displayed:', 'wp-polls').'</strong> '; 
    519                                                 } 
    520                                           } elseif($current_poll == 0) { 
    521                                                 if($poll_id == $latest_poll) { 
    522                                                       echo '<strong>'.__('Displayed:', 'wp-polls').'</strong> '; 
    523                                                 } 
    524                                           } else if(in_array($poll_id, $multiple_polls)) { 
    525                                                       echo '<strong>'.__('Displayed:', 'wp-polls').'</strong> '; 
    526                                           } 
    527                                           echo "$poll_question</td>\n";                                
    528                                           echo '<td>'.number_format_i18n($poll_totalvoters)."</td>\n"; 
    529                                           echo "<td>$poll_date</td>\n"; 
    530                                           echo "<td>$poll_expiry_text</td>\n"; 
    531                                           echo '<td>'; 
    532                                           if($poll_active == 1) { 
    533                                                 _e('Open', 'wp-polls'); 
    534                                           } elseif($poll_active == -1) { 
    535                                                 _e('Future', 'wp-polls'); 
    536                                           } else { 
    537                                                 _e('Closed', 'wp-polls'); 
    538                                           } 
    539                                           echo "</td>\n"; 
    540                                           echo "<td><a href=\"$base_page&amp;mode=logs&amp;id=$poll_id\" class=\"edit\">".__('Logs', 'wp-polls')."</a></td>\n"; 
    541                                           echo "<td><a href=\"$base_page&amp;mode=edit&amp;id=$poll_id\" class=\"edit\">".__('Edit', 'wp-polls')."</a></td>\n"; 
    542                                           echo "<td><a href=\"#DeletePoll\" onclick=\"delete_poll($poll_id, '".sprintf(js_escape(__('You are about to delete this poll, \'%s\'.', 'wp-polls')), js_escape($poll_question))."')\" class=\"delete\">".__('Delete', 'wp-polls')."</a></td>\n"; 
    543                                           echo '</tr>'; 
    544                                           $i++; 
    545                                           $total_votes+= $poll_totalvotes; 
    546                                           $total_voters+= $poll_totalvoters; 
    547                                            
     549                                    } else { 
     550                                          echo '<tr><td colspan="9" align="center"><strong>'.__('No Polls Found', 'wp-polls').'</strong></td></tr>'; 
    548551                                    } 
    549                               } else { 
    550                                     echo '<tr><td colspan="9" align="center"><strong>'.__('No Polls Found', 'wp-polls').'</strong></td></tr>'; 
    551                               } 
    552                         ?> 
    553                   </tbody> 
     552                              ?> 
     553                        </tbody> 
    554554                  </table> 
    555555            </div> 
     
    558558            <!-- Polls Stats --> 
    559559            <div class="wrap"> 
    560             <h2><?php _e('Polls Stats', 'wp-polls'); ?></h2> 
     560                  <h2><?php _e('Polls Stats', 'wp-polls'); ?></h2> 
    561561                  <br style="clear" /> 
    562562                  <table class="widefat"> 
  • wp-polls/trunk/polls-options.php

    r36798 r36832  
    129129/* ]]> */ 
    130130</script> 
     131<?php if(!empty($text)) { echo '<!-- Last Action --><div id="message" class="updated fade"><p>'.$text.'</p></div>'; } ?> 
    131132<form id="poll_options_form" method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">  
    132133<div class="wrap">  
    133134      <h2><?php _e('Poll Options', 'wp-polls'); ?></h2> 
    134              
    135       <?php if(!empty($text)) { echo '<!-- Last Action --><br class="clear" /><div id="message" class="updated fade"><p>'.$text.'</p></div>'; } ?> 
    136  
    137135      <!-- Poll Bar Style --> 
    138136      <h3><?php _e('Poll Bar Style', 'wp-polls'); ?></h3> 
     
    392390      <!-- Submit Button --> 
    393391      <p class="submit"> 
    394             <input type="submit" name="Submit" class="button" value="<?php _e('Update Options &raquo;', 'wp-polls'); ?>" /> 
     392            <input type="submit" name="Submit" class="button" value="<?php _e('Save Changes', 'wp-polls'); ?>" /> 
    395393      </p> 
    396394</div>  
  • wp-polls/trunk/polls-templates.php

    r35579 r36832  
    139139/* ]]> */ 
    140140</script> 
     141<?php if(!empty($text)) { echo '<!-- Last Action --><div id="message" class="updated fade"><p>'.$text.'</p></div>'; } ?> 
    141142<form id="poll_options_form" method="post" action="<?php echo $_SERVER['REQUEST_URI']; ?>">  
    142143<div class="wrap">  
    143       <h2><?php _e('Poll Templates', 'wp-polls'); ?></h2> 
    144        
    145       <?php if(!empty($text)) { echo '<!-- Last Action --><br class="clear" /><div id="message" class="updated fade"><p>'.$text.'</p></div>'; } ?> 
    146        
     144      <h2><?php _e('Poll Templates', 'wp-polls'); ?></h2>    
    147145      <!-- Template Variables --> 
    148146      <h3><?php _e('Template Variables', 'wp-polls'); ?></h3> 
     
    462460      </table> 
    463461      <p class="submit"> 
    464             <input type="submit" name="Submit" class="button" value="<?php _e('Update Templates &raquo;', 'wp-polls'); ?>" /> 
     462            <input type="submit" name="Submit" class="button" value="<?php _e('Save Changes', 'wp-polls'); ?>" /> 
    465463      </p> 
    466464</div>  
  • wp-polls/trunk/wp-polls.pot

    r36798 r36832  
    33"Project-Id-Version: WP-Polls 2.30\n" 
    44"POT-Creation-Date: \n" 
    5 "PO-Revision-Date: 2008-03-30 16:37+0800\n" 
     5"PO-Revision-Date: 2008-03-30 17:58+0800\n" 
    66"Last-Translator: Lester 'GaMerZ' Chan <gamerz84@hotmail.com>\n" 
    77"Language-Team: Lester Chan <lesterchan@gmail.com>\n" 
     
    1616 
    1717#: polls-add.php:36 
    18 #: polls-add.php:173 
    19 #: polls-add.php:243 
     18#: polls-add.php:174 
     19#: polls-add.php:241 
    2020#: wp-polls.php:59 
    2121msgid "Add Poll" 
     
    3636#, php-format 
    3737msgid "Poll '%s' Added Successfully." 
     38msgstr "" 
     39 
     40#: polls-add.php:96 
     41#: polls-manager.php:458 
     42#: wp-polls.php:58 
     43msgid "Manage Polls" 
    3844msgstr "" 
    3945 
     
    4955msgstr "" 
    5056 
    51 #: polls-add.php:178 
    52 #: polls-manager.php:310 
     57#: polls-add.php:176 
     58#: polls-manager.php:309 
    5359msgid "Poll Question" 
    5460msgstr "" 
    5561 
    56 #: polls-add.php:181 
    57 #: polls-manager.php:313 
     62#: polls-add.php:179 
     63#: polls-manager.php:312 
    5864#: polls-manager.php:464 
    5965msgid "Question" 
    6066msgstr "" 
    6167 
    62 #: polls-add.php:186 
    63 #: polls-manager.php:318 
     68#: polls-add.php:184 
     69#: polls-manager.php:317 
    6470msgid "Poll Answers" 
    6571msgstr "" 
    6672 
    67 #: polls-add.php:191 
    68 #: polls-manager.php:353 
     73#: polls-add.php:189 
     74#: polls-manager.php:352 
    6975msgid "Add Answer" 
    7076msgstr "" 
    7177 
    72 #: polls-add.php:191 
    73 #: polls-manager.php:353 
     78#: polls-add.php:189 
     79#: polls-manager.php:352 
    7480msgid "Remove Answer" 
    7581msgstr "" 
    7682 
    77 #: polls-add.php:198 
    78 #: polls-manager.php:340 
     83#: polls-add.php:196 
     84#: polls-manager.php:339 
    7985#, php-format 
    8086msgid "Answer %s" 
    8187msgstr "" 
    8288 
    83 #: polls-add.php:207 
    84 #: polls-manager.php:364 
     89#: polls-add.php:205 
     90#: polls-manager.php:363 
    8591msgid "Poll Multiple Answers" 
    8692msgstr "" 
    8793 
    88 #: polls-add.php:210 
    89 #: polls-manager.php:367 
     94#: polls-add.php:208 
     95#: polls-manager.php:366 
    9096msgid "Allows Users To Select More Than One Answer?" 
    9197msgstr "" 
    9298 
    93 #: polls-add.php:213 
    94 #: polls-manager.php:370 
    95 #: polls-options.php:206 
    96 #: polls-options.php:215 
    97 #: polls-options.php:332 
     99#: polls-add.php:211 
     100#: polls-manager.php:369 
     101#: polls-options.php:204 
     102#: polls-options.php:213 
     103#: polls-options.php:330 
    98104#: wp-polls-widget.php:105 
    99105msgid "No" 
    100106msgstr "" 
    101107 
    102 #: polls-add.php:214 
     108#: polls-add.php:212 
    103109#: polls-logs.php:372 
    104 #: polls-manager.php:371 
     110#: polls-manager.php:370 
    105111#: polls-manager.php:593 
    106 #: polls-options.php:207 
    107 #: polls-options.php:216 
    108 #: polls-options.php:333 
     112#: polls-options.php:205 
     113#: polls-options.php:214 
     114#: polls-options.php:331 
    109115#: polls-uninstall.php:132 
    110116#: wp-polls-widget.php:110 
     
    112118msgstr "" 
    113119 
    114 #: polls-add.php:219 
    115 #: polls-manager.php:376 
     120#: polls-add.php:217 
     121#: polls-manager.php:375 
    116122msgid "Maximum Number Of Selected Answers Allowed?" 
    117123msgstr "" 
    118124 
    119 #: polls-add.php:232 
    120 #: polls-manager.php:393 
     125#: polls-add.php:230 
     126#: polls-manager.php:392 
    121127msgid "Poll Start/End Date" 
    122128msgstr "" 
    123129 
    124 #: polls-add.php:235 
    125 #: polls-manager.php:396 
     130#: polls-add.php:233 
     131#: polls-manager.php:395 
    126132#: polls-manager.php:466 
    127133msgid "Start Date/Time" 
    128134msgstr "" 
    129135 
    130 #: polls-add.php:239 
    131 #: polls-manager.php:404 
     136#: polls-add.php:237 
     137#: polls-manager.php:403 
    132138#: polls-manager.php:467 
    133139msgid "End Date/Time" 
    134140msgstr "" 
    135141 
    136 #: polls-add.php:240 
    137 #: polls-manager.php:415 
     142#: polls-add.php:238 
     143#: polls-manager.php:414 
    138144msgid "Do NOT Expire This Poll" 
    139145msgstr "" 
    140146 
    141 #: polls-add.php:243 
    142 #: polls-manager.php:441 
     147#: polls-add.php:241 
     148#: polls-manager.php:440 
    143149msgid "Cancel" 
    144150msgstr "" 
     
    190196 
    191197#: polls-admin-ajax.php:78 
    192 #: polls-manager.php:440 
     198#: polls-manager.php:439 
    193199#: wp-polls.php:219 
    194200msgid "Open Poll" 
     
    206212 
    207213#: polls-admin-ajax.php:89 
    208 #: polls-manager.php:439 
     214#: polls-manager.php:438 
    209215#: wp-polls.php:220 
    210216msgid "Close Poll" 
     
    246252msgstr "" 
    247253 
    248 #: polls-logs.php:122 
     254#: polls-logs.php:123 
    249255msgid "Poll's Logs" 
    250256msgstr "" 
     
    372378#: polls-logs.php:290 
    373379#: polls-logs.php:318 
    374 #: polls-manager.php:398 
    375 #: polls-manager.php:410 
     380#: polls-manager.php:397 
     381#: polls-manager.php:409 
    376382#: polls-manager.php:487 
    377383#: polls-manager.php:495 
     
    431437 
    432438#: polls-manager.php:39 
    433 #: polls-manager.php:305 
    434 #: polls-manager.php:429 
     439#: polls-manager.php:307 
     440#: polls-manager.php:428 
    435441msgid "Edit Poll" 
    436442msgstr "" 
     
    470476msgstr "" 
    471477 
     478#: polls-manager.php:321 
     479msgid "Answer No."