Index: debian_installer/lams2/2.1rc1to2.1.sql =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/2.1rc1to2.1.sql,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/2.1rc1to2.1.sql 4 Jul 2008 08:43:45 -0000 1.1 @@ -0,0 +1,44 @@ +-- Database changes from 2.1 RC1 to 2.1 + +-- LDEV-1579 +alter table lams_tool add column supports_outputs TINYINT(1) DEFAULT 0; +update lams_tool set supports_outputs = 1 where tool_signature = "lafrum11"; +update lams_tool set tool_version = "20080220" where tool_signature = "lafrum11"; +update lams_tool set supports_outputs = 1 where tool_signature = "lamc11"; +update lams_tool set tool_version = "20070820" where tool_signature = "lamc11"; +update lams_tool set supports_outputs = 1 where tool_signature = "lavote11"; + +-- LDEV-1597 +ALTER TABLE tl_lavote11_content +ADD COLUMN show_results TINYINT(1) NOT NULL DEFAULT 1; +UPDATE tl_lavote11_content set show_results = 1; +UPDATE lams_tool SET tool_version = "20080326" WHERE tool_signature = "lavote11"; + +-- LDEV-1598 +insert into lams_configuration (config_key, config_value, description_key, header_name, format, required) +values ('AuthoringScreenSize','800x600', 'config.authoring.screen.size', 'config.header.look.feel', 'STRING', 1); + +insert into lams_configuration (config_key, config_value, description_key, header_name, format, required) +values ('MonitorScreenSize','800x600', 'config.monitor.screen.size', 'config.header.look.feel', 'STRING', 1); + +insert into lams_configuration (config_key, config_value, description_key, header_name, format, required) +values ('LearnerScreenSize','800x600', 'config.learner.screen.size', 'config.header.look.feel', 'STRING', 1); + +insert into lams_configuration (config_key, config_value, description_key, header_name, format, required) +values ('AdminScreenSize','800x600', 'config.admin.screen.size', 'config.header.look.feel', 'STRING', 1); + +-- LDEV-273 +CREATE INDEX email ON lams_user (email ASC); + +-- LDEV-1702 +UPDATE lams_supported_locale SET description='日本語' WHERE language_iso_code='ja' AND country_iso_code='JP'; + +-- LDEV-1707 +ALTER TABLE tl_lasbmt11_report MODIFY COLUMN marks float; +UPDATE lams_tool SET tool_version = "20080509" WHERE tool_signature = "lasbmt11"; + +-- Version strings +update lams_configuration set config_value='2.1' where config_key='Version'; +update lams_configuration set config_value='2.1.200806190000' where config_key='AuthoringClientVersion' or config_key='MonitorClientVersion' or config_key="LearnerClientVersion" or config_key='ServerVersionNumber'; +update lams_configuration set config_value='2008-06-19' where config_key='DictionaryDateCreated'; + Index: debian_installer/lams2/index.html =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/Attic/index.html,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/index.html 4 Jul 2008 08:43:45 -0000 1.1 @@ -0,0 +1,9 @@ + + + + + + + + + Index: debian_installer/lams2/lams2.cnf =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams2.cnf,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/lams2.cnf 4 Jul 2008 08:43:45 -0000 1.1 @@ -0,0 +1,2 @@ +[mysqld] +transaction-isolation = READ-COMMITTED Index: debian_installer/lams2/debian/changelog =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/debian/changelog,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/debian/changelog 4 Jul 2008 08:43:43 -0000 1.1 @@ -0,0 +1,19 @@ +lams2 (2.1.0-1) unstable; urgency=low + + * LAMS 2.1 initial release + + -- LAMS Development Team Tue, 27 May 2008 13:57:24 +1000 + +lams2 (2.1rc1-2) unstable; urgency=low + + * updated init script to remove pid file after stopping + * updated postinst + + -- LAMS Development Team Mon, 14 Apr 2008 15:43:10 +1000 + +lams2 (2.1rc1-1) unstable; urgency=low + + * Initial release + + -- LAMS Development Team Thu, 27 Mar 2008 16:12:04 +1100 + Index: debian_installer/lams2/debian/compat =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/debian/compat,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/debian/compat 4 Jul 2008 08:43:43 -0000 1.1 @@ -0,0 +1 @@ +5 Index: debian_installer/lams2/debian/config =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/debian/config,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/debian/config 4 Jul 2008 08:43:43 -0000 1.1 @@ -0,0 +1,32 @@ +#!/bin/sh -e + +. /usr/share/debconf/confmodule + +db_input critical lams2/db_root_pass || true +#db_input critical lams2/db_name || true +#db_input critical lams2/db_user || true +#db_input critical lams2/db_pass || true +db_beginblock +db_input critical lams2/server_host || true +db_input critical lams2/server_port || true +db_endblock +db_input critical lams2/sysadmin_user || true + +db_go + +db_input critical lams2/sysadmin_pass || true +db_input critical lams2/sysadmin_pass_confirm || true +db_go +db_get lams2/sysadmin_pass || true +sysadmin_pass="$RET" +db_get lams2/sysadmin_pass_confirm || true +sysadmin_pass_confirm="$RET" +while [ "$sysadmin_pass" != "$sysadmin_pass_confirm" ]; do + db_input critical lams2/sysadmin_pass_again || true + db_input critical lams2/sysadmin_pass_confirm || true + db_go + db_get lams2/sysadmin_pass_again || true + sysadmin_pass="$RET" + db_get lams2/sysadmin_pass_confirm || true + sysadmin_pass_confirm="$RET" +done Index: debian_installer/lams2/debian/control =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/debian/control,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/debian/control 4 Jul 2008 08:43:43 -0000 1.1 @@ -0,0 +1,19 @@ +Source: lams2 +Section: contrib/web +Priority: extra +Maintainer: LAMS Development Team +Build-Depends: debhelper (>= 5) +Standards-Version: 3.7.2 + +Package: lams2 +Architecture: all +Depends: sun-java5-jdk|sun-java6-jdk, lams-jboss4 (>=4.0.2), debconf (>=0.5), mysql-server-5.0, mysql-client, adduser +Replaces: lams-jboss4 +Description: Learning Activity Management System (LAMS) 2 + LAMS is a revolutionary new tool for designing, managing + and delivering online collaborative learning activities. + It provides teachers with a highly intuitive visual + authoring environment for creating sequences of learning + activities. These activities can include a range of + individual tasks, small group work and whole class + activities based on both content and collaboration. Index: debian_installer/lams2/debian/copyright =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/debian/copyright,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/debian/copyright 4 Jul 2008 08:43:43 -0000 1.1 @@ -0,0 +1,83 @@ +This package was debianized by the LAMS Development Team + on Thu, 27 Mar 2008 16:12:04 +1100. + +It was downloaded from http://wiki.lamsfoundation.org/display/lams/Building+LAMS + +Copyright (C) 2002-2008 LAMS Foundation + +LAMS 2 is released under the GPL license detailed below. This package +also includes other libraries/packages, whose respective licenses are +detailed below. + +On Debian systems, the complete text of the GNU General Public License can be +found in the file '/usr/share/common-licenses/GPL'. + +Library/Package License +-------------------------------------------------------------------------------- +antlr.jar Antlr 3 License +axis-ant.jar Apache License 2.0 +axis.jar Apache License 2.0 +cglib-nodep-2.1_2.jar Apache License 2.0 +cglib_jboss404GA.jar Apache License 2.0 +commons-beanutils.jar Apache License 2.0 +commons-codec-1.3.jar Apache License 2.0 +commons-collections.jar Apache License 2.0 +commons-digester.jar Apache License 2.0 +commons-discovery-0.2.jar Apache Software License 1.1 +commons-fileupload.jar Apache Software License 1.1 +commons-lang-2.0.jar Apache Software License 1.1 +commons-logging.jar Apache License 2.0 +commons-validator.jar Apache License 2.0 +FCKeditor-2.3.jar CDL Closed Distribution License +gnujaxp.jar GNU General Public License +hibernate3.jar GNU General Public License +jakarta-oro.jar Apache Software License 1.1 +jaxrpc.jar CDDL (Common Development and + Distribution License 1.0) +jcommon-1.0.0.jar GNU Lesser General Public Licence +jdom.jar Jdom Jar License +jfreechart-1.0.1.jar GNU Lesser General Public Licence +jgroups.jar GNU Lesser General Public Licence +jmock-2003-03-19.jar jMock Project License +joda-time-0.98.jar Joda Software License 1.0 +jsMath Apache License 2.0 +jstl.jar JSTL License 1.1 +log4j-1.2.13.jar Apache Software License 1.1 +mysql-connector- (CDDL Common Development and + java-3.1.12-bin-jar Distribution License 1.0) +odmg-3.0.jar ODMG 2.0 +poi-2.5.1-final Apache Software License 1.1 + -20040804.jar +quartz.jar Apache License 2.0 +saaj.jar (CDDL Common Development and + Distribution License 1.0) +smack.jar Apache License 2.0 +smackx.jar Apache License 2.0 +spring.jar Apache License 2.0 +standard.jar Apache License 2.0 +struts-el.jar Apache License 2.0 +struts.jar Apache License 2.0 +wddx.jar GNU General Public License +wsdl4j-1.5.1.jar CPL Common Public License 0.5 +xml-writer-0.2.jar XML-Write License +xom-1.0.b3.jar GNU Lesser General Public License +xpp3-1.1.3.4d_b4.jar XPP3 License +xstream-1.1.jar xstream Licanse + +SHARE RECOURCES LIBRARY LICENSES +castor-0.9.5.3-xml.jar Castor License +jdom.jar Jdom Jar License +moonunitsrc.jar Reload License +reload-diva.jar Reload License +reload-editor.jar Reload License +reload-jdom.jar Reload License +reload-moonunit.jar Reload License +xercesImpl.jar Apache Software License 1.1 +xml-apis.jar Apache Software License 1.1 +jaxen-full.jar Jaxen Jar License (The Werken + Company) +sax.jar Public Domain +saxpath.jar Jaxen Jar License (The Werken + Company) +-------------------------------------------------------------------------------- + Index: debian_installer/lams2/debian/dirs =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/debian/dirs,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/debian/dirs 4 Jul 2008 08:43:43 -0000 1.1 @@ -0,0 +1 @@ +var/lib/lams Index: debian_installer/lams2/debian/files =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/debian/files,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/debian/files 4 Jul 2008 08:43:43 -0000 1.1 @@ -0,0 +1 @@ +lams2_2.1.0-1_all.deb contrib/web extra Index: debian_installer/lams2/debian/lams2.init =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/debian/lams2.init,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/debian/lams2.init 4 Jul 2008 08:43:43 -0000 1.1 @@ -0,0 +1,133 @@ +#!/bin/sh +# +# Written by Miquel van Smoorenburg . +# Modified for Debian +# by Ian Murdock . +# +# Version: @(#)skeleton 1.9 26-Feb-2001 miquels@cistron.nl +# + +# Attempt to locate JAVA_HOME, code borrowed from jabref package +if [ -z $JAVA_HOME ] +then + t=/usr/lib/jvm/java-1.5.0-sun && test -d $t && export JAVA_HOME=$t + t=/usr/lib/jvm/java-6-sun && test -d $t && export JAVA_HOME=$t +fi + +PATH=/sbin:/bin:/usr/sbin:/usr/bin:${JAVA_HOME}/bin +JAVA=${JAVA_HOME}/bin/java +JBOSS_HOME=/usr/share/jboss-4.0.2 +NAME=lams2 +LONGNAME="LAMS 2 Server" +PIDFILE="/var/run/$NAME.pid" +USER=lams +GROUP=lams +JBOSS_OPTS= + +test -x $JAVA || exit 0 + +# Read an optional running configuration file +if [ -r "$JBOSS_HOME/bin/run.conf" ]; then + . "$JBOSS_HOME/bin/run.conf" +fi + +JAVA_OPTS="$JAVA_OPTS -Dprogram.name=$PROGNAME" + +# Setup the java endorsed dirs +JBOSS_ENDORSED_DIRS="$JBOSS_HOME/lib/endorsed" + +# Setup the classpath +runjar="$JBOSS_HOME/bin/run.jar" +if [ ! -f "$runjar" ]; then + die "Missing required file: $runjar" +fi +JBOSS_BOOT_CLASSPATH="$runjar" + +# Include the JDK javac compiler for JSP pages. The default is for a Sun JDK +# compatible distribution which JAVA_HOME points to +if [ "x$JAVAC_JAR" = "x" ]; then + JAVAC_JAR="$JAVA_HOME/lib/tools.jar" +fi + +if [ "x$JBOSS_CLASSPATH" = "x" ]; then + JBOSS_CLASSPATH="$JBOSS_BOOT_CLASSPATH:$JAVAC_JAR" +else + JBOSS_CLASSPATH="$JBOSS_CLASSPATH:$JBOSS_BOOT_CLASSPATH:$JAVAC_JAR" +fi + + +DAEMON_OPTS="$JAVA_OPTS \ + -Djava.endorsed.dirs=$JBOSS_ENDORSED_DIRS \ + -classpath $JBOSS_CLASSPATH \ + org.jboss.Main $JBOSS_OPTS" + + +#set -e +start() { + start-stop-daemon --start --quiet --background --make-pidfile \ + --pidfile $PIDFILE --chuid $USER:$GROUP \ + --exec $JAVA -- $DAEMON_OPTS +} + +stop() { + start-stop-daemon --stop --quiet --pidfile $PIDFILE +} + +case "$1" in + start) + echo "$LONGNAME is starting up." + start + ;; + stop) + echo -n "Stopping $LONGNAME... " + stop + rm -f "$PIDFILE" + echo "stopped." + ;; + status) + if [ -e $PIDFILE ]; then + if [ -r $PIDFILE ]; then + pid=`cat "$PIDFILE"` + pidtest=`ps -p $pid -o args | grep "$JBOSS_BOOT_CLASSPATH" | tail -1` + if [ "X$pidtest" = "X" ] + then + rm -f "$PIDFILE" + echo "Removed stale pid file: $PIDFILE" + pid="" + fi + if [ "X$pid" = "X" ]; then + echo "$LONGNAME is not running." + exit 1 + else + echo "$LONGNAME is running ($pid)." + exit 0 + fi + else + echo "Cannot read $PIDFILE." + exit 1 + fi + fi + echo "$LONGNAME is not running." + ;; + restart|force-reload) + # + # If the "reload" option is implemented, move the "force-reload" + # option to the "reload" entry above. If not, "force-reload" is + # just the same as "restart". + # + echo -n "Restarting $LONGNAME: " + #set +e + stop + #set -e + sleep 10 + start + ;; + *) + SELF=`dirname $0`/`basename $0` + echo "Usage: $SELF {start|stop|restart|force-reload|status}" >&2 + exit 1 + ;; +esac + +exit 0 + Index: debian_installer/lams2/debian/lams2.install =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/debian/lams2.install,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/debian/lams2.install 4 Jul 2008 08:43:43 -0000 1.1 @@ -0,0 +1,17 @@ +jboss/jboss-service.xml /usr/share/jboss-4.0.2/server/default/conf/ +jboss/log4j.xml /usr/share/jboss-4.0.2/server/default/conf/ +jboss/login-config.xml /usr/share/jboss-4.0.2/server/default/conf/ +jboss/service/local-service.xml /usr/share/jboss-4.0.2/server/default/deploy/ +jboss/service/mysql-ds.xml /usr/share/jboss-4.0.2/server/default/deploy/ +jboss/tomcat/context.xml /usr/share/jboss-4.0.2/server/default/deploy/jbossweb-tomcat55.sar/ +jboss/tomcat/jboss-service.xml /usr/share/jboss-4.0.2/server/default/deploy/jbossweb-tomcat55.sar/META-INF/ +jboss/tomcat/server.xml /usr/share/jboss-4.0.2/server/default/deploy/jbossweb-tomcat55.sar/ +jboss/tomcat/web.xml /usr/share/jboss-4.0.2/server/default/deploy/jbossweb-tomcat55.sar/conf/ +lams.ear /usr/share/jboss-4.0.2/server/default/deploy/ +lams.ear/lams-session.jar /usr/share/jboss-4.0.2/server/default/lib/ +lams.ear/lams-valve.jar /usr/share/jboss-4.0.2/server/default/lib/ +lams.sql /usr/share/lams2/ +lams2.cnf /etc/mysql/conf.d/ +index.html /usr/share/jboss-4.0.2/server/default/deploy/jbossweb-tomcat55.sar/ROOT.war/ +2.1rc1to2.1.sql /usr/share/lams2/ +lams_tool_task /usr/share/lams2/ Index: debian_installer/lams2/debian/lams2.postinst.debhelper =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/debian/lams2.postinst.debhelper,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/debian/lams2.postinst.debhelper 4 Jul 2008 08:43:43 -0000 1.1 @@ -0,0 +1,10 @@ +# Automatically added by dh_installinit +if [ -x "/etc/init.d/lams2" ]; then + update-rc.d lams2 defaults >/dev/null + if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then + invoke-rc.d lams2 start || exit $? + else + /etc/init.d/lams2 start || exit $? + fi +fi +# End automatically added section Index: debian_installer/lams2/debian/lams2.postrm.debhelper =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/debian/lams2.postrm.debhelper,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/debian/lams2.postrm.debhelper 4 Jul 2008 08:43:43 -0000 1.1 @@ -0,0 +1,11 @@ +# Automatically added by dh_installdebconf +if [ "$1" = purge ] && [ -e /usr/share/debconf/confmodule ]; then + . /usr/share/debconf/confmodule + db_purge +fi +# End automatically added section +# Automatically added by dh_installinit +if [ "$1" = "purge" ] ; then + update-rc.d lams2 remove >/dev/null || exit $? +fi +# End automatically added section Index: debian_installer/lams2/debian/lams2.prerm.debhelper =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/debian/lams2.prerm.debhelper,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/debian/lams2.prerm.debhelper 4 Jul 2008 08:43:43 -0000 1.1 @@ -0,0 +1,9 @@ +# Automatically added by dh_installinit +if [ -x "/etc/init.d/lams2" ]; then + if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then + invoke-rc.d lams2 stop || exit $? + else + /etc/init.d/lams2 stop || exit $? + fi +fi +# End automatically added section Index: debian_installer/lams2/debian/lams2.substvars =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/debian/lams2.substvars,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/debian/lams2.substvars 4 Jul 2008 08:43:43 -0000 1.1 @@ -0,0 +1 @@ +misc:Depends=debconf (>= 0.5) | debconf-2.0 Index: debian_installer/lams2/debian/postinst =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/debian/postinst,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/debian/postinst 4 Jul 2008 08:43:43 -0000 1.1 @@ -0,0 +1,245 @@ +#!/bin/sh +# postinst script for lams2 +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `configure' +# * `abort-upgrade' +# * `abort-remove' `in-favour' +# +# * `abort-remove' +# * `abort-deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + configure) + . /usr/share/debconf/confmodule + + db_get lams2/db_root_pass || true + db_root_pass="$RET" + + #db_get lams2/db_name || true + #db_name="$RET" + db_name="lams" + + #db_get lams2/db_user || true + #db_user="$RET" + db_user="lams" + + #db_get lams2/db_pass || true + #db_pass="$RET" + db_pass="lamsdbpasswd" + + db_get lams2/server_host || true + server_host="$RET" + + db_get lams2/server_port || true + server_port="$RET" + + db_get lams2/sysadmin_user || true + sysadmin_user="$RET" + + db_get lams2/sysadmin_pass_confirm || true + sysadmin_pass="$RET" + + db_stop || true + + # Customise log4j.xml for lams + cd /usr/share/jboss-4.0.2/server/default/conf/ + sed -i -e "s/@application@/lams/" log4j.xml + + # Configure database access in mysql-ds.xml + cd /usr/share/jboss-4.0.2/server/default/deploy/ + sed -i -e "s/\(\).*\(<\/connection-url>\)/\1jdbc:mysql:\/\/localhost:3306\/$db_name\2/" mysql-ds.xml + sed -i -e "s/\(\).*\(<\/user-name>\)/\1$db_user\2/" mysql-ds.xml + sed -i -e "s/\(\).*\(<\/password>\)/\1$db_pass\2/" mysql-ds.xml + + # Configure port in server.xml + cd /usr/share/jboss-4.0.2/server/default/deploy/jbossweb-tomcat55.sar/ + sed -i -e "s/port=\"8080\"/port=\"$server_port\"/" server.xml + + case "$2" in + 2.1rc1*) + # Update 2.1rc1 database to 2.1 + if [ "$db_root_pass" != "" ] ; then + mysql $db_name < /usr/share/lams2/2.1rc1to2.1.sql -u root -p$db_root_pass || true + else + mysql $db_name < /usr/share/lams2/2.1rc1to2.1.sql -u root || true + fi + + # Add Tasklist tool, new in 2.1 + cd /usr/share/lams2/lams_tool_task/ + sed -i -e "s/\(\).*\(\?.*\)\(<\/dbDriverUrl>\)/\1jdbc:mysql:\/\/localhost:3306\/$db_name\2/" deploy.xml + sed -i -e "s/\(\).*\(<\/dbUsername>\)/\1$db_user\2/" deploy.xml + sed -i -e "s/\(\).*\(<\/dbPassword>\)/\1$db_pass\2/" deploy.xml + ./deploy.sh > /dev/null || true + ;; + + *) + # Assemble a ServerURL + server_url="http://$server_host:$server_port/lams/" + + if [ "$db_root_pass" != "" ] ; then + # Check if db exists + if [ ! -d /var/lib/mysql/lams/ ] ; then + mysql -e "create database $db_name default charset utf8;" \ + -u root -p$db_root_pass || true + fi + mysql -e "grant all privileges on $db_name.* to $db_user@localhost identified by '$db_pass';" \ + -u root -p$db_root_pass || true + mysql -e "revoke process,super on *.* from $db_user@localhost;" -u root -p$db_root_pass || true + mysql $db_name < /usr/share/lams2/lams.sql -u root -p$db_root_pass || true + # Configure ServerURL and admin username/password + mysql $db_name -e "update lams_configuration \ + set config_value='$server_url' where config_key='ServerURL'" \ + -u root -p$db_root_pass || true + mysql $db_name -e "update lams_configuration \ + set config_value='/usr/share/jboss-4.0.2/server/default/deploy/lams.ear/' \ + where config_key='EARDir'" \ + -u root -p$db_root_pass || true + mysql $db_name -e "update lams_user \ + set login='$sysadmin_user' \ + where user_id=1" \ + -u root -p$db_root_pass || true + mysql $db_name -e "update lams_user \ + set password=sha1('$sysadmin_pass') \ + where user_id=1" \ + -u root -p$db_root_pass || true + mysql $db_name -e "update lams_configuration \ + set config_value='/var/lib/lams/repository' \ + where config_key='ContentRepositoryPath'" \ + -u root -p$db_root_pass || true + mysql $db_name -e "update lams_configuration \ + set config_value='/var/lib/lams/dump' \ + where config_key='DumpDir'" \ + -u root -p$db_root_pass || true + mysql $db_name -e "update lams_configuration \ + set config_value='/var/lib/lams/temp' \ + where config_key='TempDir'" \ + -u root -p$db_root_pass || true + else + if [ ! -d /var/lib/mysql/lams/ ] ; then + mysql -e "create database $db_name default charset utf8;" -u root || true + fi + mysql -e "grant all privileges on $db_name.* to $db_user@localhost identified by '$db_pass';" \ + -u root || true + mysql -e "revoke process,super on *.* from $db_user@localhost;" -u root || true + mysql $db_name < /usr/share/lams2/lams.sql -u root || true + # Configure ServerURL and admin username/password + mysql $db_name -e "update lams_configuration \ + set config_value='$server_url' \ + where config_key='ServerURL'" \ + -u root || true + mysql $db_name -e "update lams_configuration \ + set config_value='/usr/share/jboss-4.0.2/server/default/deploy/lams.ear/' \ + where config_key='EARDir'" \ + -u root || true + mysql $db_name -e "update lams_user \ + set login='$sysadmin_user' \ + where user_id=1" \ + -u root || true + mysql $db_name -e "update lams_user \ + set password=sha1('$sysadmin_pass') \ + where user_id=1" \ + -u root || true + mysql $db_name -e "update lams_configuration \ + set config_value='/var/lib/lams/repository' \ + where config_key='ContentRepositoryPath'" \ + -u root || true + mysql $db_name -e "update lams_configuration \ + set config_value='/var/lib/lams/dump' \ + where config_key='DumpDir'" \ + -u root || true + mysql $db_name -e "update lams_configuration \ + set config_value='/var/lib/lams/temp' \ + where config_key='TempDir'" \ + -u root || true + fi + + # Copy caching jars + cd /usr/share/jboss-4.0.2/server/ + cp all/lib/jgroups.jar default/lib/ + cp all/lib/jboss-cache.jar default/lib/ + + # Place lams-www.war (uploaded data) in /var/lib + cd /usr/share/jboss-4.0.2/server/default/deploy/lams.ear/ + if [ ! -d /var/lib/lams/ ] ; then + mkdir -p /var/lib/lams/ + fi + if [ ! -d /var/lib/lams/lams-www.war ]; then + mv lams-www.war /var/lib/lams/ + fi + # If lams-www.war already exists, copy to /var and remove it before linking it + if [ -d /usr/share/jboss-4.0.2/server/default/deploy/lams.ear/lams-www.war ] ; then + cp -pr lams-www.war /var/lib/lams/ + rm -rf lams-www.war + fi + ln -s /var/lib/lams/lams-www.war 2>/dev/null || true + + # Add user and group + adduser --system --group --no-create-home lams 2> /dev/null + chown -L -R lams:lams /usr/share/jboss-4.0.2/ + chown -R lams:lams /var/lib/lams/ + + # Restart MySQL so tx-isolation=READ-COMMITTED takes effect + if [ -x "/etc/init.d/mysql" ]; then + if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then + invoke-rc.d mysql restart || exit $? + else + /etc/init.d/mysql restart || exit $? + fi + fi + ;; + esac + + # Set learning library dictionary folder names right + if [ "$db_root_pass" != "" ] ; then + forum_scribe_id=`mysql $db_name -e'select learning_library_id from lams_learning_library where title="Forum and Scribe"' \ + -u root -p$db_root_pass | tail -1` + chat_scribe_id=`mysql $db_name -e'select learning_library_id from lams_learning_library where title="Chat and Scribe"' \ + -u root -p$db_root_pass | tail -1` + resources_forum_id=`mysql $db_name -e'select learning_library_id from lams_learning_library where title="Resources and Forum"' \ + -u root -p$db_root_pass | tail -1` + else + forum_scribe_id=`mysql $db_name -e'select learning_library_id from lams_learning_library where title="Forum and Scribe"' \ + -u root | tail -1` + chat_scribe_id=`mysql $db_name -e'select learning_library_id from lams_learning_library where title="Chat and Scribe"' \ + -u root | tail -1` + resources_forum_id=`mysql $db_name -e'select learning_library_id from lams_learning_library where title="Resources and Forum"' \ + -u root | tail -1` + fi + cd /usr/share/jboss-4.0.2/server/default/deploy/lams.ear/lams-dictionary.jar/org/lamsfoundation/lams/library/ + mv forumscribe llid$forum_scribe_id; + mv chatscribe llid$chat_scribe_id; + mv resourcesforum llid$resources_forum_id; + + # Remove temp files + rm -f /usr/share/lams2/2.1rc1to2.1.sql + rm -f /usr/share/lams2/lams.sql + rm -rf /usr/share/lams2/lams_tool_task_list + ;; + + abort-upgrade|abort-remove|abort-deconfigure) + ;; + + *) + echo "postinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + Index: debian_installer/lams2/debian/postrm =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/debian/postrm,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/debian/postrm 4 Jul 2008 08:43:43 -0000 1.1 @@ -0,0 +1,73 @@ +#!/bin/sh +# postrm script for lams2 +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `remove' +# * `purge' +# * `upgrade' +# * `failed-upgrade' +# * `abort-install' +# * `abort-install' +# * `abort-upgrade' +# * `disappear' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + +. /usr/share/debconf/confmodule +db_get lams2/db_root_pass || true +db_root_pass="$RET" + +case "$1" in + remove) + # Remove the caching jars + rm -f /usr/share/jboss-4.0.2/server/default/lib/jgroups.jar + rm -f /usr/share/jboss-4.0.2/server/default/lib/jboss-cache.jar + + # Remove user and group + deluser lams 2> /dev/null || true + + # Remove the database user + if [ "$db_root_pass" != "" ] ; then + mysql -e "drop user lams@localhost" -u root -p$db_root_pass || true + else + mysql -e "drop user lams@localhost" -u root || true + fi + ;; + + purge) + # Remove contents of lams.ear + rm -rf /usr/share/jboss-4.0.2/server/default/deploy/lams.ear/ + + # Remove variable data + rm -rf /var/lib/lams/ + + # Drop the database + if [ "$db_root_pass" != "" ] ; then + mysql -e "drop database if exists lams" -u root -p$db_root_pass || true + else + mysql -e "drop database if exists lams" -u root || true + fi + ;; + + upgrade|failed-upgrade|abort-install|abort-upgrade|disappear) + ;; + + *) + echo "postrm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + Index: debian_installer/lams2/debian/preinst =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/debian/preinst,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/debian/preinst 4 Jul 2008 08:43:43 -0000 1.1 @@ -0,0 +1,44 @@ +#!/bin/sh +# preinst script for lams2 +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `install' +# * `install' +# * `upgrade' +# * `abort-upgrade' +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + install) + ;; + + upgrade) + # Backup selected files + #cd /usr/share/jboss-4.0.2/server/default/deploy/lams.ear/lams-www.war/ + #cp -p news.html news.html.bak + #cd /usr/share/jboss-4.0.2/server/default/deploy/lams.ear/META-INF/ + #cp -p application.xml application.xml.bak + ;; + abort-upgrade) + ;; + + *) + echo "preinst called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + Index: debian_installer/lams2/debian/prerm =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/debian/prerm,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/debian/prerm 4 Jul 2008 08:43:43 -0000 1.1 @@ -0,0 +1,40 @@ +#!/bin/sh +# prerm script for lams2 +# +# see: dh_installdeb(1) + +set -e + +# summary of how this script can be called: +# * `remove' +# * `upgrade' +# * `failed-upgrade' +# * `remove' `in-favour' +# * `deconfigure' `in-favour' +# `removing' +# +# for details, see http://www.debian.org/doc/debian-policy/ or +# the debian-policy package + + +case "$1" in + remove|upgrade|deconfigure) + ;; + + failed-upgrade) + ;; + + *) + echo "prerm called with unknown argument \`$1'" >&2 + exit 1 + ;; +esac + +# dh_installdeb will replace this with shell code automatically +# generated by other debhelper scripts. + +#DEBHELPER# + +exit 0 + + Index: debian_installer/lams2/debian/rules =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/debian/rules,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/debian/rules 4 Jul 2008 08:43:43 -0000 1.1 @@ -0,0 +1,32 @@ +#!/usr/bin/make -f + +build: + dh_testdir + +clean: + dh_testdir + dh_testroot + dh_clean + +binary-indep: build + +binary-arch: build + dh_testdir + dh_testroot + dh_installchangelogs + dh_installdocs + dh_install + dh_installdebconf + dh_installinit + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary Index: debian_installer/lams2/debian/templates =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/debian/templates,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/debian/templates 4 Jul 2008 08:43:43 -0000 1.1 @@ -0,0 +1,61 @@ +Template: lams2/db_root_pass +Type: password +Description: Enter your MySQL root password: + Your MySQL root password will be used to create a database and MySQL user for + LAMS. + +Template: lams2/db_name +Type: string +Default: lams +Description: Enter a name for LAMS' database: + Select a name for LAMS' MySQL database. + +Template: lams2/db_user +Type: string +Default: lams +Description: Enter a name for LAMS' MySQL user: + Select a name for LAMS' MySQL user. + +Template: lams2/db_pass +Type: password +Description: Enter a password for LAMS' MySQL user: + +Template: lams2/server_host +Type: string +Default: localhost +Description: Enter the domain name or IP address for your LAMS server: + This is used to construct links and callbacks used by LAMS - it is mandatory + for LAMS to be fully functional. If possible, enter the value that + users will put in their browsers when accessing LAMS (i.e. not an + internal-only address). + +Template: lams2/server_port +Type: string +Default: 8080 +Description: Enter the port for your LAMS server: + This is the port that the JBoss server used by LAMS will listen on. It shouldn't + be used by any other server on your system. + +Template: lams2/sysadmin_user +Type: string +Default: sysadmin +Description: Enter the username for your admin user: + This user will have the Sys Admin role and have full control. + +Template: lams2/sysadmin_pass +Type: password +Default: sysadmin +Description: Enter the password for your admin user: + The password for your admin user. Must not be blank. + +Template: lams2/sysadmin_pass_confirm +Type: password +Default: sysadmin +Description: Confirm the password for your admin user: + The password for your admin user. Must not be blank. + +Template: lams2/sysadmin_pass_again +Type: password +Default: sysadmin +Description: Re-enter the password for your admin user: + The passwords don't match. Index: debian_installer/lams2/lams_tool_task/deploy.bat =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams_tool_task/Attic/deploy.bat,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/lams_tool_task/deploy.bat 4 Jul 2008 08:43:45 -0000 1.1 @@ -0,0 +1,2 @@ +java -classpath lib/lams-tool-deploy.jar;lib/commons-configuration-1.1.jar;lib/commons-lang-2.0.jar;lib/commons-collections.jar;lib/commons-logging.jar;lib/commons-io-1.0.jar;lib/commons-dbutils-1.0.jar;lib/mysql-connector-java-3.1.12-bin.jar;lib/xstream-1.1.2.ja +r org.lamsfoundation.lams.tool.deploy.Deploy ./deploy.properties True Index: debian_installer/lams2/lams_tool_task/deploy.sh =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams_tool_task/Attic/deploy.sh,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/lams_tool_task/deploy.sh 4 Jul 2008 08:43:45 -0000 1.1 @@ -0,0 +1,2 @@ +#!/bin/sh +java -classpath lib/lams-tool-deploy.jar:lib/commons-configuration-1.1.jar:lib/commons-lang-2.0.jar:lib/commons-collections.jar:lib/commons-logging.jar:lib/commons-io-1.0.jar:lib/commons-dbutils-1.0.jar:lib/mysql-connector-java-3.1.12-bin.jar:lib/xstream-1.1.2.jar org.lamsfoundation.lams.tool.deploy.Deploy ./deploy.xml Index: debian_installer/lams2/lams_tool_task/deploy.xml =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams_tool_task/Attic/deploy.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/lams_tool_task/deploy.xml 4 Jul 2008 08:43:45 -0000 1.1 @@ -0,0 +1,36 @@ + + latask10 + lams-tool-latask10.war + /lams/tool/latask10 + /usr/share/lams2/lams_tool_task/sql/updatescripts/updateTo20080211.sql + /usr/share/lams2/lams_tool_task/sql/tool_insert.sql + /usr/share/lams2/lams_tool_task/sql/library_insert.sql + false + /usr/share/lams2/lams_tool_task/sql/activity_insert.sql + /usr/share/lams2/lams_tool_task/sql/create_lams_tool_taskList.sql + /usr/share/lams2/lams_tool_task/sql/drop_lams_tool_taskList.sql + /org/lamsfoundation/lams/tool/taskList/taskListApplicationContext.xml + lams-tool-latask10.jar + 2.0 + + /usr/share/lams2/lams_tool_task/lams-tool-latask10.war + /usr/share/lams2/lams_tool_task/lams-tool-latask10.jar + + + /usr/share/lams2/lams_tool_task/language/ApplicationResources.properties + /usr/share/lams2/lams_tool_task/language/ApplicationResources_el_GR.properties + /usr/share/lams2/lams_tool_task/language/ApplicationResources_en_AU.properties + /usr/share/lams2/lams_tool_task/language/ApplicationResources_es_ES.properties + /usr/share/lams2/lams_tool_task/language/ApplicationResources_fr_FR.properties + /usr/share/lams2/lams_tool_task/language/ApplicationResources_it_IT.properties + /usr/share/lams2/lams_tool_task/language/ApplicationResources_mi_NZ.properties + /usr/share/lams2/lams_tool_task/language/ApplicationResources_no_NO.properties + + 20080211 + com.mysql.jdbc.Driver + jdbc:mysql://localhost/lams_hamburger?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&autoReconnect=true&useUnicode=true + lams_pogo + lamsdbpasswdstick + /usr/share/jboss-4.0.2/server/default/deploy/lams.ear + org.lamsfoundation.lams.tool.taskList + Index: debian_installer/lams2/lams_tool_task/lams-tool-latask10.jar =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams_tool_task/Attic/lams-tool-latask10.jar,v diff -u Binary files differ Index: debian_installer/lams2/lams_tool_task/lams-tool-latask10.war =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams_tool_task/Attic/lams-tool-latask10.war,v diff -u Binary files differ Index: debian_installer/lams2/lams_tool_task/language/ApplicationResources.properties =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams_tool_task/language/Attic/ApplicationResources.properties,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/lams_tool_task/language/ApplicationResources.properties 4 Jul 2008 08:43:44 -0000 1.1 @@ -0,0 +1,161 @@ +appName = takslist +#language code: en +#locale code: AU + + # CVS ID: $Id: ApplicationResources.properties,v 1.1 2008/07/04 08:43:44 jliew Exp $ Exported from the LAMS Community by Ernie Ghiglione on Fri Jun 06 09:15:33 BST 2008 + +#=================== labels for Task List =================# + +activity.title =Task List +activity.description =Task List. +activity.helptext =Going through list of tasks. +tool.display.name =Task List Tool +tool.description =Tool for displaying task lisk. +appName =Task List +errorPage.title =Error page +errorPage.heading =Some error occurs when handling your request +label.authoring.heading =Task List +label.authoring.title =Task List Authoring +label.authoring.heading.basic =Basic +label.authoring.heading.basic.desc =Basic input information for task list +label.authoring.heading.instructions =Instructions +label.authoring.heading.instructions.desc =Please input conditions for task list +label.authoring.heading.conditions =Conditions +label.authoring.heading.advance =Advanced +label.authoring.heading.advance.desc =Please input advance options for task list +label.authoring.basic.title =Title +label.authoring.basic.task.isCommentsFilesAllowed =Allow learners to add comments/files for this task +label.monitoring.tasksummary.comments.allowed =Learners are allowed to add comments +label.monitoring.tasksummary.files.allowed =Learners are allowed to add files +label.authoring.basic.description =Description +label.authoring.basic.add.task =Add Task +label.authoring.basic.task.isRequired =Required task +label.authoring.basic.task.isCommentsAllowed =Allow Learners to add comment(s) +label.authoring.basic.task.isCommentsRequired =Comment required to complete task +label.authoring.basic.task.isFilesAllowed =Allow Learners to add file(s) +label.authoring.basic.task.isFilesRequired =File required to complete task +label.authoring.basic.task.show.only.to.monitoring =Show only to monitoring +label.authoring.basic.task.show.to.all.learners =Show to all learners +label.authoring.basic.task.isChildTask =Don't display until parent task has been completed +label.authoring.basic.task.parent.task.name =Parent: +label.authoring.basic.task.list.title =Task List +label.authoring.basic.resource.task =Task +label.authoring.basic.resource.edit =Edit +label.authoring.basic.resource.delete =Delete +label.authoring.basic.resource.title.input =Title +label.authoring.basic.resource.description.input =Description +label.authoring.online.instruction =Online Instructions: +label.authoring.offline.instruction =Offline Instructions: +label.authoring.online.file =Online Instructions File: +label.authoring.offline.file =Offline Instructions File: +label.authoring.choosefile.button =Choose file +label.authoring.instructions.upload.button =Upload +label.authoring.instructions.delete.button =Delete +label.authoring.advance.allow.contribute.tasks =Allow Learners to contribute tasks +label.authoring.advance.lock.on.finished =Lock when finished +label.authoring.advance.monitor.verification.required =Monitor needs to verify these tasks before letting Learners to complete activity +label.authoring.advanced.reflectOnActivity =Add Notebook at end of Task List with the following instructions: +label.authoring.advance.run.content.sequentialOrder =Tasks have to be completed in sequential order +label.authoring.advance.minimum.number.tasks =Minimum number of tasks to complete +label.authoring.cancel.button =Cancel +label.authoring.edit.conditions.button =Edit Conditions +label.authoring.save.button =Save +label.authoring.up =Move Up +label.authoring.down =Move down +label.authoring.conditions.add.condition =Add Condition +label.authoring.conditions.list.title =Conditions +label.authoring.conditions.order =Order +label.authoring.conditions.empty.condition.list =There are no conditions +authoring.exception =There is a problem in task list authoring page, the reason is {0} +authoring.msg.cancel.save =Do you want to close this window without saving? +authoring.msg.no.tasks.save =There must be at least one task to be saved. +error.resource.item.title.blank =Title can not be blank. +error.condition.name.blank =Condition name can not be blank. +error.condition.name.contains.wrong.symbol =Condition name can not contain # symbol. Please choose the name without this symbol. +error.condition.duplicated.name =Duplicated name. Please choose unique one. +error.upload.failed =Upload file failed: {0} +error.msg.upload.file.not.found =Could not find upload file {0}. +error.msg.file.not.found =File not found exception occurs when uploading file. +error.msg.io.exception =IOException occurs when uploading file. +error.msg.invaid.param.upload =InvalidParameterException occured while trying to upload File. +error.msg.repository =Repository occurs exception while trying to upload file. +error.msg.default.content.not.find =Could not retrieve default content record for this tool. +warning.msg.authoring.deletion.affect.conditions =Deletion of this item may affect existing conditions. Do you want to proceed? +label.learning.title =Task List Learner +label.learning.tasks.to.do =Tasks to do +label.learning.new.task.details =New task details: +label.learning.check.for.new =Check for new +label.learning.comment.or.instruction =Comment/Instruction +label.learning.required.tasks =required tasks +label.learning.wait.for.monitor.verification =You cannot finish this activity until it is reviewed by your teacher. Click "Check for new" to see if the review is complete +label.learning.responses.locked =Note: After you click on "Next Activity" and you come back to this Task List, you won't be able to change the status of any tasks. +label.learning.responses.locked.reminder =The instructor has set this activity to not allow changes after you have finished it. You are able to see all Tasks, but not allowed to change them anymore. +label.learning.info.add.comment.required =You are required to add a comment to complete this task +label.learning.info.upload.file.required =You are required to upload a file to complete this task +label.learning.info.sequential.order =Tasks need to be completed in sequential order +lable.learning.minimum.view.number =You need to complete at least {0} task(s). You have completed {1} task(s). +label.preview.upload.file =Upload file +label.preview.upload.button =Upload +label.preview.filelist =File list +label.preview.comments =Comments +label.preview.add.comment =Add comment +label.preview.post =Post +lable.preview.by =By +monitoring.tab.summary =Summary +monitoring.tab.statistics =Statistics +monitoring.tab.instructions =Instruction +monitoring.tab.edit.activity =Edit Activity +monitoring.label.title =Title +monitoring.label.suggest =Suggested By +monitoring.label.number.learners =Number of Learners +monitoring.label.user.loginname =Login name +monitoring.label.user.name =Name +monitoring.label.group =Group +label.monitoring.heading.access =Learners list +label.monitoring.edit.activity.edit =Edit +label.monitoring.summary.overall.summary =Overall Summary +label.monitoring.summary.confirm.completion =Confirm Completion +label.monitoring.summary.title.reflection =Notebook Entry +label.monitoring.summary.reflection =Notebook Entry +label.monitoring.tasksummary.task.summary =Task Summary +label.monitoring.tasksummary.task.required.to.finish =this task is required to finish this activity +label.monitoring.tasksummary.comments.files.enabled =Comments/files enabled +label.monitoring.tasksummary.completed =Completed +label.monitoring.tasksummary.time.and.date =Time and Date +label.monitoring.tasksummary.comments.files =Comments/Files +label.monitoring.tasksummary.comments.required =Comments are required to complete the task +label.monitoring.tasksummary.files.required =Files are required to complete the task +label.monitoring.instructions.attachments =Attachments +message.monitoring.edit.activity.not.editable =This Activity is no longer editable +export.title =Export portfolio of Task List +label.export.reflection =Notebook Entries +label.download =Download +label.view =View +label.edit =Edit +label.completed =Completed +button.upload =Upload +button.add =Add +message.monitoring.summary.no.session =No Session Available +label.cancel =Cancel +define.later.message =Please wait for the teacher to complete the contents of this activity. +run.offline.message =This activity is not being done on the computer. Please see your instructor for details. +button.try.again =Try again +message.no.reflection.available =No notebook available +monitoring.label.access.time =Access time +label.continue =Continue +page.title.monitoring.view.reflection =View Notebook Entry +button.close =Close +message.alertContentEdit =Warning: One of more students have accessed this activity. Changing this content will result in students getting different information. +label.finished =Next Activity +label.finish =Next Activity +label.default.user.name =Instructor +output.desc.learner.number.of.tasks.completed =Number of Tasks Completed +error.condition.no.tasklistitems.selected =There are no tasks selected. Please select at least one. +label.monitoring.tasksummary.user =Learner +output.desc.tool.condition =Learner Entered Conditions +label.authoring.conditions.condition.name =Condition Name +label.monitoring.summary.user =Learner +label.monitoring.tasksummary.parent.activity =Parent task + + +#======= End labels: Exported 150 labels for en AU ===== Index: debian_installer/lams2/lams_tool_task/language/ApplicationResources_el_GR.properties =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams_tool_task/language/Attic/ApplicationResources_el_GR.properties,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/lams_tool_task/language/ApplicationResources_el_GR.properties 4 Jul 2008 08:43:44 -0000 1.1 @@ -0,0 +1,161 @@ +appName = takslist +#language code: el +#locale code: GR + + # CVS ID: $Id: ApplicationResources_el_GR.properties,v 1.1 2008/07/04 08:43:44 jliew Exp $ Exported from the LAMS Community by Ernie Ghiglione on Thu Jun 19 00:24:08 BST 2008 + +#=================== labels for Task List =================# + +activity.description =\u039b\u03af\u03c3\u03c4\u03b1 \u0395\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd +label.authoring.conditions.add.condition =\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03a3\u03c5\u03bd\u03b8\u03ae\u03ba\u03b7\u03c2 +label.authoring.conditions.list.title =\u03a3\u03c5\u03bd\u03b8\u03ae\u03ba\u03b5\u03c2 +label.authoring.conditions.order =\u03a3\u03b5\u03b9\u03c1\u03ac +label.authoring.conditions.empty.condition.list =\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03c5\u03bd \u03c3\u03c5\u03bd\u03b8\u03ae\u03ba\u03b5\u03c2 +label.preview.upload.file =\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u0391\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 +label.preview.upload.button =\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae +label.preview.filelist =\u039a\u03b1\u03c4\u03ac\u03bb\u03bf\u03b3\u03bf\u03c2 \u0391\u03c1\u03c7\u03b5\u03af\u03c9\u03bd +label.preview.post =\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae +label.authoring.heading =\u039b\u03af\u03c3\u03c4\u03b1 \u0395\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd +label.authoring.heading.basic.desc =\u0392\u03b1\u03c3\u03b9\u03ba\u03ac \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b5\u03b9\u03c3\u03cc\u03b4\u03bf\u03c5 \u03b3\u03b9\u03b1 \u03c4\u03bf\u03bd \u03ba\u03b1\u03c4\u03ac\u03bb\u03bf\u03b3\u03bf \u03b5\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd +appName =\u039b\u03af\u03c3\u03c4\u03b1 \u0395\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd +activity.title =\u039b\u03af\u03c3\u03c4\u03b1 \u0395\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd +label.authoring.basic.task.list.title =\u039b\u03af\u03c3\u03c4\u03b1 \u0395\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd +label.authoring.heading.instructions.desc =\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce, \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03c3\u03c5\u03bd\u03b8\u03ae\u03ba\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf\u03bd \u03ba\u03b1\u03c4\u03ac\u03bb\u03bf\u03b3\u03bf \u03b5\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd +label.authoring.heading.advance.desc =\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce, \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03c0\u03c1\u03bf\u03c7\u03c9\u03c1\u03b7\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf\u03bd \u03ba\u03b1\u03c4\u03ac\u03bb\u03bf\u03b3\u03bf \u03b5\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd +label.authoring.advance.minimum.number.tasks =\u0395\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf\u03c2 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd \u03c0\u03c1\u03bf\u03c2 \u03bf\u03bb\u03bf\u03ba\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7 +authoring.exception =\u03a5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03ad\u03bd\u03b1 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03c3\u03c4\u03bf\u03bd \u03ba\u03b1\u03c4\u03ac\u03bb\u03bf\u03b3\u03bf \u03b5\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd \u03c3\u03c4\u03b7\u03bd \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 \u03c3\u03c5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2, \u03bf \u03bb\u03cc\u03b3\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 {0} +label.learning.responses.locked =\u0391\u03c6\u03bf\u03cd \u03c0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 \u03c3\u03c4\u03bf "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u0394\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1" \u03ba\u03b1\u03b9 \u03b5\u03c0\u03b9\u03c3\u03c4\u03c1\u03ad\u03c8\u03c4\u03b5 \u03c3\u03c4\u03bf\u03bd \u039a\u03b1\u03c4\u03ac\u03bb\u03bf\u03b3\u03bf \u0395\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd, \u03b4\u03b5\u03bd \u03b8\u03b1 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03bb\u03bb\u03ac\u03be\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd \u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b5\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd. +output.desc.learner.number.of.tasks.completed =\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd \u03c0\u03bf\u03c5 \u03ad\u03c7\u03bf\u03c5\u03bd \u039f\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03c9\u03b8\u03b5\u03af +label.authoring.title =\u03a3\u03c5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u039b\u03af\u03c3\u03c4\u03b1\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd +label.authoring.advanced.reflectOnActivity =\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03b1\u03c1\u03af\u03bf\u03c5 \u03c3\u03c4\u03bf \u03c4\u03ad\u03bb\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03ba\u03b1\u03c4\u03b1\u03bb\u03cc\u03b3\u03bf\u03c5 \u03b5\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd \u03bc\u03b5 \u03c4\u03b9\u03c2 \u03b1\u03ba\u03cc\u03bb\u03bf\u03c5\u03b8\u03b5\u03c2 \u03bf\u03b4\u03b7\u03b3\u03af\u03b5\u03c2: +export.title =\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 \u03b5\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd \u03c4\u03b7\u03c2 \u03bb\u03af\u03c3\u03c4\u03b1\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd. +tool.display.name =\u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf \u039b\u03af\u03c3\u03c4\u03b1 \u0395\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd +monitoring.tab.summary =\u03a0\u03b5\u03c1\u03af\u03bb\u03b7\u03c8\u03b7 +message.monitoring.summary.no.session =\u039a\u03b1\u03bc\u03af\u03b1 \u03c3\u03cd\u03bd\u03bf\u03b4\u03bf\u03c2 \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7 +monitoring.label.suggest =\u03a0\u03c1\u03bf\u03c4\u03b5\u03af\u03bd\u03b5\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc +monitoring.label.user.loginname =\u038c\u03bd\u03bf\u03bc\u03b1 \u0395\u03b9\u03c3\u03cc\u03b4\u03bf\u03c5 +tool.description =\u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03b5\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u039b\u03af\u03c3\u03c4\u03b1\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd +label.monitoring.heading.access =\u039b\u03af\u03c3\u03c4\u03b1 \u0395\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03c9\u03bd +warning.msg.authoring.deletion.affect.conditions =\u0397 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b1\u03c5\u03c4\u03bf\u03cd \u03c4\u03bf\u03c5 \u03b1\u03bd\u03c4\u03b9\u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b5\u03c0\u03b7\u03c1\u03b5\u03ac\u03c3\u03b5\u03b9 \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03c5\u03c3\u03b5\u03c2 \u03c3\u03c5\u03bd\u03b8\u03ae\u03ba\u03b5\u03c2. \u0398\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03c3\u03c5\u03bd\u03b5\u03c7\u03af\u03c3\u03b5\u03c4\u03b5; +errorPage.title =\u03a3\u03b5\u03bb\u03af\u03b4\u03b1 \u039b\u03ac\u03b8\u03bf\u03c5\u03c2 +label.completed =\u039f\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5 +activity.helptext = +label.authoring.cancel.button =\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 +label.authoring.basic.resource.task =\u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 +label.authoring.basic.resource.edit =\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 +label.authoring.basic.resource.delete =\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae +label.authoring.basic.resource.title.input =\u03a4\u03af\u03c4\u03bb\u03bf\u03c2 +label.authoring.basic.resource.description.input =\u03a0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae +label.authoring.choosefile.button =\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf +label.authoring.instructions.delete.button =\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae +label.learning.info.sequential.order =\u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2 \u03c0\u03bf\u03c5 \u03c7\u03c1\u03b5\u03b9\u03ac\u03b6\u03b5\u03c4\u03b1 \u03bd\u03b1 \u03bf\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03c9\u03b8\u03bf\u03cd\u03bd \u03bc\u03b5 \u03b4\u03b9\u03b1\u03b4\u03bf\u03c7\u03b9\u03ba\u03ae \u03c3\u03b5\u03b9\u03c1\u03ac +label.learning.check.for.new =\u0388\u03bb\u03b5\u03b3\u03c7\u03bf\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03ad\u03b1 +label.learning.comment.or.instruction =\u03a3\u03c7\u03cc\u03bb\u03b9\u03bf/\u039f\u03b4\u03b7\u03b3\u03af\u03b1 +label.download =\u039b\u03ae\u03c8\u03b7 +label.view =\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae +button.add =\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 +label.finished =\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u0394\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 +button.close =\u039a\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf +label.finish =\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u0394\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 +label.continue =\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf +button.try.again =\u03a0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ae\u03c3\u03c4\u03b5 \u03c0\u03ac\u03bb\u03b9 +label.cancel =\u0386\u03ba\u03c5\u03c1\u03bf +monitoring.label.access.time =\u038f\u03c1\u03b1 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 +label.default.user.name =\u0394\u03b9\u03b4\u03ac\u03c3\u03ba\u03c9\u03bd +monitoring.label.group =\u039f\u03bc\u03ac\u03b4\u03b1 +label.monitoring.edit.activity.edit =\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 +label.monitoring.summary.user =\u0395\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 +label.monitoring.tasksummary.user =\u0395\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 +label.edit =\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 +button.upload =\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae +label.authoring.heading.basic =\u0392\u03b1\u03c3\u03b9\u03ba\u03cc +label.authoring.heading.instructions =\u039f\u03b4\u03b7\u03b3\u03af\u03b5\u03c2 +label.authoring.heading.conditions =\u03a3\u03c5\u03bd\u03b8\u03ae\u03ba\u03b5\u03c2 +label.authoring.heading.advance =\u03a0\u03c1\u03bf\u03c7\u03c9\u03c1\u03b7\u03bc\u03ad\u03bd\u03bf +label.authoring.basic.title =\u03a4\u03af\u03c4\u03bb\u03bf\u03c2 +label.authoring.basic.description =\u03a0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae +label.authoring.instructions.upload.button =\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae +label.authoring.save.button =\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 +label.preview.add.comment =\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c3\u03c7\u03bf\u03bb\u03af\u03bf\u03c5 +monitoring.tab.edit.activity =\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u0394\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 +monitoring.label.title =\u03a4\u03af\u03c4\u03bb\u03bf\u03c2 +monitoring.label.user.name =\u038c\u03bd\u03bf\u03bc\u03b1 +label.monitoring.instructions.attachments =\u0395\u03c0\u03b9\u03c3\u03c5\u03bd\u03b1\u03c0\u03c4\u03cc\u03bc\u03b5\u03bd\u03b1 +label.authoring.advance.monitor.verification.required =\u039f \u0395\u03c0\u03b9\u03b2\u03bb\u03ad\u03c0\u03c9\u03bd \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c0\u03b9\u03c3\u03c4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9 \u03b1\u03c5\u03c4\u03ad\u03c2 \u03c4\u03b9\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2 \u03c0\u03c1\u03b9\u03bd \u03bd\u03b1 \u03b5\u03c0\u03b9\u03c4\u03c1\u03b1\u03c0\u03b5\u03af \u03c3\u03c4\u03bf\u03c5\u03c2 \u03bc\u03b1\u03b8\u03b7\u03c4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5\u03c2 \u03bd\u03b1 \u03bf\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03c3\u03bf\u03c5\u03bd \u03b1\u03c5\u03c4\u03ae\u03bd \u03c4\u03b7\u03bd \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 +errorPage.heading =\u03a0\u03c1\u03bf\u03ad\u03ba\u03c5\u03c8\u03b1\u03bd \u03ba\u03ac\u03c0\u03bf\u03b9\u03b1 \u03bb\u03ac\u03b8\u03b7 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 \u03b1\u03b9\u03c4\u03ae\u03bc\u03b1\u03c4\u03cc\u03c2 \u03c3\u03b1\u03c2 +label.authoring.online.instruction =\u039f\u03b4\u03b7\u03b3\u03af\u03b5\u03c2 \u03c3\u03b5 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 +label.authoring.offline.instruction =\u039f\u03b4\u03b7\u03b3\u03af\u03b5\u03c2 \u03b5\u03ba\u03c4\u03cc\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2 +label.authoring.online.file =\u0391\u03c1\u03c7\u03b5\u03af\u03bf \u039f\u03b4\u03b7\u03b3\u03b9\u03ce\u03bd \u03c3\u03b5 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 +label.authoring.offline.file =\u0391\u03c1\u03c7\u03b5\u03af\u03bf \u039f\u03b4\u03b7\u03b3\u03b9\u03ce\u03bd \u03b5\u03ba\u03c4\u03cc\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2 +label.authoring.basic.task.isRequired =\u03a5\u03c0\u03bf\u03c7\u03c1\u03b5\u03c9\u03c4\u03b9\u03ba\u03ae \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 +label.authoring.basic.task.isCommentsRequired =\u0391\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03c3\u03c7\u03cc\u03bb\u03b9\u03bf \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03bf\u03bb\u03bf\u03ba\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2 +label.authoring.basic.task.isFilesRequired =\u0391\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03bf\u03bb\u03bf\u03ba\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2 +label.authoring.basic.task.isCommentsFilesAllowed =\u0395\u03c0\u03ad\u03c4\u03c1\u03b5\u03c8\u03b5 \u03c3\u03c4\u03bf\u03c5\u03c2 \u03bc\u03b1\u03b8\u03b7\u03c4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5\u03c2 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03bf\u03c5\u03bd \u03c3\u03c7\u03cc\u03bb\u03b9\u03b1/\u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03b3\u03b9\u03b1 \u03b1\u03c5\u03c4\u03ae\u03bd \u03c4\u03b7\u03bd \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 +label.authoring.basic.task.show.only.to.monitoring =\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03bc\u03cc\u03bd\u03bf \u03c3\u03b5 monitoring +label.authoring.basic.task.isChildTask =\u0391\u03c0\u03cc\u03ba\u03c1\u03c5\u03c8\u03b7 \u03b5\u03c9\u03c2 \u03cc\u03c4\u03bf\u03c5 \u03b7 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03b3\u03bf\u03bd\u03ad\u03b1\u03c2 \u03ad\u03c7\u03b5\u03b9 \u03bf\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03c9\u03b8\u03b5\u03af +label.authoring.basic.task.parent.task.name =\u0393\u03bf\u03bd\u03ad\u03b1\u03c2: +label.authoring.advance.lock.on.finished =\u039a\u03bb\u03b5\u03af\u03b4\u03c9\u03bc\u03b1 \u03bc\u03b5\u03c4\u03ac \u03c4\u03b7\u03bd \u03bf\u03bb\u03bf\u03ba\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7 +error.msg.default.content.not.find =\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b1\u03bd\u03b1\u03ba\u03c4\u03b7\u03b8\u03b5\u03af \u03c4\u03bf \u03c0\u03c1\u03bf\u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03b3\u03b9\u03b1 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf. +label.learning.wait.for.monitor.verification =\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03c4\u03b5\u03bb\u03b5\u03b9\u03ce\u03c3\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7\u03bd \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 \u03bc\u03ad\u03c7\u03c1\u03b9 \u03bd\u03b1 \u03c4\u03b7 \u03b4\u03b9\u03bf\u03c1\u03b8\u03ce\u03c3\u03b5\u03b9 \u03bf \u03ba\u03b1\u03b8\u03b7\u03b3\u03b7\u03c4\u03ae\u03c2-\u03c3\u03c5\u03bc\u03b2\u03bf\u03c5\u03bb\u03cc\u03c2 \u03c3\u03b1\u03c2. \u039a\u03ac\u03bd\u03c4\u03b5 \u03ba\u03bb\u03b9\u03ba \u03c3\u03c4\u03bf \u00ab\u0388\u03bb\u03b5\u03b3\u03c7\u03bf\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03ad\u03b1\u00bb \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b4\u03b5\u03af\u03c4\u03b5 \u03b5\u03ac\u03bd \u03b7 \u03b4\u03b9\u03cc\u03c1\u03b8\u03c9\u03c3\u03b7 \u03ad\u03c7\u03b5\u03b9 \u03bf\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03c9\u03b8\u03b5\u03af. +label.authoring.advance.run.content.sequentialOrder =\u039f\u03b9 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03ad\u03c7\u03bf\u03c5\u03bd \u03bf\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03c9\u03b8\u03b5\u03af \u03c3\u03b5 \u03b1\u03ba\u03bf\u03bb\u03bf\u03c5\u03b8\u03b9\u03b1\u03ba\u03ae \u03c3\u03b5\u03b9\u03c1\u03ac +label.learning.responses.locked.reminder =\u039f \u03ba\u03b1\u03b8\u03b7\u03b3\u03b7\u03c4\u03ae\u03c2-\u03c3\u03cd\u03bc\u03b2\u03bf\u03c5\u03bb\u03bf\u03c2 \u03ad\u03c7\u03b5\u03b9 \u03bf\u03c1\u03af\u03c3\u03b5\u03b9 \u03bd\u03b1 \u03bc\u03b7\u03bd \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03b1\u03c6\u03cc\u03c4\u03bf\u03c5 \u03c4\u03b7\u03bd \u03ad\u03c7\u03b5\u03c4\u03b5 \u03c4\u03b5\u03bb\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9. \u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03b5 \u03b8\u03ad\u03c3\u03b7 \u03bd\u03b1 \u03b2\u03bb\u03ad\u03c0\u03b5\u03c4\u03b5, \u03b1\u03bb\u03bb\u03ac \u03b4\u03b5\u03bd \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03c4\u03b1\u03b9 \u03b7 \u03c4\u03c1\u03bf\u03c0\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7. +label.authoring.edit.conditions.button =\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a3\u03c5\u03bd\u03b8\u03b7\u03ba\u03ce\u03bd +label.authoring.up =\u039c\u03b5\u03c4\u03b1\u03ba\u03af\u03bd\u03b7\u03c3\u03b5 \u03c0\u03ac\u03bd\u03c9 +label.authoring.down =\u039c\u03b5\u03c4\u03b1\u03ba\u03af\u03bd\u03b7\u03c3\u03b5 \u03ba\u03ac\u03c4\u03c9 +authoring.msg.cancel.save =\u0398\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03ba\u03bb\u03b5\u03af\u03c3\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c0\u03b1\u03c1\u03ac\u03b8\u03c5\u03c1\u03bf \u03c7\u03c9\u03c1\u03af\u03c2 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7; +error.condition.name.blank =\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03b7\u03c2 \u03a3\u03c5\u03bd\u03b8\u03ae\u03ba\u03b7\u03c2 \u03b4\u03b5 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b5\u03bd\u03cc. +error.condition.duplicated.name =\u0391\u03c5\u03c4\u03cc \u03c4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03ae\u03b4\u03b7. \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03ac\u03bb\u03bb\u03bf. +authoring.msg.no.tasks.save =\u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03ad\u03c7\u03b5\u03b9 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03b8\u03b5\u03af \u03c4\u03bf\u03c5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf\u03bd \u03bc\u03af\u03b1 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1. +error.condition.no.tasklistitems.selected =\u0394\u03b5\u03bd \u03ad\u03c7\u03bf\u03c5\u03bd \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03b5\u03af \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2. \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03c4\u03bf\u03c5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf\u03bd \u03bc\u03af\u03b1. +error.upload.failed =\u03a4\u03bf \u03b1\u03bd\u03ad\u03b2\u03b1\u03c3\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 \u03b1\u03c0\u03ad\u03c4\u03c5\u03c7\u03b5: {0} +error.msg.upload.file.not.found =\u03a4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf {0} \u03b4\u03b5 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b2\u03c1\u03b5\u03b8\u03b5\u03af. +error.msg.file.not.found =\u0397 \u0395\u03be\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 "\u03b4\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5" \u03c0\u03c1\u03bf\u03ba\u03cd\u03c0\u03c4\u03b5\u03b9 \u03ba\u03b1\u03c4\u03ac \u03c4\u03bf \u03b1\u03bd\u03ad\u03b2\u03b1\u03c3\u03bc\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5. +error.msg.io.exception =\u0395\u03be\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03b5\u03b9\u03c3\u03cc\u03b4\u03bf\u03c5-\u03b5\u03be\u03cc\u03b4\u03bf\u03c5 \u03c0\u03c1\u03bf\u03ba\u03cd\u03c0\u03c4\u03b5\u03b9 \u03ba\u03b1\u03c4\u03ac \u03c4\u03bf \u03b1\u03bd\u03ad\u03b2\u03b1\u03c3\u03bc\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5. +error.msg.invaid.param.upload =\u0395\u03be\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 "\u03ac\u03ba\u03c5\u03c1\u03b7 \u03c0\u03b1\u03c1\u03ac\u03bc\u03b5\u03c4\u03c1\u03bf\u03c2" \u03c0\u03c1\u03bf\u03ba\u03cd\u03c0\u03c4\u03b5\u03b9 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7 \u03c0\u03c1\u03bf\u03c3\u03c0\u03ac\u03b8\u03b5\u03b9\u03b1 \u03bd\u03b1 \u03b1\u03bd\u03b5\u03b2\u03b5\u03af \u03c4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf. +error.msg.repository =\u0395\u03be\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 "\u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2" \u03c0\u03c1\u03bf\u03ba\u03cd\u03c0\u03c4\u03b5\u03b9 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7 \u03c0\u03c1\u03bf\u03c3\u03c0\u03ac\u03b8\u03b5\u03b9\u03b1 \u03bd\u03b1 \u03b1\u03bd\u03ad\u03b2\u03b5\u03b9 \u03c4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf. +label.authoring.basic.add.task =\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2 +label.authoring.basic.task.show.to.all.learners =\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03c3\u03b5 \u03cc\u03bb\u03bf\u03c5\u03c2 \u03c4\u03bf\u03c5\u03c2 \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5\u03c2 +label.authoring.basic.task.isCommentsAllowed =\u0395\u03c0\u03ad\u03c4\u03c1\u03b5\u03c8\u03b5 \u03c3\u03c4\u03bf\u03c5\u03c2 \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5\u03c2 \u03bd\u03b1 \u03b5\u03b9\u03c3\u03ac\u03b3\u03bf\u03c5\u03bd \u03c3\u03c7\u03cc\u03bb\u03b9\u03bf(\u03b1) +error.condition.name.contains.wrong.symbol =\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03b7\u03c2 \u03a3\u03c5\u03bd\u03b8\u03ae\u03ba\u03b7\u03c2 \u03b4\u03b5 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03b9 \u03c4\u03bf \u03c3\u03cd\u03bc\u03b2\u03bf\u03bb\u03bf #. \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce, \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c7\u03c9\u03c1\u03af\u03c2 \u03c4\u03bf \u03c3\u03cd\u03bc\u03b2\u03bf\u03bb\u03bf \u03b1\u03c5\u03c4\u03cc. +monitoring.tab.statistics =\u03a3\u03c4\u03b1\u03c4\u03b9\u03c3\u03c4\u03b9\u03ba\u03ad\u03c2 +label.authoring.advance.allow.contribute.tasks =\u0395\u03c0\u03ad\u03c4\u03c1\u03b5\u03c8\u03b5 \u03c3\u03c4\u03bf\u03c5\u03c2 \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5\u03c2 \u03bd\u03b1 \u03c3\u03c5\u03bc\u03bc\u03b5\u03c4\u03ad\u03c7\u03bf\u03c5\u03bd \u03c3\u03c4\u03b9\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2 +label.authoring.basic.task.isFilesAllowed =\u0395\u03c0\u03ad\u03c4\u03c1\u03b5\u03c8\u03b5 \u03c3\u03c4\u03bf\u03c5\u03c2 \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5\u03c2 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03bf\u03c5\u03bd \u03b1\u03c1\u03c7\u03b5\u03af\u03bf(\u03b1) +label.learning.title =\u039a\u03b1\u03c4\u03ac\u03bb\u03bf\u03b3\u03bf\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce \u0395\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 +label.learning.tasks.to.do =\u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2 \u03c0\u03bf\u03c5 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b3\u03af\u03bd\u03bf\u03c5\u03bd +label.learning.new.task.details =\u039b\u03b5\u03c0\u03c4\u03bf\u03bc\u03ad\u03c1\u03b5\u03b9\u03b5\u03c2 \u03bd\u03ad\u03b1\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2: +label.learning.required.tasks =\u0391\u03c0\u03b1\u03b9\u03c4\u03bf\u03cd\u03bc\u03b5\u03bd\u03b5\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2 +run.offline.message =\u0391\u03c5\u03c4\u03ae \u03b7 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 \u03b4\u03b5\u03bd \u03b3\u03af\u03bd\u03b5\u03c4\u03b1\u03b9 \u03c3\u03c4\u03bf\u03bd \u03c5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03ae. \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b4\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf\u03bd \u03b4\u03b9\u03b4\u03ac\u03c3\u03ba\u03bf\u03bd\u03c4\u03ac \u03c3\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03bb\u03b5\u03c0\u03c4\u03bf\u03bc\u03ad\u03c1\u03b5\u03b9\u03b5\u03c2. +label.learning.info.add.comment.required =\u0393\u03b9\u03b1 \u03c4\u03b7\u03bd \u03bf\u03bb\u03bf\u03ba\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7 \u03b1\u03c5\u03c4\u03ae\u03c2 \u03c4\u03b7\u03c2 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2, \u03b1\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03b7 \u03b5\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03c3\u03c7\u03bf\u03bb\u03af\u03bf\u03c5. +label.learning.info.upload.file.required =\u0393\u03b9\u03b1 \u03c4\u03b7\u03bd \u03bf\u03bb\u03bf\u03ba\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7 \u03b1\u03c5\u03c4\u03ae\u03c2 \u03c4\u03b7\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2 \u03b1\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03c4\u03bf \u03b1\u03bd\u03ad\u03b2\u03b1\u03c3\u03bc\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5. +lable.learning.minimum.view.number =\u0398\u03b1 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03bf\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf\u03c5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf\u03bd {0} \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1(\u03b5\u03c2). \u039c\u03ad\u03c7\u03c1\u03b9 \u03c3\u03c4\u03b9\u03b3\u03bc\u03ae\u03c2 \u03ad\u03c7\u03b5\u03c4\u03b5 \u03bf\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03c3\u03b5\u03b9 {1} \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1(\u03b5\u03c2). +lable.preview.by =\u0391\u03c0\u03cc +label.monitoring.summary.overall.summary =\u03a3\u03cd\u03bd\u03bf\u03c8\u03b7 +label.monitoring.summary.confirm.completion =\u0395\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03af\u03c9\u03c3\u03b7 \u039f\u03bb\u03bf\u03ba\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7\u03c2 +label.monitoring.summary.title.reflection =\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03c3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03b1\u03c1\u03af\u03bf\u03c5 +label.monitoring.summary.reflection =\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03c3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03b1\u03c1\u03af\u03bf\u03c5 +label.monitoring.tasksummary.task.summary =\u03a0\u03b5\u03c1\u03af\u03bb\u03b7\u03c8\u03b7 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2 +label.monitoring.tasksummary.task.required.to.finish =\u0393\u03b9\u03b1 \u03c4\u03b7\u03bd \u03bf\u03bb\u03bf\u03ba\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7 \u03b1\u03c5\u03c4\u03ae\u03c2 \u03c4\u03b7\u03c2 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2, \u03b1\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03b1\u03c5\u03c4\u03ae \u03b7 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 +label.monitoring.tasksummary.parent.activity =\u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u0393\u03bf\u03bd\u03ad\u03b1 +label.monitoring.tasksummary.comments.files.enabled =\u03a4\u03b1 \u03a3\u03c7\u03cc\u03bb\u03b9\u03b1/\u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03ac +label.monitoring.tasksummary.completed =\u039f\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5 +label.monitoring.tasksummary.time.and.date =\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03ba\u03b1\u03b9 \u038f\u03c1\u03b1 +label.monitoring.tasksummary.comments.files =\u03a3\u03c7\u03cc\u03bb\u03b9\u03b1/\u0391\u03c1\u03c7\u03b5\u03af\u03b1 +label.monitoring.tasksummary.comments.allowed =\u039f\u03b9 \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03b9 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c4\u03bf\u03c5\u03bd \u03c3\u03c7\u03cc\u03bb\u03b9\u03b1 +label.monitoring.tasksummary.comments.required =\u0393\u03b9\u03b1 \u03c4\u03b7\u03bd \u03bf\u03bb\u03bf\u03ba\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7 \u03b1\u03c5\u03c4\u03ae\u03c2 \u03c4\u03b7\u03c2 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2, \u03c4\u03b1 \u03c3\u03c7\u03cc\u03bb\u03b9\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03c0\u03b1\u03c1\u03b1\u03af\u03c4\u03b7\u03c4\u03b1. +label.monitoring.tasksummary.files.allowed =\u039f\u03b9 \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03b9 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c4\u03bf\u03c5\u03bd \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 +label.monitoring.tasksummary.files.required =\u0393\u03b9\u03b1 \u03c4\u03b7\u03bd \u03bf\u03bb\u03bf\u03ba\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2 \u03b1\u03c0\u03b1\u03b9\u03c4\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 +message.monitoring.edit.activity.not.editable =\u0391\u03c5\u03c4\u03ae \u03b7 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03c0\u03bb\u03ad\u03bf\u03bd \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03ac\u03c3\u03b9\u03bc\u03b7 +message.alertContentEdit =\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7: \u0388\u03bd\u03b1\u03c2 \u03ae \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03bf\u03b9 \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03b9 \u03ad\u03c7\u03b5\u03b9 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1. \u0397 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03b8\u03b1 \u03ad\u03c7\u03b5\u03b9 \u03c9\u03c2 \u03b1\u03c0\u03bf\u03c4\u03ad\u03bb\u03b5\u03c3\u03bc\u03b1 \u03bf\u03b9 \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03b9 \u03bd\u03b1 \u03c0\u03ac\u03c1\u03bf\u03c5\u03bd \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03b5\u03c4\u03b9\u03ba\u03ad\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2. +label.export.reflection =\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ad\u03c2 \u03c3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03b1\u03c1\u03af\u03bf\u03c5. +message.no.reflection.available =\u03a4\u03bf \u03c3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03ac\u03c1\u03b9\u03bf \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03bf +page.title.monitoring.view.reflection =\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2 \u03c3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03b1\u03c1\u03af\u03bf\u03c5 +output.desc.tool.condition =\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03c3\u03c5\u03bd\u03b8\u03b7\u03ba\u03ce\u03bd \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 +define.later.message =\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03c0\u03b5\u03c1\u03b9\u03bc\u03ad\u03bd\u03b5\u03c4\u03b5 \u03c4\u03bf\u03bd \u03ba\u03b1\u03b8\u03b7\u03b3\u03b7\u03c4\u03ae-\u03c3\u03cd\u03bc\u03b2\u03bf\u03c5\u03bb\u03cc \u03c3\u03b1\u03c2 \u03bd\u03b1 \u03bf\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03c3\u03b5\u03b9 \u03c4\u03b1 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03b1 \u03b1\u03c5\u03c4\u03ae\u03c2 \u03c4\u03b7\u03c2 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2. +label.authoring.conditions.condition.name =\u038c\u03bd\u03bf\u03bc\u03b1 \u03a3\u03c5\u03bd\u03b8\u03ae\u03ba\u03b7\u03c2 +label.preview.comments =\u03a3\u03c7\u03cc\u03bb\u03b9\u03b1 +error.resource.item.title.blank =\u039f \u03c4\u03af\u03c4\u03bb\u03bf\u03c2 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b5\u03bd\u03cc\u03c2. +monitoring.tab.instructions =\u039f\u03b4\u03b7\u03b3\u03af\u03b1 +monitoring.label.number.learners =\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u0395\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd + + +#======= End labels: Exported 150 labels for el GR ===== Index: debian_installer/lams2/lams_tool_task/language/ApplicationResources_en_AU.properties =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams_tool_task/language/Attic/ApplicationResources_en_AU.properties,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/lams_tool_task/language/ApplicationResources_en_AU.properties 4 Jul 2008 08:43:44 -0000 1.1 @@ -0,0 +1,161 @@ +appName = takslist +#language code: en +#locale code: AU + + # CVS ID: $Id: ApplicationResources_en_AU.properties,v 1.1 2008/07/04 08:43:44 jliew Exp $ Exported from the LAMS Community by Ernie Ghiglione on Fri Jun 06 09:15:33 BST 2008 + +#=================== labels for Task List =================# + +activity.title =Task List +activity.description =Task List. +activity.helptext =Going through list of tasks. +tool.display.name =Task List Tool +tool.description =Tool for displaying task lisk. +appName =Task List +errorPage.title =Error page +errorPage.heading =Some error occurs when handling your request +label.authoring.heading =Task List +label.authoring.title =Task List Authoring +label.authoring.heading.basic =Basic +label.authoring.heading.basic.desc =Basic input information for task list +label.authoring.heading.instructions =Instructions +label.authoring.heading.instructions.desc =Please input conditions for task list +label.authoring.heading.conditions =Conditions +label.authoring.heading.advance =Advanced +label.authoring.heading.advance.desc =Please input advance options for task list +label.authoring.basic.title =Title +label.authoring.basic.task.isCommentsFilesAllowed =Allow learners to add comments/files for this task +label.monitoring.tasksummary.comments.allowed =Learners are allowed to add comments +label.monitoring.tasksummary.files.allowed =Learners are allowed to add files +label.authoring.basic.description =Description +label.authoring.basic.add.task =Add Task +label.authoring.basic.task.isRequired =Required task +label.authoring.basic.task.isCommentsAllowed =Allow Learners to add comment(s) +label.authoring.basic.task.isCommentsRequired =Comment required to complete task +label.authoring.basic.task.isFilesAllowed =Allow Learners to add file(s) +label.authoring.basic.task.isFilesRequired =File required to complete task +label.authoring.basic.task.show.only.to.monitoring =Show only to monitoring +label.authoring.basic.task.show.to.all.learners =Show to all learners +label.authoring.basic.task.isChildTask =Don't display until parent task has been completed +label.authoring.basic.task.parent.task.name =Parent: +label.authoring.basic.task.list.title =Task List +label.authoring.basic.resource.task =Task +label.authoring.basic.resource.edit =Edit +label.authoring.basic.resource.delete =Delete +label.authoring.basic.resource.title.input =Title +label.authoring.basic.resource.description.input =Description +label.authoring.online.instruction =Online Instructions: +label.authoring.offline.instruction =Offline Instructions: +label.authoring.online.file =Online Instructions File: +label.authoring.offline.file =Offline Instructions File: +label.authoring.choosefile.button =Choose file +label.authoring.instructions.upload.button =Upload +label.authoring.instructions.delete.button =Delete +label.authoring.advance.allow.contribute.tasks =Allow Learners to contribute tasks +label.authoring.advance.lock.on.finished =Lock when finished +label.authoring.advance.monitor.verification.required =Monitor needs to verify these tasks before letting Learners to complete activity +label.authoring.advanced.reflectOnActivity =Add Notebook at end of Task List with the following instructions: +label.authoring.advance.run.content.sequentialOrder =Tasks have to be completed in sequential order +label.authoring.advance.minimum.number.tasks =Minimum number of tasks to complete +label.authoring.cancel.button =Cancel +label.authoring.edit.conditions.button =Edit Conditions +label.authoring.save.button =Save +label.authoring.up =Move Up +label.authoring.down =Move down +label.authoring.conditions.add.condition =Add Condition +label.authoring.conditions.list.title =Conditions +label.authoring.conditions.order =Order +label.authoring.conditions.empty.condition.list =There are no conditions +authoring.exception =There is a problem in task list authoring page, the reason is {0} +authoring.msg.cancel.save =Do you want to close this window without saving? +authoring.msg.no.tasks.save =There must be at least one task to be saved. +error.resource.item.title.blank =Title can not be blank. +error.condition.name.blank =Condition name can not be blank. +error.condition.name.contains.wrong.symbol =Condition name can not contain # symbol. Please choose the name without this symbol. +error.condition.duplicated.name =Duplicated name. Please choose unique one. +error.upload.failed =Upload file failed: {0} +error.msg.upload.file.not.found =Could not find upload file {0}. +error.msg.file.not.found =File not found exception occurs when uploading file. +error.msg.io.exception =IOException occurs when uploading file. +error.msg.invaid.param.upload =InvalidParameterException occured while trying to upload File. +error.msg.repository =Repository occurs exception while trying to upload file. +error.msg.default.content.not.find =Could not retrieve default content record for this tool. +warning.msg.authoring.deletion.affect.conditions =Deletion of this item may affect existing conditions. Do you want to proceed? +label.learning.title =Task List Learner +label.learning.tasks.to.do =Tasks to do +label.learning.new.task.details =New task details: +label.learning.check.for.new =Check for new +label.learning.comment.or.instruction =Comment/Instruction +label.learning.required.tasks =required tasks +label.learning.wait.for.monitor.verification =You cannot finish this activity until it is reviewed by your teacher. Click "Check for new" to see if the review is complete +label.learning.responses.locked =Note: After you click on "Next Activity" and you come back to this Task List, you won't be able to change the status of any tasks. +label.learning.responses.locked.reminder =The instructor has set this activity to not allow changes after you have finished it. You are able to see all Tasks, but not allowed to change them anymore. +label.learning.info.add.comment.required =You are required to add a comment to complete this task +label.learning.info.upload.file.required =You are required to upload a file to complete this task +label.learning.info.sequential.order =Tasks need to be completed in sequential order +lable.learning.minimum.view.number =You need to complete at least {0} task(s). You have completed {1} task(s). +label.preview.upload.file =Upload file +label.preview.upload.button =Upload +label.preview.filelist =File list +label.preview.comments =Comments +label.preview.add.comment =Add comment +label.preview.post =Post +lable.preview.by =By +monitoring.tab.summary =Summary +monitoring.tab.statistics =Statistics +monitoring.tab.instructions =Instruction +monitoring.tab.edit.activity =Edit Activity +monitoring.label.title =Title +monitoring.label.suggest =Suggested By +monitoring.label.number.learners =Number of Learners +monitoring.label.user.loginname =Login name +monitoring.label.user.name =Name +monitoring.label.group =Group +label.monitoring.heading.access =Learners list +label.monitoring.edit.activity.edit =Edit +label.monitoring.summary.overall.summary =Overall Summary +label.monitoring.summary.confirm.completion =Confirm Completion +label.monitoring.summary.title.reflection =Notebook Entry +label.monitoring.summary.reflection =Notebook Entry +label.monitoring.tasksummary.task.summary =Task Summary +label.monitoring.tasksummary.task.required.to.finish =this task is required to finish this activity +label.monitoring.tasksummary.comments.files.enabled =Comments/files enabled +label.monitoring.tasksummary.completed =Completed +label.monitoring.tasksummary.time.and.date =Time and Date +label.monitoring.tasksummary.comments.files =Comments/Files +label.monitoring.tasksummary.comments.required =Comments are required to complete the task +label.monitoring.tasksummary.files.required =Files are required to complete the task +label.monitoring.instructions.attachments =Attachments +message.monitoring.edit.activity.not.editable =This Activity is no longer editable +export.title =Export portfolio of Task List +label.export.reflection =Notebook Entries +label.download =Download +label.view =View +label.edit =Edit +label.completed =Completed +button.upload =Upload +button.add =Add +message.monitoring.summary.no.session =No Session Available +label.cancel =Cancel +define.later.message =Please wait for the teacher to complete the contents of this activity. +run.offline.message =This activity is not being done on the computer. Please see your instructor for details. +button.try.again =Try again +message.no.reflection.available =No notebook available +monitoring.label.access.time =Access time +label.continue =Continue +page.title.monitoring.view.reflection =View Notebook Entry +button.close =Close +message.alertContentEdit =Warning: One of more students have accessed this activity. Changing this content will result in students getting different information. +label.finished =Next Activity +label.finish =Next Activity +label.default.user.name =Instructor +output.desc.learner.number.of.tasks.completed =Number of Tasks Completed +error.condition.no.tasklistitems.selected =There are no tasks selected. Please select at least one. +label.monitoring.tasksummary.user =Learner +output.desc.tool.condition =Learner Entered Conditions +label.authoring.conditions.condition.name =Condition Name +label.monitoring.summary.user =Learner +label.monitoring.tasksummary.parent.activity =Parent task + + +#======= End labels: Exported 150 labels for en AU ===== Index: debian_installer/lams2/lams_tool_task/language/ApplicationResources_es_ES.properties =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams_tool_task/language/Attic/ApplicationResources_es_ES.properties,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/lams_tool_task/language/ApplicationResources_es_ES.properties 4 Jul 2008 08:43:43 -0000 1.1 @@ -0,0 +1,161 @@ +appName = takslist +#language code: es +#locale code: ES + + # CVS ID: $Id: ApplicationResources_es_ES.properties,v 1.1 2008/07/04 08:43:43 jliew Exp $ Exported from the LAMS Community by Ernie Ghiglione on Fri Jun 06 09:15:30 BST 2008 + +#=================== labels for Task List =================# + +activity.title =Lista de Tareas +activity.description =Herramienta para listado de tareas +tool.display.name =Herramienta para listado de tareas +tool.description =Herramienta para listado de tareas +appName =Lista de Tareas +errorPage.title =Error en la p\u00e1gina +errorPage.heading =Han occurrido errores +label.authoring.heading =Lista de Tareas +label.authoring.title =Lista de Tareas Crear +label.authoring.heading.basic =B\u00e1sico +label.authoring.heading.basic.desc =Informaci\u00f3n b\u00e1sica sobre la lista de tareas +label.authoring.heading.instructions =Instrucciones +label.authoring.heading.instructions.desc =Ingrese condiciones para la lista de tareas +label.authoring.heading.conditions =Condiciones +label.authoring.heading.advance =Avanzado +label.authoring.heading.advance.desc =Ingrese opciones avanzadas +label.authoring.basic.title =T\u00edtulo +label.authoring.basic.description =Descripci\u00f3n +label.authoring.basic.add.task =A\u00f1adir Tarea +label.authoring.basic.task.isRequired =Esta tarea es requerida para continuar +label.authoring.basic.task.isCommentsAllowed =\u00bfPueden los estudiantes a\u00f1adir comentarios? +label.authoring.basic.task.isCommentsRequired =Se require que el estudiante agrege comentarios para finalizar esta tarea +label.authoring.basic.task.isFilesAllowed =\u00bfPueden los estudiantes a\u00f1adir archivos? +label.authoring.basic.task.isFilesRequired =Se require que el estudiante agrege archivos para finalizar esta tarea +label.authoring.basic.task.isCommentsFilesAllowed =\u00bfPueden los estudiantes a\u00f1adir archivos y comentarios? +label.authoring.basic.task.show.only.to.monitoring =Mostrar solo al tutor +label.authoring.basic.task.show.to.all.learners =Mostrar a los estudiantes +label.authoring.basic.task.isChildTask =No muestre esta tarea almenos que se haya completado la tarea padre +label.authoring.basic.task.parent.task.name =Padre: +label.authoring.basic.task.list.title =Lista de Tareas +label.authoring.basic.resource.task =Tarea +label.authoring.basic.resource.edit =Editar +label.authoring.basic.resource.delete =Borrar +label.authoring.basic.resource.title.input =T\u00edtulo +label.authoring.basic.resource.description.input =Descripci\u00f3n +label.authoring.online.instruction =Instrucciones para modo online +label.authoring.offline.instruction =Instrucciones para modo offline +label.authoring.online.file =Subir archivo con instrucciones online +label.authoring.offline.file =Subir archivo con instrucciones offline +label.authoring.choosefile.button =Elejir archivo +label.authoring.instructions.upload.button =Subir +label.authoring.instructions.delete.button =Borrar +label.authoring.advance.allow.contribute.tasks =\u00bfPueden los estudiantes contribuir tareas? +label.authoring.advance.lock.on.finished =Al terminar, bloquear la lista +label.authoring.advance.monitor.verification.required =El tutor(es) deben verificar que las tareas se hayan completado para que los estudiantes puedan continuar +label.authoring.advanced.reflectOnActivity =Agregar Anotador al final de la Lista de Tareas con las siguientes instrucciones: +label.authoring.advance.run.content.sequentialOrder =Las tareas deben completarse de manera secuencial +label.authoring.advance.minimum.number.tasks =N\u00famero m\u00ednimo de tareas a completar +label.authoring.cancel.button =Cancelar +label.authoring.edit.conditions.button =Editar Condiciones +label.authoring.save.button =Guardar +label.authoring.up =Mover hacia arriba +label.authoring.down =Mover hacia abajo +label.authoring.conditions.add.condition =A\u00f1adir Condici\u00f3n +label.authoring.conditions.list.title =Condiciones +label.authoring.conditions.order =Orden +label.authoring.conditions.empty.condition.list =No hay condiciones +authoring.exception =Ha ocurrido un error en la creaci\u00f3n de la Lista de Tareas:{0} +authoring.msg.cancel.save =\u00bfEsta seguro que desea cerrar esta ventana sin guardar sus cambios? +authoring.msg.no.tasks.save =Tiene que haber por lo menos una tarea para poder guardar cambios +error.resource.item.title.blank =El t\u00edtulo no puede dejarse en blanco +error.condition.name.blank =No puede dejarse en blanco el nombre de condici\u00f3n +error.condition.name.contains.wrong.symbol =El nombre de la condici\u00f3n no puede contener el s\u00edmbolo #. Sustituya el simbolo en el nombre. +error.condition.duplicated.name =No puede haber nombres duplicados. Verifique que los el nombre de la condici\u00f3n sea \u00fanico +error.condition.no.tasklistitems.selected =No se ha seleccionado tarea alguna. Por favor seleccione al menos una. +error.upload.failed =Ha ocurrido un error al subir su archivo: {0} +error.msg.upload.file.not.found =No se ha podido encontrar el archivo {0} +error.msg.file.not.found =Ha habido un error al subir su archivo +error.msg.io.exception =Error de escritura al tratar de subir el archivo +error.msg.invaid.param.upload =Parametro incorrecto al subir su archivo +error.msg.repository =El respositorio de archivos a devuelto un error al tratar de incluir su archivo +error.msg.default.content.not.find =No se acceder la informaci\u00f3n por defecto de esta herramienta. +warning.msg.authoring.deletion.affect.conditions =Si borra esta tarea puede afectar a condiciones que utilicen la misma. \u00bfEsta seguro de querer borrar? +label.learning.title =Lista de Tareas Aprendizaje +label.learning.tasks.to.do =Tareas a realizar +label.learning.new.task.details =Detalles de tareas +label.learning.check.for.new =Refrescar +label.learning.comment.or.instruction =Comentarios/Instrucciones +label.learning.required.tasks =tareas requeridas +label.learning.wait.for.monitor.verification =No puede finalizar esta actividad hasta que su tutor verifique las tareas que ha realizado. Contacte a su tutor y haga click en Refrescar para finalizar la actividad +label.learning.responses.locked =Atenci\u00f3n: Una vez completada esta actividad, si vuelve a la misma no podr\u00e1 completar m\u00e1s tareas. +lable.learning.minimum.view.number =Debe finalizar por lo menos {0} tarea(s). Usted ha completado {1} tarea(s). +label.preview.upload.file =Subir Archivo +label.preview.upload.button =Subir +label.preview.filelist =Lista de archivos +label.preview.comments =Comentarios +label.preview.add.comment =A\u00f1adir Comentario +label.preview.post =Enviar +lable.preview.by =Por +monitoring.tab.summary =Resumen +monitoring.tab.statistics =Estad\u00edsticas +monitoring.tab.instructions =Instrucciones +monitoring.tab.edit.activity =Editar Actividad +monitoring.label.title =T\u00edttulo +monitoring.label.suggest =Sugerido por +monitoring.label.number.learners =N\u00famero de estudiantes +monitoring.label.user.loginname =Nombre de usuario +monitoring.label.user.name =NOmbre +monitoring.label.group =Grupo +label.monitoring.heading.access =Lista de Estudiantes +label.monitoring.edit.activity.edit =Editar +label.monitoring.summary.overall.summary =Resumen +label.monitoring.summary.user =Estudiante +label.monitoring.summary.confirm.completion =Confirmar Tareas +label.monitoring.tasksummary.task.summary =Resumen de tarea +label.monitoring.tasksummary.parent.activity =Tarea padre +label.monitoring.tasksummary.comments.files.enabled =Comentarios/Archivos +label.monitoring.tasksummary.user =Learner +label.monitoring.tasksummary.completed =Finalizada +label.monitoring.tasksummary.time.and.date =Fecha y Hora +label.monitoring.tasksummary.comments.files =Comentarios/Archivos +label.monitoring.instructions.attachments =Archivos adjuntos +export.title =Export Portfolio Lista de Tareas +label.export.reflection =Reflexiones +label.download =Bajar +label.view =Ver +label.edit =Editar +label.completed =Finalizada +button.upload =Subir +button.add =A\u00f1adir +message.monitoring.summary.no.session =No hay sessi\u00f3n disponible +label.cancel =Cancelar +button.try.again =Tratar de nuevo +message.no.reflection.available =No hay reflexiones +monitoring.label.access.time =Acceso +label.continue =Continuar +page.title.monitoring.view.reflection =Ver Reflexiones +button.close =Cerrar +message.alertContentEdit =Atenci\u00f3n: Uno o m\u00e1s estudiantes ya ha accedido a esta actividad. Cambiar el contenido de esta actividad no es buena idea ya que distintos estudiantes ver\u00e1n distinta informaci\u00f3n. +label.finished =Finalizar +label.finish =Finalizar +label.default.user.name =Instructor +output.desc.learner.number.of.tasks.completed =N\u00famero de tareas completas +output.desc.tool.condition =Condiciones ingresadas manualmente +label.authoring.conditions.condition.name =Nombre Condici\u00f3n +activity.helptext =Herramienta de Lista de Tareas +label.learning.responses.locked.reminder =Esta actividad ha sido configurada de manera que una vez finalizada, al volver a la misma no podr\u00e1 realizar m\u00e1s cambios a las tareas. +label.learning.info.add.comment.required =Debe enviar al menos un comentario para poder finalizar esta tarea +label.learning.info.upload.file.required =Debe subir al menos un archivo para poder finalizar esta tarea. +label.learning.info.sequential.order =Las tareas deben completarse de manera secuencial +label.monitoring.summary.title.reflection =Reflexionex +label.monitoring.summary.reflection =Reflexiones +label.monitoring.tasksummary.task.required.to.finish =Esta taread debe ser completada para finalizar esta actividad +label.monitoring.tasksummary.comments.allowed =Estudiantes pueden a\u00f1adir comentarios +label.monitoring.tasksummary.comments.required =Se deben a\u00f1adir comentarios para completar esta actividad +label.monitoring.tasksummary.files.allowed =Estudiantes pueden a\u00f1adir archivos +label.monitoring.tasksummary.files.required =Se deben a\u00f1adir archivos para finalizar actividad +message.monitoring.edit.activity.not.editable =Esta actividad no se puede editar +define.later.message =Espere a que el instructor termine de completar el contenido de esta actividad +run.offline.message =Esta actividad se realiza de manera offline. Pida m\u00e1s instrucciones a su tutor + + +#======= End labels: Exported 150 labels for es ES ===== Index: debian_installer/lams2/lams_tool_task/language/ApplicationResources_fr_FR.properties =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams_tool_task/language/Attic/ApplicationResources_fr_FR.properties,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/lams_tool_task/language/ApplicationResources_fr_FR.properties 4 Jul 2008 08:43:44 -0000 1.1 @@ -0,0 +1,161 @@ +appName = takslist +#language code: fr +#locale code: FR + + # CVS ID: $Id: ApplicationResources_fr_FR.properties,v 1.1 2008/07/04 08:43:44 jliew Exp $ Exported from the LAMS Community by Ernie Ghiglione on Tue Jun 17 12:21:18 BST 2008 + +#=================== labels for Task List =================# + +label.monitoring.edit.activity.edit =Editer +error.msg.upload.file.not.found =Le fichier {0} \u00e0 d\u00e9poser est introuvable +label.monitoring.heading.access =Liste d'apprenants +label.monitoring.summary.overall.summary =R\u00e9sum\u00e9 global +label.monitoring.summary.user =Apprenant +label.monitoring.summary.confirm.completion =Confirmer ach\u00e8vement +label.monitoring.summary.title.reflection =Entr\u00e9e de calepin +label.monitoring.summary.reflection =Entr\u00e9e de calepin +label.monitoring.tasksummary.task.summary =R\u00e9sum\u00e9 de la t\u00e2che +label.monitoring.tasksummary.task.required.to.finish =Vous devez faire cette t\u00e2che pour finir l'activit\u00e9 +label.monitoring.tasksummary.parent.activity =T\u00e2che parente +label.monitoring.tasksummary.comments.files.enabled =Activer commentaires/fichiers +label.monitoring.tasksummary.user =Apprenant +label.monitoring.tasksummary.completed =Achev\u00e9 +label.monitoring.tasksummary.time.and.date =Heure et date +label.monitoring.tasksummary.comments.files =Commentaires/Fichiers +label.monitoring.tasksummary.comments.allowed =Les apprenants sont autoris\u00e9s \u00e0 ajouter des commentaires +label.view =Voir +label.monitoring.tasksummary.comments.required =Commentaires obligatoires pour finir la t\u00e2che +label.monitoring.tasksummary.files.required =D\u00e9p\u00f4t obligatoire de fichier(s) pour finir la t\u00e2che +label.monitoring.instructions.attachments =Attachements +message.monitoring.edit.activity.not.editable =Vous ne pouvez plus \u00e9diter cette activit\u00e9 +export.title =Portfolio pour exportation de la liste de t\u00e2ches +label.export.reflection =Entr\u00e9es du calepin +label.edit =Editer +label.completed =Achev\u00e9 +button.upload =D\u00e9poser +button.add =Ajouter +message.monitoring.summary.no.session =Pas de session disponible +label.cancel =Annuller +define.later.message =Veuillez attendre \u00e0 ce que l'enseignant ait ajout\u00e9 du contenu \u00e0 cette activit\u00e9. +label.continue =Continuer +run.offline.message =Cette activit\u00e9 se fera hors ligne. Veuillez contacter votre enseignant pour avoir des d\u00e9tails. +button.try.again =Essayez de nouveau +message.no.reflection.available =Pas de calepin disponible +monitoring.label.access.time =Temps d'acces +page.title.monitoring.view.reflection =Voir la note du calepin +button.close =Fermer +message.alertContentEdit =Attention: Un ou plusieurs \u00e9tudiant(es) ont acc\u00e9d\u00e9(es) \u00e0 cette activit\u00e9. Si vous modifiez le contenu, les \u00e9tudiante(s) suivant(e)s auront des informations diff\u00e9rentes. +label.finished =Activit\u00e9 suivantes +label.finish =Activit\u00e9 suivantes +label.default.user.name =Enseignant +output.desc.learner.number.of.tasks.completed =Nombre de t\u00e2ches achev\u00e9es +output.desc.tool.condition =Conditions visit\u00e9es par les apprenants. +warning.msg.authoring.deletion.affect.conditions =Supprimer cet item pourra affecter des conditions existantes. Voulez-vous vraiment continuer ? +label.learning.title =Liste de t\u00e2ches pour l'apprenant +label.learning.tasks.to.do =T\u00e2ches \u00e0 faire +label.download =T\u00e9l\u00e9charger +label.authoring.advance.monitor.verification.required =Le moniteur doit v\u00e9rifier ces t\u00e2ches avant de laisser les apprenants compl\u00e9ter cette activit\u00e9 +label.authoring.advanced.reflectOnActivity =Ajouter le calepin \u00e0 la fin de la liste de t\u00e2ches avec les instructions suivantes: +label.authoring.advance.run.content.sequentialOrder =Les t\u00e2ches doivent \u00eatre compl\u00e9t\u00e9es dans un ordre s\u00e9quentiel +label.authoring.advance.minimum.number.tasks =Nombre minimal de t\u00e2ches \u00e0 compl\u00e9ter +label.authoring.cancel.button =Annuler +label.authoring.edit.conditions.button =Editer conditions +label.authoring.save.button =Sauver +label.authoring.up =Bouger vers le haut +label.authoring.down =Bouger vers le bas +label.authoring.conditions.add.condition =Ajouter condition +label.authoring.conditions.list.title =Conditions +label.authoring.conditions.condition.name =Nom de la condition +label.authoring.conditions.order =Ordre +label.authoring.conditions.empty.condition.list =Il n'y a pas de conditions +authoring.exception =Il y a un probl\u00e8me dans la page d''\u00e9dition de t\u00e2ches, la raison est {0} +authoring.msg.cancel.save =Voulez-vous fermer cette fen\u00eatre sans sauver ? +authoring.msg.no.tasks.save =Il faut au moins une t\u00e2che +error.resource.item.title.blank =Le titre ne peut pas reste vide +error.condition.name.blank =Le nom de la condition ne peut pas rester vide +error.condition.name.contains.wrong.symbol =Le nom de la condition ne peut inclure le symbole #. Veuillez SVP choisir un autre nom. +error.condition.duplicated.name =Nom d\u00e9j\u00e0 utilis\u00e9. Veuillez choisir un autre. +activity.title =Liste de t\u00e2ches +activity.description =Liste de t\u00e2ches. +activity.helptext =Parcourir la liste de t\u00e2ches. +tool.display.name =Outil liste de t\u00e2ches +tool.description =Outil pour afficher des listes de t\u00e2ches +appName =Liste de t\u00e2ches +errorPage.title =Page d'erreur +errorPage.heading =Une erreur a surgi lors du traitement de votre requ\u00eate +label.authoring.heading =Liste de t\u00e2ches +label.authoring.title =Edition de liste de t\u00e2ches +label.authoring.heading.basic =De base +error.msg.file.not.found =Exception fichier pas trouv\u00e9 lors du t\u00e9l\u00e9chargement du fichier. +error.msg.io.exception =Une IOException est apparue lors du t\u00e9l\u00e9chargement +error.msg.invaid.param.upload =Une InvalidParameterException est apparue lors du t\u00e9l\u00e9chargement +error.condition.no.tasklistitems.selected =Vous n'avez pas s\u00e9lectionn\u00e9 de t\u00e2ches. Veuillez choisir au moins une. +error.upload.failed =Erreur de t\u00e9l\u00e9chargement de fichier: {0} +error.msg.repository =Une exception (probl\u00e8me) de r\u00e9positoire est survenu lors du t\u00e9l\u00e9chargement du fichier +error.msg.default.content.not.find =Nous n'avons pas trouv\u00e9 un contenu par d\u00e9faut pour cet outil. +label.learning.new.task.details =Nouveaux d\u00e9tails pour la t\u00e2che +label.learning.check.for.new =V\u00e9rifier nouveau +label.learning.comment.or.instruction =Commentaire/Instruction +label.learning.required.tasks =T\u00e2ches exig\u00e9es +label.learning.wait.for.monitor.verification =Vous ne pourrez pas terminer cette activit\u00e9 avant qu'elle soit contr\u00f4l\u00e9e par votre enseignant. Cliquez sur "V\u00e9rifier nouveau" pour voir si le suivi est termin\u00e9. +label.learning.responses.locked =Note: Vous ne pourrez pas changer le statut d'une tache, une fois cliqu\u00e9 sur "Activit\u00e9 suivante". +label.learning.responses.locked.reminder =L'enseignant a d\u00e9cid\u00e9 de ne pas vous autoriser \u00e0 faire des changements une fois termin\u00e9 cette activit\u00e9. Vour pourrez voir toutes les t\u00e2ches, mais ne plus les modifier. +label.learning.info.add.comment.required =Vouez devez ajouter un commentaire pour compl\u00e8ter cette t\u00e2che +label.learning.info.upload.file.required =Vous devez d\u00e9poser un fichier pour compl\u00e8ter cette t\u00e2che +label.learning.info.sequential.order =Vous devez effectuer ces t\u00e2ches dans un ordre s\u00e9quentiel +lable.learning.minimum.view.number =Vous devez compl\u00e9ter au moins {0} t\u00e2che(s). Vous avez d\u00e9j\u00e0 compl\u00e9t\u00e9 {1} t\u00e2che(s). +label.preview.upload.file =D\u00e9poser fichier +label.preview.upload.button =D\u00e9poser +label.preview.filelist =Liste de fichiers +label.preview.comments =Commentaires +label.preview.add.comment =Ajouter un commentaire +label.preview.post =Soumettre +lable.preview.by =Par +monitoring.tab.summary =R\u00e9sum\u00e9 +monitoring.tab.statistics =Statistiques +monitoring.tab.instructions =Instruction +monitoring.tab.edit.activity =Editer activit\u00e9 +monitoring.label.title =Titre +monitoring.label.suggest =Sugg\u00e9r\u00e9 par +monitoring.label.number.learners =Nombre d'apprenants +monitoring.label.user.loginname =Nom d'utilisateur (login) +monitoring.label.user.name =Nom +monitoring.label.group =Groupe +label.authoring.heading.instructions.desc =SVP, entrez les conditions pour la liste de t\u00e2ches +label.authoring.heading.conditions =Conditions +label.authoring.heading.advance =Avanc\u00e9 +label.authoring.heading.advance.desc =SVP, entrez les options avanc\u00e9es pour la liste de t\u00e2ches +label.authoring.basic.title =Titre +label.authoring.basic.description =Description +label.authoring.basic.add.task =Ajouter une t\u00e2che +label.authoring.basic.task.isRequired =T\u00e2che requise +label.authoring.basic.task.isCommentsAllowed =Autoriser les apprenants \u00e0 ajouter des commentaires +label.authoring.basic.task.isCommentsRequired =Pour compl\u00e9ter la t\u00e2che, il faut ajouter un commentaire +label.authoring.basic.task.isFilesAllowed =Autoriser les apprenants \u00e0 ajouter des fichiers +label.authoring.basic.task.isFilesRequired =Pour compl\u00e9ter la t\u00e2che, il faut un fichier +label.authoring.basic.task.isCommentsFilesAllowed =Autoriser les apprenants \u00e0 ajouter des commentaires ou des fichiers pour cette t\u00e2che +label.authoring.basic.task.show.only.to.monitoring =Afficher seulement dans l'outil de suivi +label.authoring.basic.task.show.to.all.learners =Montrer \u00e0 tout les apprenants +label.authoring.basic.task.isChildTask =Ne pas afficher avant que l'activit\u00e9 parente soit compl\u00e9t\u00e9e +label.authoring.basic.task.parent.task.name =Parent +label.authoring.basic.task.list.title =Liste de t\u00e2ches +label.authoring.basic.resource.task =T\u00e2che +label.authoring.basic.resource.edit =Editer +label.authoring.basic.resource.delete =Supprimer +label.authoring.basic.resource.title.input =Titre +label.authoring.basic.resource.description.input =Description +label.authoring.online.instruction =Instructions en ligne +label.authoring.offline.instruction =Instructions hors ligne +label.authoring.online.file =Fichier pour les instructions en ligne +label.authoring.offline.file =Fichier pour les instructions hors ligne +label.authoring.choosefile.button =Choisir un fichier +label.authoring.instructions.upload.button =D\u00e9poser +label.authoring.instructions.delete.button =Supprimer +label.authoring.advance.allow.contribute.tasks =Autoriser les apprenants \u00e0 contribuer des t\u00e2ches +label.authoring.heading.basic.desc =Ajouter de l'information +label.authoring.heading.instructions =Instructions +label.authoring.advance.lock.on.finished =V\u00e9rouiller une fois termin\u00e9 +label.monitoring.tasksummary.files.allowed =Les \u00e9tudiants sont autoris\u00e9(e)s \u00e0 ajouter des fichiers + + +#======= End labels: Exported 150 labels for fr FR ===== Index: debian_installer/lams2/lams_tool_task/language/ApplicationResources_it_IT.properties =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams_tool_task/language/Attic/ApplicationResources_it_IT.properties,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/lams_tool_task/language/ApplicationResources_it_IT.properties 4 Jul 2008 08:43:44 -0000 1.1 @@ -0,0 +1,161 @@ +appName = takslist +#language code: it +#locale code: IT + + # CVS ID: $Id: ApplicationResources_it_IT.properties,v 1.1 2008/07/04 08:43:44 jliew Exp $ Exported from the LAMS Community by Ernie Ghiglione on Wed Jun 18 06:27:35 BST 2008 + +#=================== labels for Task List =================# + +label.preview.upload.button =Upload +label.preview.filelist =Lista file +label.preview.comments =Commenti +label.preview.add.comment =Agiungi commento +label.preview.post =post +lable.preview.by =Da +monitoring.tab.summary =Sommario +monitoring.tab.statistics =Sratistiche +monitoring.tab.instructions =Istruzioni +monitoring.tab.edit.activity =Modifica attivit\u00e0 +monitoring.label.title =Titolo +monitoring.label.suggest =Proposto da +monitoring.label.user.name =Nome +monitoring.label.number.learners =Numero di Studenti +monitoring.label.user.loginname =Login name +monitoring.label.group =Gruppo +label.monitoring.heading.access =Lista degli studenti +label.monitoring.edit.activity.edit =Modifica +label.monitoring.summary.overall.summary =Sommario globale +label.monitoring.summary.user =Studente +label.monitoring.summary.confirm.completion =Conferma completamento +label.monitoring.summary.title.reflection =Inserimento in Blocco Note +label.monitoring.summary.reflection =Inserimento in Blocco Note +label.monitoring.tasksummary.task.summary =Sommario compito +label.monitoring.tasksummary.task.required.to.finish =Questo compito \u00e8 richiesto per terminare questa attivit\u00e0 +label.monitoring.tasksummary.parent.activity =Parent task +label.monitoring.tasksummary.comments.files.enabled =Commenti/files abilitati +label.monitoring.tasksummary.user =Studente +label.monitoring.tasksummary.completed =Completato +label.monitoring.tasksummary.time.and.date =Ora e data +label.monitoring.tasksummary.comments.files =Commenti/files +label.monitoring.tasksummary.comments.allowed =Gli studenti possono aggiungere commenti +label.monitoring.tasksummary.comments.required =Sono richiesti commenti per completare questo compito +label.authoring.basic.resource.title.input =Titolo +label.monitoring.tasksummary.files.allowed =Gli studenti possono aggiungere files +label.monitoring.tasksummary.files.required =Sono richiesti files per completare questo compito +label.monitoring.instructions.attachments =Allegati +message.monitoring.edit.activity.not.editable =Quest'attivit\u00e0 non \u00e8 pi\u00f9 modificabile +export.title =Esporta portfolio della Task List +label.export.reflection =Inserimento in Blocco Note +label.download =Download +label.view =Vedi +label.edit =Modifica +label.completed =Completato +button.upload =Upload +button.add =Aggiungi +label.authoring.basic.task.isFilesRequired =File richiesto per completare il compito +label.authoring.basic.resource.description.input =Descrizione +label.authoring.basic.task.isCommentsFilesAllowed =Permetti agli studenti di aggiungere commenti/file per questo compito +label.authoring.basic.task.show.only.to.monitoring =Mostra solo per il monitoraggio +label.authoring.basic.task.show.to.all.learners =Mostra a tutti gli studenti +label.authoring.basic.task.isChildTask =Non mostrare fino a quando non e' stato completato il parent task +label.authoring.basic.task.parent.task.name =Parent +label.authoring.basic.task.list.title =Task List +label.authoring.basic.resource.task =Compito +activity.helptext =Attraverso la lista dei compiti +errorPage.heading =Si e' verificato un errore +label.authoring.basic.task.isCommentsRequired =E' richiesto un commento per completare il compito +label.authoring.basic.task.isFilesAllowed =Permetti agli studenti di aggiungere file +label.authoring.basic.resource.edit =Modifica +label.authoring.basic.resource.delete =Cancella +label.authoring.online.instruction =Istruzioni online: +label.authoring.offline.instruction =Istruzioni offline +label.authoring.online.file =File di istruzioni online +label.authoring.offline.file =File di istruzioni offline +label.authoring.choosefile.button =Scegli file +label.authoring.instructions.upload.button =Upload +label.authoring.instructions.delete.button =Cancella +label.authoring.advance.allow.contribute.tasks =Consenti agli studenti di creare compiti +label.authoring.advance.lock.on.finished =Blocca quando terminato +label.authoring.advance.monitor.verification.required =In Monitor si deve verificare questi compiti prima di lasciar completare l'attivita' agli studenti +label.authoring.advanced.reflectOnActivity =Aggiungi Blocco Note alla fine della Task List con le seguenti istruzioni: +label.authoring.advance.run.content.sequentialOrder =I compiti vanno completati in ordine sequenziale +label.authoring.advance.minimum.number.tasks =Minimo numero di compiti da completare +label.authoring.cancel.button =Annulla +label.authoring.edit.conditions.button =Modifica Condizioni +label.authoring.save.button =Salva +label.authoring.up =Sposta su +label.authoring.down =Sposta giu' +label.authoring.conditions.add.condition =Aggiungi condizioni +label.authoring.conditions.list.title =Condizioni +label.authoring.conditions.condition.name =Nome della condizione +label.authoring.conditions.order =Ordine +label.authoring.conditions.empty.condition.list =Qui non ci sono condizioni +authoring.exception =C''e'' un problema nella pagina di authoring della task list: la ragione e'' {0} +authoring.msg.cancel.save =Vuoi chiudere la finestra senza salvare? +authoring.msg.no.tasks.save =Occorre salvare almeno un compito +error.resource.item.title.blank =Il titolo non puo' essere lasciato in bianco +activity.title =Task List +activity.description =Lista di compiti +tool.display.name =Tool Task List +tool.description =Strumento che mostra la lista dei compiti +appName =Task List +errorPage.title =Errore +label.authoring.heading =Task List +label.authoring.title =Task List Authoring +label.authoring.heading.basic =Base +label.authoring.heading.basic.desc =Informazioni base per task list +label.authoring.heading.instructions =Istruzioni +label.authoring.heading.instructions.desc =Prego, immetti le condizioni per la task list +label.authoring.heading.conditions =Condizioni +label.authoring.heading.advance =Avanzate +label.authoring.heading.advance.desc =Prego, immetti le opzioni avanzate per la task list +label.authoring.basic.title =Tiyolo +label.authoring.basic.description =Descrizione +label.authoring.basic.add.task =Aggiungi Compito +label.authoring.basic.task.isRequired =Compito richiesto +label.authoring.basic.task.isCommentsAllowed =Consenti agli studenti di aggiungere commenti +warning.msg.authoring.deletion.affect.conditions =Cancellare questo item pu\u00f2 influire su condizioni esistenti. Intendi procedere ugualmente? +label.learning.title =Task List Studente +label.learning.tasks.to.do =Compiti da svolgere +label.learning.new.task.details =Dettagli nuovo compito: +label.learning.check.for.new =Controlla se ci sono new +label.learning.comment.or.instruction =Commento/Istruzione +label.learning.required.tasks =compiti richiesti +label.learning.wait.for.monitor.verification =Non puoi terminare quest'ativit\u00e0, finch\u00e8 il tuo docente non l'ha esaminata. Clica su "Check for new" per cedere se la revisione \u00e8 completa. +error.condition.name.blank =Il nome della condizione non pu\u00f2 essere lasciato in bianco. +error.condition.name.contains.wrong.symbol =Il nome della condizione non pu\u00f2 contenere il simbolo #. Scegli un nome senza questo simbolo. +error.condition.duplicated.name =Nome duplicato. Scegline uno univoco. +error.condition.no.tasklistitems.selected =Non ci sono compiti selezionati. Scegline almeno uno. +error.upload.failed =Upload file non riuscito: {0} +error.msg.upload.file.not.found =Impossibile trovare uplioad file: {0}. +error.msg.file.not.found =File non trovato, si \u00e8 verificato un errore durante l'upload. +error.msg.io.exception =Si \u00e8 verifiicata una IO Eccezione durante l'upload. +error.msg.invaid.param.upload =Si \u00e8 verificata una InvalidParametee Eccezione durante l'upload. +error.msg.repository =Si \u00e8 verificato un'eccezione mentre si cercava di effettuare l'upload. +error.msg.default.content.not.find =Non si pu\u00f2 recuperare il contenuto predefinito per questo strumento, +label.learning.responses.locked =Attenzione: dopo che hai fatto clic su "Attivit\u00e0 successiva" e torni a qsta Task List, non puoi cambiare lo stato di nessun compito. +label.learning.responses.locked.reminder =Il docente hapredisposto quest'attivit\u00e0 in modo da non consentiree modifiche dopo che hai terminato. Puoi vedere tutti i compiti. ma non puoi pi\u00f9 cambiarli. +label.learning.info.add.comment.required =Devi aggiungere un commento per completare questo compito. +label.learning.info.upload.file.required =Devi fare l'upload di un file per completare questo compito. +label.learning.info.sequential.order =I compiti devono essere completati in ordine sequenziale. +lable.learning.minimum.view.number =Devi completare almeno {0} compito/i. Tu hai completato {1} compito/i. +label.preview.upload.file =Upload file +message.monitoring.summary.no.session =Nessuna sessione disponibile +label.cancel =Annulla +define.later.message =Prego, aspetta che il docente completi i contenuti di quest'attivit\u00e0. +run.offline.message =Quest'attivit\u00e0 non viene svolta al computer. Chiedi al docente per i dettagli. +button.try.again =Prova ancora +message.no.reflection.available =Nessun Blocco Note disponibile +monitoring.label.access.time =Tempo di accesso +label.continue =Continua +page.title.monitoring.view.reflection =Vedi gli inserimenti in Blocco Note +button.close =Chiudi +message.alertContentEdit =Uno o pi\u00f9 studenti hanno avuto accesso a quest'attivit\u00e0. Cambiarne il contenuto comporta per gli studenti ricevere differenti informazioni. +label.finished =Attivit\u00e0 successiva +label.finish =Attivit\u00e0 successiva +label.default.user.name =Docente +output.desc.learner.number.of.tasks.completed =Numero di compiti completati +output.desc.tool.condition =Condizioni d'inizio per lo studente + + +#======= End labels: Exported 150 labels for it IT ===== Index: debian_installer/lams2/lams_tool_task/language/ApplicationResources_mi_NZ.properties =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams_tool_task/language/Attic/ApplicationResources_mi_NZ.properties,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/lams_tool_task/language/ApplicationResources_mi_NZ.properties 4 Jul 2008 08:43:43 -0000 1.1 @@ -0,0 +1,161 @@ +appName = takslist +#language code: mi +#locale code: NZ + + # CVS ID: $Id: ApplicationResources_mi_NZ.properties,v 1.1 2008/07/04 08:43:43 jliew Exp $ Exported from the LAMS Community by Ernie Ghiglione on Thu Jun 19 00:24:01 BST 2008 + +#=================== labels for Task List =================# + +button.close =Katia +label.authoring.advance.allow.contribute.tasks =Whakaaetia ng\u0101 \u0101konga te t\u0101piri t\u016bmahi +activity.title =R\u0101rangi T\u016bmahi +activity.description =R\u0101rangi T\u016bmahi. +activity.helptext =Kei te tiro i ng\u0101 r\u0101rangi t\u016bmahi. +tool.display.name =Taputapu R\u0101rangi T\u016bmahi +tool.description =Taputapu whakaatu r\u0101rangi t\u016bmahi. +appName =R\u0101rangi T\u016bmahi +errorPage.title =Wharangi Hapa +errorPage.heading =I puta he hapa i te w\u0101 e whaihangatia ana t\u014d tono +label.authoring.heading =R\u0101rangi T\u016bmahi +label.authoring.title =Kaituhi R\u0101rangi T\u016bmahi +label.authoring.heading.basic =M\u0101m\u0101 +label.authoring.heading.basic.desc =P\u0101rongo t\u0101uru m\u0101m\u0101 m\u014d r\u0101rangi t\u016bmahi +label.authoring.heading.instructions =Tohutohu +label.authoring.heading.instructions.desc =T\u0101piri \u0101huatanga t\u0101uru m\u014d r\u0101rangi t\u016bmahi +label.authoring.heading.conditions =\u0100huatanga +label.authoring.heading.advance =Ara Atu An\u014d +label.authoring.heading.advance.desc =T\u0101piri \u0101huatanga t\u0101uru ara atu an\u014d m\u014d r\u0101rangi t\u016bmahi +label.authoring.basic.title =Taitara +label.authoring.basic.add.task =T\u0101piri T\u016bmahi +label.authoring.basic.task.isRequired =T\u016bmahi Whakamutua +label.authoring.basic.task.isCommentsAllowed =Whakaaetia ng\u0101 \u0101konga ki te t\u0101piri k\u014drero +label.authoring.basic.task.isCommentsRequired =T\u0101piri k\u014drero hei whakamutunga +label.authoring.basic.task.isFilesAllowed =Whakaaetia ng\u0101 \u0101konga ki te t\u0101piri k\u014dnae +label.authoring.basic.task.isFilesRequired =T\u0101piri k\u014dnae hei whakamutunga +label.authoring.basic.task.isCommentsFilesAllowed =Whakaaetia ng\u0101 \u0101konga ki te t\u0101piri k\u014drero/k\u014dnae m\u014d t\u0113nei t\u016bmahi +label.authoring.basic.task.show.only.to.monitoring =Whakaatu ki aroturuki anake +label.authoring.basic.task.show.to.all.learners =Whakaatu ki \u0101konga katoa +label.authoring.basic.task.isChildTask =Whakaatu hei te otinga t\u016bmahi whaiaronga matua +label.authoring.basic.task.parent.task.name =Whaiaronga Matua +label.authoring.basic.task.list.title =R\u0101rangi T\u016bmahi +label.authoring.basic.resource.task =T\u016bmahi +label.authoring.basic.resource.edit =Whakatikatika +label.authoring.basic.resource.delete =Whakakorea +label.authoring.basic.resource.title.input =Taitara +label.authoring.basic.resource.description.input =Whakaahua +label.authoring.online.instruction =Tohutohu Tuihono: +label.authoring.offline.instruction =Tohutohu Tuimotu: +label.authoring.online.file =K\u014dnae Tohutohu Tuihono: +label.authoring.offline.file =K\u014dnae Tohutohu Tuimotu +label.authoring.choosefile.button =K\u014dwhiri K\u014dnae +label.authoring.instructions.upload.button =Tuku Atu +label.authoring.instructions.delete.button =Whakakorea +label.authoring.advance.lock.on.finished =Whakap\u016bmautia ina oti +label.authoring.advance.monitor.verification.required =Kei te manatokonga e te aroturuki i mua i te whakaae \u0100konga ki te mutu pai t\u0113nei ngohe +label.authoring.advanced.reflectOnActivity =T\u0101piri Pukatuhi ki te mutunga o te R\u0101rangi T\u016bmahi me ng\u0101 tohutohu e whai ake: +label.authoring.advance.run.content.sequentialOrder =Whakaotia pai ng\u0101 T\u016bmahi i te raupapa tika +label.authoring.advance.minimum.number.tasks =Tau maha m\u014drahi ki te mahi +label.authoring.cancel.button =Whakakore +label.authoring.edit.conditions.button =Whakatika \u0100huatanga +label.authoring.save.button =Tiaki +label.authoring.up =Neke Whakarunga +label.authoring.down =Neke Whakararo +label.authoring.conditions.add.condition =T\u0101piri \u0100huatanga +label.authoring.conditions.list.title =\u0100huatanga +label.authoring.conditions.condition.name =Ingoa \u0100huatanga +label.authoring.conditions.order =Raupapatanga +label.authoring.conditions.empty.condition.list =K\u0101ore he \u0101huatanga +authoring.exception =He raru kei te wh\u0101rangi r\u0101rangi t\u016bmahi, ko te take ko {0} +authoring.msg.cancel.save =Ka hiahia koe ki te kati i te matapihi nei me te kore tiaki? +authoring.msg.no.tasks.save =Kia k\u014dtahi te tiaki t\u016bmahi. +error.resource.item.title.blank =Whakakiia te Taitara. +error.condition.name.blank =Whakakiia te ingoa. +error.condition.name.contains.wrong.symbol =K\u0101ore e taea te tohu # ki te ingoa. K\u014dwhirihia ki t\u0113tehi ingoa an\u014d. +error.condition.duplicated.name =Ingoa T\u0101rua. K\u014dwhiri ingoa ahurei. +error.condition.no.tasklistitems.selected =K\u0101ore he t\u016bmahi i k\u014dwhirihia. K\u014dwhirihia i t\u0113tehi t\u016bmahi. +error.upload.failed =I hapa te k\u014dnae tuku atu: {0} +error.msg.upload.file.not.found =K\u0101ore i kitea te k\u014dnae tuku atu {0} +error.msg.file.not.found =I puta te okotahi k\u0101ore te k\u014dnae i kitea i te te tukunga atu o te k\u014dnae +error.msg.io.exception =Ka puta he okotahi IO i te tukunga atu o te k\u014dnae. +error.msg.invaid.param.upload =Ka puta he Okotahi Tawh\u0101 Muhu i te tukunga atu o te K\u014dnae. +error.msg.repository =Ka puta te okotahi p\u0101taka i te tukunga atu o te k\u014dnae. +error.msg.default.content.not.find =K\u0101ore i taea te tiki ake te p\u016bkete ihirangi taunoa m\u014d t\u0113nei taputapu. +warning.msg.authoring.deletion.affect.conditions =Ka p\u0101 atu te whakakore o t\u0113nei ki ng\u0101 \u0101huatanga e t\u016b nai. Ka haere tonu? +label.learning.title =\u0100konga R\u0101rangi T\u016bmahi +label.learning.tasks.to.do =Hei mahi t\u016bmahi +label.learning.new.task.details =Ng\u0101 whakaahua t\u016bmahi: +monitoring.label.access.time =W\u0101 whaka\u0101hei +label.continue =Haere tonu +page.title.monitoring.view.reflection =Tiro Tuhinga Pukatuhi +label.learning.check.for.new =Tirohia t\u016bmahi h\u014du +label.learning.comment.or.instruction =K\u014drero/Tohutohu +label.learning.required.tasks =t\u016bmahi kia mahia +label.learning.wait.for.monitor.verification =K\u0101ore e taea te whakamutua t\u0113nei ngohe i mua i te aroturuki o te kaiako. P\u0101whirihia "Tirohia t\u016bmahi h\u014du" kia kite i oti pai te aroturukitanga. +label.learning.responses.locked =A muri i te p\u0101whiri "Ngohe whai ake" a ka hoki mai koe ki t\u0113nei R\u0101rangi T\u016bmahi, k\u0101ore e taea te whakarerek\u0113 t\u016bnga o ng\u0101 t\u016bmahi katoa. +label.learning.responses.locked.reminder =Kua whakap\u016bmautia e te kaiako te kore whakarerek\u0113 ina ka oti koe i t\u0113nei ngohe. Ka taea te kite i ng\u0101 t\u016bmahi i tuku \u0113ngari k\u0101ore e taea te whakarerek\u0113 mai an\u014d. +label.learning.info.add.comment.required =Me t\u0101piri k\u014drero kia whakamutua pai t\u0113nei t\u016bmahi +label.learning.info.upload.file.required =Me t\u0101piri k\u014dnae kawe atu kia whakamutua pai t\u0113nei t\u016bmahi +label.learning.info.sequential.order =Whakamutua pai ng\u0101 t\u016bmahi i te raupapa tika +lable.learning.minimum.view.number =Whakamutua pai kia {0} ng\u0101 t\u016bmahi. Kua mutu pai {1} ng\u0101 t\u016bmahi. +label.preview.upload.file =Tuku k\u014dnae atu +label.preview.upload.button =Tuku atu +label.preview.filelist =R\u0101rangi k\u014dnae +label.preview.comments =K\u014drero +label.preview.add.comment =T\u0101piri k\u014drero +label.preview.post =Tukunga K\u014drero +lable.preview.by =E +monitoring.tab.summary =R\u0101popotonga +monitoring.tab.statistics =Tauanga +monitoring.tab.instructions =Tohutohu +monitoring.tab.edit.activity =Whakatikatika Ngohe +monitoring.label.title =Taitara +monitoring.label.suggest =I Tokona E +monitoring.label.number.learners =Tapeke \u0100konga +monitoring.label.user.loginname =Ingoa Takiuru +monitoring.label.user.name =Ingoa +monitoring.label.group =R\u014dp\u016b +label.monitoring.heading.access =R\u0101rangi \u0101konga +label.monitoring.edit.activity.edit =Whakatikatika +label.monitoring.summary.overall.summary =R\u0101popotonga Wh\u0101nui +label.monitoring.summary.user =\u0100konga +label.monitoring.summary.confirm.completion =Whakat\u016bturu Whakaotinga +label.monitoring.summary.title.reflection =Tuhinga T\u0101uru +label.monitoring.summary.reflection =Tuhinga Pukatuhi +label.monitoring.tasksummary.task.summary =R\u0101popoto T\u016bmahi +label.monitoring.tasksummary.task.required.to.finish =Whakamutua t\u0113nei ngohe kia oti +label.monitoring.tasksummary.parent.activity =T\u016bmahi Whaiaronga +label.monitoring.tasksummary.comments.files.enabled =K\u014drero/k\u014dnae \u0101hei +label.monitoring.tasksummary.user =\u0100konga +label.monitoring.tasksummary.completed =Kua Oti +label.monitoring.tasksummary.time.and.date =W\u0101 me te R\u0101 +label.monitoring.tasksummary.comments.files =K\u014drero/K\u014dnae +label.monitoring.tasksummary.comments.allowed =Whakaaetia ng\u0101 \u0101konga te t\u0101piri k\u014drero +label.monitoring.tasksummary.comments.required =T\u0101piri k\u014drero kia oti pai te t\u016bmahi +label.monitoring.tasksummary.files.allowed =Whakaaetia ng\u0101 \u0101konga te t\u0101piri k\u014dnae +label.monitoring.tasksummary.files.required =T\u0101piri k\u014dnae kia oti pai te t\u016bmahi +label.monitoring.instructions.attachments =\u0100pititanga +message.monitoring.edit.activity.not.editable =K\u0101ore e taea te whakatika t\u0113nei ngohe +export.title =Tukuna K\u014dpaki atu m\u014d te R\u0101rangi T\u016bmahi +label.export.reflection =Tuhinga Pukatuhi +label.download =Tuku Mai +label.view =Tirohia +label.edit =Whakatikatika +label.completed =Kua Oti Pai +button.upload =Tuku Atu +button.add =T\u0101piritia +message.monitoring.summary.no.session =K\u0101ore he W\u0101t\u016b i te W\u0101tea +label.cancel =Whakakore +define.later.message =Tatarihia kia whakamutu pai ng\u0101 ihirangi m\u014d te ngohe e te kaiako +run.offline.message =He ngohe tuimotu t\u0113nei. K\u014drero ki t\u014du kaiako m\u014d ng\u0101 taipitopito. +button.try.again =Whakam\u0101tauria An\u014d +message.no.reflection.available =K\u0101ore he pukatuhi i te w\u0101tea +label.authoring.basic.description =R\u0101rangi Kaupapa +message.alertContentEdit =Neke atu kia k\u014dtahi \u0101konga i uru ki t\u0113nei ngohe. Ka whakarerek\u0113 ng\u0101 ihiranga ka wharerek\u0113tia ng\u0101 p\u0101rongo i whiwhi e ng\u0101 \u0101konga. +label.finished =Ngohe Whai Ake +label.finish =Ngohe Whai Ake +label.default.user.name =Kaiako +output.desc.learner.number.of.tasks.completed =Tau T\u016bmahi i Oti +output.desc.tool.condition =\u0100konga \u0100huatanga T\u0101uru + + +#======= End labels: Exported 150 labels for mi NZ ===== Index: debian_installer/lams2/lams_tool_task/language/ApplicationResources_no_NO.properties =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams_tool_task/language/Attic/ApplicationResources_no_NO.properties,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/lams_tool_task/language/ApplicationResources_no_NO.properties 4 Jul 2008 08:43:43 -0000 1.1 @@ -0,0 +1,161 @@ +appName = takslist +#language code: no +#locale code: NO + + # CVS ID: $Id: ApplicationResources_no_NO.properties,v 1.1 2008/07/04 08:43:43 jliew Exp $ Exported from the LAMS Community by Ernie Ghiglione on Tue Jun 10 03:25:02 BST 2008 + +#=================== labels for Task List =================# + +label.authoring.title =Godkjenning av arbeidsoppgaver +label.authoring.heading.basic.desc =Grunnleggende inngangsdata for arbeidsoppgaver +label.authoring.heading.advance.desc =Avanserte inngangsdata for arbeidsoppgaver +label.authoring.advance.monitor.verification.required =Foreleser m\u00e5 verifisere disse arbeidsoppgavene f\u00f8r studentene fullf\u00f8rer aktiviteten. +authoring.exception =Det er et problem med godkjenningen av arbeidsoppgavene, \u00e5rsaken er {0} +authoring.msg.cancel.save =Vil du lukke vinduet uten \u00e5lagre ? +authoring.msg.no.tasks.save =Minst en arbeidsoppgave tilstede for \u00e5 kunne lageres +label.monitoring.summary.title.reflection =Skriv notat +label.monitoring.summary.reflection =Skriv notat +activity.title =Arbeidsoppgaver +activity.description =Arbeidsoppgaver. +activity.helptext =Gjennomg\u00e5 en liste over arbeidsoppgaver +tool.display.name =Arbeidsoppgavererkt\u00f8y for arbeidsoppgaver +tool.description =Verkt\u00f8y for \u00e5 vise arbeidsoppgaver +appName =Arbeidsoppgaver +errorPage.title =Feilmeldinger +label.authoring.heading =Arbeidsoppgaver +label.authoring.heading.basic =Grunnleggende +label.authoring.heading.instructions =Informasjon +label.authoring.heading.conditions =Betingelser +label.authoring.heading.advance =Avansert +label.authoring.basic.title =Tittel +label.authoring.basic.description =Beskrivelse +label.authoring.basic.add.task =Legg tiloppgave +label.authoring.basic.task.isRequired =N\u00f8dvendige oppgaver +label.authoring.basic.task.show.only.to.monitoring =Vis kun i kontroll modusVis til alle studenter +label.authoring.basic.task.list.title =Arbeidsoppgaver +label.authoring.basic.resource.task =Arbeidsoppgave +label.authoring.basic.resource.edit =Rediger +label.authoring.basic.resource.delete =Fjern +label.authoring.basic.resource.title.input =Tittel +label.authoring.basic.resource.description.input =Beskrivelse +label.authoring.online.instruction =On-line informasjon +label.authoring.offline.instruction =Off-line informasjon +label.authoring.online.file =On-line informasjons fil +label.authoring.offline.file =Off-line infromasjons fil +label.authoring.choosefile.button =Velg fil +label.authoring.instructions.upload.button =Last opp +label.authoring.instructions.delete.button =Fjern +label.authoring.advance.lock.on.finished =L\u00e5s n\u00e5r ferdig +label.authoring.cancel.button =Angre +label.authoring.edit.conditions.button =Rediger betingelser +label.authoring.save.button =Lagre +label.authoring.up =Flytt opp +label.authoring.down =Flytt ned +label.authoring.conditions.add.condition =Legg til betingelse +label.authoring.conditions.list.title =Betingelser +label.authoring.conditions.condition.name =Betingelses navn +label.authoring.conditions.order =Rekkef\u00f8lge +label.authoring.conditions.empty.condition.list =Det er ingen betingelser +error.resource.item.title.blank =Tittel kan ikke v\u00e6re tom +error.condition.name.blank =Betingelser kan ikke v\u00e6re tom +label.learning.title =Arbeidsoppgaver student +label.learning.tasks.to.do =Arbeidsoppgaver som m\u00e5 gj\u00f8res +label.learning.new.task.details =Nye arbeidsoppgaver: +label.preview.upload.file =Last opp fil +label.preview.upload.button =Lastet opp +label.preview.filelist =Filliste +label.preview.comments =Kommentarer +label.preview.add.comment =Legg til kommentar +lable.preview.by =Av +monitoring.tab.summary =Oppsummering +monitoring.tab.statistics =Statistikk +monitoring.tab.instructions =Informasjon +monitoring.tab.edit.activity =Rediger aktivitet +monitoring.label.title =Tittel +monitoring.label.suggest =Anbefalt av +monitoring.label.number.learners =Antall studenter +monitoring.label.user.loginname =Logg inn navn +monitoring.label.user.name =Navn +monitoring.label.group =Gruppe +label.monitoring.heading.access =Studentenes liste +label.monitoring.edit.activity.edit =Rediger +label.monitoring.summary.overall.summary =Generell oppsummering +label.monitoring.summary.user =Student +error.condition.no.tasklistitems.selected =Ingen arbeidsoppgaver er valgt. Vennligst velg minst en. +error.msg.default.content.not.find =Kunne ikke hente ut standard innhold for dette verkt\u00f8yet. +label.monitoring.tasksummary.task.summary =Oversikt av arbeidsoppgaver +label.monitoring.tasksummary.user =Student +label.monitoring.tasksummary.completed =ferdig +label.monitoring.tasksummary.time.and.date =Dato og tid +label.monitoring.tasksummary.comments.files =Kommentarer/filer +label.monitoring.instructions.attachments =Vedlegg +label.download =Last ned +label.view =Se p\u00e5 +label.edit =Rediger +label.completed =Ferdig +button.upload =Last opp +button.add =Legg til +label.cancel =Angre +button.try.again =Fors\u00f8k igjen +label.continue =Fortsett +page.title.monitoring.view.reflection =Se notater +button.close =Lukk +label.finished =Neste aktivitet +label.finish =Neste aktivitet +label.default.user.name =Foreleser +label.authoring.basic.task.show.to.all.learners =Vis alle studenter +label.authoring.advance.allow.contribute.tasks =Tillat studentene \u00e5 legge til en arbeidsoppgave +label.learning.check.for.new =Kontroller om det er nye +label.learning.comment.or.instruction =Kommentar/informasjon +label.monitoring.summary.confirm.completion =Bekreft ferdigstillelse +message.monitoring.summary.no.session =Ingen sesjon er tilgjengelig +message.no.reflection.available =Ingen notatbok er tilgjengelig +output.desc.learner.number.of.tasks.completed =Antall arbeidsoppgaver som er ferdig +label.authoring.basic.task.isFilesAllowed =Tillat studentene \u00e5 legge til file(er) +label.authoring.advance.run.content.sequentialOrder =Oppgavene m\u00e5 utf\u00f8res i rekkef\u00f8lge +label.authoring.advance.minimum.number.tasks =Minimum antall oppgaver som m\u00e5 ferdigstilles +error.condition.duplicated.name =Dublisering av navn. Vennligst benytt et unikt navn. +error.upload.failed =Mislykket opplasting av filer {0} +error.msg.upload.file.not.found =Kan ikke finne fil for opplasting {0} +label.monitoring.tasksummary.comments.allowed =Studentene tillates \u00e5 gi kommentar +label.monitoring.tasksummary.files.allowed =Studentene tillates \u00e5 legge til filer +message.monitoring.edit.activity.not.editable =Denne aktiviteten kan ikke lengre redigeres +label.export.reflection =Notater +monitoring.label.access.time =Tilgangs tid +errorPage.heading =feil oppsto under h\u00e5ndteringen av din foresp\u00f8rsel +label.authoring.heading.instructions.desc =Vennligst gi inn betingelsene for arbeidsoppgavene +label.authoring.basic.task.isCommentsAllowed =Tillat studentene \u00e5 gi kommentarer +label.authoring.basic.task.isCommentsRequired =Det er n\u00f8dvendig med kommentar for \u00e5 fullf\u00f8re arbeidsoppgaven +label.authoring.basic.task.isFilesRequired =Legg til fil for \u00e5 fullf\u00f8re arbeidsoppgaven +label.authoring.basic.task.isCommentsFilesAllowed =Tillat studentene \u00e5 legge til kommentar/fil for denne arbeidsoppgaven +label.authoring.advanced.reflectOnActivity =Legg til notat p\u00e5 slutten av arbeidsoppgavene, med f\u00f8lgende informasjon: +warning.msg.authoring.deletion.affect.conditions =Fjerning av dette element vilp\u00e5virke betingelsene. \u00d8nsker du \u00e5 fortsette ? +label.learning.info.add.comment.required =Du m\u00e5 legge til en kommentar for \u00e5 kunne avslutte denne arbeidsoppgaven. +label.learning.info.upload.file.required =Du m\u00e5 laste opp en fil for \u00e5 kunne avslutte denne arbeidsoppgaven. +label.learning.info.sequential.order =Arbeidsoppgavene m\u00e5 ferdigstilles sekvensielt +label.monitoring.tasksummary.task.required.to.finish =denne arbeidsoppgaven m\u00e5 utf\u00f8res for\u00e5kunne avslutte aktiviteten +label.learning.required.tasks =p\u00e5krevede arbeidsoppgaver +lable.learning.minimum.view.number =Du m\u00e5 fullf\u00f8re minst {0} arbeidsoppgaver. Du har utf\u00f8rt kun{1}. +label.monitoring.tasksummary.comments.files.enabled =Kommentar/filer er koblet til +label.monitoring.tasksummary.comments.required =Kommentarer m\u00e5 gis for \u00e5 kunne avslutte arbeidsoppgaven +label.monitoring.tasksummary.files.required =Filer m\u00e5 legges til for \u00e5kunne avslutte denne arbeidsoppgaven +define.later.message =Vennligst vent p\u00e5 at foreleseren har gjort ferdig inholdet for denne aktiviteten. +run.offline.message =Denne aktiviteten skal ikke utf\u00f8res ved datamaskinen. Kontakt foreleseren. +message.alertContentEdit =Varsel: En eller fler studenter har p\u00e5begynt denne aktiviteten. Endres innholdet vil det medf\u00f8re at studentene vil f\u00e5 forskjelling innhold. +error.condition.name.contains.wrong.symbol =En betingelse kan ikke inneholde tegnet #. Vennligst velg et navn uten dette symbolet. +error.msg.io.exception =IOException oppst\u00e5r ved opplasting av fil +error.msg.invaid.param.upload =Ugyldig parameter exception oppsto ved opplasting av fil +error.msg.repository =Database feilved opplasting av fil +label.learning.wait.for.monitor.verification =Du kan ikke avslutte denne aktiviteten f\u00f8r den er sett p\u00e5 av foreleseren. Klikk p\u00e5 Kontroller om ny, for \u00e5 se om foreleseren er ferdig. +export.title =Eksport mappe for arbeidsoppgaver +output.desc.tool.condition =Betingelser som er definert av studenten +label.authoring.basic.task.isChildTask =Ikke vis f\u00f8r opphavs oppgave har blitt gjort ferdig +label.authoring.basic.task.parent.task.name =Opphav +error.msg.file.not.found =Filen er ikke funnet, feil oppst\u00e5r ved opplasting. +label.learning.responses.locked =Merk: Etter at du klikker p\u00e5 Neste oppgave og du kommer tilbake til denne listen, s\u00e5 vil du ikke kunne endre status for arbeidsoppgavene. +label.learning.responses.locked.reminder =Foreleseren har definert oppgaven slik at du ikke for lov til \u00e5 endre noe etter at du har forlatt den. Du kan f\u00e5 se arbeidsoppgavene, men vil ikke kunne endre disse. +label.preview.post =Kunngj\u00f8ring +label.monitoring.tasksummary.parent.activity =Opphavs arbeidsoppgave + + +#======= End labels: Exported 150 labels for no NO ===== Index: debian_installer/lams2/lams_tool_task/lib/commons-collections.jar =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams_tool_task/lib/Attic/commons-collections.jar,v diff -u Binary files differ Index: debian_installer/lams2/lams_tool_task/lib/commons-configuration-1.1.jar =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams_tool_task/lib/Attic/commons-configuration-1.1.jar,v diff -u Binary files differ Index: debian_installer/lams2/lams_tool_task/lib/commons-dbutils-1.0.jar =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams_tool_task/lib/Attic/commons-dbutils-1.0.jar,v diff -u Binary files differ Index: debian_installer/lams2/lams_tool_task/lib/commons-io-1.0.jar =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams_tool_task/lib/Attic/commons-io-1.0.jar,v diff -u Binary files differ Index: debian_installer/lams2/lams_tool_task/lib/commons-lang-2.0.jar =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams_tool_task/lib/Attic/commons-lang-2.0.jar,v diff -u Binary files differ Index: debian_installer/lams2/lams_tool_task/lib/commons-logging.jar =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams_tool_task/lib/Attic/commons-logging.jar,v diff -u Binary files differ Index: debian_installer/lams2/lams_tool_task/lib/lams-tool-deploy.jar =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams_tool_task/lib/Attic/lams-tool-deploy.jar,v diff -u Binary files differ Index: debian_installer/lams2/lams_tool_task/lib/mysql-connector-java-3.1.12-bin.jar =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams_tool_task/lib/Attic/mysql-connector-java-3.1.12-bin.jar,v diff -u Binary files differ Index: debian_installer/lams2/lams_tool_task/lib/xstream-1.1.2.jar =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams_tool_task/lib/Attic/xstream-1.1.2.jar,v diff -u Binary files differ Index: debian_installer/lams2/lams_tool_task/sql/activity_insert.sql =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams_tool_task/sql/Attic/activity_insert.sql,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/lams_tool_task/sql/activity_insert.sql 4 Jul 2008 08:43:43 -0000 1.1 @@ -0,0 +1,82 @@ +# Connection: ROOT LOCAL +# Host: localhost +# Saved: 2005-04-07 11:08:32 +# +INSERT INTO lams_learning_activity +( +activity_ui_id +, description +, title +, help_text +, xcoord +, ycoord +, parent_activity_id +, parent_ui_id +, learning_activity_type_id +, grouping_support_type_id +, apply_grouping_flag +, grouping_id +, grouping_ui_id +, order_id +, define_later_flag +, learning_design_id +, learning_library_id +, create_date_time +, run_offline_flag +, max_number_of_options +, min_number_of_options +, options_instructions +, tool_id +, tool_content_id +, activity_category_id +, gate_activity_level_id +, gate_open_flag +, gate_start_time_offset +, gate_end_time_offset +, gate_start_date_time +, gate_end_date_time +, library_activity_ui_image +, create_grouping_id +, create_grouping_ui_id +, library_activity_id +, language_file +) +VALUES +( +NULL +, 'TaskList' +, 'TaskList' +, 'Put some help text here.' +, NULL +, NULL +, NULL +, NULL +, 1 +, 2 +, 0 +, NULL +, NULL +, NULL +, 0 +, NULL +, ${learning_library_id} +, NOW() +, 0 +, NULL +, NULL +, NULL +, ${tool_id} +, NULL +, 4 +, NULL +, NULL +, NULL +, NULL +, NULL +, NULL +, 'tool/latask10/images/icon_taskList.swf' +, NULL +, NULL +, NULL +, 'org.lamsfoundation.lams.tool.taskList.ApplicationResources' +) Index: debian_installer/lams2/lams_tool_task/sql/create_lams_tool_taskList.sql =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams_tool_task/sql/Attic/create_lams_tool_taskList.sql,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/lams_tool_task/sql/create_lams_tool_taskList.sql 4 Jul 2008 08:43:43 -0000 1.1 @@ -0,0 +1,158 @@ +SET FOREIGN_KEY_CHECKS=0; +drop table if exists tl_latask10_attachment; +drop table if exists tl_latask10_condition; +drop table if exists tl_latask10_condition_tl_item; +drop table if exists tl_latask10_taskList; +drop table if exists tl_latask10_taskList_item; +drop table if exists tl_latask10_taskList_item_visit_log; +drop table if exists tl_latask10_item_attachment; +drop table if exists tl_latask10_item_comment; +drop table if exists tl_latask10_session; +drop table if exists tl_latask10_user; +create table tl_latask10_attachment ( + uid bigint not null auto_increment, + file_version_id bigint, + file_type varchar(255), + file_name varchar(255), + file_uuid bigint, + create_date datetime, + taskList_uid bigint, + primary key (uid) +)TYPE=InnoDB; +create table tl_latask10_condition ( + condition_uid bigint not null auto_increment, + sequence_id integer, + taskList_uid bigint, + name varchar(255), + primary key (condition_uid) +)TYPE=InnoDB; +create table tl_latask10_condition_tl_item ( + uid bigint not null, + condition_uid bigint not null, + primary key (uid, condition_uid) +)TYPE=InnoDB; +create table tl_latask10_taskList ( + uid bigint not null auto_increment, + create_date datetime, + update_date datetime, + create_by bigint, + title varchar(255), + run_offline tinyint, + instructions text, + online_instructions text, + offline_instructions text, + content_in_use tinyint, + define_later tinyint, + content_id bigint unique, + lock_when_finished tinyint, + is_sequential_order tinyint, + minimum_number_tasks integer, + allow_contribute_tasks tinyint, + is_monitor_verification_required tinyint, + reflect_instructions varchar(255), + reflect_on_activity smallint, + primary key (uid) +)TYPE=InnoDB; +create table tl_latask10_taskList_item ( + uid bigint not null auto_increment, + sequence_id integer, + description text, + init_item varchar(255), + organization_xml text, + title varchar(255), + create_by bigint, + create_date datetime, + create_by_author tinyint, + is_required tinyint, + is_comments_allowed tinyint, + is_comments_required tinyint, + is_files_allowed tinyint, + is_files_required tinyint, + is_comments_files_allowed tinyint, + show_comments_to_all tinyint, + is_child_task tinyint, + parent_task_name varchar(255), + taskList_uid bigint, + session_uid bigint, + primary key (uid) +)TYPE=InnoDB; +create table tl_latask10_item_log ( + uid bigint not null auto_increment, + access_date datetime, + taskList_item_uid bigint, + user_uid bigint, + complete tinyint, + session_id bigint, + primary key (uid) +)TYPE=InnoDB; +create table tl_latask10_item_attachment ( + uid bigint not null auto_increment, + file_version_id bigint, + file_type varchar(255), + file_name varchar(255), + file_uuid bigint, + create_date datetime, + taskList_item_uid bigint, + create_by bigint, + primary key (uid) +)TYPE=InnoDB; +create table tl_latask10_item_comment ( + uid bigint not null auto_increment, + comment text, + taskList_item_uid bigint, + create_by bigint, + create_date datetime, + primary key (uid) +)TYPE=InnoDB; +create table tl_latask10_session ( + uid bigint not null auto_increment, + session_end_date datetime, + session_start_date datetime, + status integer, + taskList_uid bigint, + session_id bigint, + session_name varchar(250), + primary key (uid) +)TYPE=InnoDB; +create table tl_latask10_user ( + uid bigint not null auto_increment, + user_id bigint, + last_name varchar(255), + first_name varchar(255), + login_name varchar(255), + session_finished smallint, + session_uid bigint, + taskList_uid bigint, + is_verified_by_monitor tinyint, + primary key (uid) +)TYPE=InnoDB; +alter table tl_latask10_attachment add index FK_NEW_174079138_1E7009430E79035 (taskList_uid), add constraint FK_NEW_174079138_1E7009430E79035 foreign key (taskList_uid) references tl_latask10_taskList (uid); +alter table tl_latask10_condition add index FK_tl_latask10_condition_1 (taskList_uid), add constraint FK_tl_latask10_condition_1 foreign key (taskList_uid) references tl_latask10_taskList (uid); +alter table tl_latask10_condition_tl_item add index FK_tl_latask10_taskList_item_condition_1 (condition_uid), add constraint FK_tl_latask10_taskList_item_condition_1 foreign key (condition_uid) references tl_latask10_condition (condition_uid); +alter table tl_latask10_condition_tl_item add index FK_tl_latask10_taskList_item_condition_2 (uid), add constraint FK_tl_latask10_taskList_item_condition_2 foreign key (uid) references tl_latask10_taskList_item (uid); +alter table tl_latask10_taskList add index FK_NEW_174079138_89093BF758092FB (create_by), add constraint FK_NEW_174079138_89093BF758092FB foreign key (create_by) references tl_latask10_user (uid); +alter table tl_latask10_taskList_item add index FK_NEW_174079138_F52D1F93758092FB (create_by), add constraint FK_NEW_174079138_F52D1F93758092FB foreign key (create_by) references tl_latask10_user (uid); +alter table tl_latask10_taskList_item add index FK_NEW_174079138_F52D1F9330E79035 (taskList_uid), add constraint FK_NEW_174079138_F52D1F9330E79035 foreign key (taskList_uid) references tl_latask10_taskList (uid); +alter table tl_latask10_taskList_item add index FK_NEW_174079138_F52D1F93EC0D3147 (session_uid), add constraint FK_NEW_174079138_F52D1F93EC0D3147 foreign key (session_uid) references tl_latask10_session (uid); +alter table tl_latask10_item_log add index FK_NEW_174079138_693580A438BF8DFE (taskList_item_uid), add constraint FK_NEW_174079138_693580A438BF8DFE foreign key (taskList_item_uid) references tl_latask10_taskList_item (uid); +alter table tl_latask10_item_log add index FK_NEW_174079138_693580A441F9365D (user_uid), add constraint FK_NEW_174079138_693580A441F9365D foreign key (user_uid) references tl_latask10_user (uid); +alter table tl_latask10_item_attachment add index FK_tl_latask10_item_attachment_1 (taskList_item_uid), add constraint FK_tl_latask10_item_attachment_1 foreign key (taskList_item_uid) references tl_latask10_taskList_item (uid); +alter table tl_latask10_item_attachment add index FK_tl_latask10_item_attachment_2 (create_by), add constraint FK_tl_latask10_item_attachment_2 foreign key (create_by) references tl_latask10_user (uid); +alter table tl_latask10_item_comment add index FK_tl_latask10_item_comment_3 (taskList_item_uid), add constraint FK_tl_latask10_item_comment_3 foreign key (taskList_item_uid) references tl_latask10_taskList_item (uid); +alter table tl_latask10_item_comment add index FK_tl_latask10_item_comment_2 (create_by), add constraint FK_tl_latask10_item_comment_2 foreign key (create_by) references tl_latask10_user (uid); +alter table tl_latask10_session add index FK_NEW_174079138_24AA78C530E79035 (taskList_uid), add constraint FK_NEW_174079138_24AA78C530E79035 foreign key (taskList_uid) references tl_latask10_taskList (uid); +alter table tl_latask10_user add index FK_NEW_174079138_30113BFCEC0D3147 (session_uid), add constraint FK_NEW_174079138_30113BFCEC0D3147 foreign key (session_uid) references tl_latask10_session (uid); +alter table tl_latask10_user add index FK_NEW_174079138_30113BFC309ED320 (taskList_uid), add constraint FK_NEW_174079138_30113BFC309ED320 foreign key (taskList_uid) references tl_latask10_taskList (uid); + + + +INSERT INTO `tl_latask10_taskList` (`uid`, `create_date`, `update_date`, `create_by`, `title`, `run_offline`, `instructions`, + `online_instructions`, `offline_instructions`, `content_in_use`, `define_later`, `content_id`, `lock_when_finished`, + `minimum_number_tasks`, `is_sequential_order`, `allow_contribute_tasks`, `is_monitor_verification_required`, + `reflect_on_activity`) VALUES + (1,NULL,NULL,NULL,'Task List','0','Instructions ',null,null,0,0,${default_content_id},0,0,0,0,0,0); + +INSERT INTO `tl_latask10_taskList_item` (`uid`, `sequence_id`, `description`, `init_item`, `organization_xml`, `title`, `create_by`, `create_date`, `create_by_author`, `is_required`, `is_comments_allowed`, `is_comments_required`, `is_files_allowed`, `is_files_required`, `is_comments_files_allowed`, `show_comments_to_all`, `is_child_task`, `parent_task_name`, `taskList_uid`, `session_uid`) VALUES + (1,1,NULL,NULL,NULL,'Task number 1',null,NOW(),1,0,0,0,0,0,0,1,0,NULL,1,NULL); + +SET FOREIGN_KEY_CHECKS=1; Index: debian_installer/lams2/lams_tool_task/sql/drop_lams_tool_taskList.sql =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams_tool_task/sql/Attic/drop_lams_tool_taskList.sql,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/lams_tool_task/sql/drop_lams_tool_taskList.sql 4 Jul 2008 08:43:43 -0000 1.1 @@ -0,0 +1,15 @@ +SET FOREIGN_KEY_CHECKS=0; +drop table if exists tl_latask10_attachment; +drop table if exists tl_latask10_taskList; +drop table if exists tl_latask10_taskList_item; +drop table if exists tl_latask10_item_log; +drop table if exists tl_latask10_item_attachment; +drop table if exists tl_latask10_item_comment; +drop table if exists tl_latask10_session; +drop table if exists tl_latask10_user; +SET FOREIGN_KEY_CHECKS=1; + + + + + Index: debian_installer/lams2/lams_tool_task/sql/library_insert.sql =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams_tool_task/sql/Attic/library_insert.sql,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/lams_tool_task/sql/library_insert.sql 4 Jul 2008 08:43:43 -0000 1.1 @@ -0,0 +1,18 @@ +# Connection: ROOT LOCAL +# Host: localhost +# Saved: 2005-04-07 10:50:55 +# +INSERT INTO lams_learning_library +( +description, +title, +valid_flag, +create_date_time +) +VALUES +( +'Share taskList', +'Share taskList', +0, +NOW() +) Index: debian_installer/lams2/lams_tool_task/sql/tool_insert.sql =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams_tool_task/sql/Attic/tool_insert.sql,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/lams_tool_task/sql/tool_insert.sql 4 Jul 2008 08:43:43 -0000 1.1 @@ -0,0 +1,66 @@ +# Connection: ROOT LOCAL +# Host: localhost +# Saved: 2005-04-07 10:42:43 +# +INSERT INTO lams_tool +( +tool_signature, +service_name, +tool_display_name, +description, +tool_identifier, +tool_version, +learning_library_id, +default_tool_content_id, +valid_flag, +grouping_support_type_id, +supports_run_offline_flag, +learner_url, +learner_preview_url, +learner_progress_url, +author_url, +monitor_url, +define_later_url, +export_pfolio_learner_url, +export_pfolio_class_url, +contribute_url, +moderation_url, +help_url, +language_file, +classpath_addition, +context_file, +create_date_time, +modified_date_time, +supports_outputs +) +VALUES +( +'latask10', +'lataskTaskListService', +'Shared TaskList', +'Shared TaskList', +'sharedtaskList', +'20080211', +NULL, +NULL, +0, +2, +1, +'tool/latask10/learning/start.do?mode=learner', +'tool/latask10/learning/start.do?mode=author', +'tool/latask10/learning/start.do?mode=teacher', +'tool/latask10/authoring/start.do', +'tool/latask10/monitoring/summary.do', +'tool/latask10/definelater.do', +'tool/latask10/exportPortfolio?mode=learner', +'tool/latask10/exportPortfolio?mode=teacher', +'tool/latask10/contribute.do', +'tool/latask10/moderate.do', +'http://wiki.lamsfoundation.org/display/lamsdocs/latask10', +'org.lamsfoundation.lams.tool.taskList.ApplicationResources', +'lams-tool-latask10.jar', +'/org/lamsfoundation/lams/tool/taskList/taskListApplicationContext.xml', +NOW(), +NOW(), +1 +) Index: debian_installer/lams2/lams_tool_task/sql/updatescripts/updateTo20070227.sql =================================================================== RCS file: /usr/local/cvsroot/debian_installer/lams2/lams_tool_task/sql/updatescripts/Attic/updateTo20070227.sql,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ debian_installer/lams2/lams_tool_task/sql/updatescripts/updateTo20070227.sql 4 Jul 2008 08:43:45 -0000 1.1 @@ -0,0 +1,4 @@ +-- Update the TaskList tables to 20070227 +-- This is for the LAMS 2.0.1 release. + +UPDATE lams_tool set modified_date_time = now(), classpath_addition = 'lams-tool-latask10.jar', context_file = '/org/lamsfoundation/lams/tool/taskList/taskListApplicationContext.xml' where tool_signature = 'latask10'; Fisheye: Tag 1.2 refers to a dead (removed) revision in file `debian_installer/lams2-2.1rc1/index.html'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2 refers to a dead (removed) revision in file `debian_installer/lams2-2.1rc1/lams2.cnf'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.3 refers to a dead (removed) revision in file `debian_installer/lams2-2.1rc1/debian/changelog'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2 refers to a dead (removed) revision in file `debian_installer/lams2-2.1rc1/debian/compat'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2 refers to a dead (removed) revision in file `debian_installer/lams2-2.1rc1/debian/config'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.3 refers to a dead (removed) revision in file `debian_installer/lams2-2.1rc1/debian/control'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2 refers to a dead (removed) revision in file `debian_installer/lams2-2.1rc1/debian/copyright'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2 refers to a dead (removed) revision in file `debian_installer/lams2-2.1rc1/debian/dirs'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.3 refers to a dead (removed) revision in file `debian_installer/lams2-2.1rc1/debian/lams2.init'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2 refers to a dead (removed) revision in file `debian_installer/lams2-2.1rc1/debian/lams2.install'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2 refers to a dead (removed) revision in file `debian_installer/lams2-2.1rc1/debian/lams2.postinst.debhelper'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2 refers to a dead (removed) revision in file `debian_installer/lams2-2.1rc1/debian/lams2.postrm.debhelper'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2 refers to a dead (removed) revision in file `debian_installer/lams2-2.1rc1/debian/lams2.prerm.debhelper'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2 refers to a dead (removed) revision in file `debian_installer/lams2-2.1rc1/debian/lams2.substvars'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.4 refers to a dead (removed) revision in file `debian_installer/lams2-2.1rc1/debian/postinst'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.3 refers to a dead (removed) revision in file `debian_installer/lams2-2.1rc1/debian/postrm'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2 refers to a dead (removed) revision in file `debian_installer/lams2-2.1rc1/debian/preinst'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2 refers to a dead (removed) revision in file `debian_installer/lams2-2.1rc1/debian/prerm'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.2 refers to a dead (removed) revision in file `debian_installer/lams2-2.1rc1/debian/rules'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.3 refers to a dead (removed) revision in file `debian_installer/lams2-2.1rc1/debian/templates'. Fisheye: No comparison available. Pass `N' to diff?