Index: lams_admin/conf/language/ApplicationResources.properties
===================================================================
RCS file: /usr/local/cvsroot/lams_admin/conf/language/Attic/ApplicationResources.properties,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ lams_admin/conf/language/ApplicationResources.properties 10 Apr 2006 11:03:44 -0000 1.1
@@ -0,0 +1,29 @@
+# CVS ID: $Id$
+# Language strings for the Admin classes and screens.
+
+#=========================List jobs in Quartz===========================#
+title.job.list = Jobs
+lable.job.name= Job name
+lable.job.start.date=Job start date
+lable.job.description=Job description
+
+#=========================Error Messages===========================#
+error.authorisation=You are not authorised to do this.
+error.newpassword.mismatch=Your new passwords don't match each other.
+error.oldpassword.mismatch=Your old password is not correct.
+
+#===================== Main Sysadmin Screen ======================#
+sysadmin.manage.config.file=Manage Configuration File
+sysadmin.batch.heading=Batch Tasks
+sysadmin.batch.description=These need to be converted to batch jobs, able to be run from cron.
+sysadmin.batch.temp.file.delete=Delete old temporary files
+sysadmin.batch.preview.delete=Delete old Preview lessons
+
+#===================== Cache Screen ==============================#
+cache.title=Cache Management
+cache.entries.title=Cache Nodes
+cache.explanation1=Listed below are the current nodes in the cache. This keeps certain common objects in memory to speed up LAMS. It is managed automatically and should not require any intervention. However, if the system appears to be keeping "old values" e.g. an old first name, try clearing all the nodes in the cache. Once cleared, LAMS will reload the objects from the database.
+cache.explanation2=Warning: Removing nodes will reduce the performance of the LAMS server. After a while, the cache will build up again and LAMS will run as usual.
+cache.explanation3=Warning: If you remove a node, you will remove the node and all its child nodes.
+cache.button.remove=Remove
+
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `lams_admin/conf/language/applicationResources.properties'.
Fisheye: No comparison available. Pass `N' to diff?
Index: lams_admin/conf/xdoclet/struts-message-resources.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_admin/conf/xdoclet/struts-message-resources.xml,v
diff -u -r1.2 -r1.3
--- lams_admin/conf/xdoclet/struts-message-resources.xml 4 Nov 2005 06:04:35 -0000 1.2
+++ lams_admin/conf/xdoclet/struts-message-resources.xml 10 Apr 2006 11:03:44 -0000 1.3
@@ -1 +1 @@
-
+
Index: lams_admin/web/WEB-INF/web.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_admin/web/WEB-INF/Attic/web.xml,v
diff -u -r1.8 -r1.9
--- lams_admin/web/WEB-INF/web.xml 3 Apr 2006 12:49:05 -0000 1.8
+++ lams_admin/web/WEB-INF/web.xml 10 Apr 2006 11:03:44 -0000 1.9
@@ -23,7 +23,7 @@
-
+ SystemSessionFilter
org.lamsfoundation.lams.web.session.SystemSessionFilter
@@ -48,7 +48,7 @@
-
+ SystemSessionFilter/*
Index: lams_admin/web/WEB-INF/struts/struts-config.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_admin/web/WEB-INF/struts/Attic/struts-config.xml,v
diff -u -r1.7 -r1.8
--- lams_admin/web/WEB-INF/struts/struts-config.xml 17 Mar 2006 04:34:19 -0000 1.7
+++ lams_admin/web/WEB-INF/struts/struts-config.xml 10 Apr 2006 11:03:44 -0000 1.8
@@ -216,7 +216,7 @@
-
+
\ No newline at end of file
+
\ No newline at end of file
Index: lams_central/src/java/org/lamsfoundation/lams/authoring/authoringApplicationContext.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_central/src/java/org/lamsfoundation/lams/authoring/authoringApplicationContext.xml,v
diff -u -r1.8 -r1.9
--- lams_central/src/java/org/lamsfoundation/lams/authoring/authoringApplicationContext.xml 3 Apr 2006 05:48:41 -0000 1.8
+++ lams_central/src/java/org/lamsfoundation/lams/authoring/authoringApplicationContext.xml 10 Apr 2006 11:05:19 -0000 1.9
@@ -13,7 +13,7 @@
- org.lamsfoundation.lams.central.applicationResources
+ org.lamsfoundation.lams.central.ApplicationResources
Index: lams_central/src/java/org/lamsfoundation/lams/authoring/service/AuthoringService.java
===================================================================
RCS file: /usr/local/cvsroot/lams_central/src/java/org/lamsfoundation/lams/authoring/service/AuthoringService.java,v
diff -u -r1.24 -r1.25
--- lams_central/src/java/org/lamsfoundation/lams/authoring/service/AuthoringService.java 3 Apr 2006 23:28:17 -0000 1.24
+++ lams_central/src/java/org/lamsfoundation/lams/authoring/service/AuthoringService.java 10 Apr 2006 11:05:19 -0000 1.25
@@ -559,16 +559,17 @@
+" message file "+activity.getLanguageFile()+". Activity Message source not available");
}
- // update the tool field
- languageFilename = activity.getToolLanguageFile();
- toolMessageSource = toolActMessageService.getMessageService(languageFilename);
- if ( toolMessageSource != null ) {
- activity.setToolDisplayName(toolMessageSource.getMessage(Tool.I18N_DISPLAY_NAME,null,activity.getToolDisplayName(),locale));
- } else {
- log.warn("Unable to internationalise the library activity "+activity.getActivityID()+" "+activity.getTitle()
+ // update the tool field - note only tool activities have a tool entry.
+ if ( activity.getActivityTypeID()!=null && Activity.TOOL_ACTIVITY_TYPE == activity.getActivityTypeID().intValue() ) {
+ languageFilename = activity.getToolLanguageFile();
+ toolMessageSource = toolActMessageService.getMessageService(languageFilename);
+ if ( toolMessageSource != null ) {
+ activity.setToolDisplayName(toolMessageSource.getMessage(Tool.I18N_DISPLAY_NAME,null,activity.getToolDisplayName(),locale));
+ } else {
+ log.warn("Unable to internationalise the library activity "+activity.getActivityID()+" "+activity.getTitle()
+" message file "+activity.getLanguageFile()+". Tool Message source not available");
+ }
}
-
} else {
log.warn("Unable to internationalise the library activity "+activity.getActivityID()+" "+activity.getTitle()
+". No message file supplied.");
Index: lams_central/web/WEB-INF/struts/struts-config.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_central/web/WEB-INF/struts/Attic/struts-config.xml,v
diff -u -r1.8 -r1.9
--- lams_central/web/WEB-INF/struts/struts-config.xml 27 Mar 2006 22:15:17 -0000 1.8
+++ lams_central/web/WEB-INF/struts/struts-config.xml 10 Apr 2006 11:05:19 -0000 1.9
@@ -159,7 +159,7 @@
-
+
- org.lamsfoundation.lams.applicationResources
+ org.lamsfoundation.lams.ApplicationResources
Index: lams_contentrepository/conf/language/ApplicationResources.properties
===================================================================
RCS file: /usr/local/cvsroot/lams_contentrepository/conf/language/ApplicationResources.properties,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ lams_contentrepository/conf/language/ApplicationResources.properties 10 Apr 2006 11:07:08 -0000 1.1
@@ -0,0 +1,13 @@
+# CVS ID: $Id$
+# Language strings for the Admin classes and screens.
+
+# Used for the demo pages - not used for the standard LAMS application.
+errors.mandatory={0} must not be empty.
+errors.filedirmandatory=Either a file must be uploaded or a directory selected.
+error.login=Unable to login to repository. Error: {0}.
+error.noTicket=The ticket is missing from the session. Unable to access the repository.
+error.entryStringNeeded=The file that "starts" the content is required when there is a zip file to be unpacked.
+error.uuidMissing=No node has been selected.
+error.repositoryUnexpected=The repository has returned an unexpected value. {0}
+exception.repository=An error occured involving the repository. {0}
+
Fisheye: Tag 1.2 refers to a dead (removed) revision in file `lams_contentrepository/conf/language/applicationResources.properties'.
Fisheye: No comparison available. Pass `N' to diff?
Index: lams_contentrepository/conf/xdoclet/struts-message-resources.xml
===================================================================
RCS file: /usr/local/cvsroot/lams_contentrepository/conf/xdoclet/struts-message-resources.xml,v
diff -u -r1.2 -r1.3
--- lams_contentrepository/conf/xdoclet/struts-message-resources.xml 5 Apr 2006 23:24:18 -0000 1.2
+++ lams_contentrepository/conf/xdoclet/struts-message-resources.xml 10 Apr 2006 11:07:08 -0000 1.3
@@ -1 +1 @@
-
+
Index: lams_learning/conf/language/ApplicationResources.properties
===================================================================
RCS file: /usr/local/cvsroot/lams_learning/conf/language/Attic/ApplicationResources.properties,v
diff -u
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ lams_learning/conf/language/ApplicationResources.properties 10 Apr 2006 11:08:17 -0000 1.1
@@ -0,0 +1,28 @@
+# CVS ID: $Id$
+# Language strings for the Progress Engine related classes and screens. Mostly error messages.
+
+message.activity.loading=The next task is loading. Please wait....
+message.lesson.finished=Congratulations, you have finished.
+message.lesson.finishedCont=You have now completed your learning activity. Please log out or select a new session from the Available Sessions Panel
+message.activity.parallel.partialComplete=You have to complete the other task before progressing to the next activity....
+message.activity.parallel.noFrames=Your browser does not handle frames!
+message.activity.options.noActivitySelected=Please select an activity from the list
+message.activity.options.activityCount=You must complete at least {0} of these {1} activities.
+message.activity.options.note=Note: Once you finish any of the above activities you can revisit them by using the progress bar on the left.
+
+label.activity.options.choose=Choose
+label.activity.finish=Finish
+
+## Export Portfolio Functionality
+error.system.exportPortfolio=An internal error has occurred with the Export Portfolio Functionality. If reporting this error, please report: {0}
+error.system.learner=An internal error has occurred with the Learner Environment. If reporting this error, please report: {0}
+error.system.export=A system exception has occured and the portfolio could not be generated. Please contact Lams International technical support.
+error.message.404=The page you have requested can not be found.
+
+# HTML used to create main export page. The lesson name is inserted at {0} and the list of activities are inserted at {1}
+export.html.mainPage=Export Portfolio
Export Portfolio
Lesson: {0}
Activities
{1}
+# HTML used to create main export page when an portfolio is not available due to system constraints.
+export.html.exportFailed=Export Portfolio
Export Portfolio Failed
This sequence does not support portfolio exports
+# HTML used to create the export portfolio activity page when an activity does not support export portfolio (stops it being just a blank page)
+export.html.exportNotSupported=Export Portfolio Unsupported