diff options
| author | 2014-10-05 16:10:25 +0200 | |
|---|---|---|
| committer | 2014-10-05 16:10:25 +0200 | |
| commit | c8fad68a4fd15857a2e3e21e7d5311dc7f87226c (patch) | |
| tree | 063d7683f30ec35e544fcc5e38048d0d0a7dca75 /app/views/feed/add.phtml | |
| parent | 6c8b36f04ea1bc2c022c331bb0980b6c9dccb83c (diff) | |
Use _i() whenever it is possible
Transform FreshRSS_Themes::icon\s? in _i
See https://github.com/marienfressinaud/FreshRSS/issues/655
Diffstat (limited to 'app/views/feed/add.phtml')
| -rw-r--r-- | app/views/feed/add.phtml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/feed/add.phtml b/app/views/feed/add.phtml index 17e52a571..1db053b52 100644 --- a/app/views/feed/add.phtml +++ b/app/views/feed/add.phtml @@ -29,7 +29,7 @@ <label class="group-name"><?php echo _t('website_url'); ?></label> <div class="group-controls"> <?php echo $this->feed->website(); ?> - <a class="btn" target="_blank" href="<?php echo $this->feed->website(); ?>"><?php echo FreshRSS_Themes::icon('link'); ?></a> + <a class="btn" target="_blank" href="<?php echo $this->feed->website(); ?>"><?php echo _i('link'); ?></a> </div> </div> <?php } ?> @@ -39,7 +39,7 @@ <div class="group-controls"> <div class="stick"> <input type="text" name="url_rss" id="url" class="extend" value="<?php echo $this->feed->url(); ?>" /> - <a class="btn" target="_blank" href="<?php echo $this->feed->url(); ?>"><?php echo FreshRSS_Themes::icon('link'); ?></a> + <a class="btn" target="_blank" href="<?php echo $this->feed->url(); ?>"><?php echo _i('link'); ?></a> </div> <a class="btn" target="_blank" href="http://validator.w3.org/feed/check.cgi?url=<?php echo $this->feed->url(); ?>"><?php echo _t('feed_validator'); ?></a> </div> @@ -76,7 +76,7 @@ </div> <div class="group-controls"> - <?php echo FreshRSS_Themes::icon('help'); ?> <?php echo _t('access_protected_feeds'); ?> + <?php echo _i('help'); ?> <?php echo _t('access_protected_feeds'); ?> </div> </div> |
