CC-4833: I18N: Alert message "Please select a cursor posion from timeline." in Now playing page is not translated
-fixed
This commit is contained in:
parent
83be01d0d0
commit
1e6b0fe6ae
|
@ -54,6 +54,7 @@ class LocaleController extends Zend_Controller_Action
|
||||||
"You can only add tracks, smart blocks, and webstreams to playlists." => _("You can only add tracks, smart blocks, and webstreams to playlists."),
|
"You can only add tracks, smart blocks, and webstreams to playlists." => _("You can only add tracks, smart blocks, and webstreams to playlists."),
|
||||||
//library/events/library_showbuilder.js
|
//library/events/library_showbuilder.js
|
||||||
//already in library/events/library_playlistbuilder.js
|
//already in library/events/library_playlistbuilder.js
|
||||||
|
"Please select a cursor position on timeline." => _("Please select a cursor position on timeline."),
|
||||||
//"Adding 1 Item" => _("Adding 1 Item"),
|
//"Adding 1 Item" => _("Adding 1 Item"),
|
||||||
//"Adding %s Items" => _("Adding %s Items"),
|
//"Adding %s Items" => _("Adding %s Items"),
|
||||||
//library/library.js
|
//library/library.js
|
||||||
|
|
|
@ -113,7 +113,7 @@ var AIRTIME = (function(AIRTIME) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (aSchedIds.length == 0) {
|
if (aSchedIds.length == 0) {
|
||||||
alert("Please select a cursor position on timeline.");
|
alert($.i18n._("Please select a cursor position on timeline."));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
console.log(aMediaIds);
|
console.log(aMediaIds);
|
||||||
|
|
Loading…
Reference in New Issue