summaryrefslogtreecommitdiff
path: root/tt-rss.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2009-02-26 14:23:28 +0300
committerAndrew Dolgov <[email protected]>2009-02-26 14:23:28 +0300
commit14d9001eca82103d3dcd493bb1cf95207f7418b3 (patch)
tree90b92261e54a03aab90e2edbf9d67f977752bc63 /tt-rss.php
parent2b60628a0625a2637ad290350a7173faaa6b0f58 (diff)
use optgroup tag for grouped select boxes (code cleanup)
Diffstat (limited to 'tt-rss.php')
-rw-r--r--tt-rss.php24
1 files changed, 12 insertions, 12 deletions
diff --git a/tt-rss.php b/tt-rss.php
index b963cd150..02d054d89 100644
--- a/tt-rss.php
+++ b/tt-rss.php
@@ -190,23 +190,23 @@ window.onload = init;
<option value="qmcSearch"><?php echo __('Search...') ?></option>
<!-- <option value="qmcPrefs"><?php echo __('Preferences') ?></option> -->
<optgroup label="<?php echo __('Feed actions:') ?>">
- <option value="qmcAddFeed">&nbsp;&nbsp;<?php echo __('Subscribe to feed...') ?></option>
- <option value="qmcEditFeed">&nbsp;&nbsp;<?php echo __('Edit this feed...') ?></option>
- <!-- <option value="qmcClearFeed">&nbsp;&nbsp;<?php echo __('Clear articles') ?></option> -->
- <option value="qmcRescoreFeed">&nbsp;&nbsp;<?php echo __('Rescore feed') ?></option>
- <option value="qmcRemoveFeed">&nbsp;&nbsp;<?php echo __('Unsubscribe') ?></option>
+ <option value="qmcAddFeed"><?php echo __('Subscribe to feed...') ?></option>
+ <option value="qmcEditFeed"><?php echo __('Edit this feed...') ?></option>
+ <!-- <option value="qmcClearFeed"><?php echo __('Clear articles') ?></option> -->
+ <option value="qmcRescoreFeed"><?php echo __('Rescore feed') ?></option>
+ <option value="qmcRemoveFeed"><?php echo __('Unsubscribe') ?></option>
</optgroup>
<optgroup label="<?php echo __('All feeds:') ?>">
- <option value="qmcCatchupAll">&nbsp;&nbsp;<?php echo __('Mark as read') ?></option>
- <option value="qmcShowOnlyUnread">&nbsp;&nbsp;<?php echo __('(Un)hide read feeds') ?></option>
+ <option value="qmcCatchupAll"><?php echo __('Mark as read') ?></option>
+ <option value="qmcShowOnlyUnread"><?php echo __('(Un)hide read feeds') ?></option>
</optgroup>
<optgroup label="<?php echo __('Other actions:') ?>">
- <option value="qmcAddLabel">&nbsp;&nbsp;<?php echo __('Create label...') ?></option>
- <option value="qmcAddFilter">&nbsp;&nbsp;<?php echo __('Create filter...') ?></option>
- <option value="qmcResetUI">&nbsp;&nbsp;<?php echo __('Reset UI layout') ?></option>
- <option value="qmcResetCats">&nbsp;&nbsp;<?php echo __('Reset category order') ?></option>
- <option value="qmcHKhelp"><?php echo __('&nbsp;&nbsp;Keyboard shortcuts') ?></option>
+ <option value="qmcAddLabel"><?php echo __('Create label...') ?></option>
+ <option value="qmcAddFilter"><?php echo __('Create filter...') ?></option>
+ <option value="qmcResetUI"><?php echo __('Reset UI layout') ?></option>
+ <option value="qmcResetCats"><?php echo __('Reset category order') ?></option>
+ <option value="qmcHKhelp"><?php echo __('Keyboard shortcuts') ?></option>
</optgroup>
</select>