Add missing translateable strings in js to php translation method
This commit is contained in:
parent
8d6420f934
commit
c903a6dfd3
|
@ -63,6 +63,16 @@ final class LocaleController extends Zend_Controller_Action
|
||||||
//"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
|
||||||
|
"Add" => _("Add"),
|
||||||
|
"New" => _("New"),
|
||||||
|
"Edit" => _("Edit"),
|
||||||
|
"Add to Schedule" => _("Add to Schedule"),
|
||||||
|
"Add to next show" => _("Add to next show"),
|
||||||
|
"Add to current show" => _("Add to current show"),
|
||||||
|
"Add after selected items" => _("Add after selected items"),
|
||||||
|
"Delete" => _("Delete"),
|
||||||
|
"Publish" => _("Publish"),
|
||||||
|
"Remove" => _("Remove"),
|
||||||
"Edit Metadata" => _("Edit Metadata"),
|
"Edit Metadata" => _("Edit Metadata"),
|
||||||
"Add to selected show" => _("Add to selected show"),
|
"Add to selected show" => _("Add to selected show"),
|
||||||
"Select" => _("Select"),
|
"Select" => _("Select"),
|
||||||
|
@ -108,6 +118,10 @@ final class LocaleController extends Zend_Controller_Action
|
||||||
"Are you sure you want to delete the selected item?" => _("Are you sure you want to delete the selected item?"),
|
"Are you sure you want to delete the selected item?" => _("Are you sure you want to delete the selected item?"),
|
||||||
"Uploading in progress..." => _("Uploading in progress..."),
|
"Uploading in progress..." => _("Uploading in progress..."),
|
||||||
"Retrieving data from the server..." => _("Retrieving data from the server..."),
|
"Retrieving data from the server..." => _("Retrieving data from the server..."),
|
||||||
|
//library/podcast.js
|
||||||
|
"Import" => _("Import"),
|
||||||
|
"Imported?" => _("Imported?"),
|
||||||
|
"View" => _("View"),
|
||||||
// SOUNDCLOUD
|
// SOUNDCLOUD
|
||||||
"Are you sure? SoundCloud stats and comments for this track will be permanently removed." => "Are you sure? SoundCloud stats and comments for this track will be permanently removed.",
|
"Are you sure? SoundCloud stats and comments for this track will be permanently removed." => "Are you sure? SoundCloud stats and comments for this track will be permanently removed.",
|
||||||
"Your track is being deleted from SoundCloud" => "Your track is being deleted from SoundCloud",
|
"Your track is being deleted from SoundCloud" => "Your track is being deleted from SoundCloud",
|
||||||
|
@ -314,6 +328,7 @@ final class LocaleController extends Zend_Controller_Action
|
||||||
"Trim overbooked shows" => _("Trim overbooked shows"),
|
"Trim overbooked shows" => _("Trim overbooked shows"),
|
||||||
"Remove selected scheduled items" => _("Remove selected scheduled items"),
|
"Remove selected scheduled items" => _("Remove selected scheduled items"),
|
||||||
"Jump to the current playing track" => _("Jump to the current playing track"),
|
"Jump to the current playing track" => _("Jump to the current playing track"),
|
||||||
|
"Jump to Current" => _("Jump to Current"),
|
||||||
"Cancel current show" => _("Cancel current show"),
|
"Cancel current show" => _("Cancel current show"),
|
||||||
//already in schedule/schedule.js
|
//already in schedule/schedule.js
|
||||||
//"Cancel Current Show?" => _("Cancel Current Show?"),
|
//"Cancel Current Show?" => _("Cancel Current Show?"),
|
||||||
|
@ -355,6 +370,7 @@ final class LocaleController extends Zend_Controller_Action
|
||||||
"View listener stats" => _("View listener stats"),
|
"View listener stats" => _("View listener stats"),
|
||||||
//dataTables/ColVis.js
|
//dataTables/ColVis.js
|
||||||
"Show / hide columns" => _("Show / hide columns"),
|
"Show / hide columns" => _("Show / hide columns"),
|
||||||
|
"Columns" => _("Columns"),
|
||||||
//datatables.columnFilter.js
|
//datatables.columnFilter.js
|
||||||
"From {from} to {to}" => _("From {from} to {to}"),
|
"From {from} to {to}" => _("From {from} to {to}"),
|
||||||
"kbps" => _("kbps"),
|
"kbps" => _("kbps"),
|
||||||
|
|
|
@ -636,7 +636,7 @@ var AIRTIME = (function (AIRTIME) {
|
||||||
podcastEpisodeButtons = AIRTIME.widgets.Table.getStandardToolbarButtons();
|
podcastEpisodeButtons = AIRTIME.widgets.Table.getStandardToolbarButtons();
|
||||||
$.extend(true, podcastEpisodeButtons[AIRTIME.widgets.Table.TOOLBAR_BUTTON_ROLES.NEW],
|
$.extend(true, podcastEpisodeButtons[AIRTIME.widgets.Table.TOOLBAR_BUTTON_ROLES.NEW],
|
||||||
{
|
{
|
||||||
title: "Import",
|
title: $.i18n._("Import"),
|
||||||
eventHandlers: {
|
eventHandlers: {
|
||||||
click: function () {
|
click: function () {
|
||||||
var episodes = mod.episodeTables[podcastId].getSelectedRows();
|
var episodes = mod.episodeTables[podcastId].getSelectedRows();
|
||||||
|
|
Loading…
Reference in New Issue