CC-5127: Library -> Scheduled and Playlist columns needs better icon
Changed icon Renamed Playlist to Playlist / Block
This commit is contained in:
parent
dc664ad9ff
commit
5bf91d513d
38 changed files with 34392 additions and 34529 deletions
|
@ -62,7 +62,7 @@ class LocaleController extends Zend_Controller_Action
|
|||
"Deselect all" => _("Deselect all"),
|
||||
"Are you sure you want to delete the selected item(s)?" => _("Are you sure you want to delete the selected item(s)?"),
|
||||
"Scheduled" => _("Scheduled"),
|
||||
"Playlist" => _("Playlist"),
|
||||
"Playlist" => _("Playlist / Block"),
|
||||
"Title" => _("Title"),
|
||||
"Creator" => _("Creator"),
|
||||
"Album" => _("Album"),
|
||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
|
@ -6,8 +6,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Airtime 2.3\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-05-16 12:46-0400\n"
|
||||
"PO-Revision-Date: 2013-05-16 12:46-0500\n"
|
||||
"POT-Creation-Date: 2013-05-17 11:38-0400\n"
|
||||
"PO-Revision-Date: 2013-05-17 11:38-0500\n"
|
||||
"Last-Translator: Denise Rigato <denise.rigato@sourcefabric.org>\n"
|
||||
"Language-Team: Hungarian Localization <contact@sourcefabric.org>\n"
|
||||
"Language: \n"
|
||||
|
@ -1977,7 +1977,7 @@ msgid "Scheduled"
|
|||
msgstr ""
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:65
|
||||
msgid "Playlist"
|
||||
msgid "Playlist / Block"
|
||||
msgstr ""
|
||||
|
||||
#: airtime_mvc/application/controllers/LocaleController.php:69
|
||||
|
|
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
BIN
airtime_mvc/public/css/images/is_playlist.png
Normal file
BIN
airtime_mvc/public/css/images/is_playlist.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 801 B |
BIN
airtime_mvc/public/css/images/is_scheduled.png
Normal file
BIN
airtime_mvc/public/css/images/is_scheduled.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 543 B |
|
@ -2006,6 +2006,14 @@ span.errors.sp-errors{
|
|||
.small-icon.show-partial-filled, .small-icon.media-item-in-use {
|
||||
background:url(images/icon_alert_cal_alt2.png) no-repeat 0 0;
|
||||
}
|
||||
.small-icon.is_scheduled {
|
||||
background:url(images/is_scheduled.png) no-repeat 0 0;
|
||||
height: 16px !important;
|
||||
}
|
||||
.small-icon.is_playlist {
|
||||
background:url(images/is_playlist.png) no-repeat 0 0;
|
||||
height: 16px !important;
|
||||
}
|
||||
.medium-icon {
|
||||
display:block;
|
||||
width:25px;
|
||||
|
|
|
@ -468,7 +468,7 @@ var AIRTIME = (function(AIRTIME) {
|
|||
/* Checkbox */ { "sTitle" : "" , "mDataProp" : "checkbox" , "bSortable" : false , "bSearchable" : false , "sWidth" : "25px" , "sClass" : "library_checkbox" } ,
|
||||
/* Type */ { "sTitle" : "" , "mDataProp" : "image" , "bSearchable" : false , "sWidth" : "25px" , "sClass" : "library_type" , "iDataSort" : 0 } ,
|
||||
/* Is Scheduled */ { "sTitle" : $.i18n._("Scheduled") , "mDataProp" : "is_scheduled" , "bSearchable" : false , "sWidth" : "90px" , "sClass" : "library_is_scheduled"} ,
|
||||
/* Is Playlist */ { "sTitle" : $.i18n._("Playlist") , "mDataProp" : "is_playlist" , "bSearchable" : false , "sWidth" : "70px" , "sClass" : "library_is_playlist"} ,
|
||||
/* Is Playlist */ { "sTitle" : $.i18n._("Playlist / Block") , "mDataProp" : "is_playlist" , "bSearchable" : false , "sWidth" : "110px" , "sClass" : "library_is_playlist"} ,
|
||||
/* Title */ { "sTitle" : $.i18n._("Title") , "mDataProp" : "track_title" , "sClass" : "library_title" , "sWidth" : "170px" } ,
|
||||
/* Creator */ { "sTitle" : $.i18n._("Creator") , "mDataProp" : "artist_name" , "sClass" : "library_creator" , "sWidth" : "160px" } ,
|
||||
/* Album */ { "sTitle" : $.i18n._("Album") , "mDataProp" : "album_title" , "sClass" : "library_album" , "sWidth" : "150px" } ,
|
||||
|
@ -618,12 +618,12 @@ var AIRTIME = (function(AIRTIME) {
|
|||
}
|
||||
|
||||
if (aData.is_scheduled) {
|
||||
$(nRow).find("td.library_is_scheduled").html('<span class="small-icon media-item-in-use"></span>');
|
||||
$(nRow).find("td.library_is_scheduled").html('<span class="small-icon is_scheduled"></span>');
|
||||
} else if (!aData.is_scheduled) {
|
||||
$(nRow).find("td.library_is_scheduled").html('');
|
||||
}
|
||||
if (aData.is_playlist) {
|
||||
$(nRow).find("td.library_is_playlist").html('<span class="small-icon media-item-in-use"></span>');
|
||||
$(nRow).find("td.library_is_playlist").html('<span class="small-icon is_playlist"></span>');
|
||||
} else if (!aData.is_playlist) {
|
||||
$(nRow).find("td.library_is_playlist").html('');
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue