Merged V3.2 to HEAD

15504: ETHREOH-2447: My Content page localisation failing - Localization is provided for all the ftl and xml files in WEB-INF\classes\alfresco\templates\webscripts\org\alfresco\portlets.

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@16907 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Gavin Cornwell
2009-10-14 10:50:14 +00:00
parent e13b3f6414
commit 051b54a53c
12 changed files with 179 additions and 58 deletions

View File

@@ -60,7 +60,7 @@ var MySpaces = {
failure: function(response)
{
// display the error
$('spacePanel').setHTML("Sorry, data currently unavailable.");
$('spacePanel').setHTML($('displayTheError').innerHTML);
// hide the ajax wait panel and show the main spaces panel
$('spacePanelOverlayAjax').setStyle('display', 'none');
@@ -302,7 +302,7 @@ var MySpaces = {
},
failure: function(response)
{
resource.innerHTML = "Sorry, preview currently unavailable.";
resource.innerHTML = $('previewCurrentlyUnavailable').innerHTML;
},
argument: [resource]
},
@@ -712,7 +712,7 @@ var MySpaces = {
if (response.responseText.indexOf("OK:") == 0)
{
MySpaces.refreshList();
MySpaces.displayMessage("A working copy for the checked out item 'Working Copy of " + name + "' has been created.");
MySpaces.displayMessage(name);
}
else
{
@@ -747,7 +747,7 @@ var MySpaces = {
if (response.responseText.indexOf("OK:") == 0)
{
MySpaces.refreshList();
MySpaces.displayMessage("Item 'Working Copy of " + name + "' has been checked in.");
MySpaces.displayMessage(name);
}
else
{