@@ -37,30 +37,30 @@
old_album_clean = album['AlbumTitle'].replace('&','%26').replace('+', '%2B').replace("'","%27")
%>
${album['ArtistName']}
-
-
+
+
- | Are you sure you want to restore Local Artist: ${album['ArtistName']} to unmatched? |
+ | Are you sure you want to reset Local Artist: ${album['ArtistName']} to unmatched? |
%if album['AlbumStatus'] == "Ignored":
-
+
%elif album['AlbumStatus'] == "Matched":
-
+
%endif
|
|
${album['AlbumTitle']}
-
-
+
+
- | Are you sure you want to restore Local Album: ${album['AlbumTitle']} to unmatched? |
+ | Are you sure you want to reset Local Album: ${album['AlbumTitle']} to unmatched? |
%if album['AlbumStatus'] == "Ignored":
-
+
%elif album['AlbumStatus'] == "Matched":
-
+
%endif
|
@@ -107,15 +107,15 @@
initActions();
});
- function restore_Artist(clicked_id) {
- n=clicked_id.replace("restore_artist","");
- $("#restore_artist_dialog"+n).dialog();
+ function reset_Artist(clicked_id) {
+ n=clicked_id.replace("reset_artist","");
+ $("#reset_artist_dialog"+n).dialog();
return false;
}
- function restore_Album(clicked_id) {
- n=clicked_id.replace("restore_album","");
- $("#restore_album_dialog"+n).dialog();
+ function reset_Album(clicked_id) {
+ n=clicked_id.replace("reset_album","");
+ $("#reset_album_dialog"+n).dialog();
return false;
}
|