Opensearch fix, set playlist button

This commit is contained in:
magnolia-fan
2011-11-26 19:38:50 +04:00
parent f0e7e8f7a1
commit dab192d1ff
4 changed files with 29 additions and 19 deletions
+14 -14
View File
@@ -20,26 +20,26 @@
%a#logo{ :href => "#/" } BeatHaven
%ul.nav
%li
%a{ :href => "http://blog.beathaven.org/", :target => "_blank" }= I18n.t 'global.news'
%a{ :href => "http://blog.beathaven.org/", :target => "_blank" }= t('global.news')
%li
%a.about{ :href => "#/about/" }= I18n.t 'global.about'
%a.about{ :href => "#/about/" }= t('global.about')
%li
%a.stat{ :href => "#/stat/" }= I18n.t 'global.stat'
%a.stat{ :href => "#/stat/" }= t('global.stat')
%form#search-form{ :action => "" }
%input#search{ :type => "text", :placeholder => I18n.t('global.search') }
%input#search{ :type => "text", :placeholder => t('global.search') }
#artist-load-spinner
= image_tag "artist_loader.gif"
%ul.nav.secondary-nav
%li
%a#login{ :href => "#/login/" }= I18n.t 'global.login'
%a#login{ :href => "#/login/" }= t('global.login')
%li.dropdown#authorized
%a.dropdown-toggle#username{ :href => "#/" } %username%
%ul.dropdown-menu
%li
%a#preferences{ :href => "#/settings/" }= I18n.t 'global.settings'
%a#preferences{ :href => "#/settings/" }= t('global.settings')
%li.divider
%li
%a#logout{ :href => "#/logout/" }= I18n.t 'global.logout'
%a#logout{ :href => "#/logout/" }= t('global.logout')
.popover-wrapper
.popover.below#autocomplete-container
@@ -54,25 +54,25 @@
 
.span5.columns
.ad_here= (I18n.t 'global.your_ad_here').html_safe
.ad_here= t('global.your_ad_here').html_safe
.player
%h5.now-playing= I18n.t 'global.do_add'
%h5.now-playing= t('global.do_add')
.progress
.loaded
.played
.buttons
.secondary-buttons
%a.shuffle{ :title => I18n.t('player.shuffle') }= image_tag "icns/shuffle.png"
%a.repeat{ :title => I18n.t('player.repeat') }= image_tag "icns/repeat.png"
%a.do_empty{ :title => I18n.t('player.do_empty') }= image_tag "icns/empty.png"
%a.shuffle{ :title => t('player.shuffle') }= image_tag "icns/shuffle.png"
%a.repeat{ :title => t('player.repeat') }= image_tag "icns/repeat.png"
%a.do_empty{ :title => t('player.do_empty') }= image_tag "icns/empty.png"
.primary-buttons
%a.btn.small-round.prev «
%a.btn.large.play ►
%a.btn.large.pause II
%a.btn.small-round.next »
.quality-buttons
%a.q-good{ :title => I18n.t('player.thumbs_up') }= image_tag "icns/thumbs-up.png"
%a.q-bad{ :title => I18n.t('player.thumbs_down') }= image_tag "icns/thumbs-down.png"
%a.q-good{ :title => t('player.thumbs_up') }= image_tag "icns/thumbs-up.png"
%a.q-bad{ :title => t('player.thumbs_down') }= image_tag "icns/thumbs-down.png"