Index: debian_installer/lams2/2.1.1to2.2.0.sql =================================================================== diff -u --- debian_installer/lams2/2.1.1to2.2.0.sql (revision 0) +++ debian_installer/lams2/2.1.1to2.2.0.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,18 @@ +-- Need to create the patches table before we start deploying new tools +CREATE TABLE patches ( + system_name VARCHAR(30) NOT NULL + , patch_level INTEGER(11) NOT NULL + , patch_date TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP + , patch_in_progress CHAR(1) NOT NULL DEFAULT 'F' + , PRIMARY KEY (system_name) +)TYPE=InnoDB; + +-- Remove lams_qtz event entries +delete from lams_qtz_SIMPLE_TRIGGERS; +delete from lams_qtz_TRIGGERS; +delete from lams_qtz_JOB_DETAILS; + +-- Version strings +update lams_configuration set config_value='2.2' where config_key='Version'; +update lams_configuration set config_value='2.2.0.200812021511' where config_key='AuthoringClientVersion' or config_key='MonitorClientVersion' or config_key="LearnerClientVersion" or config_key='ServerVersionNumber'; +update lams_configuration set config_value='2008-12-02' where config_key='DictionaryDateCreated'; Index: debian_installer/lams2/configure2.2.0.sql =================================================================== diff -u --- debian_installer/lams2/configure2.2.0.sql (revision 0) +++ debian_installer/lams2/configure2.2.0.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,2 @@ +-- make sure dimdim is disabled +update lams_learning_library set valid_flag=0 where title="Dimdim"; Index: debian_installer/lams2/debian/changelog =================================================================== diff -u -r1033327b97f726245cff921cdd217be36bc333a8 -r4fabe05a8702229c06ceee3f2a2d3a5580fe8302 --- debian_installer/lams2/debian/changelog (.../changelog) (revision 1033327b97f726245cff921cdd217be36bc333a8) +++ debian_installer/lams2/debian/changelog (.../changelog) (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -1,3 +1,15 @@ +lams2 (2.2.0-1) unstable; urgency=low + + * update to 2.2 + + -- LAMS Development Team Mon, 01 Dec 2008 14:00:00 +1000 + +lams2 (2.1.1-2) unstable; urgency=low + + * updated language files as of 5/9/08 + + -- LAMS Development Team Fri, 05 Sep 2008 13:33:00 +1000 + lams2 (2.1.1-1) unstable; urgency=low * updated chat tool to version 20080813 (fix compatibility with firefox3) Index: debian_installer/lams2/debian/files =================================================================== diff -u -re76fd205caafcee0c7521337f99071b574a1bfe3 -r4fabe05a8702229c06ceee3f2a2d3a5580fe8302 --- debian_installer/lams2/debian/files (.../files) (revision e76fd205caafcee0c7521337f99071b574a1bfe3) +++ debian_installer/lams2/debian/files (.../files) (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -1 +1 @@ -lams2_2.1.0-1_all.deb contrib/web extra +lams2_2.2.0-1_all.deb contrib/web extra Index: debian_installer/lams2/debian/lams2.install =================================================================== diff -u -r1033327b97f726245cff921cdd217be36bc333a8 -r4fabe05a8702229c06ceee3f2a2d3a5580fe8302 --- debian_installer/lams2/debian/lams2.install (.../lams2.install) (revision 1033327b97f726245cff921cdd217be36bc333a8) +++ debian_installer/lams2/debian/lams2.install (.../lams2.install) (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -16,3 +16,14 @@ 2.1rc1to2.1.sql /usr/share/lams2/ lams_tool_task /usr/share/lams2/ 2.1.0to2.1.1.sql /usr/share/lams2/ +lib/jboss-cache.jar /usr/share/jboss-4.0.2/server/default/lib/ +lib/jgroups.jar /usr/share/jboss-4.0.2/server/default/lib/ +lib/jboss-serialization.jar /usr/share/jboss-4.0.2/server/default/lib/ +2.1.1to2.2.0.sql /usr/share/lams2/ +configure2.2.0.sql /usr/share/lams2/ +repository /usr/share/lams2/ +lams_tool_daco /usr/share/lams2/ +lams_tool_dimdim /usr/share/lams2/ +lams_tool_gmap /usr/share/lams2/ +lams_tool_spreadsheet /usr/share/lams2/ +lams_tool_wiki /usr/share/lams2/ Index: debian_installer/lams2/debian/postinst =================================================================== diff -u -r1033327b97f726245cff921cdd217be36bc333a8 -r4fabe05a8702229c06ceee3f2a2d3a5580fe8302 --- debian_installer/lams2/debian/postinst (.../postinst) (revision 1033327b97f726245cff921cdd217be36bc333a8) +++ debian_installer/lams2/debian/postinst (.../postinst) (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -17,6 +17,59 @@ # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package +configure220 () { + # Configure 2.2 tools; need to run after above tools have been deployed + if [ "$db_root_pass" != "" ] ; then + mysql $db_name < /usr/share/lams2/configure2.2.0.sql -u root -p$db_root_pass || true + else + mysql $db_name < /usr/share/lams2/configure2.2.0.sql -u root || true + fi +} + +update211to220 () { + # Update 2.1.1 database to 2.2 + if [ "$db_root_pass" != "" ] ; then + mysql $db_name < /usr/share/lams2/2.1.1to2.2.0.sql -u root -p$db_root_pass || true + else + mysql $db_name < /usr/share/lams2/2.1.1to2.2.0.sql -u root || true + fi + + # Add data collection tool, new in 2.2 + cd /usr/share/lams2/lams_tool_daco/ + sed -i -e "s/\(\).*\(\?.*\)\(<\/dbDriverUrl>\)/\1jdbc:mysql:\/\/localhost:3306\/$db_name\2\3/" 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 + + # Add dimdim tool, new in 2.2 (disabled in 2.1.1to2.2.0.sql however) + cd /usr/share/lams2/lams_tool_dimdim/ + sed -i -e "s/\(\).*\(\?.*\)\(<\/dbDriverUrl>\)/\1jdbc:mysql:\/\/localhost:3306\/$db_name\2\3/" 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 + + # Add gmap tool, new in 2.2 + cd /usr/share/lams2/lams_tool_gmap/ + sed -i -e "s/\(\).*\(\?.*\)\(<\/dbDriverUrl>\)/\1jdbc:mysql:\/\/localhost:3306\/$db_name\2\3/" 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 + + # Add spreadsheet tool, new in 2.2 + cd /usr/share/lams2/lams_tool_spreadsheet/ + sed -i -e "s/\(\).*\(\?.*\)\(<\/dbDriverUrl>\)/\1jdbc:mysql:\/\/localhost:3306\/$db_name\2\3/" 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 + + # Add wiki tool, new in 2.2 + cd /usr/share/lams2/lams_tool_wiki/ + sed -i -e "s/\(\).*\(\?.*\)\(<\/dbDriverUrl>\)/\1jdbc:mysql:\/\/localhost:3306\/$db_name\2\3/" 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 +} + update21rc1to210 () { # Update 2.1rc1 database to 2.1 if [ "$db_root_pass" != "" ] ; then @@ -42,6 +95,11 @@ fi } +update () { + rm -rf /var/cache/jboss/tmp/* + rm -rf /var/cache/jboss/work/* +} + case "$1" in configure) . /usr/share/debconf/confmodule @@ -90,13 +148,24 @@ sed -i -e "s/port=\"8080\"/port=\"$server_port\"/" server.xml case "$2" in + 2.1.1*) + update; + update211to220; + configure220; + ;; 2.1.0*) + update; update210to211; + update211to220; + configure220; ;; 2.1rc1*) + update; update21rc1to210; update210to211; + update211to220; + configure220; ;; *) @@ -180,11 +249,6 @@ -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 @@ -202,6 +266,11 @@ fi ln -s /var/lib/lams/lams-www.war 2>/dev/null || true + # Copy included repository (only for new installs) + cp -rp /usr/share/lams2/repository/ /var/lib/lams/ + + configure220; + # 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/ @@ -215,6 +284,7 @@ /etc/init.d/mysql restart || exit $? fi fi + ;; esac @@ -260,8 +330,16 @@ # 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 + rm -rf /usr/share/lams2/lams_tool_task rm -f /usr/share/lams2/2.1.0to2.1.1.sql + rm -f /usr/share/lams2/2.1.1to2.2.0.sql + rm -f /usr/share/lams2/configure2.2.0.sql + rm -rf /usr/share/lams2/lams_tool_daco + rm -rf /usr/share/lams2/lams_tool_dimdim + rm -rf /usr/share/lams2/lams_tool_gmap + rm -rf /usr/share/lams2/lams_tool_spreadsheet + rm -rf /usr/share/lams2/lams_tool_wiki + rm -rf /usr/share/lams2/repository # Delete default ROOT.war/index.html (replaced with redirecting index.jsp) rm -f /usr/share/jboss-4.0.2/server/default/deploy/jbossweb-tomcat55.sar/ROOT.war/index.html Index: debian_installer/lams2/debian/postrm =================================================================== diff -u -re76fd205caafcee0c7521337f99071b574a1bfe3 -r4fabe05a8702229c06ceee3f2a2d3a5580fe8302 --- debian_installer/lams2/debian/postrm (.../postrm) (revision e76fd205caafcee0c7521337f99071b574a1bfe3) +++ debian_installer/lams2/debian/postrm (.../postrm) (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -24,10 +24,6 @@ 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 Index: debian_installer/lams2/lams_tool_daco/deploy.bat =================================================================== diff -u --- debian_installer/lams2/lams_tool_daco/deploy.bat (revision 0) +++ debian_installer/lams2/lams_tool_daco/deploy.bat (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -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_daco/deploy.sh =================================================================== diff -u --- debian_installer/lams2/lams_tool_daco/deploy.sh (revision 0) +++ debian_installer/lams2/lams_tool_daco/deploy.sh (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -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_daco/deploy.xml =================================================================== diff -u --- debian_installer/lams2/lams_tool_daco/deploy.xml (revision 0) +++ debian_installer/lams2/lams_tool_daco/deploy.xml (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,34 @@ + + ladaco10 + lams-tool-ladaco10.war + /lams/tool/ladaco10 + /usr/share/lams2/lams_tool_daco/sql/updatescripts/updateTo20081114.sql + /usr/share/lams2/lams_tool_daco/sql/tool_insert.sql + /usr/share/lams2/lams_tool_daco/sql/library_insert.sql + false + /usr/share/lams2/lams_tool_daco/sql/activity_insert.sql + /usr/share/lams2/lams_tool_daco/sql/create_lams_tool_daco.sql + /usr/share/lams2/lams_tool_daco/sql/drop_lams_tool_daco.sql + /usr/share/lams2/lams_tool_daco/sql/db_version_insert.sql + /org/lamsfoundation/lams/tool/daco/dacoApplicationContext.xml + lams-tool-ladaco10.jar + 2.0 + + /usr/share/lams2/lams_tool_daco/lams-tool-ladaco10.war + /usr/share/lams2/lams_tool_daco/lams-tool-ladaco10.jar + + + /usr/share/lams2/lams_tool_daco/language/ApplicationResources.properties + /usr/share/lams2/lams_tool_daco/language/ApplicationResources_el_GR.properties + /usr/share/lams2/lams_tool_daco/language/ApplicationResources_en_AU.properties + /usr/share/lams2/lams_tool_daco/language/ApplicationResources_es_ES.properties + /usr/share/lams2/lams_tool_daco/language/ApplicationResources_no_NO.properties + + 20081114 + com.mysql.jdbc.Driver + jdbc:mysql://localhost/lams_head?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&autoReconnect=true&useUnicode=true + lams + lamsdemo + /usr/share/jboss-4.0.2/server/default/deploy/lams.ear + org.lamsfoundation.lams.tool.daco + Index: debian_installer/lams2/lams_tool_daco/lams-tool-ladaco10.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_daco/lams-tool-ladaco10.war =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_daco/language/ApplicationResources.properties =================================================================== diff -u --- debian_installer/lams2/lams_tool_daco/language/ApplicationResources.properties (revision 0) +++ debian_installer/lams2/lams_tool_daco/language/ApplicationResources.properties (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,255 @@ +appName = daco +#language code: en +#locale code: AU + + # CVS ID: $Id$ Exported from the LAMS Community by Ernie Ghiglione on Wed Nov 19 18:41:46 GMT 2008 + +#=================== labels for Data Collection =================# + +activity.title =Data Collection +activity.description =Collecting data with custom structure. +activity.helptext =Asking questions with custom, limited answers. +tool.display.name =Data Collection Tool +tool.description =Tool for collecting data. +errorPage.title =Error page +errorPage.heading =Some error occurs when handling your request +label.common.summary =Summary +label.common.summary.none =None +label.common.summary.sum =Sum +label.common.summary.average =Average +label.common.summary.count =Count +label.common.summary.refresh =Refresh +label.common.heading =Data Collection +label.common.view =View +label.common.cancel =Cancel +label.common.edit =Edit +label.common.delete =Delete +label.common.min =Minimum +label.common.max =Maximum +label.common.view.change =Change view +button.try.again =Try again +message.no.reflection.available =No notebook available +define.later.message =Please wait for the teacher to complete the contents of this activity. +label.author.title =Data Collection +label.authoring.heading.instructions =Instructions +label.authoring.heading.instructions.desc =Please input online and offline instructions +label.authoring.heading.advanced =Advanced +label.authoring.heading.advanced.description =Please input advanced options for data collection +label.authoring.heading.basic.description =Basic input information for data collection +label.authoring.heading.basic =Basic +label.authoring.basic.title =Title +label.authoring.basic.instruction =Instructions +label.authoring.basic.answeroption =Answer options +label.authoring.basic.answeroption.add =Add option +label.authoring.basic.answeroption.ordinal =ABCDEFGHIJKLMNOPQRSTUVWXYZ +label.authoring.basic.answeroption.up =Move Up +label.authoring.basic.answeroption.down =Move down +label.authoring.basic.download =Download +label.authoring.basic.question.add =Add question +label.authoring.basic.textfield =Single line text +label.authoring.basic.textfield.add =Add single line text question +label.authoring.basic.textfield.help =Learner enters a single line of text as an answer. +label.authoring.basic.textarea =Multi-line text +label.authoring.basic.textarea.add =Add multi-line text question +label.authoring.basic.textarea.help =Learner enters a multi-line text as an answer. +label.authoring.basic.number =Number +label.authoring.basic.number.add =Add number question +label.authoring.basic.number.help =Learner enters a number as an answer. +label.authoring.basic.number.digitsdecimal =Digits after decimal point +label.authoring.basic.date =Date +label.authoring.basic.date.add =Add date question +label.authoring.basic.date.help =Learner enters a date as an answer. +label.authoring.basic.file =File +label.authoring.basic.file.add =Add single file +label.authoring.basic.file.help =Learner uploads a file as an answer. +label.authoring.basic.image =Image +label.authoring.basic.image.add =Add image +label.authoring.basic.image.help =Learner uploads an image as an answer. +label.authoring.basic.radio =Radio buttons +label.authoring.basic.radio.add =Add radio buttons question +label.authoring.basic.radio.help =Learner chooses one answer from the given options. +label.authoring.basic.dropdown =Dropdown menu +label.authoring.basic.dropdown.add =Add dropdown menu question +label.authoring.basic.dropdown.help =Learner chooses one answer from the given options. +label.authoring.basic.checkbox =Checkbox +label.authoring.basic.checkbox.add =Add checkbox question +label.authoring.basic.checkbox.help =Learner chooses multiple answers from the given options. +label.authoring.basic.longlat =Longitude/Latitude +label.authoring.basic.longlat.add =Add longitude/latitude question +label.authoring.basic.longlat.maps =Choose the maps +label.authoring.basic.longlat.help =Learner enters longitude and latitude as an answer. +label.authoring.basic.description =Question +label.authoring.basic.min.select =Min selected +label.authoring.basic.max.select =Max selected +label.authoring.basic.max.char =Max characters +label.authoring.basic.max.word =Max words +label.authoring.basic.list.title =Question list +label.authoring.basic.list.header.type =Type +label.authoring.basic.list.header.question =Question +label.authoring.basic.required =Question is required +label.authoring.basic.additionaloptions.show =Show additional options +label.authoring.basic.additionaloptions.hide =Hide additional options +label.authoring.advanced.reflectOnActivity =Add Notebook at end of Data Collection with the following instructions: +label.authoring.advanced.record =Limit number of records +label.authoring.advanced.record.nolimit =No limit +label.authoring.advanced.lock.on.finished =Lock when finished +label.authoring.advanced.notify.onlearnerentry =Notify monitoring teachers when a learner enters this activity +label.authoring.advanced.notify.onrecordsubmit =Notify monitoring teachers when a learner submits a record +label.authoring.online.instruction =Online Instructions +label.authoring.online.file =Upload online file +label.authoring.online.filelist =Online file list +label.authoring.online.upload =Upload Online +label.authoring.offline.file =Upload offline file +label.authoring.offline.instruction =Offline Instructions +label.authoring.offline.filelist =Offline file list +label.authoring.offline.upload =Upload Offline +label.authoring.choosefile.button =Choose file +label.authoring.save.button =Save +message.authoring.cancel.save =Do you want to close this window without saving? +label.learning.title =Data Collection Learning +label.learning.heading =Data Collection +label.learning.heading.add =Add +label.learning.heading.list =List +label.learning.heading.summary =Summary +label.learning.heading.recordnumber =Record number: +label.learning.heading.recordcount =Total record count +label.learning.heading.norecords =No records added. +label.learning.add =Add record +label.learning.textfield.hint =Enter a single line of text +label.learning.textarea.hint =Enter text +label.learning.number.hint =Enter a number +label.learning.number.decimal =The number will be rounded to {0} decimal places. +label.learning.date.hint =Enter a date +label.learning.date.day =Day: +label.learning.date.month =Month: +label.learning.date.year =Year: +label.learning.file.hint =Choose a file +label.learning.file.uploaded =Uploaded file: +label.learning.file.notuploaded =No file uploaded. +label.learning.image.hint =Choose an image +label.learning.radio.hint =Choose an option +label.learning.dropdown.hint =Choose an option +label.learning.dropdown.select =SELECT +label.learning.dropdown.noneselected =No answer was selected. +label.learning.dropdown.selected =Selected answer: +label.learning.checkbox.hint =Choose options +label.learning.longlat.hint =Enter two decimal numbers +label.learning.longlat.longitude =Longitude: +label.learning.longlat.longitude.unit =\u00b0N +label.learning.longlat.latitude =Latitude: +label.learning.longlat.latitude.unit =\u00b0E +label.learning.tableheader.questions =Questions +label.learning.tableheader.records =Records +label.learning.tableheader.recordnumber =Record number +label.learning.tableheader.summary =Summaries +label.learning.tableheader.summary.learner =You +label.learning.tableheader.summary.group =Group +label.learning.summary.emptyanswer =Empty answer +label.learning.continue =Continue +label.learning.finished =Next Activity +message.learning.alertContentEdit =The modification of the content is not allowed since one or more participants has attempted the activity. +message.learning.warnLockOnFinish =Note: After you click on "Next Activity" and you come back to this Data Collection, you won't be able to view questions +message.learning.addrecordsuccess =The record was added successfully. +message.learning.editrecordsuccess =The record was updated successfully. +message.learning.activityLocked =The instructor has set this activity not to allow you to add any more answers after you have finished it. +message.learning.offline =This activity is not being done on the computer. Please see your instructor for details. +label.monitoring.close =Close +title.monitoring =LAMS Data Collection monitoring +title.monitoring.recordlist =LAMS record list +tab.monitoring.statistics =Statistic +tab.monitoring.instructions =Instruction +tab.monitoring.edit.activity =Edit Activity +label.monitoring.fullname =Full name +label.monitoring.loginname =Login name +label.monitoring.recordcount =Record count +label.monitoring.notebook =Notebook entries +label.monitoring.notebook.view =View +label.monitoring.notebook.none =None +label.monitoring.chooseuser =Choose learner +label.monitoring.viewrecords.all =View all records +label.monitoring.advancedsettings =Advanced Settings +label.monitoring.advancedsettings.on =On +label.monitoring.advancedsettings.off =Off +label.monitoring.advancedsettings.addNotebook =Add Notebook at end of Data Collection +label.monitoring.advancedsettings.notebookinstructions =Notebook instructions +label.monitoring.group =Group +label.monitoring.type =Type +label.monitoring.title =Title +label.monitoring.suggest =Suggested By +label.monitoring.number.learners =Number of Learners +label.monitoring.hide =Hide +label.monitoring.show =Show +label.monitoring.user.loginname =Login name +label.monitoring.user.name =Name +label.monitoring.hidden =Hidden +label.monitoring.edit.activity.cancel =Cancel +label.monitoring.edit.activity.update =Update +label.monitoring.edit.activity.edit =Edit +label.monitoring.attachments =Attachments +label.monitoring.user.fullname =Name +label.monitoring.heading.access =Learners list +label.monitoring.reflection.heading =View Notebook entries +message.monitoring.edit.activity.not.editable =This Activity is no longer editable +message.monitoring.summary.no.session =No learners have accessed this activity. +message.monitoring.summary.no.question.for.group =No question available for this group. +label.export.title =Export portfolio of Data Collection +label.export.reflection.heading =Notebook entry +error.question.desc.blank =Description can not be blank +error.question.file.blank =File can not be blank. +error.question.max.blank =The maximum constraint must not be blank. +error.question.max.number.int =The maximum constraint must be an integer number. +error.question.max.number.float =The maximum constraint must be a decimal number. +error.question.max.negative =The maximum constraint must be a nonnegative number. +error.question.max.toohigh =The maximum constraint must be less than {0}. +error.question.max.toohigh.answeroption =The maximum constraint must be less or equal to the answer option count. +error.question.max.toolow =The maximum constraint must be more than {0}. +error.question.min.blank =The minimum constraint must not be blank. +error.question.min.number.int =The minimum constraint must be an integer number. +error.question.min.number.float =The minimum constraint must be a decimal number. +error.question.min.negative =The minimum constraint must be a nonnegative number. +error.question.min.toohigh =The minimum constraint must be less than {0}. +error.question.min.toohigh.answeroption =The minimum constraint must be less or equal to the answer option count. +error.question.min.toolow =The minimum constraint must be more than {0}. +error.question.min.toohigh.max =The minimum constraint must be less than the maximum constraint. +error.question.answeroption.repeat =The answer options {0} and {1} are the same. +error.question.answeroption.notenough =You should provide at least {0} answer options. +error.question.digitsdecimal.int =The number of digits after decimal point must be an integer number. +error.question.digitsdecimal.nonnegative =The number of digits after decimal point must be a nonnegative number. +error.recordlimit.min.toohigh.max =The minimum number of records must be less or equal to the maximum. +error.record.blank =An answer for question {0} is required. +error.record.textarea.long =The maximum number of words in question {0} is {1}. +error.record.number.min =The number in question {0} must be at least {1}. +error.record.number.max =The number in question {0} should be no more than {1}. +error.record.number.float =The answer in question {0} must be a decimal number. +error.record.date.day.blank =The day field in question {0} is blank. +error.record.date.day.int =The day field in question {0} must be an integer number. +error.record.date.day.limit =The day field in question {0} must be between 1 and {1}. +error.record.date.month.blank =The month field in question {0} is blank. +error.record.date.month.int =The month field in question {0} must be an integer number. +error.record.date.month.limit =The month field in question {0} must be between 1 and 12. +error.record.date.year.blank =The year field in question {0} is blank. +error.record.date.year.int =The year field in question {0} must be an integer number. +error.record.image.format =The file in question {0} must be an image (extensions: JPG, GIF or PNG). +error.record.checkbox.min =The number of answers in question {0} must be no less than {1}. +error.record.checkbox.max =The number of answers in question {0} must be no more than {1}. +error.record.longlat.longitude.blank =The longitude in question {0} must not be blank. +error.record.longlat.longitude.float =The longitude in question {0} must be an decimal number. +error.record.longlat.latitude.blank =The latitude in question {0} must not be blank. +error.record.longlat.latitude.float =The latitude in question {0} must be an decimal number. +error.record.notenough =You should enter at least {0} records. +error.record.toomuch =You should enter no more than {0} records. +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.default.content.not.find =Could not retrieve default content record for this tool. +error.msg.repository =A repository error occurred while trying to upload the file. +event.learnerentry.subject =LAMS: A learner entered a data collection tool +event.learnerentry.body =The learner {0} entered a data collection tool.\n\nThis message was send automatically, following tool''s advanced settings. +event.recordsubmit.subject =LAMS: A learner submitted a record in a data collection tool +event.recordsubmit.body =The learner {0} submitted a record in a data collection tool.\n\nThis message was send automatically, following tool''s advanced settings. +output.desc.learner.number.of.posts =Learner's number of records + + +#======= End labels: Exported 244 labels for en AU ===== Index: debian_installer/lams2/lams_tool_daco/language/ApplicationResources_el_GR.properties =================================================================== diff -u --- debian_installer/lams2/lams_tool_daco/language/ApplicationResources_el_GR.properties (revision 0) +++ debian_installer/lams2/lams_tool_daco/language/ApplicationResources_el_GR.properties (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,255 @@ +appName = daco +#language code: el +#locale code: GR + + # CVS ID: $Id$ Exported from the LAMS Community by Ernie Ghiglione on Mon Dec 01 22:20:22 GMT 2008 + +#=================== labels for Data Collection =================# + +label.common.min =\u0395\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf\u03c2 +label.authoring.basic.min.select =\u0395\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf\u03c2 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03c9\u03bd +label.authoring.basic.max.char =\u039c\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf\u03c2 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03c9\u03bd +label.authoring.basic.max.word =\u039c\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf\u03c2 \u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03bb\u03ad\u03be\u03b5\u03c9\u03bd +label.common.max =\u039c\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf\u03c2 +error.recordlimit.min.toohigh.max =\u039f \u03b5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf\u03c2 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ce\u03bd \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b9\u03ba\u03c1\u03cc\u03c4\u03b5\u03c1\u03bf\u03c2 \u03ae \u03af\u03c3\u03bf\u03c2 \u03bc\u03b5 \u03c4\u03bf \u03bc\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf. +error.record.textarea.long =\u039f \u03bc\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf\u03c2 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03bb\u03ad\u03be\u03b5\u03c9\u03bd \u03c3\u03c4\u03bf \u03b5\u03c1\u03ce\u03c4\u03b7\u03bc\u03b1 {0} \u03b5\u03af\u03bd\u03b1\u03b9{1}. +label.authoring.basic.max.select =\u039c\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf\u03c2 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03c9\u03bd +error.msg.io.exception =\u039c\u03b9\u03b1 \u03b5\u03be\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u0395\u03b9\u03c3\u03cc\u03b4\u03bf\u03c5/\u0395\u03be\u03cc\u03b4\u03bf\u03c5 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae (\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7) \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5. +error.msg.file.not.found = \u03a4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b4\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03b5\u03be\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5. +label.authoring.basic.download =\u039b\u03ae\u03c8\u03b7 +error.upload.failed =\u0397 \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae (\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7) \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 {0} \u03b1\u03c0\u03ad\u03c4\u03c5\u03c7\u03b5 +error.msg.invaid.param.upload =\u039c\u03b9\u03b1 \u03b5\u03be\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u0391\u03ba\u03b1\u03c4\u03ac\u03bb\u03bb\u03b7\u03bb\u03b7\u03c2 \u03a0\u03b1\u03c1\u03b1\u03bc\u03ad\u03c4\u03c1\u03bf\u03c5 \u0395\u03b9\u03c3\u03cc\u03b4\u03bf\u03c5/\u0395\u03be\u03cc\u03b4\u03bf\u03c5 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae (\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7) \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5. +label.authoring.basic.longlat.maps =\u0395\u03c0\u03ad\u03bb\u03b5\u03be\u03b5 \u03c4\u03bf\u03c5\u03c2 \u03c7\u03ac\u03c1\u03c4\u03b5\u03c2 +label.authoring.advanced.notify.onrecordsubmit =\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf\u03c5\u03c2 \u03b5\u03c0\u03cc\u03c0\u03c4\u03b5\u03c2 \u03c0\u03cc\u03c4\u03b5 \u03ad\u03bd\u03b1\u03c2 \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 \u03c5\u03c0\u03bf\u03b2\u03ac\u03bb\u03b5\u03b9 \u03bc\u03af\u03b1 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae +label.learning.longlat.latitude.unit =\u00b0A +label.authoring.advanced.record =\u038c\u03c1\u03b9\u03b1 \u03b1\u03c1\u03b9\u03b8\u03bc\u03bf\u03cd \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ce\u03bd +message.learning.activityLocked =\u039f \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03c4\u03ae\u03c2 \u03ad\u03c7\u03b5\u03b9 \u03bf\u03c1\u03af\u03c3\u03b5\u03b9 \u03b7 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 \u03bd\u03b1 \u03bc\u03b7\u03bd \u03c3\u03b1\u03c2 \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c8\u03b5\u03b9 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03b5\u03c4\u03b5 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03b1\u03c0\u03b1\u03bd\u03c4\u03ae\u03c3\u03b5\u03b9\u03c2, \u03b1\u03c6\u03bf\u03cd \u03ad\u03c7\u03b5\u03b9 \u03bf\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03c9\u03b8\u03b5\u03af. +message.learning.alertContentEdit =\u0397 \u03c4\u03c1\u03bf\u03c0\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03b4\u03b5\u03bd \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03c4\u03b1\u03b9 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03cc\u03c4\u03b9 \u03ad\u03bd\u03b1\u03c2 \u03ae \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03bf\u03b9 \u03c3\u03c5\u03bc\u03bc\u03b5\u03c4\u03ad\u03c7\u03bf\u03bd\u03c4\u03b5\u03c2 \u03ad\u03c7\u03bf\u03c5\u03bd \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ae\u03c3\u03b5\u03b9 \u03c4\u03b7 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 +title.monitoring =\u0395\u03c0\u03bf\u03c0\u03c4\u03b5\u03af\u03b1 \u03a3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae\u03c2 \u0394\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd LAMS +label.authoring.advanced.notify.onlearnerentry =\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf\u03c5\u03c2 \u03b5\u03c0\u03cc\u03c0\u03c4\u03b5\u03c2 \u03c0\u03cc\u03c4\u03b5 \u03ad\u03bd\u03b1\u03c2 \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 \u03b5\u03b9\u03c3\u03ad\u03c1\u03c7\u03b5\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7\u03bd \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 +message.learning.offline =\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 \u03b5\u03c0\u03bf\u03c0\u03c4\u03b7 \u03c3\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03bb\u03b5\u03c0\u03c4\u03bf\u03bc\u03ad\u03c1\u03b5\u03b9\u03b5\u03c2. +error.msg.repository =\u0388\u03bd\u03b1\u03c2 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03c7\u03ce\u03c1\u03bf\u03c5 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7\u03c2 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b5 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03c3\u03c0\u03ac\u03b8\u03b5\u03b9\u03b1 \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae\u03c2 (\u03bd\u03b1 \u03b1\u03bd\u03b5\u03b2\u03ac\u03c3\u03b5\u03c4\u03b5) \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5. +message.authoring.cancel.save =\u0398\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03ba\u03bb\u03b5\u03af\u03c3\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03c7\u03c9\u03c1\u03af\u03c2 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7; +label.authoring.save.button =\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 +label.monitoring.viewrecords.all =\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03cc\u03bb\u03c9\u03bd \u03c4\u03c9\u03bd \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ce\u03bd +label.monitoring.title =\u03a4\u03af\u03c4\u03bb\u03bf\u03c2 +label.authoring.basic.title =\u03a4\u03af\u03c4\u03bb\u03bf\u03c2 +error.msg.upload.file.not.found =\u0394\u03b5\u03bd \u03bd\u03b1 \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5 \u03c4\u03bf \u03b1\u03c0\u03bf\u03c3\u03c4\u03b1\u03bb\u03b8\u03ad\u03bd \u03b1\u03c1\u03c7\u03b5\u03af\u03bf {0} +error.msg.default.content.not.find =\u0394\u03b5\u03bd \u03ad\u03b3\u03b9\u03bd\u03b5 \u03b4\u03c5\u03bd\u03b1\u03c4\u03ae \u03b7 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2 \u03bc\u03b5 \u03c4\u03bf \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b3\u03b9\u03b1 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf. +event.learnerentry.subject =\u0395\u03bd\u03b1\u03c2 \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2\u03ad\u03c7\u03b5\u03b9 \u03b5\u03b9\u03c3\u03ad\u03bb\u03b8\u03b5\u03b9 \u03c3\u03c4\u03bf \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf \u03c3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd +event.recordsubmit.subject =LAMS: \u0388\u03bd\u03b1\u03c2 \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 \u03c5\u03c0\u03ad\u03b2\u03b1\u03bb\u03b5 \u03ad\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03c3\u03b5 \u03ad\u03bd\u03b1 \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf \u03c3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd +output.desc.learner.number.of.posts =\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ce\u03bd \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 +label.learning.heading.summary =\u03a0\u03b5\u03c1\u03af\u03bb\u03b7\u03c8\u03b7 +error.question.max.toohigh.answeroption =\u0397 \u03bc\u03ad\u03b3\u03b9\u03c3\u03c4\u03b7 \u03c5\u03c0\u03bf\u03c7\u03c1\u03ad\u03c9\u03c3\u03b7 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b9\u03ba\u03c1\u03cc\u03c4\u03b5\u03c1\u03b7 \u03ae \u03af\u03c3\u03b7 \u03bc\u03b5 \u03c4\u03bf\u03bd \u03c0\u03c1\u03bf\u03b5\u03c1\u03b1\u03b9\u03c4\u03b9\u03ba\u03cc \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc \u03b1\u03c0\u03b1\u03bd\u03c4\u03ae\u03c3\u03b5\u03c9\u03bd. +error.question.max.toolow =\u0397 \u03bc\u03ad\u03b3\u03b9\u03c3\u03c4\u03b7 \u03c5\u03c0\u03bf\u03c7\u03c1\u03ad\u03c9\u03c3\u03b7 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b7 \u03b1\u03c0\u03cc {0} +error.question.min.blank =\u0397 \u03b5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03b7 \u03c5\u03c0\u03bf\u03c7\u03c1\u03ad\u03c9\u03c3\u03b7 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03bc\u03b7\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b5\u03bd\u03ae. +error.question.min.number.int =\u0397 \u03b5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03b7 \u03c5\u03c0\u03bf\u03c7\u03c1\u03ad\u03c9\u03c3\u03b7 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03bd\u03b1\u03c2 \u03b1\u03ba\u03ad\u03c1\u03b1\u03b9\u03bf\u03c2 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2. +error.question.min.number.float =\u0397 \u03b5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03b7 \u03c5\u03c0\u03bf\u03c7\u03c1\u03ad\u03c9\u03c3\u03b7 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03bd\u03b1\u03c2 \u03b4\u03b5\u03ba\u03b1\u03b4\u03b9\u03ba\u03cc\u03c2 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2. +error.question.min.negative =\u0397 \u03b5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03b7 \u03c5\u03c0\u03bf\u03c7\u03c1\u03ad\u03c9\u03c3\u03b7 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03bd\u03b1\u03c2 \u03bc\u03b7-\u03b1\u03c1\u03bd\u03b7\u03c4\u03b9\u03ba\u03cc\u03c2 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2. +error.question.min.toohigh =\u0397 \u03b5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03b7 \u03c5\u03c0\u03bf\u03c7\u03c1\u03ad\u03c9\u03c3\u03b7 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b9\u03ba\u03c1\u03cc\u03c4\u03b5\u03c1\u03b7 \u03b1\u03c0\u03cc {0}. +error.question.min.toohigh.answeroption =\u0397 \u03b5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03b7 \u03c5\u03c0\u03bf\u03c7\u03c1\u03ad\u03c9\u03c3\u03b7 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b9\u03ba\u03c1\u03cc\u03c4\u03b5\u03c1\u03b7 \u03ae \u03af\u03c3\u03b7 \u03bc\u03b5 \u03c4\u03bf\u03bd \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc \u03c4\u03c9\u03bd \u03b4\u03c5\u03bd\u03b1\u03c4\u03ce\u03bd \u03b1\u03c0\u03b1\u03bd\u03c4\u03ae\u03c3\u03b5\u03c9\u03bd. +error.question.min.toolow =\u0397 \u03b5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03b7 \u03c5\u03c0\u03bf\u03c7\u03c1\u03ad\u03c9\u03c3\u03b7 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03b1\u03c0\u03cc {0}. +error.question.min.toohigh.max =\u0397 \u03b5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03b7 \u03c5\u03c0\u03bf\u03c7\u03c1\u03ad\u03c9\u03c3\u03b7 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b9\u03ba\u03c1\u03cc\u03c4\u03b5\u03c1\u03b7 \u03b1\u03c0\u03cc \u03c4\u03b7 \u03bc\u03ad\u03b3\u03b9\u03c3\u03c4\u03b7 \u03c5\u03c0\u03bf\u03c7\u03c1\u03ad\u03c9\u03c3\u03b7. +error.question.answeroption.repeat =\u039f\u03b9 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 {0} \u03ba\u03b1\u03b9 {1} \u03c3\u03c4\u03b7\u03bd \u03b1\u03c0\u03ac\u03bd\u03c4\u03b7\u03c3\u03b7 \u03b5\u03af\u03bd\u03b1\u03b9 \u03af\u03b4\u03b9\u03b5\u03c2. +error.question.answeroption.notenough =\u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b4\u03af\u03bd\u03b5\u03c4\u03b1\u03b9 \u03c4\u03bf\u03c5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf {0} \u03b4\u03c5\u03bd\u03b1\u03c4\u03ad\u03c2 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 \u03c3\u03c4\u03b7\u03bd \u03b1\u03c0\u03ac\u03bd\u03c4\u03b7\u03c3\u03b7. +error.question.digitsdecimal.int =\u039f \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c4\u03c9\u03bd \u03c8\u03b7\u03c6\u03af\u03c9\u03bd \u03bc\u03b5\u03c4\u03ac \u03c4\u03bf \u03b4\u03b5\u03ba\u03b1\u03b4\u03b9\u03ba\u03cc \u03c3\u03b7\u03bc\u03b5\u03af\u03bf \u03b8\u03b1 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03ba\u03ad\u03c1\u03b1\u03b9\u03bf\u03c2 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2. +error.question.digitsdecimal.nonnegative =\u039f \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c4\u03c9\u03bd \u03c8\u03b7\u03c6\u03af\u03c9\u03bd \u03bc\u03b5\u03c4\u03ac \u03c4\u03bf \u03b4\u03b5\u03ba\u03b1\u03b4\u03b9\u03ba\u03cc \u03c3\u03b7\u03bc\u03b5\u03af\u03bf \u03b8\u03b1 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b7-\u03b1\u03c1\u03bd\u03b7\u03c4\u03b9\u03ba\u03cc\u03c2 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2. +error.record.blank =\u0391\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03bc\u03b9\u03b1 \u03b1\u03c0\u03ac\u03bd\u03c4\u03b7\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 {0}. +error.record.number.min =\u039f \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c3\u03c4\u03b7\u03bd \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 {0} \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03bf\u03c5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf\u03bd {1}. +error.record.number.max =\u039f \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c3\u03c4\u03b7\u03bd \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 {0} \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03bc\u03b7\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf\u03c2 \u03b1\u03c0\u03cc {1}. +error.record.number.float =\u039f \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c3\u03c4\u03b7\u03bd \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 {0} \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b5\u03ba\u03b1\u03b4\u03b9\u03ba\u03cc\u03c2 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 +error.record.date.day.blank =\u03a4\u03bf \u03c0\u03b5\u03b4\u03af\u03bf\u03c5 \u03c4\u03b7\u03c2 \u03b7\u03bc\u03ad\u03c1\u03b1\u03c2 \u03c3\u03c4\u03b7\u03bd \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 {0} \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b5\u03bd\u03cc. +error.record.date.day.int =\u039f \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c3\u03c4\u03b7\u03bd \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 {0} \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03ba\u03ad\u03c1\u03b1\u03b9\u03bf\u03c2 +error.record.date.day.limit =\u03a4\u03bf \u03c0\u03b5\u03b4\u03af\u03bf \u03b7\u03bc\u03ad\u03c1\u03b1 \u03c3\u03c4\u03b7\u03bd \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 {0} \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b5\u03c4\u03b1\u03be\u03cd \u03c4\u03bf\u03c5 1 \u03ba\u03b1\u03b9 {1}. +error.record.date.month.blank =\u03a4\u03bf \u03c0\u03b5\u03b4\u03af\u03bf \u03bc\u03ae\u03bd\u03b1\u03c2 \u03c3\u03c4\u03b7\u03bd \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 {0} \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b5\u03bd\u03cc. +error.record.date.month.int =\u03a4\u03bf \u03c0\u03b5\u03b4\u03af\u03bf \u03bc\u03ae\u03bd\u03b1\u03c2 \u03c3\u03c4\u03b7\u03bd \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 {0} \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03ba\u03ad\u03c1\u03b1\u03b9\u03bf\u03c2 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2. +error.record.date.month.limit =\u03a4\u03bf \u03c0\u03b5\u03b4\u03af\u03bf \u03bc\u03ae\u03bd\u03b1\u03c2 \u03c3\u03c4\u03b7\u03bd \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 {0} \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b5\u03c4\u03b1\u03be\u03cd \u03c4\u03bf\u03c5 1 \u03ba\u03b1\u03b9 12. +error.record.date.year.blank =\u03a4\u03bf \u03c0\u03b5\u03b4\u03af\u03bf \u03ad\u03c4\u03bf\u03c2 \u03c3\u03c4\u03b7\u03bd \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 {0} \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b5\u03bd\u03cc. +error.record.date.year.int =\u03a4\u03bf \u03c0\u03b5\u03b4\u03af\u03bf \u03ad\u03c4\u03bf\u03c2 \u03c3\u03c4\u03b7\u03bd \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 {0} \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03ba\u03ad\u03c1\u03b1\u03b9\u03bf\u03c2 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2. +error.record.image.format =\u03a4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03c3\u03c4\u03b7\u03bd \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 {0} \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03af\u03b1 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1 (\u03bc\u03b5 \u03b5\u03c0\u03ad\u03ba\u03c4\u03b1\u03c3\u03b7 JPG, GIF \u03ae PNG) +error.record.checkbox.min =\u039f \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c4\u03c9\u03bd \u03b1\u03c0\u03b1\u03bd\u03c4\u03ae\u03c3\u03b5\u03c9\u03bd \u03c3\u03c4\u03b7\u03bd \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 {0} \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03bc\u03b7\u03bd \u03bc\u03b9\u03ba\u03c1\u03cc\u03c4\u03b5\u03c1\u03bf\u03c2 \u03b1\u03c0\u03cc {1}. +error.record.checkbox.max =\u039f \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c4\u03c9\u03bd \u03b1\u03c0\u03b1\u03bd\u03c4\u03ae\u03c3\u03b5\u03c9\u03bd \u03c3\u03c4\u03b7\u03bd \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 {0} \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03bc\u03b7\u03bd \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf\u03c2 \u03b1\u03c0\u03cc {1}. +error.record.longlat.longitude.blank =\u03a4\u03bf \u03b3\u03b5\u03c9\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03cc \u03bc\u03ae\u03ba\u03bf\u03c2 \u03c3\u03c4\u03b7\u03bd \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 {0} \u03b4\u03b5\u03bd \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b5\u03bd\u03cc. +error.record.longlat.longitude.float =\u03a4\u03bf \u03b3\u03b5\u03c9\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03cc \u03bc\u03ae\u03ba\u03bf\u03c2 \u03c3\u03c4\u03b7\u03bd \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 {0} \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03bd\u03b1\u03c2 \u03b4\u03b5\u03ba\u03b1\u03b4\u03b9\u03ba\u03cc\u03c2 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 +error.record.longlat.latitude.blank =\u03a4\u03bf \u03b3\u03b5\u03c9\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03cc \u03c0\u03bb\u03ac\u03c4\u03bf\u03c2 \u03c3\u03c4\u03b7\u03bd \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 {0} \u03b4\u03b5\u03bd \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b5\u03bd\u03cc. +error.record.longlat.latitude.float =\u03a4\u03bf \u03b3\u03b5\u03c9\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03cc \u03c0\u03bb\u03ac\u03c4\u03bf\u03c2 \u03c3\u03c4\u03b7\u03bd \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 {0} \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03bd\u03b1\u03c2 \u03b4\u03b5\u03ba\u03b1\u03b4\u03b9\u03ba\u03cc\u03c2 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 +label.learning.heading.recordnumber =\u0391\u03c1\u03b9\u03b8\u03bc\u03bf\u03c2 \u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2: +error.record.notenough =\u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03b9\u03c3\u03b1\u03b3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03c4\u03bf\u03c5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf\u03bd {0} \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ad\u03c2. +error.record.toomuch =\u0394\u03b5\u03bd \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03b9\u03c3\u03b1\u03b3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03b1\u03c0\u03cc {0} \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ad\u03c2. +message.learning.addrecordsuccess =\u0397 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03c0\u03c1\u03bf\u03c3\u03c4\u03ad\u03b8\u03b7\u03ba\u03b5 \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03ce\u03c2 +message.learning.editrecordsuccess =\u0397 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03b5\u03bd\u03b7\u03bc\u03b5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5 \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03ce\u03c2 +label.monitoring.close =\u039a\u03bb\u03b5\u03b9\u03c3\u03c4\u03cc +title.monitoring.recordlist =\u039b\u03af\u03c3\u03c4\u03b1 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2 LAMS +tab.monitoring.statistics =\u03a3\u03c4\u03b1\u03c4\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac +tab.monitoring.instructions =\u039f\u03b4\u03b7\u03b3\u03af\u03b1 +tab.monitoring.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 +label.monitoring.fullname =\u03a0\u03bb\u03ae\u03c1\u03b5\u03c2 \u03cc\u03bd\u03bf\u03bc\u03b1 +label.monitoring.loginname =\u038c\u03bd\u03bf\u03bc\u03b1 \u0395\u03b9\u03c3\u03cc\u03b4\u03bf\u03c5 +label.monitoring.recordcount =\u0391\u03c1\u03af\u03b8\u03bc\u03b7\u03c3\u03b7 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2 +label.monitoring.notebook =\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ad\u03c2 \u03a3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03b1\u03c1\u03af\u03bf\u03c5 +label.monitoring.notebook.view =\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae +label.monitoring.notebook.none =\u039a\u03b1\u03bd\u03ad\u03bd\u03b1 +label.monitoring.chooseuser =\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 +label.monitoring.advancedsettings.on =\u0391\u03bd\u03bf\u03b9\u03ba\u03c4\u03cc +label.monitoring.advancedsettings.off =\u039a\u03bb\u03b5\u03b9\u03c3\u03c4\u03cc +label.monitoring.advancedsettings.notebookinstructions =\u039f\u03b4\u03b7\u03b3\u03af\u03b5\u03c2 \u03a3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03b1\u03c1\u03af\u03bf\u03c5 +label.monitoring.group =\u039f\u03bc\u03ac\u03b4\u03b1 +label.monitoring.type =\u03a4\u03cd\u03c0\u03bf\u03c2 +label.monitoring.suggest =\u03a0\u03c1\u03bf\u03c4\u03ac\u03b8\u03b7\u03ba\u03b5 \u03b1\u03c0\u03cc +label.monitoring.number.learners =\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u0395\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd +label.monitoring.hide =\u0391\u03c0\u03cc\u03ba\u03c1\u03c5\u03c8\u03b7 +label.monitoring.show =\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 +label.monitoring.user.loginname =\u038c\u03bd\u03bf\u03bc\u03b1 \u03b5\u03b9\u03c3\u03cc\u03b4\u03bf\u03c5 +label.monitoring.user.name =\u038c\u03bd\u03bf\u03bc\u03b1 +label.monitoring.hidden =\u039a\u03c1\u03c5\u03bc\u03bc\u03ad\u03bd\u03b7 +label.monitoring.edit.activity.cancel =\u0386\u03ba\u03c5\u03c1\u03bf +label.monitoring.edit.activity.update =\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 +label.monitoring.edit.activity.edit =\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 +label.monitoring.attachments =\u0395\u03c0\u03b9\u03c3\u03c5\u03bd\u03b1\u03c0\u03c4\u03cc\u03bc\u03b5\u03bd\u03b1 +label.monitoring.user.fullname =\u038c\u03bd\u03bf\u03bc\u03b1 +label.monitoring.heading.access =\u039b\u03af\u03c3\u03c4\u03b1 \u0395\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd +label.monitoring.reflection.heading =\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u039a\u03b1\u03c4\u03b1\u03c7\u03c9\u03c1\u03ae\u03c3\u03b5\u03c9\u03bd \u03a3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03b1\u03c1\u03af\u03bf\u03c5 +message.monitoring.edit.activity.not.editable =\u0391\u03c5\u03c4\u03ae \u03b7 \u0394\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.monitoring.summary.no.session =\u039a\u03b1\u03bd\u03ad\u03bd\u03b1\u03c2 \u03b5\u03ba\u03b1\u03c0\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 \u03b4\u03b5\u03bd \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. +message.monitoring.summary.no.question.for.group =\u039a\u03b1\u03bc\u03bc\u03af\u03b1 \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7 \u03b3\u03b9\u03b1 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7\u03bd \u03bf\u03bc\u03ac\u03b4\u03b1. +label.learning.dropdown.select =\u0395\u03a0\u0395\u039b\u0395\u039e\u0395 +label.export.title =\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae \u03a6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 \u0395\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd \u03c4\u03b7\u03c2 \u03a3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae\u03c2 \u0394\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd +label.export.reflection.heading =\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03a3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03b1\u03c1\u03af\u03bf\u03c5 +error.question.desc.blank =\u0397 \u03c0\u03b5\u03c1\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03ad\u03b9\u03bd\u03b1\u03b9 \u03ba\u03b5\u03bd\u03ae +error.question.file.blank =\u03a4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b5\u03bd\u03cc +error.question.max.blank =\u0397 \u03bc\u03ad\u03b3\u03b9\u03c3\u03c4\u03b7 \u03c5\u03c0\u03bf\u03c7\u03c1\u03ad\u03c9\u03c3\u03b7 \u03b4\u03b5\u03bd \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b5\u03bd\u03ae. +error.question.max.number.int =\u0397 \u03bc\u03ad\u03b3\u03b9\u03c3\u03c4\u03b7 \u03c5\u03c0\u03bf\u03c7\u03c1\u03ad\u03c9\u03c3\u03b7 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03bd\u03b1\u03c2 \u03b1\u03ba\u03ad\u03c1\u03b1\u03b9\u03bf\u03c2 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2. +error.question.max.number.float =\u0397 \u03bc\u03ad\u03b3\u03b9\u03c3\u03c4\u03b7 \u03c5\u03c0\u03bf\u03c7\u03c1\u03ad\u03c9\u03c3\u03b7 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03bd\u03b1\u03c2 \u03b4\u03b5\u03ba\u03b1\u03b4\u03b9\u03ba\u03cc\u03c2 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2. +error.question.max.negative =\u0397 \u03bc\u03ad\u03b3\u03b9\u03c3\u03c4\u03b7 \u03c5\u03c0\u03bf\u03c7\u03c1\u03ad\u03c9\u03c3\u03b7 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03bd\u03b1\u03c2 \u03bc\u03b7-\u03b1\u03c1\u03bd\u03b7\u03c4\u03b9\u03ba\u03cc\u03c2 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2. +error.question.max.toohigh =\u0397 \u03bc\u03ad\u03b3\u03b9\u03c3\u03c4\u03b7 \u03c5\u03c0\u03bf\u03c7\u03c1\u03ad\u03c9\u03c3\u03b7 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b9\u03ba\u03c1\u03cc\u03c4\u03b5\u03c1\u03b7 \u03b1\u03c0\u03cc {0}. +label.authoring.online.filelist =\u039b\u03af\u03c3\u03c4\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd \u03c3\u03b5 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 +label.authoring.online.upload =\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03b3\u03b9\u03b1 \u03c3\u03b5 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 +label.authoring.offline.filelist =\u039b\u03af\u03c3\u03c4\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd \u03b3\u03b9\u03b1 \u03c7\u03c9\u03c1\u03af\u03c2 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 +label.authoring.offline.upload =\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03b3\u03b9\u03b1 \u03c7\u03c9\u03c1\u03af\u03c2 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 +label.authoring.choosefile.button =\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf +label.learning.title =\u039c\u03ac\u03b8\u03b7\u03c3\u03b7 \u03a3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae\u03c2 \u0394\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd +label.learning.heading =\u03a3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae \u0394\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd +label.learning.heading.list =\u039b\u03af\u03c3\u03c4\u03b1 +label.learning.heading.recordcount =\u03a3\u03c5\u03bd\u03bf\u03bb\u03b9\u03ba\u03cc\u03c2 \u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ce\u03bd +label.learning.heading.norecords =\u039a\u03b1\u03bc\u03bc\u03af\u03b1 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03b4\u03b5\u03bd \u03c0\u03c1\u03bf\u03c3\u03c4\u03ad\u03b8\u03b7\u03ba\u03b5 +label.learning.textfield.hint =\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u03bc\u03b9\u03b1\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2 \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 +label.learning.textarea.hint =\u0395\u03b9\u03c3\u03b1\u03b3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03bf +label.learning.number.hint =\u0395\u03b9\u03c3\u03b1\u03b3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03ad\u03bd\u03b1\u03bd \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc +label.learning.number.decimal =\u039f \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc \u03b8\u03b1 \u03c3\u03c4\u03c1\u03bf\u03b3\u03b3\u03c5\u03bb\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03b5\u03af \u03c3\u03b5 {0} \u03b4\u03b5\u03ba\u03b1\u03b4\u03b9\u03ba\u03ac \u03c8\u03b7\u03c6\u03af\u03b1. +label.learning.date.hint =\u0395\u03b9\u03c3\u03b1\u03b3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03bc\u03af\u03b1 \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 +label.learning.date.day =\u039c\u03ad\u03c1\u03b1 +label.learning.date.month =\u039c\u03ae\u03bd\u03b1\u03c2 +label.learning.date.year =\u0388\u03c4\u03bf\u03c2 +label.learning.file.hint =\u0395\u03c0\u03ad\u03bb\u03b5\u03be\u03b5 \u03ad\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf +label.learning.file.uploaded =\u039c\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03c4\u03c9\u03bc\u03ad\u03bd\u03bf \u0391\u03c1\u03c7\u03b5\u03af\u03bf: +label.learning.file.notuploaded =\u039a\u03b1\u03bd\u03ad\u03bd\u03b1 \u03bc\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03c4\u03c9\u03bc\u03ad\u03bd\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf +label.learning.image.hint =\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03bc\u03af\u03b1 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1 +label.learning.radio.hint =\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae +label.learning.dropdown.hint =\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae +label.learning.dropdown.noneselected =\u039a\u03b1\u03bc\u03bc\u03af\u03b1 \u03b1\u03c0\u03ac\u03bd\u03c4\u03b7\u03c3\u03b7 \u03b4\u03b5\u03bd \u03b5\u03c0\u03b9\u03bb\u03ad\u03c7\u03b8\u03b7\u03ba\u03b5 +label.learning.dropdown.selected =\u0395\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03b1\u03c0\u03ac\u03bd\u03c4\u03b7\u03c3\u03b7 +label.learning.checkbox.hint =\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 +label.learning.longlat.hint =\u0395\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03b4\u03cd\u03bf \u03b4\u03b5\u03ba\u03b1\u03b4\u03b9\u03ba\u03bf\u03cd\u03c2 \u03b1\u03c1\u03b9\u03b8\u03bc\u03bf\u03cd\u03c2 +label.learning.longlat.longitude =\u0393\u03b5\u03c9\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03cc \u039c\u03ae\u03ba\u03bf\u03c2 +label.learning.longlat.longitude.unit =\u00b0B +label.learning.longlat.latitude =\u0393\u03b5\u03c9\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03cc \u03a0\u03bb\u03ac\u03c4\u03bf\u03c2 +label.learning.tableheader.questions =\u0395\u03c1\u03c9\u03c4\u03ae\u03c3\u03b5\u03b9\u03c2 +label.learning.tableheader.records =\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ad\u03c2 +label.learning.tableheader.recordnumber =\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2 +label.learning.tableheader.summary =\u03a3\u03c5\u03bd\u03cc\u03c8\u03b5\u03b9\u03c2 +label.learning.tableheader.summary.learner =\u0395\u03c3\u03cd +label.learning.tableheader.summary.group =\u039f\u03bc\u03ac\u03b4\u03c2 +label.learning.summary.emptyanswer =\u039a\u03b5\u03bd\u03ae \u03b1\u03c0\u03ac\u03bd\u03c4\u03b7\u03c3\u03b7 +label.learning.continue =\u03a3\u03c5\u03bd\u03ad\u03c7\u03b9\u03c3\u03b5 +label.authoring.basic.number.help =\u039f \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 \u03b5\u03b9\u03c3\u03b1\u03b3\u03ac\u03b3\u03b5\u03b9 \u03ad\u03bd\u03b1\u03bd \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc \u03c9\u03c2 \u03b1\u03c0\u03ac\u03bd\u03c4\u03b7\u03c3\u03b7. +label.authoring.basic.textfield.help =\u039f \u0395\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 \u03b5\u03b9\u03c3\u03b1\u03b3\u03ac\u03b3\u03b5\u03b9 \u03ad\u03bd\u03b1 \u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03bf \u03bc\u03b9\u03b1\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2 \u03c9\u03c2 \u03b1\u03c0\u03ac\u03bd\u03c4\u03b7\u03c3\u03b7 +label.authoring.basic.textarea =\u039a\u03b5\u03af\u03bc\u03b5\u03bd\u03bf \u03a0\u03bf\u03bb\u03bb\u03ce\u03bd \u0393\u03c1\u03b1\u03bc\u03bc\u03ce\u03bd +label.authoring.basic.textarea.help =\u039f \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 \u03b5\u03b9\u03c3\u03b1\u03b3\u03ac\u03b3\u03b5\u03b9 \u03ad\u03bd\u03b1 \u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03bf \u03c0\u03bf\u03bb\u03bb\u03ce\u03bd \u03b3\u03c1\u03b1\u03bc\u03bc\u03ce\u03bd \u03c9\u03c2 \u03b1\u03c0\u03ac\u03bd\u03c4\u03b7\u03c3\u03b7. +label.authoring.basic.number =\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 +label.authoring.basic.number.digitsdecimal =\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u0394\u03b5\u03ba\u03b1\u03b4\u03b9\u03ba\u03ce\u03bd \u03a8\u03b7\u03c6\u03af\u03c9\u03bd +label.authoring.basic.date =\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 +label.authoring.basic.date.add =\u03a0\u03c1\u03bf\u03b8\u03ae\u03ba\u03b7 \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1\u03c2 \u03c3\u03b5 \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 +label.authoring.basic.date.help =\u039f \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 \u03b5\u03b9\u03c3\u03b1\u03b3\u03ac\u03b3\u03b5\u03b9 \u03bc\u03af\u03b1 \u03b7\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1\u03c2 \u03c9\u03c2 \u03b1\u03c0\u03ac\u03bd\u03c4\u03b7\u03c3\u03b7. +label.authoring.basic.file =\u0391\u03c1\u03c7\u03b5\u03af\u03bf +label.authoring.basic.file.help =\u039f \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 \u03bc\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03c4\u03ce\u03bd\u03b5\u03b9 \u03ad\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03c9\u03c2 \u03b1\u03c0\u03ac\u03bd\u03c4\u03b7\u03c3\u03b7. +label.authoring.basic.image =\u0395\u03b9\u03ba\u03cc\u03bd\u03b1 +label.authoring.basic.image.help =\u039f \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 \u03bc\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03c4\u03ce\u03bd\u03b5\u03b9 \u03bc\u03b9\u03b1 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1 \u03c9\u03c2 \u03b1\u03c0\u03ac\u03bd\u03c4\u03b7\u03c3\u03b7. +label.authoring.basic.radio =\u039a\u03bf\u03c5\u03bc\u03c0\u03b9\u03ac \u03c4\u03cd\u03c0\u03bf\u03c5 \u03c1\u03ac\u03b4\u03b9\u03bf +label.authoring.basic.radio.help =\u039f \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 \u03b5\u03c0\u03b9\u03bb\u03ad\u03b3\u03b5\u03b9 \u03bc\u03af\u03b1 \u03b1\u03c0\u03ac\u03bd\u03c4\u03b7\u03c3\u03b7 \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b5\u03c2 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 +label.authoring.basic.dropdown =\u0391\u03bd\u03b1\u03ba\u03bb\u03b5\u03b9\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf \u039c\u03b5\u03bd\u03bf\u03cd +label.authoring.basic.dropdown.help =\u039f \u0395\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 \u03b5\u03c0\u03b9\u03bb\u03ad\u03b3\u03b5\u03b9 \u03bc\u03af\u03b1 \u03b1\u03c0\u03ac\u03bd\u03c4\u03b7\u03c3\u03b7 \u03b1\u03c0\u03bf \u03c4\u03b9\u03c2 \u03b4\u03c5\u03bd\u03b1\u03c4\u03ad\u03c2 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 +label.authoring.basic.checkbox =\u039a\u03bf\u03c5\u03bc\u03c0\u03af \u0395\u03bb\u03ad\u03b3\u03c7\u03bf\u03c5 +label.authoring.basic.checkbox.help =\u039f \u0395\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 \u03b5\u03c0\u03b9\u03bb\u03ad\u03b3\u03b5\u03b9 \u03c0\u03bf\u03bb\u03bb\u03ad\u03c2 \u03b1\u03c0\u03b1\u03bd\u03c4\u03ae\u03c3\u03b5\u03b9\u03c2 \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2 \u03b4\u03c5\u03bd\u03b1\u03c4\u03ad\u03c2 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 +label.authoring.basic.longlat =\u0393\u03b5\u03c9\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03cc \u039c\u03ae\u03ba\u03bf\u03c2/\u03a0\u03bb\u03ac\u03c4\u03bf\u03c2 +label.authoring.basic.longlat.help =\u039f \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03c5\u03b5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 \u03b5\u03b9\u03c3\u03b1\u03b3\u03ac\u03b3\u03b5\u03b9 \u03c4\u03bf \u0393\u03b5\u03c9\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03cc \u039c\u03ae\u03ba\u03bf\u03c2 \u03ba\u03b1\u03b9 \u03a0\u03bb\u03ac\u03c4\u03bf\u03c2 \u03c9\u03c2 \u03b1\u03c0\u03ac\u03bd\u03c4\u03b7\u03c3\u03b7 +label.authoring.basic.description =\u0395\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 +label.authoring.basic.list.title =\u039b\u03af\u03c3\u03c4\u03b1 \u0395\u03c1\u03c9\u03c4\u03ae\u03c3\u03b5\u03c9\u03bd +label.authoring.basic.list.header.type =\u03a4\u03cd\u03c0\u03bf\u03c2 +label.authoring.basic.list.header.question =\u0395\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 +label.authoring.basic.required =\u0397 \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 \u03b1\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 +label.authoring.basic.additionaloptions.show =\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b5\u03c0\u03b9\u03c0\u03bb\u03ad\u03bf\u03bd \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ce\u03bd +label.authoring.basic.additionaloptions.hide =\u0391\u03c0\u03cc\u03ba\u03c1\u03c5\u03c8\u03b7 \u03b5\u03c0\u03b9\u03c0\u03bb\u03ad\u03bf\u03bd \u03b5\u03c0\u03b9\u03bb\u03bb\u03bf\u03b3\u03ce\u03bd +label.authoring.advanced.record.nolimit =\u039a\u03b1\u03bd\u03ad\u03bd\u03b1 \u03cc\u03c1\u03b9\u03bf +label.authoring.advanced.lock.on.finished =\u039d\u03b1 \u03ba\u03bb\u03b5\u03b9\u03b4\u03c9\u03b8\u03b5\u03af \u03cc\u03c4\u03b1\u03bd \u03bf\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03c9\u03b8\u03b5\u03af +label.authoring.offline.file =\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03c7\u03c9\u03c1\u03af\u03c2 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 +errorPage.title =\u03a3\u03b5\u03bb\u03af\u03b4\u03b1 \u039b\u03ac\u03b8\u03bf\u03c5\u03c2 +label.authoring.basic.file.add =\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u0391\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 +label.learning.finished =\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u0394\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 +activity.title =\u03a3\u03c5\u03bb. \u0394\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd +activity.description =\u03a3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03bc\u03b5 \u03b5\u03be\u03b5\u03b9\u03b4\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b7 \u03b4\u03bf\u03bc\u03ae +activity.helptext =\u03a5\u03c0\u03bf\u03b2\u03bf\u03bb\u03ae \u03b5\u03be\u03b5\u03b9\u03b4\u03b9\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03c9\u03bd \u03b5\u03c1\u03c9\u03c4\u03ae\u03c3\u03b5\u03c9\u03bd \u03bc\u03b5 \u03c0\u03b5\u03c1\u03b9\u03bf\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b1\u03c0\u03b1\u03bd\u03c4\u03ae\u03c3\u03b5\u03b9\u03c2 +tool.display.name =\u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf \u03a3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae\u03c2 \u0394\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd +tool.description =\u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf \u03b3\u03b9\u03b1 \u03c3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd +errorPage.heading =\u039a\u03ac\u03c0\u03bf\u03b9\u03bf \u03bb\u03ac\u03b8\u03bf\u03c2 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03ba\u03b1\u03c4\u03ac \u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03bc\u03cc \u03c4\u03bf\u03c5 \u03b1\u03b9\u03c4\u03ae\u03bc\u03b1\u03c4\u03cc\u03c2 \u03c3\u03b1\u03c2 +label.common.summary =\u03a0\u03b5\u03c1\u03af\u03bb\u03b7\u03c8\u03b7 +label.common.summary.none =\u039a\u03b1\u03bd\u03ad\u03bd\u03b1 +label.common.summary.sum =\u0386\u03b8\u03c1\u03bf\u03b9\u03c3\u03bc\u03b1 +label.common.summary.average =\u039c\u03ad\u03c3\u03bf\u03c2 \u03cc\u03c1\u03bf\u03c2 +label.common.summary.count =\u039c\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 +label.common.summary.refresh =\u0391\u03bd\u03b1\u03bd\u03ad\u03c9\u03c3\u03b7 +label.common.heading =\u03a3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae \u0394\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd +label.common.view =\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae +label.common.cancel =\u0386\u03ba\u03c5\u03c1\u03bf +label.common.edit =\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 +label.common.delete =\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae +label.common.view.change =\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u0391\u03bb\u03bb\u03b1\u03b3\u03ce\u03bd +button.try.again =\u03a0\u03c1\u03bf\u03c3\u03c0\u03ac\u03b8\u03b7\u03c3\u03b5 \u03be\u03b1\u03bd\u03ac +message.no.reflection.available =\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03bf \u03a3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03ac\u03c1\u03b9\u03bf +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 \u03bd\u03b1 \u03bf\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03c3\u03b5\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b1\u03c5\u03c4\u03ae\u03c2 \u03c4\u03b7\u03c2 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2. +label.author.title =\u03a3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae \u0394\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd +label.authoring.heading.instructions =\u039f\u03b4\u03b7\u03b3\u03af\u03b5\u03c2 +label.authoring.basic.instruction =\u039f\u03b4\u03b7\u03b3\u03af\u03b5\u03c2 +label.authoring.basic.answeroption =\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 \u0391\u03c0\u03ac\u03bd\u03c4\u03b7\u03c3\u03b7 +label.authoring.basic.answeroption.ordinal =\u0391\u0392\u0393\u0394\u0395\u0396\u0397\u0398\u0399\u039a\u039b\u039c\u039d\u039e\u039f\u03a0\u03a1\u039f\u03a3\u03a5\u03a4\u03a5\u03a6\u03a7\u03a8\u03a9 +label.authoring.basic.answeroption.up =\u039c\u03b5\u03c4\u03b1\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03a0\u03ac\u03bd\u03c9 +label.authoring.basic.answeroption.down =\u039c\u03b5\u03c4\u03b1\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u039a\u03ac\u03c4\u03c9 +label.authoring.basic.textfield =\u039a\u03b5\u03af\u03bc\u03b5\u03bd\u03bf \u039c\u03af\u03b1\u03c2 \u0393\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2 +label.authoring.basic.number.add =\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b1\u03c1\u03b9\u03b8\u03bc\u03bf\u03cd \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7\u03c2 +label.learning.heading.add =\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 +label.authoring.basic.textfield.add =\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2 \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 \u03c3\u03c4\u03b7\u03bd \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 +label.authoring.basic.answeroption.add =\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae\u03c2 +label.authoring.basic.question.add =\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7\u03c2 +label.authoring.basic.dropdown.add =\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b1\u03bd\u03b1\u03ba\u03bb\u03b5\u03b9\u03bd\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 \u03bc\u03b5\u03bd\u03bf\u03cd \u03c3\u03c4\u03b7\u03bd \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 +label.authoring.advanced.reflectOnActivity =\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03a3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03b1\u03c1\u03af\u03bf\u03c5 \u03c3\u03c4\u03bf \u03c4\u03ad\u03bb\u03bf\u03c2 \u03c4\u03b7\u03c2 \u03c3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03bc\u03b5 \u03c4\u03b9\u03c2 \u03b1\u03ba\u03cc\u03bb\u03bf\u03c5\u03b8\u03b5\u03c2 \u03bf\u03b4\u03b7\u03b3\u03af\u03b5\u03c2: +label.authoring.basic.image.add =\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u0395\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2 +label.authoring.basic.longlat.add =\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u0393\u03b5\u03c9\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03bf\u03cd \u039c\u03ae\u03ba\u03bf\u03c5\u03c2/\u03a0\u03bb\u03ac\u03c4\u03bf\u03c5\u03c2 \u03c3\u03b5 \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 +label.authoring.basic.checkbox.add =\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03ba\u03bf\u03c5\u03bc\u03c0\u03b9\u03bf\u03cd \u03b5\u03bb\u03ad\u03b3\u03c7\u03bf\u03c5 \u03c3\u03c4\u03b7\u03bd \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 +label.authoring.basic.radio.add =\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03ba\u03bf\u03c5\u03bc\u03c0\u03b9\u03ce\u03bd \u03b1\u03c0\u03bf\u03ba\u03bb\u03b5\u03b9\u03c3\u03c4\u03b9\u03ba\u03ae\u03c2 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae\u03c2 \u03c3\u03c4\u03b7\u03bd \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7 +label.monitoring.advancedsettings.addNotebook =\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03a3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03b1\u03c1\u03af\u03bf\u03c5 \u03c3\u03c4\u03bf \u03c4\u03ad\u03bb\u03bf\u03c2 \u03c4\u03b7\u03c2 \u03a3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae\u03c2 \u0394\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd +label.authoring.basic.textarea.add =\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b5\u03c1\u03ce\u03c4\u03b7\u03c3\u03b7\u03c2 \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 \u03c0\u03bf\u03bb\u03bb\u03ce\u03bd \u03b3\u03c1\u03b1\u03bc\u03bc\u03ce\u03bd +label.learning.add =\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2 +label.authoring.online.file =\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 \u03b3\u03b9\u03b1 \u03b5\u03ba\u03c0\u03cc\u03bd\u03b7\u03c3\u03b7 \u03c3\u03b5 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 +message.learning.warnLockOnFinish =\u0391\u03c6\u03cc\u03c4\u03bf\u03c5 \u03ba\u03ac\u03bd\u03b5\u03c4\u03b5 \u03ba\u03bb\u03b9\u03ba \u03c3\u03c4\u03b7\u03bd \u00ab\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u0394\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u00bb \u03ba\u03b1\u03b9 \u03b5\u03c0\u03b9\u03c3\u03c4\u03c1\u03ad\u03c8\u03b5\u03c4\u03b5 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03ae\u03bd \u03c4\u03b7 \u03c3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd, \u03b4\u03b5\u03bd \u03b8\u03b1 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03b4\u03b5\u03af\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03b5\u03c1\u03c9\u03c4\u03ae\u03c3\u03b5\u03b9\u03c2 +label.authoring.online.instruction =\u039f\u03b4\u03b7\u03b3\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03b5\u03ba\u03c0\u03cc\u03bd\u03b7\u03c3\u03b7 \u03bc\u03b5 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7: +label.authoring.offline.instruction =\u039f\u03b4\u03b7\u03b3\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03b5\u03ba\u03c0\u03cc\u03bd\u03b7\u03c3\u03b7 \u03c7\u03c9\u03c1\u03af\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7: +label.authoring.heading.instructions.desc =\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03b9\u03c3\u03b1\u03b3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03bf\u03b4\u03b7\u03b3\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03b5\u03ba\u03c0\u03cc\u03bd\u03b7\u03c3\u03b7 \u03c3\u03b5 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03ba\u03b1\u03b9 \u03c7\u03c9\u03c1\u03af\u03c2 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 +label.authoring.heading.advanced =\u03a0\u03c1\u03bf\u03c7\u03c9\u03c1\u03b7\u03bc\u03ad\u03bd\u03b1 +event.recordsubmit.body =\u039f \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 {0} \u03c5\u03c0\u03ad\u03b2\u03b1\u03bb\u03b5 \u03cc\u03c4\u03b9 \u03ad\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03c3\u03b5 \u03ad\u03bd\u03b1 \u03bc\u03ae\u03bd\u03c5\u03bc\u03b1 \u03c3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd tool.nnThis \u03ae\u03c4\u03b1\u03bd \u03c3\u03c4\u03ad\u03bb\u03bd\u03b5\u03b9 \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03bfLY, \u03bc\u03b5\u03c4\u03ac \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2 \u03c0\u03c1\u03bf\u03b7\u03b3\u03bc\u03ad\u03bd\u03b5\u03c2 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c4\u03ae\u03c3\u03b5\u03b9\u03c2 \u03c4\u03bf\u03c5 \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf\u03c5. +event.learnerentry.body =\u039f \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 {0} \u03b5\u03b9\u03c3\u03ae\u03bb\u03b8\u03b5 \u03c3\u03b5 \u03ad\u03bd\u03b1 \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf \u03c3\u03c5\u03bb\u03bb\u03bb\u03bf\u03b3\u03ae\u03c2 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \n\n\u0391\u03c5\u03c4\u03cc \u03c4\u03bf \u03bc\u03ae\u03bd\u03c5\u03bc\u03b1 \u03c3\u03c4\u03ad\u03bb\u03bd\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1 \u03c3\u03cd\u03bc\u03c6\u03b1\u03bd\u03b1 \u03bc\u03b5 \u03c4\u03b9\u03c2 \u03c0\u03c1\u03bf\u03c7\u03c9\u03c1\u03b7\u03bc\u03ad\u03bd\u03b5\u03c2 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03b1\u03c5\u03c4\u03bf\u03cd \u03c4\u03bf\u03c5 \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf\u03c5. +label.monitoring.advancedsettings =\u03a0\u03c1\u03bf\u03c7\u03c9\u03c1\u03b7\u03bc\u03ad\u03bd\u03b5\u03c2 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 +label.authoring.heading.advanced.description =\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03c0\u03c1\u03bf\u03c7\u03c9\u03c1\u03b7\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03c3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd +label.authoring.heading.basic.description =\u0392\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b5\u03b9\u03c3\u03cc\u03b4\u03bf\u03c5 \u03c4\u03b7 \u03c3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd +label.authoring.heading.basic =\u0392\u03b1\u03c3\u03b9\u03ba\u03ac + + +#======= End labels: Exported 244 labels for el GR ===== Index: debian_installer/lams2/lams_tool_daco/language/ApplicationResources_en_AU.properties =================================================================== diff -u --- debian_installer/lams2/lams_tool_daco/language/ApplicationResources_en_AU.properties (revision 0) +++ debian_installer/lams2/lams_tool_daco/language/ApplicationResources_en_AU.properties (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,255 @@ +appName = daco +#language code: en +#locale code: AU + + # CVS ID: $Id$ Exported from the LAMS Community by Ernie Ghiglione on Wed Nov 19 18:41:46 GMT 2008 + +#=================== labels for Data Collection =================# + +activity.title =Data Collection +activity.description =Collecting data with custom structure. +activity.helptext =Asking questions with custom, limited answers. +tool.display.name =Data Collection Tool +tool.description =Tool for collecting data. +errorPage.title =Error page +errorPage.heading =Some error occurs when handling your request +label.common.summary =Summary +label.common.summary.none =None +label.common.summary.sum =Sum +label.common.summary.average =Average +label.common.summary.count =Count +label.common.summary.refresh =Refresh +label.common.heading =Data Collection +label.common.view =View +label.common.cancel =Cancel +label.common.edit =Edit +label.common.delete =Delete +label.common.min =Minimum +label.common.max =Maximum +label.common.view.change =Change view +button.try.again =Try again +message.no.reflection.available =No notebook available +define.later.message =Please wait for the teacher to complete the contents of this activity. +label.author.title =Data Collection +label.authoring.heading.instructions =Instructions +label.authoring.heading.instructions.desc =Please input online and offline instructions +label.authoring.heading.advanced =Advanced +label.authoring.heading.advanced.description =Please input advanced options for data collection +label.authoring.heading.basic.description =Basic input information for data collection +label.authoring.heading.basic =Basic +label.authoring.basic.title =Title +label.authoring.basic.instruction =Instructions +label.authoring.basic.answeroption =Answer options +label.authoring.basic.answeroption.add =Add option +label.authoring.basic.answeroption.ordinal =ABCDEFGHIJKLMNOPQRSTUVWXYZ +label.authoring.basic.answeroption.up =Move Up +label.authoring.basic.answeroption.down =Move down +label.authoring.basic.download =Download +label.authoring.basic.question.add =Add question +label.authoring.basic.textfield =Single line text +label.authoring.basic.textfield.add =Add single line text question +label.authoring.basic.textfield.help =Learner enters a single line of text as an answer. +label.authoring.basic.textarea =Multi-line text +label.authoring.basic.textarea.add =Add multi-line text question +label.authoring.basic.textarea.help =Learner enters a multi-line text as an answer. +label.authoring.basic.number =Number +label.authoring.basic.number.add =Add number question +label.authoring.basic.number.help =Learner enters a number as an answer. +label.authoring.basic.number.digitsdecimal =Digits after decimal point +label.authoring.basic.date =Date +label.authoring.basic.date.add =Add date question +label.authoring.basic.date.help =Learner enters a date as an answer. +label.authoring.basic.file =File +label.authoring.basic.file.add =Add single file +label.authoring.basic.file.help =Learner uploads a file as an answer. +label.authoring.basic.image =Image +label.authoring.basic.image.add =Add image +label.authoring.basic.image.help =Learner uploads an image as an answer. +label.authoring.basic.radio =Radio buttons +label.authoring.basic.radio.add =Add radio buttons question +label.authoring.basic.radio.help =Learner chooses one answer from the given options. +label.authoring.basic.dropdown =Dropdown menu +label.authoring.basic.dropdown.add =Add dropdown menu question +label.authoring.basic.dropdown.help =Learner chooses one answer from the given options. +label.authoring.basic.checkbox =Checkbox +label.authoring.basic.checkbox.add =Add checkbox question +label.authoring.basic.checkbox.help =Learner chooses multiple answers from the given options. +label.authoring.basic.longlat =Longitude/Latitude +label.authoring.basic.longlat.add =Add longitude/latitude question +label.authoring.basic.longlat.maps =Choose the maps +label.authoring.basic.longlat.help =Learner enters longitude and latitude as an answer. +label.authoring.basic.description =Question +label.authoring.basic.min.select =Min selected +label.authoring.basic.max.select =Max selected +label.authoring.basic.max.char =Max characters +label.authoring.basic.max.word =Max words +label.authoring.basic.list.title =Question list +label.authoring.basic.list.header.type =Type +label.authoring.basic.list.header.question =Question +label.authoring.basic.required =Question is required +label.authoring.basic.additionaloptions.show =Show additional options +label.authoring.basic.additionaloptions.hide =Hide additional options +label.authoring.advanced.reflectOnActivity =Add Notebook at end of Data Collection with the following instructions: +label.authoring.advanced.record =Limit number of records +label.authoring.advanced.record.nolimit =No limit +label.authoring.advanced.lock.on.finished =Lock when finished +label.authoring.advanced.notify.onlearnerentry =Notify monitoring teachers when a learner enters this activity +label.authoring.advanced.notify.onrecordsubmit =Notify monitoring teachers when a learner submits a record +label.authoring.online.instruction =Online Instructions +label.authoring.online.file =Upload online file +label.authoring.online.filelist =Online file list +label.authoring.online.upload =Upload Online +label.authoring.offline.file =Upload offline file +label.authoring.offline.instruction =Offline Instructions +label.authoring.offline.filelist =Offline file list +label.authoring.offline.upload =Upload Offline +label.authoring.choosefile.button =Choose file +label.authoring.save.button =Save +message.authoring.cancel.save =Do you want to close this window without saving? +label.learning.title =Data Collection Learning +label.learning.heading =Data Collection +label.learning.heading.add =Add +label.learning.heading.list =List +label.learning.heading.summary =Summary +label.learning.heading.recordnumber =Record number: +label.learning.heading.recordcount =Total record count +label.learning.heading.norecords =No records added. +label.learning.add =Add record +label.learning.textfield.hint =Enter a single line of text +label.learning.textarea.hint =Enter text +label.learning.number.hint =Enter a number +label.learning.number.decimal =The number will be rounded to {0} decimal places. +label.learning.date.hint =Enter a date +label.learning.date.day =Day: +label.learning.date.month =Month: +label.learning.date.year =Year: +label.learning.file.hint =Choose a file +label.learning.file.uploaded =Uploaded file: +label.learning.file.notuploaded =No file uploaded. +label.learning.image.hint =Choose an image +label.learning.radio.hint =Choose an option +label.learning.dropdown.hint =Choose an option +label.learning.dropdown.select =SELECT +label.learning.dropdown.noneselected =No answer was selected. +label.learning.dropdown.selected =Selected answer: +label.learning.checkbox.hint =Choose options +label.learning.longlat.hint =Enter two decimal numbers +label.learning.longlat.longitude =Longitude: +label.learning.longlat.longitude.unit =\u00b0N +label.learning.longlat.latitude =Latitude: +label.learning.longlat.latitude.unit =\u00b0E +label.learning.tableheader.questions =Questions +label.learning.tableheader.records =Records +label.learning.tableheader.recordnumber =Record number +label.learning.tableheader.summary =Summaries +label.learning.tableheader.summary.learner =You +label.learning.tableheader.summary.group =Group +label.learning.summary.emptyanswer =Empty answer +label.learning.continue =Continue +label.learning.finished =Next Activity +message.learning.alertContentEdit =The modification of the content is not allowed since one or more participants has attempted the activity. +message.learning.warnLockOnFinish =Note: After you click on "Next Activity" and you come back to this Data Collection, you won't be able to view questions +message.learning.addrecordsuccess =The record was added successfully. +message.learning.editrecordsuccess =The record was updated successfully. +message.learning.activityLocked =The instructor has set this activity not to allow you to add any more answers after you have finished it. +message.learning.offline =This activity is not being done on the computer. Please see your instructor for details. +label.monitoring.close =Close +title.monitoring =LAMS Data Collection monitoring +title.monitoring.recordlist =LAMS record list +tab.monitoring.statistics =Statistic +tab.monitoring.instructions =Instruction +tab.monitoring.edit.activity =Edit Activity +label.monitoring.fullname =Full name +label.monitoring.loginname =Login name +label.monitoring.recordcount =Record count +label.monitoring.notebook =Notebook entries +label.monitoring.notebook.view =View +label.monitoring.notebook.none =None +label.monitoring.chooseuser =Choose learner +label.monitoring.viewrecords.all =View all records +label.monitoring.advancedsettings =Advanced Settings +label.monitoring.advancedsettings.on =On +label.monitoring.advancedsettings.off =Off +label.monitoring.advancedsettings.addNotebook =Add Notebook at end of Data Collection +label.monitoring.advancedsettings.notebookinstructions =Notebook instructions +label.monitoring.group =Group +label.monitoring.type =Type +label.monitoring.title =Title +label.monitoring.suggest =Suggested By +label.monitoring.number.learners =Number of Learners +label.monitoring.hide =Hide +label.monitoring.show =Show +label.monitoring.user.loginname =Login name +label.monitoring.user.name =Name +label.monitoring.hidden =Hidden +label.monitoring.edit.activity.cancel =Cancel +label.monitoring.edit.activity.update =Update +label.monitoring.edit.activity.edit =Edit +label.monitoring.attachments =Attachments +label.monitoring.user.fullname =Name +label.monitoring.heading.access =Learners list +label.monitoring.reflection.heading =View Notebook entries +message.monitoring.edit.activity.not.editable =This Activity is no longer editable +message.monitoring.summary.no.session =No learners have accessed this activity. +message.monitoring.summary.no.question.for.group =No question available for this group. +label.export.title =Export portfolio of Data Collection +label.export.reflection.heading =Notebook entry +error.question.desc.blank =Description can not be blank +error.question.file.blank =File can not be blank. +error.question.max.blank =The maximum constraint must not be blank. +error.question.max.number.int =The maximum constraint must be an integer number. +error.question.max.number.float =The maximum constraint must be a decimal number. +error.question.max.negative =The maximum constraint must be a nonnegative number. +error.question.max.toohigh =The maximum constraint must be less than {0}. +error.question.max.toohigh.answeroption =The maximum constraint must be less or equal to the answer option count. +error.question.max.toolow =The maximum constraint must be more than {0}. +error.question.min.blank =The minimum constraint must not be blank. +error.question.min.number.int =The minimum constraint must be an integer number. +error.question.min.number.float =The minimum constraint must be a decimal number. +error.question.min.negative =The minimum constraint must be a nonnegative number. +error.question.min.toohigh =The minimum constraint must be less than {0}. +error.question.min.toohigh.answeroption =The minimum constraint must be less or equal to the answer option count. +error.question.min.toolow =The minimum constraint must be more than {0}. +error.question.min.toohigh.max =The minimum constraint must be less than the maximum constraint. +error.question.answeroption.repeat =The answer options {0} and {1} are the same. +error.question.answeroption.notenough =You should provide at least {0} answer options. +error.question.digitsdecimal.int =The number of digits after decimal point must be an integer number. +error.question.digitsdecimal.nonnegative =The number of digits after decimal point must be a nonnegative number. +error.recordlimit.min.toohigh.max =The minimum number of records must be less or equal to the maximum. +error.record.blank =An answer for question {0} is required. +error.record.textarea.long =The maximum number of words in question {0} is {1}. +error.record.number.min =The number in question {0} must be at least {1}. +error.record.number.max =The number in question {0} should be no more than {1}. +error.record.number.float =The answer in question {0} must be a decimal number. +error.record.date.day.blank =The day field in question {0} is blank. +error.record.date.day.int =The day field in question {0} must be an integer number. +error.record.date.day.limit =The day field in question {0} must be between 1 and {1}. +error.record.date.month.blank =The month field in question {0} is blank. +error.record.date.month.int =The month field in question {0} must be an integer number. +error.record.date.month.limit =The month field in question {0} must be between 1 and 12. +error.record.date.year.blank =The year field in question {0} is blank. +error.record.date.year.int =The year field in question {0} must be an integer number. +error.record.image.format =The file in question {0} must be an image (extensions: JPG, GIF or PNG). +error.record.checkbox.min =The number of answers in question {0} must be no less than {1}. +error.record.checkbox.max =The number of answers in question {0} must be no more than {1}. +error.record.longlat.longitude.blank =The longitude in question {0} must not be blank. +error.record.longlat.longitude.float =The longitude in question {0} must be an decimal number. +error.record.longlat.latitude.blank =The latitude in question {0} must not be blank. +error.record.longlat.latitude.float =The latitude in question {0} must be an decimal number. +error.record.notenough =You should enter at least {0} records. +error.record.toomuch =You should enter no more than {0} records. +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.default.content.not.find =Could not retrieve default content record for this tool. +error.msg.repository =A repository error occurred while trying to upload the file. +event.learnerentry.subject =LAMS: A learner entered a data collection tool +event.learnerentry.body =The learner {0} entered a data collection tool.\n\nThis message was send automatically, following tool''s advanced settings. +event.recordsubmit.subject =LAMS: A learner submitted a record in a data collection tool +event.recordsubmit.body =The learner {0} submitted a record in a data collection tool.\n\nThis message was send automatically, following tool''s advanced settings. +output.desc.learner.number.of.posts =Learner's number of records + + +#======= End labels: Exported 244 labels for en AU ===== Index: debian_installer/lams2/lams_tool_daco/language/ApplicationResources_es_ES.properties =================================================================== diff -u --- debian_installer/lams2/lams_tool_daco/language/ApplicationResources_es_ES.properties (revision 0) +++ debian_installer/lams2/lams_tool_daco/language/ApplicationResources_es_ES.properties (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,255 @@ +appName = daco +#language code: es +#locale code: ES + + # CVS ID: $Id$ Exported from the LAMS Community by Ernie Ghiglione on Wed Nov 19 18:41:35 GMT 2008 + +#=================== labels for Data Collection =================# + +event.learnerentry.subject =LAMS: Un estudiante ha entrado a la actividad de Colecci\u00f3n de Datos +event.learnerentry.body =El estudiante {0} ha entrado a la actividad de Colecci\u00f3n de Datos.\n\nEste mensaje ha sido enviado automaticamente siguiendo la configuraci\u00f3n de la actividad. +event.recordsubmit.subject =LAMS: Un estudiante ha agregado un registro a la actividad Colecci\u00f3n de Datos +event.recordsubmit.body =El estudiante {0} ha ingresado un registro en Colecci\u00f3n de Datos.\n\nEste mensaje ha sido enviado automaticamente. +label.learning.tableheader.summary =Resumenes +output.desc.learner.number.of.posts =N\u00famero de registros de estudiantes +message.learning.editrecordsuccess =El registro se ha actualizado. +title.monitoring.recordlist =Lista de registros +message.learning.alertContentEdit =La modificaci\u00f3n del contenido no se puede llevar acabo ya que por lo menos un estudiante ha entrado a la actividad. +message.learning.warnLockOnFinish =Atenci\u00f3n: una vez finalizada esta actividad no podr\u00e1 hacer cambios. +message.learning.addrecordsuccess =El registro ha sido a\u00f1adido. +message.learning.activityLocked =El profesor ha configurado esta actividad de manera que no permita m\u00e1s respuestas una vez finalizada la actividad. +message.learning.offline =La actividad ha sido configurada para realizarse en modo offline. Por favor, solicite instrucciones a su profesor. +title.monitoring =Colecci\u00f3n de Datos Seguimiento +label.monitoring.advancedsettings.addNotebook =Agregar anotaci\u00f3n al final de la actividad. +label.monitoring.advancedsettings.notebookinstructions =Instrucciones para anotaci\u00f3n +message.monitoring.summary.no.question.for.group =No hay preguntas disponibles para este grupo +label.export.title =Exportar portfolio de Colecci\u00f3n de Datos +error.question.max.blank =El limite m\u00e1ximo no puede dejarse en blanco. +error.question.max.number.int =El limite m\u00e1ximo debe ser un n\u00famero entero. +error.question.max.number.float =El limite m\u00e1ximo debe ser un n\u00famero decimal. +error.question.max.toohigh =El limite m\u00e1ximo debe ser menor a {0}. +error.question.max.negative =El limite m\u00e1ximo no puede ser un n\u00famero negativo +error.question.max.toohigh.answeroption =el limite m\u00e1ximo debe ser menor o igual a la suma de las opciones de la respuesta. +error.question.max.toolow =El limite m\u00e1ximo debe ser mayor a {0}. +error.question.min.blank =El limite m\u00ednimo no puede dejarse en blanco +error.question.min.number.int =El limite m\u00ednimo debe ser un n\u00famero entero. +error.question.min.number.float =El limite m\u00ednimo debe ser un n\u00famero decimal. +error.question.min.negative =El limite m\u00ednimo no puede ser un n\u00famero negativo. +error.upload.failed =Error al importar archivo: {0} +error.question.min.toohigh =El limite m\u00ednimo debe ser menor a {0}. +error.question.min.toohigh.answeroption =El limite m\u00ednimo debe ser meno o igual a la suma de las opciones de la respuesta. +error.question.min.toolow =El limite m\u00ednimo debe ser mayor a {0}. +error.question.min.toohigh.max =El limite m\u00ednimo debe ser menos que el limite m\u00e1ximo. +error.question.answeroption.repeat =Las opciones de respuesta {0} y {1} son las mismas. +error.question.answeroption.notenough =Debe completar al menos {0} opciones de respuesta. +error.record.notenough =Debe entrar por lo menos {0} registros. +error.record.date.year.blank =El campo de a\u00f1o en pregunta {0} est\u00e1 en blanco. +error.record.date.year.int =El campo de a\u00f1o en la pregunta {0} debe ser un n\u00famero entero. +error.record.longlat.latitude.float =El campo de latitud en pregunta {0} debe ser un n\u00famero decimal. +error.record.image.format =El archivo en la preguntar {0} debe ser una imagen (con extensi\u00f3n JPG, GIF o PNG). +label.learning.longlat.longitude.unit =\u00b0N +error.record.checkbox.min =El n\u00famero de respuestas en pregunta {0} no debe ser menor a {1}. +error.record.checkbox.max =El n\u00famero de respuestas en pregunta {0} no debe ser mayor a {1}. +error.record.longlat.longitude.blank =El campo de logitude en pregunta {0} no debe dejarse en blanco. +error.record.longlat.longitude.float =El campo de logitude en pregunta {0} debe ser un n\u00famero decimal. +error.record.longlat.latitude.blank =El campo de latitud en pregunta {0} no debe dejarse en blanco. +error.record.toomuch =Debe entrar no mas de {0} regitros. +error.msg.upload.file.not.found =No se ha podido encontrar el archivo enviado: {0} +error.msg.file.not.found =Excepci\u00f3n de falta de archivo por el archivo enviado. +error.msg.io.exception =Ha ocurrido un error al importar archivo. +error.msg.invaid.param.upload =Ha ocurrido un error al importar archivo. +error.msg.default.content.not.find =No se puede acceder al contenido de defecto de esta herramienta. +error.msg.repository =Ha ocurrido un error en el repositorio de archivos al tratar de a\u00f1adir el archivo enviado. +error.record.number.min =El n\u00famero en pregunta {0} debe ser por lo menos {1}. +error.question.digitsdecimal.int =El n\u00famero de d\u00edgitos despu\u00e9s del punto decimal debe ser un n\u00famero entero. +label.learning.dropdown.select =Seleccione +error.record.number.max =El n\u00famero en pregunta {0} no puede ser mayor que {1}. +error.question.digitsdecimal.nonnegative =El n\u00famero de d\u00edgitos despu\u00e9s del punto decimal no puede ser un n\u00famero negativo. +error.recordlimit.min.toohigh.max =El n\u00famero m\u00ednimo de registros debe ser less o igual al m\u00e1ximo. +error.record.blank =Se requiere espuesta para la pregunta {0}. +error.record.textarea.long =El n\u00famero m\u00e1ximo de palabras en pregunta {0} es {1}. +label.learning.dropdown.noneselected =No se seleccion\u00f3 respuesta +error.record.number.float =La respuesta a la pregunta {0} debe ser un n\u00famero decimal. +error.record.date.day.blank =El campo d\u00eda en la pregunta {0} no puede dejarse en blanco. +error.record.date.day.int =El campo d\u00eda en la pregunta {0} debe ser un n\u00famero entero. +error.record.date.day.limit =El campo d\u00eda en la pregunta {0} debe ser entre 1 y {1}. +error.record.date.month.blank =El campo mes en la pregunta {0} no puede dejarse en blanco. +error.record.date.month.int =El campo mes en la pregunta {0} debe ser un numero entero. +error.record.date.month.limit =El campo mes en la pregunta {0} debe ser entre valores 1 y 12. +label.learning.longlat.latitude =Latitud +label.learning.longlat.latitude.unit =\u00b0E +label.learning.dropdown.selected =Respuesta seleccionada: +label.learning.checkbox.hint =Seleccione opciones +message.no.reflection.available =No hay anotaciones +define.later.message =Por favor espera a que el profesor complete el contenido de la actividad. +label.author.title =Recolecci\u00f3n de datos +activity.title =Colecci\u00f3n de Datos +label.authoring.heading.instructions =Instrucciones +activity.description =Herramienta para la recolecci\u00f3n de datos +activity.helptext =Recolecci\u00f3n de datos usando preguntas con respuestas limitadas. +tool.display.name =Herramienta de colecci\u00f3n de datos +tool.description =Herramienta de colecci\u00f3n de datos +errorPage.title =Error en p\u00e1gina +errorPage.heading =Han ocurrido errores al recibir su petici\u00f3n +label.common.summary =Resumen +label.common.summary.none =Ninguno +label.common.summary.sum =Suma +label.common.summary.average =Promedio +label.common.summary.count =Total +label.common.summary.refresh =Refrescar +label.common.heading =Recolecci\u00f3n de datos +label.common.view =Ver +label.common.cancel =Cancelar +label.common.edit =Editar +label.common.delete =Borrar +label.common.min =M\u00ednimo +label.common.max =M\u00e1ximo +label.common.view.change =Ver cambio +button.try.again =Reintentar +label.authoring.heading.instructions.desc =Ingrese instrucciones para modo online y offiline +label.authoring.heading.advanced =Advanzado +label.authoring.heading.advanced.description =Ingrese opciones avanzadas para recolecci\u00f3n de datos +label.authoring.heading.basic.description =Informaci\u00f3n b\u00e1sica para recolecci\u00f3n de datos +label.authoring.heading.basic =B\u00e1sica +label.authoring.basic.title =Advanzado +label.authoring.basic.instruction =Instrucciones +label.authoring.basic.answeroption =Opciones de respuestas +label.authoring.basic.answeroption.add =Agregar opci\u00f3n +label.authoring.basic.answeroption.ordinal =ABCDEFGHIJKLMN\u00d1OPQRSTUVWXYZ +label.authoring.basic.answeroption.up =Mover hacia arriba +label.authoring.basic.answeroption.down =Mover hacia abajo +label.authoring.basic.download =Descargar +label.authoring.basic.question.add =Agregar pregunta +label.authoring.basic.textfield =Una l\u00ednea de texto +label.authoring.basic.textfield.add =Agregar pregunta con respuesta de una l\u00ednea de texto +label.authoring.basic.textfield.help =El estudiante ingresa respuesta en una sola l\u00ednea de texto +label.authoring.basic.textarea =Multilinea +label.authoring.basic.textarea.add =Agregar pregunta con respuesta multilinea +label.authoring.basic.textarea.help =El estudiante ingresa respuesta en +label.authoring.basic.number =N\u00famero +label.authoring.basic.number.add =Add pregunta con respuesta num\u00e9rico +label.authoring.basic.number.help =El estudiante ingresa un n\u00famero como respuesta +label.authoring.basic.number.digitsdecimal =D\u00edgitos despu\u00e9s del punto decimal +label.authoring.basic.date =Fecha +label.authoring.basic.date.add =Agregar pregunta con Fecha como respuesta +label.authoring.basic.date.help =El estudiante ingresa una fecha como respuesta +label.authoring.basic.file =Archivo +label.authoring.basic.file.add =Agregar pregunta con respuesta de archivo +label.authoring.basic.file.help =El estudieante sube un archivo como respuesta +label.authoring.basic.image =Imagen +label.authoring.basic.image.add =Agregar pregunta con respuesta de imagen +label.authoring.basic.image.help =El estudiante sube un archivo de image como respuesta +label.learning.tableheader.questions =Preguntas +label.authoring.basic.radio.help =El estudiante elije una respuesta de las opciones acontinuaci\u00f3n. +label.authoring.basic.dropdown =Menu desplegable +label.authoring.basic.dropdown.add =A\u00f1adir pregunta con menu desplegable +label.authoring.basic.dropdown.help =El estudiante elije una respuesta de las opciones acontinuaci\u00f3n. +label.authoring.basic.checkbox.help =El estudiante elije multiples respuestas de las opciones acontinuaci\u00f3n. +label.authoring.basic.longlat =Longitud/Latitud +label.authoring.basic.longlat.add =A\u00f1adir pregunta con longitud/latitud +label.authoring.basic.longlat.maps =Elija mapa +label.authoring.basic.description =Pregunta +label.authoring.basic.max.word =M\u00e1ximo n\u00famero de palabras +label.authoring.basic.list.header.type =Tipo +label.authoring.basic.list.header.question =Pregunta +label.learning.longlat.hint =Ingrese dos n\u00fameros decimales +label.learning.longlat.longitude =Longitud: +label.authoring.basic.radio =Botones de opci\u00f3n +label.authoring.basic.radio.add =A\u00f1adir pregunta con botones de opci\u00f3n +label.authoring.basic.checkbox =Casilla de verificaci\u00f3n +label.authoring.basic.checkbox.add =A\u00f1adir pregunta con casillas de verificaci\u00f3n +label.authoring.basic.longlat.help =Estudiante ingresa longitud y latitud como respuesta +label.authoring.basic.min.select =M\u00ednima seleccionada +label.authoring.basic.max.select =M\u00e1xima seleccionada +label.authoring.basic.max.char =M\u00e1ximo de caracteres +label.authoring.basic.list.title =Lista de preguntas +label.authoring.basic.required =Se require la pregunta +label.authoring.basic.additionaloptions.show =Mostrar opciones adicionales +label.authoring.basic.additionaloptions.hide =Minimizar opciones adicionales +label.authoring.advanced.reflectOnActivity =Agregar anotaciones al final de la actividad con las siguientes instrucciones: +label.authoring.advanced.record =Limitar n\u00famero de registros a ingresar +label.authoring.advanced.record.nolimit =Sin limite +label.authoring.advanced.lock.on.finished =Una vez terminado, no dejar ingresar m\u00e1s registros +label.authoring.advanced.notify.onlearnerentry =Notificar a los tutores cuando el estudiante ingresa a la actividad +label.authoring.advanced.notify.onrecordsubmit =Notificar a los tutores cuando el estudiante agrega un registro. +label.authoring.online.instruction =Instrucciones de modo online +label.authoring.online.file =Subir archivo mode online +label.authoring.online.filelist =Archivos Modo Online +label.authoring.online.upload =Archivos Modo Online +label.authoring.offline.file =Subir archivo modo offline +label.authoring.offline.instruction =Instrucciones de modo offline +label.authoring.offline.filelist =Instrucciones de modo offline +label.authoring.offline.upload =Subitr Modo Offline +label.authoring.choosefile.button =Seleccionar archivo +label.authoring.save.button =Guardar +message.authoring.cancel.save =\u00bfEsta seguro que quiere cerrar la ventana sin guardar cambios? +label.learning.title =Colecci\u00f3n de Datos +label.learning.heading =Colecci\u00f3n de Datos +label.learning.heading.add =A\u00f1adir +label.learning.heading.list =Lista +label.learning.heading.summary =Resumen +label.learning.heading.recordnumber =N\u00famero de registro: +label.learning.heading.recordcount =Cuenta total de registros +label.learning.heading.norecords =No se han a\u00f1adido registros +label.learning.add =A\u00f1adir registro +label.learning.textfield.hint =Ingrese una sola linea de texto +label.learning.textarea.hint =Ingrese texto +label.learning.number.hint =Ingrese un n\u00famero +label.learning.number.decimal =El n\u00famero ser\u00e1 redondeado a {0} decimales. +label.learning.date.hint =Ingrese fecha +label.learning.date.day =D\u00eda: +label.learning.date.month =Mes: +label.learning.date.year =A\u00f1o: +label.learning.file.hint =Seleccione archivo +label.learning.file.uploaded =Archivo adjunto: +label.learning.file.notuploaded =No se adjunto archivo. +label.learning.image.hint =Seleccione una archivo de imagen +label.learning.radio.hint =Seleccione una opci\u00f3n +label.learning.dropdown.hint =Seleccione una opci\u00f3n +label.learning.tableheader.records =Registros +label.learning.tableheader.recordnumber =N\u00famero de registro +label.learning.tableheader.summary.learner =Usted +label.learning.tableheader.summary.group =Grupo +label.learning.summary.emptyanswer =Respuesta vacia +label.learning.continue =Continuar +label.monitoring.close =Cerrar +tab.monitoring.statistics =Estad\u00edsticas +tab.monitoring.instructions =Instrucciones +tab.monitoring.edit.activity =Editar Actividad +label.monitoring.fullname =Nombre completo +label.monitoring.loginname =Nombre de usuario +label.monitoring.recordcount =Cuenta de registros +label.monitoring.notebook =Anotaciones +label.monitoring.notebook.view =Ver +label.monitoring.notebook.none =Ninguna +label.monitoring.chooseuser =Seleccionar estudiante +label.monitoring.viewrecords.all =Ver todos los registros +label.monitoring.advancedsettings =Opciones Avanzadas +label.monitoring.advancedsettings.on =Si +label.monitoring.advancedsettings.off =No +label.monitoring.group =Grupo +label.monitoring.type =Tipo +label.monitoring.title =T\u00edtulo +label.monitoring.suggest =Sugerido por +label.monitoring.number.learners =N\u00famero de estudiantes +label.monitoring.hide =Esconder +label.monitoring.show =Mostrar +label.monitoring.user.loginname =Nombre de usuario +label.monitoring.user.name =Nombre +label.monitoring.hidden =Escondido +label.monitoring.edit.activity.cancel =Cancelar +label.monitoring.edit.activity.update =Actualizar +label.monitoring.edit.activity.edit =Editar +label.monitoring.attachments =Archivos aduntos +label.monitoring.user.fullname =Nombre +label.monitoring.heading.access =Lista de estudiantes +label.monitoring.reflection.heading =Ver anotaciones +message.monitoring.edit.activity.not.editable =La actividad ya no se puede editar +message.monitoring.summary.no.session =Los estudiantes todavia no han accedido a esta actividad. +label.export.reflection.heading =Anotaciones +error.question.desc.blank =La descripci\u00f3n no puede dejarse en blanco. +error.question.file.blank =El archivo no se lo puede dejar en blanco. +label.learning.finished =Finalizar + + +#======= End labels: Exported 244 labels for es ES ===== Index: debian_installer/lams2/lams_tool_daco/language/ApplicationResources_it_IT.properties =================================================================== diff -u --- debian_installer/lams2/lams_tool_daco/language/ApplicationResources_it_IT.properties (revision 0) +++ debian_installer/lams2/lams_tool_daco/language/ApplicationResources_it_IT.properties (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,255 @@ +appName = daco +#language code: it +#locale code: IT + + # CVS ID: $Id$ Exported from the LAMS Community by Ernie Ghiglione on Mon Dec 01 05:22:35 GMT 2008 + +#=================== labels for Data Collection =================# + +label.export.reflection.heading =Voce del Blocco Note +error.record.longlat.longitude.blank =La longitudine nella domanda {0} non deve essere vuota +error.record.longlat.longitude.float =La longitudine nella domanda {0} deve essere un numero decimale +error.record.longlat.latitude.blank =La latitudine nella domanda {0} non deve essere vuota +activity.title =Raccolta dei dati +error.record.longlat.latitude.float =La latitudine nella domanda {0} deve essere un numero decimale +error.record.notenough =Devi inserire almeno {0} voci +error.record.toomuch =Non devi inserire pi\u00f9 di {0} voci +error.upload.failed =Caricamento file fallito: {0} +error.msg.upload.file.not.found =Impossibile trovare file caricato {0} +label.monitoring.notebook =Voci del Blocco Note +tool.display.name =Strumento per la raccolta dei dati +label.authoring.advanced.reflectOnActivity =Aggiungi Blocco Note al termine della Raccolta Dati con le seguenti istruzioni: +message.no.reflection.available =Nessun Blocco Note disponibile +label.monitoring.advancedsettings.addNotebook =Aggiungi un Blocco Note al termine della Raccolta Dati +label.monitoring.advancedsettings.notebookinstructions =Istruzioni del Blocco Note +label.monitoring.reflection.heading =Vedi voci del Blocco Note +error.msg.file.not.found =File non trovato. Si verifica un errore nel caricare il file +error.msg.io.exception =IOErrore nel caricare il file +error.msg.invaid.param.upload =ErroreParametroInvalido durante il caricamento del file +error.msg.default.content.not.find =Impossibile trovare la voce di contenuto di default per questo strumento +error.msg.repository =Si \u00e8 verificato un errore di repository durante il caricamento del file +event.learnerentry.subject =LAMS: uno studente ha inserito uno strumento di raccolta dati +event.recordsubmit.subject =LAMS: uno studente ha inserito una voce in uno strumento di raccolta dati +event.learnerentry.body =Lo studente {0) ha effettuato l'accesso in uno strumento di raccolta dati, NB Questo messaggio \u00e8 stato inviato automaticamente, secondo le impostazioni avanzate dello strumento +event.recordsubmit.body =Lo studente {0} ha inserito una voce in uno strumento di raccolta dati. NB Questo messaggio \u00e8 stato inviato automaticamente, seguendo le impostazioni avanzate dello strumento. +output.desc.learner.number.of.posts =Numero di voci dello studente. +activity.description =Raccolta dati con struttura cliente +activity.helptext =Fare domande con cliente, risposte limitate +tool.description =Strumento per la raccolta dati +errorPage.title =Pagina di errore +label.common.summary =Riassunto +label.common.summary.none =Nessuno +label.common.summary.sum =Somma +label.common.summary.average =Media +label.common.summary.count =Conteggio +label.common.summary.refresh =Aggiorna +label.common.heading =Raccolta Dati +label.common.view =Visualizza +label.common.cancel =Annulla +label.common.edit =Modifica +label.common.delete =Elimina +label.common.min =Minimo +label.common.max =Massimo +errorPage.heading =Si sono verificati alcuni errori nel portare avanti la vostra richiesta +label.common.view.change =Cambia visualizzazione +button.try.again =Riprova +define.later.message =Attendere che l'insegnante completi i contenuti per questa attivit\u00e0 +label.author.title =Raccolta Dati +label.authoring.heading.instructions =Istruzioni +label.authoring.heading.instructions.desc =Inserire istruzioni online e offline +label.authoring.heading.advanced =Avanzate +label.authoring.heading.advanced.description =Inserire istruzioni avanzate per la raccolta dati +label.authoring.heading.basic.description =Informazioni di base per la raccolta dati +label.authoring.heading.basic =Base +label.authoring.basic.title =Titolo +label.authoring.basic.instruction =Istruzioni +label.authoring.basic.answeroption =Opzioni di risposta +label.authoring.basic.answeroption.add =Aggiungi opzione +label.authoring.basic.answeroption.ordinal =ABCDEFGHIJKLMNOPQRSTUVWXYZ +label.authoring.basic.answeroption.up =Vai su +label.authoring.basic.answeroption.down =Vai gi\u00f9 +label.authoring.basic.download =Scarica +label.authoring.basic.question.add =Aggiungi domanda +label.authoring.basic.textfield =Risposta unica +label.authoring.basic.textfield.add =Aggiungi domanda a risposta unica +label.authoring.basic.textfield.help =Lo studente inserisce una riga unica di testo come risposta +label.authoring.basic.textarea =Risposta breve +label.authoring.basic.textarea.add =Aggiungi una domanda a risposta breve +label.authoring.basic.textarea.help =Lo studente inserisce un testo a pi\u00f9 righe come risposta +label.authoring.basic.number =Numero +label.authoring.basic.number.add =Aggiungi una domanda - numero +label.authoring.basic.number.help =Lo studente inserisce un numero come risposta +label.authoring.basic.number.digitsdecimal =Cifre successive al punto decimale +label.authoring.basic.date =Data +label.authoring.basic.date.add =Aggiungi una domanda - data. +label.authoring.basic.date.help =Lo studente inserisce una data come risposta +label.authoring.basic.file =File +label.authoring.basic.file.add =Aggiungi un file unico +label.authoring.basic.file.help =Lo studente carica un file come risposta +label.authoring.basic.image =Immagine +label.authoring.basic.image.add =Aggiungi immagine +label.authoring.basic.image.help =Lo studente carica un'immagine come risposta +label.authoring.basic.radio =Scelta multipla +label.authoring.basic.radio.add =Aggiungi domanda a scelta multipla +label.authoring.basic.radio.help =Lo studente sceglie una risposta fra le opzioni date +label.authoring.basic.dropdown =Menu a tendina +label.authoring.basic.dropdown.add =Aggiungi una domanda con men\u00f9 a tendina +label.authoring.basic.dropdown.help =Lo studente sceglie una risposta fra le opzioni date +label.authoring.basic.checkbox =Caselle di selezione +label.authoring.basic.checkbox.add =Aggiungi una domanda con caselle di selezione +label.authoring.basic.checkbox.help =Lo studente sceglie una o pi\u00f9 risposte fra le opzioni date +label.authoring.basic.longlat =Longitudine-Latitudine +label.authoring.basic.longlat.add =Aggiungi una domanda longitudine-latitudine +label.authoring.basic.longlat.maps =Seleziona le mappe +label.authoring.basic.longlat.help =Lo studente inserisce longitudine e latitudine come risposta +label.authoring.basic.description =Domanda +label.authoring.basic.min.select =Minimo selezionato +label.authoring.basic.max.select =Massimo selezionato +label.authoring.basic.max.char =Numero massimo di caratteri +label.authoring.basic.max.word =Numero massimo di parole +label.authoring.basic.list.title =Elenco domande +label.authoring.basic.list.header.type =Tipo +label.authoring.basic.list.header.question =Domanda +label.authoring.basic.required =\u00e8 necessaria una domanda +label.authoring.basic.additionaloptions.show =Mostra opzioni aggiuntive +label.authoring.basic.additionaloptions.hide =Nascondi opzioni aggiuntive +label.authoring.advanced.record =Limita il numero di voci +label.authoring.advanced.record.nolimit =Nessun limite +label.authoring.advanced.lock.on.finished =Blocca quando completato +label.authoring.advanced.notify.onlearnerentry =Avverti gli insegnanti "controllori" quando uno studente accede a questa attivit\u00e0 +label.authoring.advanced.notify.onrecordsubmit =Avverti gli insegnanti "controllori" quando uno studente inserisce una voce +label.authoring.online.instruction =Istruzioni online +label.authoring.online.file =Carica un file online +label.authoring.online.filelist =Elenco file online +label.authoring.online.upload =Carica Online +label.authoring.offline.file =Carica un file offline +label.authoring.offline.instruction =Istruzioni Offline +label.authoring.offline.filelist =Elenco file offline +label.authoring.offline.upload =Carica Offline +label.authoring.choosefile.button =Seleziona file +label.authoring.save.button =Salva +message.authoring.cancel.save =Chiudere la finestra senza salvare? +label.learning.title =Apprendimento Raccolta Dati +label.learning.heading =Raccolta Dati +label.learning.heading.add =Aggiungi +label.learning.heading.list =Elenco +label.learning.heading.summary =Riassunto +label.learning.heading.recordnumber =Numero di voci +label.learning.heading.recordcount =Numero totale di voci +label.learning.heading.norecords =Nessuna voce aggiunta +label.learning.add =Aggiungi una voce +label.learning.textfield.hint =Inserisci una riga singola di testo +label.learning.textarea.hint =Inserisci testo +label.learning.number.hint =Inserisci un numero +label.learning.number.decimal =Il numero verr\u00e0 arrotondato a {0} cifre decimali +label.learning.date.hint =Inserisci una data +label.learning.date.day =Giorno: +label.learning.date.month =Mese: +label.learning.date.year =Anno: +label.learning.file.hint =Seleziona un file +label.learning.file.uploaded =File caricato: +label.learning.file.notuploaded =Nessun file caricato +label.learning.image.hint =Seleziona un'immagine +label.learning.radio.hint =Seleziona un'opzione +label.learning.dropdown.hint =Seleziona un'opzione +label.learning.dropdown.select =SELEZIONA +label.learning.dropdown.noneselected =Nessuna risposta selezionata +label.learning.dropdown.selected =Risposta selezionata: +label.learning.checkbox.hint =Seleziona opzioni +label.learning.longlat.hint =Inserisci due numeri decimali +label.learning.longlat.longitude =Longitudine: +label.learning.longlat.longitude.unit =\u00b0N +label.learning.longlat.latitude =Latitudine: +label.learning.longlat.latitude.unit =\u00b0E +label.learning.tableheader.questions =Domande +label.learning.tableheader.records =Voci +label.learning.tableheader.recordnumber =Numero voce +label.learning.tableheader.summary =Riassunti +label.learning.tableheader.summary.learner =Te +label.learning.tableheader.summary.group =Gruppo +label.learning.summary.emptyanswer =Risposta vuota +label.learning.continue =Continua +label.learning.finished =Prossima Attivit\u00e0 +message.learning.alertContentEdit =Impossibile modificare il contenuto: uno o pi\u00f9 partecipanti hanno iniziato l'attivit\u00e0 +message.learning.addrecordsuccess =La voce \u00e8 stata aggiunta con successo +message.learning.editrecordsuccess =La voce \u00e8 stata aggiornata con successo +message.learning.activityLocked =L'insegnante ha impostato questa attivit\u00e0 in modo tale da non consentirti di aggiungere ulteriori risposte dopo averla completata. +message.learning.offline =Questa attivit\u00e0 non va fatta sul computer. Contatta il tuo insegnante per maggiori dettagli. +label.monitoring.close =Chiudi +title.monitoring =Monitoraggio Raccolta Dati LAMS +title.monitoring.recordlist =Elenco voci LAMS +tab.monitoring.statistics =Statistiche +tab.monitoring.instructions =Istruzioni +tab.monitoring.edit.activity =Modifica attivit\u00e0 +label.monitoring.fullname =Nome e Cognome +label.monitoring.loginname =Nome Utente +label.monitoring.recordcount =Numero di voci +label.monitoring.notebook.view =Visualizza +label.monitoring.notebook.none =Nessuno +label.monitoring.chooseuser =Seleziona studente +label.monitoring.viewrecords.all =Visualizza tutte le voci +label.monitoring.advancedsettings =Impostazioni avanzate +label.monitoring.advancedsettings.on =Attiva +label.monitoring.advancedsettings.off =Disattiva +label.monitoring.group =Gruppo +label.monitoring.type =Tipo +label.monitoring.title =Titolo +label.monitoring.suggest =Suggerito da +label.monitoring.number.learners =Numero di studenti +label.monitoring.hide =Nascondi +label.monitoring.show =Mostra +label.monitoring.user.loginname =Nome Utente +label.monitoring.user.name =Nome +label.monitoring.hidden =Nascosto +label.monitoring.edit.activity.cancel =Annulla +label.monitoring.edit.activity.update =Aggiorna +label.monitoring.edit.activity.edit =Modifica +label.monitoring.attachments =Allegati +label.monitoring.user.fullname =Nome +label.monitoring.heading.access =Elenco studenti +message.monitoring.edit.activity.not.editable =Questa attivit\u00e0 non \u00e8 pi\u00f9 modificabile +message.monitoring.summary.no.session =Nessuno studente ha effettuato l'accesso a questa attivit\u00e0 +message.monitoring.summary.no.question.for.group =Nessuna domanda disponibile per questo gruppo +label.export.title =Esporta cartella della Raccolta Dati +error.question.desc.blank =La descrizione non pu\u00f2 essere vuota +error.question.file.blank =Il file non pu\u00f2 essere vuoto +error.question.max.blank =Il limite massimo non deve essere vuoto +error.question.max.number.int =Il limite massimo deve essere un numero intero +error.question.max.number.float =Il limite massimo deve essere un numero decimale +error.question.max.negative =Il limite massimo deve essere un numero non negativo +error.question.max.toohigh =Il limite massimo deve essere inferiore a {0} +error.question.max.toohigh.answeroption =Il limite massimo deve essere inferiore o pari al numero di opzioni di risposta +error.question.max.toolow =Il limite massimo deve essere superiore a {0} +error.question.min.blank =Il limite minimo non deve essere vuoto +error.question.min.number.int =Il limite minimo deve essere un numero intero +error.question.min.number.float =Il limite minimo deve essere un numero decimale +error.question.min.negative =Il limite minimo deve essere un numero non negativo +error.question.min.toohigh =Il limite minimo deve essere inferiore a {0} +error.question.min.toohigh.answeroption =Il limite minimo deve essere inferiore o pari al numero di opzioni di risposta +error.question.min.toolow =Il limite minimo deve essere superiore a {0} +error.question.min.toohigh.max =Il limite minimo deve essere inferiore al limite massimo +error.question.answeroption.repeat =Le opzioni di risposta {0} e {1} sono le stesse +error.question.answeroption.notenough =Bisogna fornire almeno {0} opzioni di risposta +error.question.digitsdecimal.int =Il numero di cifre dopo il punto decimale deve essere un numero intero +error.question.digitsdecimal.nonnegative =Il numero di cifre dopo il punto decimale deve essere un numero non negativo +error.recordlimit.min.toohigh.max =Il numero minimo di voci deve essere inferiore o pari al massimo +error.record.blank =\u00e8 necessaria una risposta per la domanda {0} +error.record.textarea.long =il numero massimo di parole per la domanda {0} \u00e8 pari a {1} +error.record.number.min =Il numero nella domanda {0} deve essere pari almeno a {1} +error.record.number.max =Il numero nella domanda {0} non dovrebbe essere superiore a {1} +error.record.number.float =La risposta nella domanda {0} deve essere un numero decimale +error.record.date.day.blank =Il campo del giorno nella domanda {0} \u00e8 vuoto +error.record.date.day.int =Il campo del giorno nella domanda {0} deve essere un numero intero +error.record.date.day.limit =Il campo del giorno nella domanda {0} deve essere fra 1 e {1} +error.record.date.month.blank =Il campo del mese nella domanda {0} \u00e8 vuoto +error.record.date.month.int =Il campo del mese nella domanda {0} deve essere un numero intero +error.record.date.month.limit =Il campo del mese nella domanda {0} deve essere tra 1 e 12 +error.record.date.year.blank =Il campo dell''anno nella domanda {0} \u00e8 vuoto +error.record.date.year.int =Il campo dell''anno nella domanda {0} deve essere un numero intero +error.record.image.format =Il file nella domanda {0} deve essere un''immagine (formato JPG, GIF o PNG) +error.record.checkbox.min =Il numero di risposte nella domanda {0} non deve essere inferiore a {1} +error.record.checkbox.max =Il numero di risposte nella domanda {0} non deve essere superiore a {1} +message.learning.warnLockOnFinish =Nota: dopo aver cliccato su "Prossima Attivit\u00e0" ed essere tornati a questa Raccolta Dati, non sar\u00e0 possibile visualizzare le domande + + +#======= End labels: Exported 244 labels for it IT ===== Index: debian_installer/lams2/lams_tool_daco/language/ApplicationResources_no_NO.properties =================================================================== diff -u --- debian_installer/lams2/lams_tool_daco/language/ApplicationResources_no_NO.properties (revision 0) +++ debian_installer/lams2/lams_tool_daco/language/ApplicationResources_no_NO.properties (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,255 @@ +appName = daco +#language code: no +#locale code: NO + + # CVS ID: $Id$ Exported from the LAMS Community by Ernie Ghiglione on Wed Nov 19 18:41:25 GMT 2008 + +#=================== labels for Data Collection =================# + +activity.description =Samle data i en tilpasset struktur +activity.helptext =Stiller tilpassede sp\u00f8rsm\u00e5l, begrensede svar. +message.learning.activityLocked =Foreleseren har definert denne aktiviteten slik at du ikke f\u00e5r lov til \u00e5 legge til flere oppgaver etter at du har avsluttet denne. +error.msg.file.not.found =En Fil ikke funnet regel oppst\u00e5r n\u00e5r du laster opp filen +event.recordsubmit.body =Studenten {0} har sendt inn en opptegnelse vie et datafangst verkt\u00f8y.\n\n Denne meldingen sendes automatisk iht til verkt\u00f8yets avanserte innstaillinger. +label.learning.continue =Fortsett +label.learning.finished =Neste aktivitet +label.monitoring.fullname =Fullt navn +label.monitoring.notebook.none =Ingen +label.monitoring.chooseuser =Velg student +label.monitoring.advancedsettings =Avanserte innstillinger +label.monitoring.advancedsettings.on =P\u00e5 +label.monitoring.advancedsettings.off =Av +label.monitoring.group =Gruppe +label.monitoring.type =Type +label.monitoring.title =Tittel +label.monitoring.suggest =Foresl\u00e5tt av +label.monitoring.number.learners =Antall studenter +label.monitoring.edit.activity.cancel =Avbryt +label.monitoring.attachments =Vedlegg +activity.title =Data innsamling +tool.display.name =Data innsamling +tool.description =Verkt\u00f8y for innsamling av data +errorPage.title =Feilmeldings side +label.common.summary.none =Ingen +label.common.summary.sum =Sum +label.common.summary.average =Gjennomsnittlig +label.common.summary.count =Summer +label.common.summary.refresh =Frisk opp +label.common.heading =Data innsamling +label.common.view =Se p\u00e5 +label.common.cancel =Avslutt +label.common.edit =Rediger +label.common.delete =Fjern +label.common.min =Minimum +button.try.again =Fors\u00f8k igjen +label.author.title =Data innsamling +label.authoring.basic.title =Tittel +label.authoring.basic.answeroption.ordinal =ABCDEFGHIJKLMNOPQRSTUVWXYZ +label.authoring.basic.answeroption.up =G\u00e5 opp +label.authoring.basic.answeroption.down =G\u00e5 ned +label.authoring.basic.download =Last ned +label.authoring.basic.number =Tall +label.authoring.heading.instructions =Instruksjoner +label.authoring.heading.instructions.desc =Vennligst skriv off-line og on-line instruksjoner +label.authoring.heading.advanced =Avansert +label.authoring.heading.advanced.description =Vennligst skriv avanserte alternativ for data innsamling +label.authoring.heading.basic.description =Grunnleggende inngangsdata for data innsamling +label.authoring.heading.basic =Grunnleggende +label.authoring.basic.instruction =Instruksjoner +label.authoring.basic.answeroption =Svar p\u00e5 alternativer +label.authoring.basic.answeroption.add =Legg til alternativ +label.authoring.basic.textfield =Tekst for en linje +label.authoring.basic.textfield.add =Legg til et sp\u00f8rsm\u00e5l p\u00e5 en linje +label.authoring.basic.number.help =Studenten gir et tall som svar +label.authoring.basic.number.digitsdecimal =Antall desimaler etter komma +label.authoring.basic.date.help =Studenten svarer med en dato +label.authoring.basic.file.help =Studenten laster opp en fil som et svar +label.authoring.basic.image =Bilde +label.authoring.basic.image.help =Studenten laster opp et bilde som svar. +label.authoring.basic.dropdown.help =Studenten velger et svar fra de oppgitte alternativer +label.authoring.basic.longlat.maps =Vellg kart +label.authoring.basic.description =Sp\u00f8rsm\u00e5l +label.authoring.basic.max.select =Maks. valgt +label.authoring.basic.max.char =Maks antall karakterer +label.authoring.basic.max.word =Maks antall ord +label.authoring.basic.list.title =Sp\u00f8rsm\u00e5ls liste +label.authoring.basic.list.header.type =Type +label.authoring.basic.list.header.question =Sp\u00f8rsm\u00e5l +label.authoring.basic.required =Det er n\u00f8dvendig med sp\u00f8rsm\u00e5l +label.authoring.basic.additionaloptions.show =Vis tilleggsalternativer +label.authoring.basic.additionaloptions.hide =Skjul tilleggsalternativer +label.authoring.advanced.record.nolimit =Ingen grense +label.authoring.advanced.lock.on.finished =L\u00e5s n\u00e5r ferdig +error.record.toomuch =Du m\u00e5 ikke sende inn mer enn {0} opptegnelser. +event.recordsubmit.subject =LAMS: En student har sendt inn en opptegnelse via et datafangst verkt\u00f8y. +define.later.message =Vennligst vent til at foreleseren har ferdigstilt innholdet til denne aktiviteten +label.authoring.basic.textfield.help =Studenten skriver en enkelt linje som svar. +label.authoring.basic.textarea =Fler-linje tekst +label.authoring.basic.textarea.add =Legg til sp\u00f8rsm\u00e5l over flere linjer +label.authoring.choosefile.button =Valgt fil +label.learning.heading.add =Legg til +label.learning.heading.list =List +label.learning.textarea.hint =Skriv inn tekst +label.learning.number.hint =Skriv et tall +label.learning.date.hint =Skriv en dato +label.learning.date.day =Dag: +label.learning.date.month =M\u00e5ned: +label.learning.date.year =\u00c5r: +label.learning.file.hint =Velg en fil +label.learning.file.uploaded =Opplastet fil: +label.learning.file.notuploaded =Ingen fil er lastet opp. +label.learning.image.hint =Velg et bilde +label.learning.radio.hint =Velg et alternativ +label.learning.dropdown.hint =Velg et alternativ +label.learning.dropdown.select =VELG +label.learning.dropdown.noneselected =Ingen svar er valgt +label.learning.dropdown.selected =Valgt svar: +label.learning.checkbox.hint =Velg alternativ +label.learning.tableheader.questions =Sp\u00f8rsm\u00e5l +label.learning.tableheader.summary.learner =Du +label.learning.tableheader.summary.group =Gruppe +label.learning.summary.emptyanswer =Tomt svar +label.authoring.basic.number.add =Legg til et tall sp\u00f8rsm\u00e5l +label.authoring.basic.radio.help =Studenten velger et svar fra alternativene. +label.authoring.basic.dropdown.add =Legg til sp\u00f8rm\u00e5l p\u00e5 nedtrekksmeny +label.authoring.basic.checkbox.help =Studenten velger flere svar fra alternativene. +label.authoring.advanced.reflectOnActivity =Legg til en notatbok p\u00e5 slutten av data innsamling, med f\u00f8lgende informasjon: +label.authoring.advanced.notify.onlearnerentry =Varsle foreleseren n\u00e5r studenten starter denne aktiviteten +label.authoring.basic.date =Dato +label.authoring.basic.file =Fil +label.authoring.basic.file.add =Legg til enkeltfiler +label.authoring.basic.image.add =Legg til bilde +label.authoring.basic.dropdown =Nedtrekksmeny +label.monitoring.close =Lukk +tab.monitoring.edit.activity =Rediger aktivitet +label.monitoring.loginname =Logg inn navn +label.monitoring.notebook.view =Se p\u00e5 +label.monitoring.hide =Skjul +label.monitoring.show =Vis +label.monitoring.user.loginname =Logg inn navn +label.monitoring.user.name =Navn +label.monitoring.hidden =Skjult +label.monitoring.edit.activity.update =Oppdater +label.monitoring.edit.activity.edit =Rediger +label.monitoring.user.fullname =Navn +label.authoring.online.instruction =On-line informasjon +label.authoring.online.file =Last opp on-line fil +label.authoring.online.filelist =On-line filliste +label.authoring.online.upload =Last opp on-line +label.authoring.offline.filelist =Off-line filliste +label.authoring.offline.upload =Last opp off-line +label.authoring.offline.file =Last opp off-line fil +label.authoring.offline.instruction =Off-line informasjon +label.authoring.basic.date.add =Legg til et dato sp\u00f8rsm\u00e5l +label.authoring.save.button =Lagre +message.authoring.cancel.save =\u00d8nsker du \u00e5 lukke vinduet uten \u00e5 lagre ? +label.learning.title =Datafangst - student +label.learning.heading =Datafangst +title.monitoring =LAMS datafangst foreleser +label.monitoring.notebook =Notatbok tilgang +label.monitoring.advancedsettings.addNotebook =Legg til en notatbok p\u00e5 slutten av datafangst +error.question.answeroption.repeat =Svaralternativet {0} og {1} er det samme. +error.question.answeroption.notenough =Du burde s\u00f8rge for minst {0} svar alternativer. +error.record.blank =Et svar til sp\u00f8rsm\u00e5let {}} er p\u00e5krevet. +error.msg.repository =En database feil oppsto i forbindelse med opplasting av filen. +label.common.view.change =Endre betrakningsvinkel +error.msg.io.exception =IOException oppst\u00e5r ved opplasting av filen +error.msg.invaid.param.upload =Invalid ParameterEXception oppst\u00e5r n\u00e5r du fors\u00f8ker \u00e5 laste opp filen. +label.common.max =Maksimum +label.authoring.basic.question.add =Legg til sp\u00f8rsm\u00e5l +errorPage.heading =En feil oppsto ved behandlingen av din foresp\u00f8rsel +label.common.summary =Oppsummering +message.no.reflection.available =Ingen notatbok er tilgjengelig +label.authoring.basic.radio =Radio-velger +label.authoring.basic.radio.add =Velg sp\u00f8rsm\u00e5l type radio-velger +label.authoring.basic.checkbox =Avkryssningsboks +label.authoring.basic.checkbox.add =Legg til avkryssnings-sp\u00f8rsm\u00e5l +label.authoring.basic.longlat =Lengdegrad/breddegrad +label.authoring.basic.longlat.add =Legg til lengdegrad/breddegrad sp\u00f8rsm\u00e5l +label.authoring.basic.longlat.help =Studenten oppgir lendegrad og breddegrad som svar +label.authoring.basic.min.select =Min. valgt +label.learning.heading.summary =Oppsummering +label.learning.textfield.hint =Legg til kun en linje tekst +label.learning.number.decimal =Tallet vilbli avrundet til {0} desimaler. +label.learning.longlat.hint =Gi inn to desimaler +label.learning.longlat.longitude =Lengdegrad +label.learning.longlat.longitude.unit =\u00b0N +label.learning.longlat.latitude =Breddegrad +label.learning.longlat.latitude.unit =\u00b0E +label.learning.tableheader.summary =Oppsummeringer +tab.monitoring.instructions =Informasjon +label.monitoring.advancedsettings.notebookinstructions =Notatbok informasjon +label.monitoring.heading.access =Studentens liste +label.monitoring.reflection.heading =Se p\u00e5 notatbok tekst +message.monitoring.edit.activity.not.editable =Denne aktiviteten kan ikke redigeres lengere +message.monitoring.summary.no.session =Ingen studenter har tilgang til denne aktiviteten. +message.monitoring.summary.no.question.for.group =Ingen sp\u00f8rsm\u00e5l er tilgjengelig for denne gruppen. +label.export.title =Eksporter mappe for datainnsamling +label.export.reflection.heading =Tilgang til notatbok +error.question.desc.blank =Beskrivelse kan ikke v\u00e6re tom +error.question.file.blank =Fil kan ikke v\u00e6re tom. +error.question.max.blank =Maksimum begrensningen kan ikke v\u00e6re tom. +error.question.max.number.int =Maksimum begrensningen m\u00e5 v\u00e6re et integral tall. +error.question.max.number.float =Maksimum begrensningen m\u00e5 v\u00e6re et desimal tall. +error.question.max.negative =Maksimum begrensningen kan ikke v\u00e6re et negativt tall. +error.question.max.toohigh =Maksimum begrensningen m\u00e5 v\u00e6re mindre enn {0} +error.question.max.toohigh.answeroption =Maksimum begrensningen m\u00e5 v\u00e6re mindre eller lik svarets verdi. +error.question.max.toolow =Maksimum begrensningen m\u00e5 v\u00e6re mer enn {0}. +error.question.min.blank =Minimum begrensningen kan ikke v\u00e6re tom. +error.question.min.number.int =Minimum begrensningen m\u00e5 v\u00e6re et integral tall. +error.question.min.number.float =Minimum begrensningen m\u00e5 v\u00e6re et desimal tall. +error.question.min.negative =Minimum begrensningen kan ikke v\u00e6re et negativt tall. +error.question.min.toohigh =Minimum begrensningen m\u00e5 v\u00e6re mindre enn {0} +error.question.min.toohigh.answeroption =Minimum begrensningen m\u00e5 v\u00e6re mindre eller lik svarets verdi. +error.question.min.toolow =Minimum begrensningen m\u00e5 v\u00e6re mer enn {0}. +error.question.min.toohigh.max =Minimum begrensningen m\u00e5v\u00e6re mindre enn maksimum begrensningen. +error.record.longlat.longitude.blank =Lengdegraden i sp\u00f8rsm\u00e5let {0} kan ikke v\u00e6re tomt. +error.record.longlat.longitude.float =Lengdegraden i sp\u00f8rsm\u00e5let {0} m\u00e5 v\u00e6re et desimaltall. +error.record.longlat.latitude.blank =Breddegraden i sp\u00f8rsm\u00e5let {0} kan ikke v\u00e6re tomt. +error.record.longlat.latitude.float =Breddegraden i sp\u00f8rsm\u00e5let {0} m\u00e5 v\u00e6re et desimaltall. +error.upload.failed =Opplasting av fil er mislykket {0} +error.msg.upload.file.not.found =Kunne ikke finne den filen for opplasting {0} +error.record.textarea.long =Maksimalt antall ord i sp\u00f8rsm\u00e5l {0} er {1}. +error.record.number.min =Tallet i sp\u00f8rsm\u00e5l {0} m\u00e5 minst v\u00e6re {1}. +error.record.number.max =Tallet i sp\u00f8rsm\u00e5l {0} m\u00e5 v\u00e6re mer enn {1}. +error.record.number.float =Svaret i sp\u00f8rsm\u00e5l {0} m\u00e5 v\u00e6re et desimaltall. +error.record.date.day.blank =Feltet: Dag i sp\u00f8rsm\u00e5let {0} er tomt. +error.record.date.day.int =Feltet: Dag i sp\u00f8rsm\u00e5l {0} m\u00e5 fylles ut med et integral tall. +error.record.date.day.limit =Feltet: Dag i sp\u00f8rsm\u00e5l {0} m\u00e5 v\u00e6re mellom 1 og {1}. +error.record.date.month.blank =Feltet: M\u00e5ned i sp\u00f8rsm\u00e5let {0} er tomt. +error.record.date.month.int =Feltet: M\u00e5ned i sp\u00f8rsm\u00e5l {0} m\u00e5 fylles ut med et integral tall. +error.record.date.month.limit =Feltet: M\u00e5ned i sp\u00f8rsm\u00e5l {0} m\u00e5 v\u00e6re mellom 1 og 12. +error.record.date.year.blank =Feltet: \u00c5r i sp\u00f8rsm\u00e5let {0} er tomt. +error.record.date.year.int =Feltet: \u00c5r i sp\u00f8rsm\u00e5l {0} m\u00e5 fylles ut med et integral tall. +error.record.image.format =Filen til sp\u00f8rsm\u00e5let {0} m\u00e5 v\u00e6re et bilde med filtype JPEG, GIF eller PNG. +error.record.checkbox.min =Antall svar til sp\u00f8rsm\u00e5let {0} kan ikke v\u00e6re mindre enn {1}. +error.record.checkbox.max =Antall svar til sp\u00f8rsm\u00e5let {0} kan ikke v\u00e6re st\u00f8rre enn {1}. +label.authoring.basic.textarea.help =Studenten svarer med en fler-linje tekst +message.learning.alertContentEdit =Det er ikke tillatt \u00e5 modifisere innholdet fordi en eller flere studenter har p\u00e5begynt denne aktiviteten. +message.learning.warnLockOnFinish =Merk: Etter at du har klikket p\u00e5 Neste Aktivitet og deretter g\u00e5r tilbake til denne datafangsten, s\u00e5 vil du ikke kunne se sp\u00f8rsm\u00e5lene. +event.learnerentry.body =Studenten {0} \u00e5pnet et datafangst verkt\u00f8y.\n\n`Denne meldingen er sendt automatisk, iht det oppsettet som er definert i avanserte innstillinger for verkt\u00f8yet. +error.msg.default.content.not.find =Kunne ikke hente ut standard innhold for dette verkt\u00f8yet. +event.learnerentry.subject =LAMS: En student har \u00e5pnet et datafangst verkt\u00f8y +label.authoring.advanced.notify.onrecordsubmit =Vrsl foreleser n\u00e5r en student sender inn en opptegnelse. +label.learning.heading.recordnumber =Opptegnelse nummer. +label.learning.heading.recordcount =Totalt antall opptegnelser +label.learning.heading.norecords =Ingen opptegnelser er lagt til. +label.learning.add =Legg til en opptegnelse +label.learning.tableheader.records =Opptegnelser +label.learning.tableheader.recordnumber =Opptegnelse nr +message.learning.addrecordsuccess =Opptegnelsen ble lagt til korrekt +message.learning.editrecordsuccess =Opptegnelsen ble lastet opp vellykket +message.learning.offline =Denne oppgaven skal ikke utf\u00f8res ved hjelp av datamaskin. Kontakt foreleseren. +title.monitoring.recordlist =LAMS liste for opptegnelser +tab.monitoring.statistics =Statistikk +label.monitoring.recordcount =Tell opp opptegnelser +label.monitoring.viewrecords.all =Se alle opptegnelser +error.question.digitsdecimal.int =Antall siffer etter komma m\u00e5 v\u00e6re et integral tall. +error.question.digitsdecimal.nonnegative =Antall siffer etter komma kan ikke v\u00e6re negative. +error.recordlimit.min.toohigh.max =Minimum antall opptegnelser m\u00e5 v\u00e6re mindre enn eller lik maksimal antall +error.record.notenough =Du m\u00e5 sende inn minimum {0} opptegnelser. +label.authoring.advanced.record =Begrens antall opptegnelser +output.desc.learner.number.of.posts =Studentens antall filer + + +#======= End labels: Exported 244 labels for no NO ===== Index: debian_installer/lams2/lams_tool_daco/lib/commons-collections.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_daco/lib/commons-configuration-1.1.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_daco/lib/commons-dbutils-1.0.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_daco/lib/commons-io-1.0.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_daco/lib/commons-lang-2.0.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_daco/lib/commons-logging.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_daco/lib/lams-tool-deploy.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_daco/lib/mysql-connector-java-3.1.12-bin.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_daco/lib/xstream-1.1.2.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_daco/sql/activity_insert.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_daco/sql/activity_insert.sql (revision 0) +++ debian_installer/lams2/lams_tool_daco/sql/activity_insert.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -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 +, 'Collecting data with custom structure.' +, 'Data Collection' +, 'Asking questions with custom, limited answers.' +, NULL +, NULL +, NULL +, NULL +, 1 +, 2 +, 0 +, NULL +, NULL +, NULL +, 0 +, NULL +, ${learning_library_id} +, NOW() +, 0 +, NULL +, NULL +, NULL +, ${tool_id} +, NULL +, 6 +, NULL +, NULL +, NULL +, NULL +, NULL +, NULL +, 'tool/ladaco10/images/icon_daco.swf' +, NULL +, NULL +, NULL +, 'org.lamsfoundation.lams.tool.daco.ApplicationResources' +) Index: debian_installer/lams2/lams_tool_daco/sql/create_lams_tool_daco.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_daco/sql/create_lams_tool_daco.sql (revision 0) +++ debian_installer/lams2/lams_tool_daco/sql/create_lams_tool_daco.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,122 @@ +SET FOREIGN_KEY_CHECKS=0; + +DROP TABLE if exists tl_ladaco10_attachments cascade; +DROP TABLE if exists tl_ladaco10_contents cascade; +DROP TABLE if exists tl_ladaco10_questions cascade; +DROP TABLE if exists tl_ladaco10_answer_options cascade; +DROP TABLE if exists tl_ladaco10_sessions cascade; +DROP TABLE if exists tl_ladaco10_users cascade; +DROP TABLE if exists tl_ladaco10_answers cascade; + +CREATE TABLE tl_ladaco10_contents ( + uid bigint NOT NULL UNIQUE auto_increment, + create_date datetime, + update_date datetime, + create_by bigint, + title varchar(255), + run_offline tinyint DEFAULT 0, + lock_on_finished tinyint DEFAULT 0, + min_records tinyint unsigned DEFAULT 0, + max_records tinyint unsigned DEFAULT 0, + instructions text, + online_instructions text, + offline_instructions text, + content_in_use tinyint DEFAULT 0, + define_later tinyint DEFAULT 0, + content_id bigint UNIQUE, + reflect_instructions varchar(255), + reflect_on_activity tinyint, + learner_entry_notify tinyint DEFAULT 0, + record_submit_notify tinyint DEFAULT 0, + PRIMARY KEY (uid) +)TYPE=innodb; + +CREATE TABLE tl_ladaco10_sessions ( + uid bigint NOT NULL UNIQUE auto_increment, + session_end_date datetime, + session_start_date datetime, + status integer, + content_uid bigint, + session_id bigint UNIQUE, + session_name varchar(250), + PRIMARY KEY (uid) +)TYPE=innodb; + +CREATE TABLE tl_ladaco10_attachments ( + uid bigint NOT NULL UNIQUE auto_increment, + file_version_id bigint, + file_type varchar(255), + file_name varchar(255), + file_uuid bigint, + create_date datetime , + content_uid bigint, + PRIMARY KEY (uid) +)TYPE=innodb; + +CREATE TABLE tl_ladaco10_questions ( + uid bigint NOT NULL UNIQUE auto_increment, + description text, + create_by bigint, + create_date datetime , + is_required tinyint DEFAULT 0, + question_type tinyint unsigned, + min_constraint float, + max_constraint float, + digits_decimal tinyint unsigned, + summary tinyint unsigned, + content_uid bigint, + session_uid bigint, + PRIMARY KEY (uid) +)TYPE=innodb; + +CREATE TABLE tl_ladaco10_answer_options +(uid bigint NOT NULL UNIQUE auto_increment, +question_uid bigint, +sequence_num tinyint unsigned DEFAULT 1, +answer_option varchar(255), +PRIMARY KEY (uid)) +TYPE=innodb; + +CREATE TABLE tl_ladaco10_users ( + 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, + content_uid bigint, + PRIMARY KEY (uid) +)TYPE=innodb; + +CREATE TABLE tl_ladaco10_answers +(uid bigint NOT NULL UNIQUE auto_increment, +user_uid bigint, +question_uid bigint, +record_id smallint unsigned, +answer text, + file_type varchar(255), + file_name varchar(255), + file_uuid bigint, + file_version_id bigint, +PRIMARY KEY (uid)) TYPE=innodb; + +ALTER TABLE tl_ladaco10_attachments ADD INDEX (content_uid), ADD CONSTRAINT FOREIGN KEY (content_uid) REFERENCES tl_ladaco10_contents (uid); +ALTER TABLE tl_ladaco10_contents ADD INDEX (create_by), ADD CONSTRAINT DacoToUser FOREIGN KEY (create_by) REFERENCES tl_ladaco10_users (uid); +ALTER TABLE tl_ladaco10_questions ADD INDEX (create_by), ADD CONSTRAINT QuestionToUser FOREIGN KEY (create_by) REFERENCES tl_ladaco10_users (uid); +ALTER TABLE tl_ladaco10_questions ADD INDEX (content_uid), ADD CONSTRAINT QuestionToDaco FOREIGN KEY (content_uid) REFERENCES tl_ladaco10_contents (uid); +ALTER TABLE tl_ladaco10_questions ADD INDEX (session_uid), ADD CONSTRAINT FOREIGN KEY (session_uid) REFERENCES tl_ladaco10_sessions (uid); +ALTER TABLE tl_ladaco10_answer_options ADD INDEX (question_uid), ADD CONSTRAINT FOREIGN KEY (question_uid) REFERENCES tl_ladaco10_questions (uid); +ALTER TABLE tl_ladaco10_sessions ADD INDEX (content_uid), ADD CONSTRAINT SessionToDaco FOREIGN KEY (content_uid) REFERENCES tl_ladaco10_contents (uid); +ALTER TABLE tl_ladaco10_users ADD INDEX (session_uid), ADD CONSTRAINT UserToSession FOREIGN KEY (session_uid) REFERENCES tl_ladaco10_sessions (uid); +ALTER TABLE tl_ladaco10_users ADD INDEX (content_uid), ADD CONSTRAINT UserToDaco FOREIGN KEY (content_uid) REFERENCES tl_ladaco10_contents (uid); +ALTER TABLE tl_ladaco10_answers ADD INDEX (user_uid), ADD CONSTRAINT AnswerToUser FOREIGN KEY (user_uid) REFERENCES tl_ladaco10_users (uid); +ALTER TABLE tl_ladaco10_answers ADD INDEX (question_uid), ADD CONSTRAINT AnswerToQuestion FOREIGN KEY (question_uid) REFERENCES tl_ladaco10_questions (uid); + +INSERT INTO `tl_ladaco10_contents` (`uid`, `create_date`, `update_date`, `create_by`, `title`, `run_offline`, `lock_on_finished`,`min_records`,`max_records`, `instructions`, `online_instructions`, `offline_instructions`, `content_in_use`, `define_later`, `content_id`,`reflect_on_activity`) VALUES + (1,NULL,NULL,NULL,'Data Collection',0,0,0,0,'Instructions',NULL,NULL,0,0,${default_content_id},0); + +INSERT INTO `tl_ladaco10_questions` (`uid`, `description`, `create_by`, `create_date`, `is_required`, `question_type`, `min_constraint`, `max_constraint`,`digits_decimal`,`summary`, `content_uid`, `session_uid`) VALUES + (DEFAULT,'
What is your favourite colour?
',NULL,NOW(),0,1,NULL,NULL,NULL,NULL,1,NULL); + +SET FOREIGN_KEY_CHECKS=1; \ No newline at end of file Index: debian_installer/lams2/lams_tool_daco/sql/db_version_insert.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_daco/sql/db_version_insert.sql (revision 0) +++ debian_installer/lams2/lams_tool_daco/sql/db_version_insert.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,2 @@ +-- $Id$ +INSERT INTO patches VALUES ('ladaco10', '20081114', NOW(), 'F'); \ No newline at end of file Index: debian_installer/lams2/lams_tool_daco/sql/drop_lams_tool_daco.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_daco/sql/drop_lams_tool_daco.sql (revision 0) +++ debian_installer/lams2/lams_tool_daco/sql/drop_lams_tool_daco.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,9 @@ +SET FOREIGN_KEY_CHECKS=0; +drop table if exists tl_ladaco10_attachments; +drop table if exists tl_ladaco10_contents; +drop table if exists tl_ladaco10_questions; +drop table if exists tl_ladaco10_answer_options; +drop table if exists tl_ladaco10_sessions; +drop table if exists tl_ladaco10_users; +drop table if exists tl_ladaco10_answers; +SET FOREIGN_KEY_CHECKS=1; \ No newline at end of file Index: debian_installer/lams2/lams_tool_daco/sql/library_insert.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_daco/sql/library_insert.sql (revision 0) +++ debian_installer/lams2/lams_tool_daco/sql/library_insert.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -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 +( +'Collecting data with custom structure.', +'Data Collection', +0, +NOW() +) Index: debian_installer/lams2/lams_tool_daco/sql/tool_insert.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_daco/sql/tool_insert.sql (revision 0) +++ debian_installer/lams2/lams_tool_daco/sql/tool_insert.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -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 +( +'ladaco10', +'dacoService', +'Data Collection', +'Collecting data with custom structure.', +'daco', +'20081114', +NULL, +NULL, +0, +2, +1, +'tool/ladaco10/learning/start.do?mode=learner', +'tool/ladaco10/learning/start.do?mode=author', +'tool/ladaco10/learning/start.do?mode=teacher', +'tool/ladaco10/authoring/start.do', +'tool/ladaco10/monitoring/summary.do', +'tool/ladaco10/definelater.do', +'tool/ladaco10/exportPortfolio?mode=learner', +'tool/ladaco10/exportPortfolio?mode=teacher', +'tool/ladaco10/contribute.do', +'tool/ladaco10/moderate.do', +'http://wiki.lamsfoundation.org/display/lamsdocs/ladaco10', +'org.lamsfoundation.lams.tool.daco.ApplicationResources', +'lams-tool-ladaco10.jar', +'/org/lamsfoundation/lams/tool/daco/dacoApplicationContext.xml', +NOW(), +NOW(), +1 +) Index: debian_installer/lams2/lams_tool_dimdim/deploy.bat =================================================================== diff -u --- debian_installer/lams2/lams_tool_dimdim/deploy.bat (revision 0) +++ debian_installer/lams2/lams_tool_dimdim/deploy.bat (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -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_dimdim/deploy.sh =================================================================== diff -u --- debian_installer/lams2/lams_tool_dimdim/deploy.sh (revision 0) +++ debian_installer/lams2/lams_tool_dimdim/deploy.sh (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -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_dimdim/deploy.xml =================================================================== diff -u --- debian_installer/lams2/lams_tool_dimdim/deploy.xml (revision 0) +++ debian_installer/lams2/lams_tool_dimdim/deploy.xml (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,31 @@ + + laddim10 + lams-tool-laddim10.war + /lams/tool/laddim10 + /usr/share/lams2/lams_tool_dimdim/sql/updateTo20080811.sql + /usr/share/lams2/lams_tool_dimdim/sql/tool_insert.sql + /usr/share/lams2/lams_tool_dimdim/sql/library_insert.sql + true + /usr/share/lams2/lams_tool_dimdim/sql/activity_insert.sql + /usr/share/lams2/lams_tool_dimdim/sql/create_lams_tool_dimdim.sql + /usr/share/lams2/lams_tool_dimdim/sql/drop_lams_tool_dimdim.sql + /usr/share/lams2/lams_tool_dimdim/sql/db_version_insert.sql + /org/lamsfoundation/lams/tool/dimdim/dimdimApplicationContext.xml + lams-tool-laddim10.jar + 2.0 + + /usr/share/lams2/lams_tool_dimdim/lams-tool-laddim10.war + /usr/share/lams2/lams_tool_dimdim/lams-tool-laddim10.jar + + + /usr/share/lams2/lams_tool_dimdim/language/ApplicationResources.properties + /usr/share/lams2/lams_tool_dimdim/language/ApplicationResources_en_AU.properties + + 20080811 + com.mysql.jdbc.Driver + jdbc:mysql://localhost/lams_head?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&autoReconnect=true&useUnicode=true + lams + lamsdemo + /usr/share/jboss-4.0.2/server/default/deploy/lams.ear + org.lamsfoundation.lams.tool.dimdim + Index: debian_installer/lams2/lams_tool_dimdim/lams-tool-laddim10.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_dimdim/lams-tool-laddim10.war =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_dimdim/language/ApplicationResources.properties =================================================================== diff -u --- debian_installer/lams2/lams_tool_dimdim/language/ApplicationResources.properties (revision 0) +++ debian_installer/lams2/lams_tool_dimdim/language/ApplicationResources.properties (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,98 @@ +appName = dimdim +#language code: en +#locale code: AU + + # CVS ID: $Id$ + # Exported from the LAMS Community by Ernie Ghiglione on Wed May 21 09:49:20 BST 2008 + +#=================== labels for Dimdim =================# + +tool.display.name = Dimdim +tool.description = Dimdim Tool +activity.title = Dimdim +activity.description = Dimdim Tool +activity.helptext = Dimdim + +pageTitle.authoring =Dimdim Authoring +pageTitle.monitoring =Dimdim Monitoring + +button.basic =Basic +button.advanced =Advanced +button.upload =Upload +button.cancel =Cancel +button.save =Save +button.finish =Next Activity +button.instructions =Instructions +button.continue = Continue +button.edit = Edit +button.try.again =Try Again +button.summary =Summary +button.editActivity =Edit Activity +button.statistics =Statistics +button.close = Close + + +label.authoring.basic.title =Title +label.attachments =Attachments +label.view =View +label.notAvailable =Not Available +label.save =Save +label.created =Created +label.lastModified =Last modified +label.notebookEntry =Notebook entry +label.authoring.basic.instructions =Instructions +label.authoring.basic.dimdimSettings = Dimdim Settings +label.authoring.basic.maxAttendeeMikes = Number of microphones allowed +label.on =On +label.off =Off +label.monitoring.startConference = Start Conference +label.learning.joinConference = Join Conference +label.learning.conferenceNotAvailable = The Dim Dim conference is not available. Please see your instructor for further details. +label.refresh = Refresh +label.download =Download +label.delete =Delete + +message.unsavedChanges =Page contains unsaved changes +message.defineLaterSet =Please wait for the teacher to complete the contents of this activity +message.runOfflineSet =This activity is not being done on the computer. Please see your instructor for details. +message.learner.blank.input =You have not written anything. Are you sure this is correct? +message.alertContentEdit =Warning: One of more students have accessed this activity. Changing this content will result in students getting different information. +message.warnLockOnFinish =Note: After you click on "Next Activity" and you come back to this Notebook, you won't be able to continue adding notes. +message.activityLocked =The instructor has set this activity not to allow notes after you have finished it. As you are returning to this Notebook, you are able to see your notes but not allowed to add more. +message.no.reflection.available = Notebook not available +message.endMeeting = The meeting room is now closed. You can continue with your sequence. + +heading.totalLearners =Number of Learners +heading.totalLearnersInGroup =Total Number of Learners in Group +heading.totalFinishedLearnersInGroup =Number of Finished Learners +heading.learner =Learner +heading.notebookEntry =Notebook Entry + +error.mandatoryField ={0} field is mandatory. + +advanced.lockOnFinished =Lock when finished +advanced.reflectOnActivity = Add Notebook at end of Dimdim with the following instructions + +instructions.uploadOfflineInstr =Offline Instructions File +instructions.uploadOnlineInstr =Online Instructions File +instructions.offlineInstructions =Offline Instructions +instructions.onlineInstructions =Online Instructions + +authoring.msg.cancel.save =Do you want to close this window without saving? + +monitor.summary.th.advancedSettings =Advanced Settings +monitor.summary.dimdimSettings = Dim Dim Settings + +admin.title = Dim Dim Administration +config.serverURL = Dimdim Server URL +config.version = Dimdim Version + +label.version.standard=Standard +label.version.enterprise=Enterprise +label.version.pleaseSelect = Please Select + +export.toolExportNotSupported = This tool does not support export portfolio. + +message.unableToStartLesson = Unable to join meeting. Please see your instructor. + +#======= End labels: Exported 78 labels for en AU ===== Index: debian_installer/lams2/lams_tool_dimdim/language/ApplicationResources_en_AU.properties =================================================================== diff -u --- debian_installer/lams2/lams_tool_dimdim/language/ApplicationResources_en_AU.properties (revision 0) +++ debian_installer/lams2/lams_tool_dimdim/language/ApplicationResources_en_AU.properties (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,89 @@ +appName = dimdim +#language code: en +#locale code: AU + + # CVS ID: $Id$ Exported from the LAMS Community by Ernie Ghiglione on Wed May 21 09:49:20 BST 2008 + +#=================== labels for Notebook =================# + +activity.helptext =Notebook for notes and reflections +tool.display.name = Dimdim +tool.description = Dimdim Tool +activity.title =Dimdim +activity.description = Dimdim Tool +pageTitle.authoring = Dimdim Authoring +button.basic =Basic +button.advanced =Advanced +button.upload =Upload +label.authoring.basic.title =Title: +label.authoring.basic.content =Content: +advanced.lockOnFinished =Lock when finished +advanced.allowRichEditor =Allow rich text editor +instructions.type.online =Online +instructions.type.offline =Offline +label.filename =Filename +label.type =Type +label.attachments =Attachments +link.view =View +link.download =Download +link.delete =Delete +message.updateSuccess =Changes saved +message.unsavedChanges =Page contains unsaved changes +pageTitle.learning = Dimdim +message.defineLaterSet =Please wait for the teacher to complete the contents of this activity +message.runOfflineSet =This activity is not being done on the computer. Please see your instructor for details. +pageTitle.monitoring = Dimdim Monitoring +button.summary =Summary +button.editActivity =Edit Activity +button.statistics =Statistics +titleHeading.summary =Summary +titleHeading.statistics =Statistics +titleHeading.editActivity =Edit Activity +titleHeading.exportPortfolio =Export Portfolio +heading.group =Group {0}: +heading.totalLearners =Number of Learners: +heading.totalLearnersInGroup =Total Number of Learners in Group: +heading.totalFinishedLearnersInGroup =Number of Finished Learners: +message.summary =There is no summary available for this tool. +label.view =View +label.notAvailable =Not Available +heading.learner =Learner +heading.notebookEntry = Notebook Entry +button.cancel =Cancel +button.ok =OK +button.done =Done +button.save =Save +button.next =Next +label.save =Save +label.cancel =Cancel +label.created =Created +label.lastModified =Last modified +label.notebookEntry = Notebook entry +error.missingParam =Unable to continue. {0} is missing. +error.exceedMaxFileSize =File size exceeded +error.exception.NbApplication =An internal error has occured with the Dimdim Tool. If reporting this error, please report:
{0} +error.defineLater =Sorry, the activity is not ready yet. Please wait for the teacher to finishing defining the activity. +errors.maxfilesize =The uploaded file has exceeded the maximum file size limit of {0} bytes +error.mandatoryField ={0} field is mandatory. +error.mark.invalid.number ={0} field must be a valid number. Decimal points are not allowed. +error.mark.invalid.decimal.number ={0} field must be a valid decimal number. +authoring.msg.cancel.save =Do you want to close this window without saving? +button.try.again =Try Again +message.learner.blank.input =You have not written anything. Are you sure this is correct? +button.finish =Next Activity +message.alertContentEdit =Warning: One of more students have accessed this activity. Changing this content will result in students getting different information. +message.warnLockOnFinish =Note: After you click on "Next Activity" and you come back to this Notebook, you won't be able to continue adding notes. +message.activityLocked =The instructor has set this activity not to allow notes after you have finished it. As you are returning to this Notebook, you are able to see your notes but not allowed to add more. +message.contentInUseSet =Modification of content is not allowed since one or more students has attempted the activity. +error.content.locked =The content has been locked since it is being used by one or more learners. The modification of the content is not allowed. +titleHeading.instructions =Instructions +label.authoring.basic.instructions =Instructions: +error.contentrepository =An error has occurred when saving/deleting instruction file {0}. The files may not be saved correctly. +button.instructions =Instructions +instructions.uploadOfflineInstr =Offline Instructions File: +instructions.uploadOnlineInstr =Online Instructions File: +instructions.offlineInstructions =Offline Instructions: +instructions.onlineInstructions =Online Instructions: + + +#======= End labels: Exported 78 labels for en AU ===== Index: debian_installer/lams2/lams_tool_dimdim/lib/commons-collections.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_dimdim/lib/commons-configuration-1.1.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_dimdim/lib/commons-dbutils-1.0.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_dimdim/lib/commons-io-1.0.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_dimdim/lib/commons-lang-2.0.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_dimdim/lib/commons-logging.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_dimdim/lib/lams-tool-deploy.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_dimdim/lib/mysql-connector-java-3.1.12-bin.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_dimdim/lib/xstream-1.1.2.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_dimdim/sql/activity_insert.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_dimdim/sql/activity_insert.sql (revision 0) +++ debian_installer/lams2/lams_tool_dimdim/sql/activity_insert.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,80 @@ +-- CVS ID: $Id$ + +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 +, 'Dimdim Tool' +, 'Dimdim Tool' +, '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 +, 2 +, NULL +, NULL +, NULL +, NULL +, NULL +, NULL +, 'tool/laddim10/images/icon_dimdim.swf' +, NULL +, NULL +, NULL +, 'org.lamsfoundation.lams.tool.dimdim.ApplicationResources' +) Index: debian_installer/lams2/lams_tool_dimdim/sql/create_lams_tool_dimdim.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_dimdim/sql/create_lams_tool_dimdim.sql (revision 0) +++ debian_installer/lams2/lams_tool_dimdim/sql/create_lams_tool_dimdim.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,62 @@ +-- CVS ID: $Id$ + +SET FOREIGN_KEY_CHECKS=0; +-- generated sql +drop table if exists tl_laddim10_attachment; +drop table if exists tl_laddim10_config; +drop table if exists tl_laddim10_dimdim; +drop table if exists tl_laddim10_session; +drop table if exists tl_laddim10_user; +create table tl_laddim10_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, dimdim_uid bigint, primary key (uid)); +create table tl_laddim10_config (uid bigint not null auto_increment, config_key varchar(255), config_value varchar(255), primary key (uid)); +create table tl_laddim10_dimdim (uid bigint not null auto_increment, create_date datetime, update_date datetime, create_by bigint, title varchar(255), instructions text, run_offline bit, lock_on_finished bit, reflect_on_activity bit, reflect_instructions text, online_instructions text, offline_instructions text, content_in_use bit, define_later bit, tool_content_id bigint, max_attendee_mikes integer, primary key (uid)); +create table tl_laddim10_session (uid bigint not null auto_increment, session_end_date datetime, session_start_date datetime, status integer, session_id bigint, session_name varchar(250), dimdim_uid bigint, meeting_created bit, meeting_key varchar(255), max_attendee_mikes integer, primary key (uid)); +create table tl_laddim10_user (uid bigint not null auto_increment, user_id bigint, last_name varchar(255), login_name varchar(255), first_name varchar(255), finishedActivity bit, dimdim_session_uid bigint, notebook_entry_uid bigint, primary key (uid)); +-- end generated sql + +-- set engine to innodb for all tables +alter table tl_laddim10_attachment engine=innodb; +alter table tl_laddim10_dimdim engine=innodb; +alter table tl_laddim10_config engine=innodb; +alter table tl_laddim10_session engine=innodb; +alter table tl_laddim10_user engine=innodb; + +-- generated sql +alter table tl_laddim10_attachment add index fk_laddim10_dimdim_attachment_to_dimdim (dimdim_uid), add constraint fk_laddim10_dimdim_attachment_to_dimdim foreign key (dimdim_uid) references tl_laddim10_dimdim (uid); +alter table tl_laddim10_session add index fk_laddim10_dimdim_session_to_dimdim (dimdim_uid), add constraint fk_laddim10_dimdim_session_to_dimdim foreign key (dimdim_uid) references tl_laddim10_dimdim (uid); +alter table tl_laddim10_user add index fk_laddim10_dimdim_user_to_dimdim_session (dimdim_session_uid), add constraint fk_laddim10_dimdim_user_to_dimdim_session foreign key (dimdim_session_uid) references tl_laddim10_session (uid); +-- end generated sql + +INSERT INTO tl_laddim10_dimdim ( + title, + instructions, + online_instructions, + offline_instructions, + tool_content_id, + run_offline, + lock_on_finished, + content_in_use, + define_later, + reflect_on_activity, + max_attendee_mikes + ) +VALUES( + "Dimdim", + "Instructions", + "", + "", + ${default_content_id}, + 0, + 0, + 0, + 0, + 0, + 1 +); + +-- default configuration values +INSERT INTO tl_laddim10_config (config_key, config_value) VALUES ("server_url", "http://172.20.100.253/"); +-- INSERT INTO tl_laddim10_config (config_key, config_value) VALUES ("version", "enterprise"); + + +SET FOREIGN_KEY_CHECKS=1; Index: debian_installer/lams2/lams_tool_dimdim/sql/db_version_insert.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_dimdim/sql/db_version_insert.sql (revision 0) +++ debian_installer/lams2/lams_tool_dimdim/sql/db_version_insert.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,2 @@ +-- $Id$ +INSERT INTO patches VALUES ('laddim10', '20080811', NOW(), 'F'); \ No newline at end of file Index: debian_installer/lams2/lams_tool_dimdim/sql/drop_lams_tool_dimdim.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_dimdim/sql/drop_lams_tool_dimdim.sql (revision 0) +++ debian_installer/lams2/lams_tool_dimdim/sql/drop_lams_tool_dimdim.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,13 @@ +-- CVS ID: $Id$ + +SET FOREIGN_KEY_CHECKS=0; +DROP TABLE IF EXISTS tl_laddim10_user; +DROP TABLE IF EXISTS tl_laddim10_attachment; +DROP TABLE IF EXISTS tl_laddim10_session; +DROP TABLE IF EXISTS tl_laddim10_dimdim; +SET FOREIGN_KEY_CHECKS=1; + + + + + Index: debian_installer/lams2/lams_tool_dimdim/sql/library_insert.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_dimdim/sql/library_insert.sql (revision 0) +++ debian_installer/lams2/lams_tool_dimdim/sql/library_insert.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,16 @@ +-- CVS ID: $Id$ + +INSERT INTO lams_learning_library +( +description, +title, +valid_flag, +create_date_time +) +VALUES +( +'Dimdim Tool', +'Dimdim', +0, +NOW() +) Index: debian_installer/lams2/lams_tool_dimdim/sql/tool_insert.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_dimdim/sql/tool_insert.sql (revision 0) +++ debian_installer/lams2/lams_tool_dimdim/sql/tool_insert.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,64 @@ +-- CVS ID: $Id$ + +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, +admin_url, +language_file, +classpath_addition, +context_file, +create_date_time, +modified_date_time +) +VALUES +( +'laddim10', +'dimdimService', +'Dimdim', +'Dimdim', +'dimdim', +'20080811', +NULL, +NULL, +0, +2, +1, +'tool/laddim10/learning.do?mode=learner', +'tool/laddim10/learning.do?mode=author', +'tool/laddim10/learning.do?mode=teacher', +'tool/laddim10/authoring.do', +'tool/laddim10/monitoring.do', +'tool/laddim10/authoring.do?mode=teacher', +'tool/laddim10/exportPortfolio?mode=learner', +'tool/laddim10/exportPortfolio?mode=teacher', +'tool/laddim10/contribute.do', +'tool/laddim10/moderate.do', +'http://wiki.lamsfoundation.org/display/lamsdocs/laddim10', +'tool/laddim10/admin/view.do', +'org.lamsfoundation.lams.tool.dimdim.ApplicationResources', +'lams-tool-laddim10.jar', +'/org/lamsfoundation/lams/tool/dimdim/dimdimApplicationContext.xml', +NOW(), +NOW() +) Index: debian_installer/lams2/lams_tool_gmap/deploy.bat =================================================================== diff -u --- debian_installer/lams2/lams_tool_gmap/deploy.bat (revision 0) +++ debian_installer/lams2/lams_tool_gmap/deploy.bat (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -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_gmap/deploy.sh =================================================================== diff -u --- debian_installer/lams2/lams_tool_gmap/deploy.sh (revision 0) +++ debian_installer/lams2/lams_tool_gmap/deploy.sh (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -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_gmap/deploy.xml =================================================================== diff -u --- debian_installer/lams2/lams_tool_gmap/deploy.xml (revision 0) +++ debian_installer/lams2/lams_tool_gmap/deploy.xml (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,34 @@ + + lagmap10 + lams-tool-lagmap10.war + /lams/tool/lagmap10 + /usr/share/lams2/lams_tool_gmap/sql/updateTo20080521.sql + /usr/share/lams2/lams_tool_gmap/sql/tool_insert.sql + /usr/share/lams2/lams_tool_gmap/sql/library_insert.sql + false + /usr/share/lams2/lams_tool_gmap/sql/activity_insert.sql + /usr/share/lams2/lams_tool_gmap/sql/create_lams_tool_gmap.sql + /usr/share/lams2/lams_tool_gmap/sql/drop_lams_tool_gmap.sql + /usr/share/lams2/lams_tool_gmap/sql/db_version_insert.sql + /org/lamsfoundation/lams/tool/gmap/gmapApplicationContext.xml + lams-tool-lagmap10.jar + 2.0 + + /usr/share/lams2/lams_tool_gmap/lams-tool-lagmap10.war + /usr/share/lams2/lams_tool_gmap/lams-tool-lagmap10.jar + + + /usr/share/lams2/lams_tool_gmap/language/ApplicationResources.properties + /usr/share/lams2/lams_tool_gmap/language/ApplicationResources_el_GR.properties + /usr/share/lams2/lams_tool_gmap/language/ApplicationResources_en_AU.properties + /usr/share/lams2/lams_tool_gmap/language/ApplicationResources_es_ES.properties + /usr/share/lams2/lams_tool_gmap/language/ApplicationResources_no_NO.properties + + 20080521 + com.mysql.jdbc.Driver + jdbc:mysql://localhost/lams_head?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&autoReconnect=true&useUnicode=true + lams + lamsdemo + /usr/share/jboss-4.0.2/server/default/deploy/lams.ear + org.lamsfoundation.lams.tool.gmap + Index: debian_installer/lams2/lams_tool_gmap/lams-tool-lagmap10.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_gmap/lams-tool-lagmap10.war =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_gmap/language/ApplicationResources.properties =================================================================== diff -u --- debian_installer/lams2/lams_tool_gmap/language/ApplicationResources.properties (revision 0) +++ debian_installer/lams2/lams_tool_gmap/language/ApplicationResources.properties (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,124 @@ +appName = gmap +#language code: en +#locale code: AU + + # CVS ID: $Id$ Exported from the LAMS Community by Ernie Ghiglione on Mon Nov 24 01:10:52 GMT 2008 + +#=================== labels for Google Maps =================# + +tool.display.name =Gmap +tool.description =Google Mapping Tool +activity.title =Gmap +activity.description =Google Mapping Tool +pageTitle.authoring =Gmap Authoring +button.basic =Basic +button.advanced =Advanced +button.upload =Upload +label.authoring.basic.title =Title: +label.authoring.basic.content =Content: +label.authoring.basic.instructions =Instructions: +label.authoring.basic.authored =Authored +label.authoring.basic.map =Map: +label.authoring.basic.centerMap =Center map on location: +label.authoring.basic.confirmDelete =Are you sure you want to remove this marker? +error.missingMarkerTitle =Title is required for marker. +error.cantFindAddress =Unable to find location: +button.addMarker =Add Marker +button.go =Go! +label.createdBy =Created By: +label.latitudeLongitude =Latitude-Longitude: +label.newInfoWindowText =New Info Window Text: +button.edit =Edit +button.remove =Remove +label.learner.markerLimitReached =You have reached the marker limit, you cannot add any more. +advanced.editingOptions =Editing Options +advanced.lockOnFinished =Lock when finished +advanced.allowEditMarkers =Allow learners to edit their own saved markers +advanced.allowShowAllMarkers =Allow learners to see markers from other learners +advanced.limitMarkers =Marker Limits +advanced.markerLimitsMessage =Limit the number of markers a learner can add +advanced.mapOptions =Map Options +advanced.allowZoom =Allow zoom control +advanced.allowTerrain =Allow terrain map type +advanced.allowSatellite =Allow satellite map type +advanced.allowHybrid =Allow hybrid map type +monitor.summary.title.advanced =Advanced +monitor.summary.title.groups =Groups +monitor.summary.title.map =Map +monitor.summary.th.advancedSettings =Advanced Settings +instructions.onlineInstructions =Online Instructions: +instructions.offlineInstructions =Offline Instructions: +instructions.uploadOnlineInstr =Online Instructions File: +instructions.uploadOfflineInstr =Offline Instructions File: +instructions.type.online =Online +instructions.type.offline =Offline +label.filename =Filename +label.type =Type +label.attachments =Attachments +label.authoring.authoredMarkers =Markers +label.legend.unsaved =Unsaved: +label.legend.saved =Saved: +label.legend.edited =Edited: +label.legend.userSelected =User Selected: +link.view =View +link.download =Download +link.delete =Delete +message.unsavedChanges =Page contains unsaved changes +message.defineLaterSet =Please wait for the teacher to complete the contents of this activity +message.runOfflineSet =This activity is not being done on the computer. Please see your instructor for details. +pageTitle.monitoring =Gmap Monitoring +button.summary =Summary +button.instructions =Instructions +button.editActivity =Edit Activity +button.statistics =Statistics +titleHeading.summary =Summary +titleHeading.instructions =Instructions +titleHeading.statistics =Statistics +titleHeading.editActivity =Edit Activity +titleHeading.exportPortfolio =Export Portfolio +heading.group =Group {0}: +heading.totalLearners =Number of Learners +heading.table.group =Group +heading.totalLearnersInGroup =Total Number of Learners in Group: +heading.totalFinishedLearnersInGroup =Number of Finished Learners: +label.view =View +label.notAvailable =Not Available +heading.learner =Learner +button.cancel =Cancel +button.ok =OK +button.done =Done +button.save =Save +button.next =Next +label.save =Save +label.cancel =Cancel +label.created =Created +label.lastModified =Last modified +activity.helptext =Gmap for marking world map points +authoring.msg.cancel.save =Do you want to close this window without saving? +button.try.again =Try Again +button.finish =Next Activity +error.cantLoadMap =Could not load map. +error.gmapKeyMissing =LAMS does not have a Google Maps API key set up, please contact your system administrator. +label.on =On +label.off =Off +button.refresh =Refresh Map +button.Continue =Continue +heading.reflection =Reflection +pageTitle.monitoring.notebook =View Reflection +message.no.reflection.available =No notebook available +monitor.summary.td.notebookInstructions =Notebook instructions +pageTitle.admin =Gmap Settings +admin.formError =Missing values, please make sure all required fields are entered. +admin.gmapKey =Google Maps API Key +admin.success =Configuration successfully saved. +admin.return =Return to maintain LAMS +advanced.reflectOnActivity =Add Notebook at end of Gmap with the following instructions: +button.continue =Continue +monitor.summary.td.addNotebook =Add Notebook at end of Gmap +button.placeMarker =Place marker +message.alertContentEdit =Warning: One of more learners have accessed this activity. Changing this content will result in learners getting different information. +button.fitMarkers =Fit All Markers in Map +label.unsavedMarkers =You have one or more markers on the map without a title, if you continue these markers will not be saved. Do you want to continue anyway? + + +#======= End labels: Exported 113 labels for en AU ===== Index: debian_installer/lams2/lams_tool_gmap/language/ApplicationResources_el_GR.properties =================================================================== diff -u --- debian_installer/lams2/lams_tool_gmap/language/ApplicationResources_el_GR.properties (revision 0) +++ debian_installer/lams2/lams_tool_gmap/language/ApplicationResources_el_GR.properties (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,124 @@ +appName = gmap +#language code: el +#locale code: GR + + # CVS ID: $Id$ Exported from the LAMS Community by Ernie Ghiglione on Mon Dec 01 22:20:50 GMT 2008 + +#=================== labels for Google Maps =================# + +link.download =\u039b\u03ae\u03c8\u03b7 +message.no.reflection.available =\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03a3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03ac\u03c1\u03b9\u03bf +monitor.summary.title.map =\u03a7\u03ac\u03c1\u03c4\u03b7\u03c2 +advanced.mapOptions =\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 \u03a7\u03ac\u03c1\u03c4\u03b7 +button.fitMarkers =\u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae \u03a3\u03b7\u03bc\u03ac\u03bd\u03c3\u03b5\u03c9\u03bd +tool.display.name =\u03a7\u03ac\u03c1\u03c4\u03b7\u03c2 Google +tool.description =\u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf \u03a3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2/\u03a7\u03b1\u03c1\u03c4\u03bf\u03b3\u03c1\u03ac\u03c6\u03b7\u03c3\u03b7\u03c2 Google +activity.title =\u03a7\u03ac\u03c1\u03c4\u03b7\u03c2 Google +activity.description =\u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf \u03a3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2/\u03a7\u03b1\u03c1\u03c4\u03bf\u03b3\u03c1\u03ac\u03c6\u03b7\u03c3\u03b7\u03c2 Google +pageTitle.authoring =\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03a7\u03ac\u03c1\u03c4\u03b7 Google +label.authoring.basic.map =\u03a7\u03ac\u03c1\u03c4\u03b7\u03c2 +label.authoring.basic.centerMap =\u039a\u03ad\u03bd\u03c4\u03c1\u03bf \u03c7\u03ac\u03c1\u03c4\u03b7 \u03c3\u03c4\u03b7\u03bd \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1: +advanced.allowTerrain =\u0395\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03c4\u03b1\u03b9 \u03bf \u03c4\u03cd\u03c0\u03bf\u03c2 \u03c7\u03ac\u03c1\u03c4\u03b7 \u03b5\u03b4\u03ac\u03c6\u03bf\u03c5\u03c2 +advanced.allowSatellite =\u0395\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03c4\u03b1\u03b9 \u03bf \u03c4\u03cd\u03c0\u03bf\u03c2 \u03b4\u03bf\u03c1\u03c5\u03c6\u03bf\u03c1\u03b9\u03ba\u03bf\u03cd \u03c7\u03ac\u03c1\u03c4\u03b7 +pageTitle.monitoring =\u0395\u03c0\u03bf\u03c0\u03c4\u03b5\u03af\u03b1 \u03a7\u03ac\u03c1\u03c4\u03b7 Google +admin.gmapKey =\u039a\u03bb\u03b5\u03b9\u03b4\u03af API \u03a7\u03b1\u03c1\u03c4\u03ce\u03bd Google +advanced.allowHybrid =\u0395\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03c4\u03b1\u03b9 \u03bf \u03c4\u03cd\u03c0\u03bf\u03c2 \u03c5\u03b2\u03c1\u03b9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c7\u03ac\u03c1\u03c4\u03b7 +activity.helptext =\u03a7\u03ac\u03c1\u03c4\u03b7\u03c2 Google \u03b3\u03b9\u03b1 \u03b1\u03c0\u03b5\u03b9\u03ba\u03cc\u03bd\u03b7\u03c3\u03b7 \u03c3\u03b7\u03bc\u03b5\u03af\u03c9\u03bd \u03c3\u03c4\u03bf\u03bd \u03c0\u03b1\u03b3\u03ba\u03cc\u03c3\u03bc\u03b9\u03bf \u03c7\u03ac\u03c1\u03c4\u03b7 +error.cantLoadMap =\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03ce \u03bd\u03b1 \u03c6\u03bf\u03c1\u03c4\u03ce\u03c3\u03c9 \u03c4\u03bf \u03a7\u03ac\u03c1\u03c4\u03b7 +error.gmapKeyMissing =To LAMS \u03b4\u03b5\u03bd \u03ad\u03c7\u03b5\u03b9 \u03c4\u03bf \u03ba\u03bb\u03b5\u03b9\u03b4\u03af API \u03bf\u03c1\u03b9\u03c3\u03c4\u03b5\u03af , \u03c0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03bb\u03ac\u03c4\u03b5 \u03c3\u03b5 \u03b5\u03c0\u03b1\u03c6\u03ae \u03bc\u03b5 \u03c4\u03bf \u03b4\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae \u03c4\u03bf\u03c5 \u03c3\u03c5\u03c3\u03c4\u03ae\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c3\u03b1\u03c2. +button.refresh =\u0391\u03bd\u03b1\u03bd\u03ad\u03c9\u03c3\u03b7 \u03a7\u03ac\u03c1\u03c4\u03b7 +pageTitle.admin =\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03a7\u03ac\u03c1\u03c4\u03b7 Google +label.unsavedMarkers =\u0394\u03b5\u03bd \u03ad\u03c7\u03b5\u03c4\u03b5 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03b9 \u03cc\u03bb\u03b5\u03c2 \u03c4\u03b9\u03c2 \u03c3\u03b7\u03bc\u03ac\u03bd\u03c3\u03b5\u03b9\u03c2 \u03ba\u03b1\u03b9 \u03b8\u03b1 \u03c7\u03b1\u03b8\u03bf\u03cd\u03bd \u03b5\u03ac\u03bd \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03c3\u03c5\u03bd\u03b5\u03c7\u03af\u03c3\u03b5\u03c4\u03b5. \u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9 \u03cc\u03c4\u03b9 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03c3\u03c5\u03bd\u03b5\u03c7\u03af\u03c3\u03b5\u03c4\u03b5; +advanced.reflectOnActivity =\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03a3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03b1\u03c1\u03af\u03bf\u03c5 \u03c3\u03c4\u03bf \u03c4\u03ad\u03bb\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03a7\u03ac\u03c1\u03c4\u03b7 Google \u03bc\u03b5 \u03c4\u03b9\u03c2 \u03b1\u03ba\u03cc\u03bb\u03bf\u03c5\u03b8\u03b5\u03c2 \u03bf\u03b4\u03b7\u03b3\u03af\u03b5\u03c2: +monitor.summary.td.addNotebook =\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03a3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03b1\u03c1\u03af\u03bf\u03c5 \u03c3\u03c4\u03bf \u03c4\u03ad\u03bb\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03a7\u03ac\u03c1\u03c4\u03b7 Google +label.legend.userSelected =\u0395\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf \u03b1\u03c0\u03cc \u03c4\u03bf \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7 +advanced.allowZoom =\u0395\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03c4\u03b1\u03b9 \u03b7 \u03c3\u03bc\u03cd\u03ba\u03c1\u03b9\u03bd\u03c3\u03b7/\u03bc\u03b5\u03b3\u03ad\u03bd\u03b8\u03c5\u03bd\u03c3\u03b7 +admin.formError =\u039b\u03b5\u03af\u03c0\u03bf\u03c5\u03bd \u03c4\u03b9\u03bc\u03ad\u03c2, \u03c0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b2\u03b5\u03b2\u03b1\u03b9\u03c9\u03b8\u03b5\u03af\u03c4\u03b5 \u03cc\u03c4\u03b9 \u03cc\u03bb\u03b1 \u03c4\u03b1 \u03b1\u03c0\u03b1\u03b9\u03c4\u03bf\u03cd\u03bc\u03b5\u03bd\u03b1 \u03c0\u03b5\u03b4\u03af\u03b1 \u03ad\u03c7\u03bf\u03c5\u03bd \u03c3\u03c5\u03bc\u03c0\u03bb\u03b7\u03c1\u03c9\u03b8\u03b5\u03af. +admin.success =\u0397 \u03b4\u03b9\u03b1\u03bc\u03cc\u03c1\u03c6\u03c9\u03c3\u03b7 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c4\u03b7\u03b5 \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03ce\u03c2 +admin.return =\u0395\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03c3\u03c4\u03bf \u03ba\u03cd\u03c1\u03b9\u03bf LAMS +link.view =\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae +label.type =\u03a4\u03cd\u03c0\u03bf\u03c2 +label.attachments =\u0395\u03c0\u03b9\u03c3\u03c5\u03bd\u03b1\u03c0\u03c4\u03cc\u03bc\u03b5\u03bd\u03b1 +label.legend.saved =\u0391\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03bf +label.legend.edited =\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03bc\u03ad\u03bd\u03bf +link.delete =\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae +message.unsavedChanges =\u03a3\u03b5\u03bb\u03af\u03b4\u03b1 \u03c0\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9 \u03bc\u03b7 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03bc\u03ad\u03bd\u03b5\u03c2 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 +button.summary =\u0391\u03bd\u03b1\u03ba\u03b1\u03b9\u03c6\u03b1\u03bb\u03b1\u03af\u03c9\u03c3\u03b7 +button.instructions =\u039f\u03b4\u03b7\u03b3\u03af\u03b5\u03c2 +label.on =\u0391\u03bd\u03bf\u03b9\u03ba\u03c4\u03cc\u03c2 +button.statistics =\u03a3\u03c4\u03b1\u03c4\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac +titleHeading.summary =\u0391\u03bd\u03b1\u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03c9\u03c3\u03b7 +titleHeading.instructions =\u039f\u03b4\u03b7\u03b3\u03af\u03b5\u03c2 +titleHeading.statistics =\u03a3\u03c4\u03b1\u03c4\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac +label.off =\u039a\u03bb\u03b5\u03b9\u03c3\u03c4\u03cc\u03c2 +titleHeading.exportPortfolio =\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae \u03a6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 \u0395\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd +heading.group =\u039f\u03bc\u03ac\u03b4\u03b1 {0}: +heading.table.group =\u039f\u03bc\u03ac\u03b4\u03b1 +label.view =\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae +label.notAvailable =\u039c\u03b7 \u0394\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03bf +button.cancel =\u0386\u03ba\u03c5\u03c1\u03bf +button.ok =\u0395\u03bd\u03c4\u03ac\u03be\u03b5\u03b9 +button.done =\u0388\u03b3\u03b9\u03bd\u03b5 +button.next =\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 +label.cancel =\u0386\u03ba\u03c5\u03c1\u03bf +label.created =\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03ae\u03b8\u03b7\u03ba\u03b5 +label.lastModified =\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03c4\u03c1\u03bf\u03c0\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 +button.try.again =\u03a0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03b5\u03af\u03c3\u03c4\u03b5 \u03be\u03b1\u03bd\u03ac +button.Continue =\u03a3\u03c5\u03bd\u03ad\u03c7\u03b9\u03c3\u03b5 +heading.reflection =\u0391\u03bd\u03b1\u03c4\u03c1\u03bf\u03c6\u03bf\u03b4\u03cc\u03c4\u03b7\u03c3\u03b7 +pageTitle.monitoring.notebook =\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u0391\u03bd\u03b1\u03c4\u03c1\u03bf\u03c6\u03bf\u03b4\u03cc\u03c4\u03b7\u03c3\u03b7\u03c2 +button.upload =\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae +label.authoring.basic.content =\u03a0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03b1 +label.authoring.basic.instructions =\u039f\u03b4\u03b7\u03b3\u03af\u03b5\u03c2 +label.authoring.basic.authored =\u03a3\u03c5\u03b3\u03b3\u03c1\u03ac\u03c6\u03b7\u03ba\u03b5 +error.cantFindAddress =\u0394\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03c5\u03bd\u03b1\u03c4\u03ae \u03b7 \u03b5\u03cd\u03c1\u03b5\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1\u03c2: +button.go =\u03a0\u03ae\u03b3\u03b1\u03b9\u03bd\u03b5! +label.createdBy =\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5 \u0391\u03c0\u03cc: +label.latitudeLongitude =\u0393\u03b5\u03c9\u03b3\u03c1\u03b1\u03c6\u03b9\u03ba\u03cc \u03a0\u03bb\u03ac\u03c4\u03bf\u03c2-\u039c\u03ae\u03ba\u03bf\u03c2: +label.newInfoWindowText =\u03a0\u03b1\u03c1\u03ac\u03b8\u03c5\u03c1\u03bf \u039a\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 \u039d\u03ad\u03c9\u03bd \u03a0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03b9\u03ce\u03bd: +button.remove =\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b5 +advanced.lockOnFinished =\u039a\u03bb\u03b5\u03af\u03b4\u03c9\u03c3\u03b7 \u03cc\u03c4\u03b1\u03bd \u03bf\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03c9\u03b8\u03b5\u03af +monitor.summary.title.groups =\u039f\u03bc\u03ac\u03b4\u03b5\u03c2 +button.continue =\u03a3\u03c5\u03bd\u03ad\u03c7\u03b5\u03b9\u03b1 +message.runOfflineSet =\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 \u03b5\u03c0\u03bf\u03c0\u03c4\u03b7 \u03c3\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03bb\u03b5\u03c0\u03c4\u03bf\u03bc\u03ad\u03c1\u03b5\u03b9\u03b5\u03c2. +button.save =\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 +label.save =\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 +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; +label.legend.unsaved =\u03a7\u03c9\u03c1\u03af\u03c2 \u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 +button.addMarker =\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03a3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7\u03c2 +advanced.markerLimitsMessage =\u03a0\u03b5\u03c1\u03b9\u03bf\u03c1\u03b9\u03c3\u03bc\u03cc\u03c2 \u03c4\u03bf\u03c5 \u03b1\u03c1\u03b9\u03b8\u03bc\u03bf\u03cd \u03c3\u03b7\u03bc\u03ac\u03bd\u03c3\u03b5\u03c9\u03bd \u03c0\u03bf\u03c5 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03b5\u03b9 \u03ad\u03bd\u03b1\u03c2 \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 +monitor.summary.td.notebookInstructions =\u039f\u03b4\u03b7\u03b3\u03af\u03b5\u03c2 \u03a3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03b1\u03c1\u03af\u03bf\u03c5 +label.authoring.basic.confirmDelete =\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9 \u03cc\u03c4\u03b9 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03bc\u03b1\u03ba\u03c1\u03cd\u03bd\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7 \u03c3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7; +label.learner.markerLimitReached =\u0388\u03c7\u03b5\u03c4\u03b5 \u03c6\u03b8\u03ac\u03c3\u03b5\u03b9 \u03c4\u03bf \u03bc\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc \u03c3\u03b7\u03bc\u03ac\u03bd\u03c3\u03b5\u03c9\u03bd \u03ba\u03b1\u03b9 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03b5\u03c4\u03b5 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 +advanced.allowEditMarkers =\u0395\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03c4\u03b1\u03b9 \u03c3\u03c4\u03bf\u03c5\u03c2 \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5\u03c2 \u03bd\u03b1 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03bf\u03cd\u03bd \u03c4\u03b9\u03c2 \u03b4\u03b9\u03ba\u03ad\u03c2 \u03c4\u03bf\u03c5\u03c2 \u03c3\u03b7\u03bc\u03ac\u03bd\u03c3\u03b5\u03b9\u03c2 +advanced.allowShowAllMarkers =\u0395\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03c4\u03b1\u03b9 \u03c3\u03c4\u03bf\u03c5\u03c2 \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5\u03c2 \u03bd\u03b1 \u03b4\u03bf\u03c5\u03bd \u03c4\u03b9\u03c2 \u03c3\u03b7\u03bc\u03ac\u03bd\u03c3\u03b5\u03b9\u03c2 \u03c4\u03c9\u03bd \u03ac\u03bb\u03bb\u03c9\u03bd \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03c9\u03bd +advanced.limitMarkers =\u038c\u03c1\u03b9\u03b1 \u03a3\u03b7\u03bc\u03ac\u03bd\u03c3\u03b5\u03c9\u03bd +label.authoring.authoredMarkers =\u03a3\u03b7\u03bc\u03ac\u03bd\u03c3\u03b5\u03b9\u03c2 +button.placeMarker =\u03a4\u03cc\u03c0\u03bf\u03c2 \u03c3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7\u03c2 +heading.totalLearners =\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u0395\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd +heading.totalLearnersInGroup =\u03a3\u03c5\u03bd\u03bf\u03bb\u03b9\u03ba\u03cc\u03c2 \u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u0395\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c3\u03c4\u03b7\u03bd \u039f\u03bc\u03ac\u03b4\u03b1: +heading.totalFinishedLearnersInGroup =\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u0395\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c0\u03bf\u03c5 \u03ad\u03c7\u03b5\u03b9 \u03c4\u03b5\u03bb\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9: +heading.learner =\u0395\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 +message.alertContentEdit =\u03a0\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 \u03c3\u03c0\u03bf\u03c5\u03b4\u03b1\u03c3\u03c4\u03ad\u03c2 \u03ad\u03c7\u03bf\u03c5\u03bd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03ae\u03bd \u03c4\u03b7\u03bd \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1. \u0397 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03b1\u03c5\u03c4\u03bf\u03cd \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03b8\u03b1 \u03bf\u03b4\u03b7\u03b3\u03ae\u03c3\u03b5\u03b9 \u03c4\u03bf\u03c5\u03c2 \u03c3\u03c0\u03bf\u03c5\u03b4\u03b1\u03c3\u03c4\u03ad\u03c2 \u03c3\u03b5 \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03b5\u03c4\u03b9\u03ba\u03ad\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2. +message.defineLaterSet =\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03c0\u03b5\u03c1\u03b9\u03bc\u03ad\u03bd\u03b5 \u03c4\u03bf\u03bd \u03ba\u03b1\u03b8\u03b7\u03b3\u03b7\u03c4\u03ae-\u03c3\u03cd\u03bc\u03b2\u03bf\u03c5\u03bb\u03bf \u03bd\u03b1 \u03c3\u03c5\u03bc\u03c0\u03bb\u03b7\u03c1\u03ce\u03c3\u03b9\u03b5 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b1\u03c5\u03c4\u03ae\u03c2 \u03c4\u03b7\u03c2 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 +label.authoring.basic.title =\u03a4\u03af\u03c4\u03bb\u03bf\u03c2: +error.missingMarkerTitle =\u039f \u03c4\u03af\u03c4\u03bb\u03bf\u03c2 \u03b1\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03c4\u03b7 \u03c3\u03ae\u03bc\u03b1\u03bd\u03c3\u03b7. +button.editActivity =\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 +advanced.editingOptions =\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 \u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2 +button.edit =\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 +titleHeading.editActivity =\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 +instructions.type.online =\u03a3\u03b5 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 +instructions.type.offline =\u03a7\u03c9\u03c1\u03af\u03c2 \u0391\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03a3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 +label.filename =\u038c\u03bd\u03bf\u03bc\u03b1 \u0391\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 +button.finish =\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u0394\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 +instructions.uploadOnlineInstr =\u0391\u03c1\u03c7\u03b5\u03af\u03bf \u039f\u03b4\u03b7\u03b3\u03b9\u03ce\u03bd \u03b3\u03b9\u03b1 \u03c3\u03b5 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7: +instructions.onlineInstructions =\u039f\u03b4\u03b7\u03b3\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03b5\u03ba\u03c0\u03cc\u03bd\u03b7\u03c3\u03b7 \u03bc\u03b5 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7: +instructions.uploadOfflineInstr =\u0391\u03c1\u03c7\u03b5\u03af\u03bf \u039f\u03b4\u03b7\u03b3\u03b9\u03ce\u03bd \u03b3\u03b9\u03b1 \u03b5\u03ba\u03c0\u03cc\u03bd\u03b7\u03c3\u03b7 \u03c7\u03c9\u03c1\u03af\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7: +instructions.offlineInstructions =\u039f\u03b4\u03b7\u03b3\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03b5\u03ba\u03c0\u03cc\u03bd\u03b7\u03c3\u03b7 \u03c7\u03c9\u03c1\u03af\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7: +monitor.summary.th.advancedSettings =\u03a0\u03c1\u03bf\u03c7\u03c9\u03c1\u03b7\u03bc\u03ad\u03bd\u03b5\u03c2 \u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 +button.advanced =\u03a0\u03c1\u03bf\u03c7\u03c9\u03c1\u03b7\u03bc\u03ad\u03bd\u03b1 +monitor.summary.title.advanced =\u03a0\u03c1\u03bf\u03c7\u03c9\u03c1\u03b7\u03bc\u03ad\u03bd\u03b1 +button.basic =\u0392\u03b1\u03c3\u03b9\u03ba\u03ac + + +#======= End labels: Exported 113 labels for el GR ===== Index: debian_installer/lams2/lams_tool_gmap/language/ApplicationResources_en_AU.properties =================================================================== diff -u --- debian_installer/lams2/lams_tool_gmap/language/ApplicationResources_en_AU.properties (revision 0) +++ debian_installer/lams2/lams_tool_gmap/language/ApplicationResources_en_AU.properties (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,124 @@ +appName = gmap +#language code: en +#locale code: AU + + # CVS ID: $Id$ Exported from the LAMS Community by Ernie Ghiglione on Mon Nov 24 01:10:52 GMT 2008 + +#=================== labels for Google Maps =================# + +tool.display.name =Gmap +tool.description =Google Mapping Tool +activity.title =Gmap +activity.description =Google Mapping Tool +pageTitle.authoring =Gmap Authoring +button.basic =Basic +button.advanced =Advanced +button.upload =Upload +label.authoring.basic.title =Title: +label.authoring.basic.content =Content: +label.authoring.basic.instructions =Instructions: +label.authoring.basic.authored =Authored +label.authoring.basic.map =Map: +label.authoring.basic.centerMap =Center map on location: +label.authoring.basic.confirmDelete =Are you sure you want to remove this marker? +error.missingMarkerTitle =Title is required for marker. +error.cantFindAddress =Unable to find location: +button.addMarker =Add Marker +button.go =Go! +label.createdBy =Created By: +label.latitudeLongitude =Latitude-Longitude: +label.newInfoWindowText =New Info Window Text: +button.edit =Edit +button.remove =Remove +label.learner.markerLimitReached =You have reached the marker limit, you cannot add any more. +advanced.editingOptions =Editing Options +advanced.lockOnFinished =Lock when finished +advanced.allowEditMarkers =Allow learners to edit their own saved markers +advanced.allowShowAllMarkers =Allow learners to see markers from other learners +advanced.limitMarkers =Marker Limits +advanced.markerLimitsMessage =Limit the number of markers a learner can add +advanced.mapOptions =Map Options +advanced.allowZoom =Allow zoom control +advanced.allowTerrain =Allow terrain map type +advanced.allowSatellite =Allow satellite map type +advanced.allowHybrid =Allow hybrid map type +monitor.summary.title.advanced =Advanced +monitor.summary.title.groups =Groups +monitor.summary.title.map =Map +monitor.summary.th.advancedSettings =Advanced Settings +instructions.onlineInstructions =Online Instructions: +instructions.offlineInstructions =Offline Instructions: +instructions.uploadOnlineInstr =Online Instructions File: +instructions.uploadOfflineInstr =Offline Instructions File: +instructions.type.online =Online +instructions.type.offline =Offline +label.filename =Filename +label.type =Type +label.attachments =Attachments +label.authoring.authoredMarkers =Markers +label.legend.unsaved =Unsaved: +label.legend.saved =Saved: +label.legend.edited =Edited: +label.legend.userSelected =User Selected: +link.view =View +link.download =Download +link.delete =Delete +message.unsavedChanges =Page contains unsaved changes +message.defineLaterSet =Please wait for the teacher to complete the contents of this activity +message.runOfflineSet =This activity is not being done on the computer. Please see your instructor for details. +pageTitle.monitoring =Gmap Monitoring +button.summary =Summary +button.instructions =Instructions +button.editActivity =Edit Activity +button.statistics =Statistics +titleHeading.summary =Summary +titleHeading.instructions =Instructions +titleHeading.statistics =Statistics +titleHeading.editActivity =Edit Activity +titleHeading.exportPortfolio =Export Portfolio +heading.group =Group {0}: +heading.totalLearners =Number of Learners +heading.table.group =Group +heading.totalLearnersInGroup =Total Number of Learners in Group: +heading.totalFinishedLearnersInGroup =Number of Finished Learners: +label.view =View +label.notAvailable =Not Available +heading.learner =Learner +button.cancel =Cancel +button.ok =OK +button.done =Done +button.save =Save +button.next =Next +label.save =Save +label.cancel =Cancel +label.created =Created +label.lastModified =Last modified +activity.helptext =Gmap for marking world map points +authoring.msg.cancel.save =Do you want to close this window without saving? +button.try.again =Try Again +button.finish =Next Activity +error.cantLoadMap =Could not load map. +error.gmapKeyMissing =LAMS does not have a Google Maps API key set up, please contact your system administrator. +label.on =On +label.off =Off +button.refresh =Refresh Map +button.Continue =Continue +heading.reflection =Reflection +pageTitle.monitoring.notebook =View Reflection +message.no.reflection.available =No notebook available +monitor.summary.td.notebookInstructions =Notebook instructions +pageTitle.admin =Gmap Settings +admin.formError =Missing values, please make sure all required fields are entered. +admin.gmapKey =Google Maps API Key +admin.success =Configuration successfully saved. +admin.return =Return to maintain LAMS +advanced.reflectOnActivity =Add Notebook at end of Gmap with the following instructions: +button.continue =Continue +monitor.summary.td.addNotebook =Add Notebook at end of Gmap +button.placeMarker =Place marker +message.alertContentEdit =Warning: One of more learners have accessed this activity. Changing this content will result in learners getting different information. +button.fitMarkers =Fit All Markers in Map +label.unsavedMarkers =You have one or more markers on the map without a title, if you continue these markers will not be saved. Do you want to continue anyway? + + +#======= End labels: Exported 113 labels for en AU ===== Index: debian_installer/lams2/lams_tool_gmap/language/ApplicationResources_es_ES.properties =================================================================== diff -u --- debian_installer/lams2/lams_tool_gmap/language/ApplicationResources_es_ES.properties (revision 0) +++ debian_installer/lams2/lams_tool_gmap/language/ApplicationResources_es_ES.properties (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,124 @@ +appName = gmap +#language code: es +#locale code: ES + + # CVS ID: $Id$ Exported from the LAMS Community by Ernie Ghiglione on Mon Nov 24 01:10:42 GMT 2008 + +#=================== labels for Google Maps =================# + +tool.display.name =Mapas +tool.description =Mapas Geogr\u00e1ficos Google +activity.title =Mapas +activity.description =Mapas Geogr\u00e1ficos Google +activity.helptext =Permite usar Mapas de Google para marcar puntos geogr\u00e1ficos +pageTitle.authoring =Mapas Autoria +button.basic =B\u00e1sico +button.advanced =Avanzado +button.upload =Subir +label.authoring.basic.title =T\u00edtulo +label.authoring.basic.content =Contenido +label.authoring.basic.instructions =Instrucciones: +label.authoring.basic.authored =Por el autor +label.authoring.basic.map =Mapa: +label.authoring.basic.centerMap =Centrar el mapa en esta ubicaci\u00f3n: +label.authoring.basic.confirmDelete =\u00bfEsta seguro que desea remover el punto? +error.missingMarkerTitle =Se necesita un t\u00edtulo para este punto +error.cantFindAddress =No se puedo encontrar la ubicaci\u00f3n +button.addMarker =Agregar Punto +button.go =Ir! +label.createdBy =Creado por: +label.latitudeLongitude =Latitud Longitud +label.newInfoWindowText =Informaci\u00f3n de nueva ventana texto +button.edit =Editar +button.remove =Borrar +label.learner.markerLimitReached =Ya no se pueden agregar puntos, se ha alcanzado el m\u00e1ximo. +advanced.editingOptions =Editar opciones +advanced.lockOnFinished =Al terminar, bloquear actividad +advanced.allowEditMarkers =Permitir a los estudiantes editar sus propios puntos +advanced.allowShowAllMarkers =Permitir a los estudiantes ver los puntos de otros +advanced.limitMarkers =Limites para puntos +advanced.markerLimitsMessage =N\u00famero de puntos que los estudiantes pueden agregar +advanced.mapOptions =Opciones para el mapa +advanced.allowZoom =Mostrar el controlador de zoom +advanced.allowTerrain =Mostrar el controlador de terreno +advanced.allowSatellite =Mostrar el controlador de satelite +advanced.allowHybrid =Mostrar el controlador de mapas h\u00edbrido +monitor.summary.title.advanced =Avanzado +monitor.summary.title.groups =Grupos +monitor.summary.title.map =Mapa +monitor.summary.th.advancedSettings =Opciones Avanzadas +instructions.onlineInstructions =Instrucciones para modo online: +instructions.offlineInstructions =Instrucciones para modo offline: +instructions.uploadOnlineInstr =Archivos para modo online: +instructions.uploadOfflineInstr =Archivos para modo offline: +instructions.type.online =Online +instructions.type.offline =Offline +label.filename =Nombre de archivo +label.type =Tipo +label.attachments =Archivos adjuntos +label.authoring.authoredMarkers =Puntos +label.legend.unsaved =Sin salvar: +label.legend.saved =Guardado: +label.legend.edited =Editado: +label.legend.userSelected =Seleccionado: +link.view =Ver +link.download =Bajar +link.delete =Borrar +message.unsavedChanges =Esta p\u00e1gina tiene datos sin salvar. +message.defineLaterSet =Por favor espere a que el profesor complete el contenido de la actividad. +message.runOfflineSet =Esta actividad ha sido se\u00f1alada para realizarse en forma offline. Por favor, consulte con su profesor. +pageTitle.monitoring =Mapas Seguimiento +button.summary =Resumen +button.instructions =Instrucciones +button.editActivity =Editar Actividad +button.statistics =Estad\u00edsticas +titleHeading.summary =Resumen +titleHeading.instructions =Instrucciones +titleHeading.statistics =Estadisticas +titleHeading.editActivity =Editar Actividad +titleHeading.exportPortfolio =Exportar portfolio +heading.group =Grupo {0}: +heading.totalLearners =N\u00famero de estudiantes: +heading.table.group =Grupo +heading.totalLearnersInGroup =N\u00famero total de estudiantes en el grupo: +heading.totalFinishedLearnersInGroup =N\u00famero de estudiantes que han finalizado: +label.view =Ver +label.notAvailable =No disponible +heading.learner =Estudiante +button.cancel =Cancelar +button.ok =OK +button.done =Listo +button.save =Guadar +button.next =Siguente +label.save =Guardar +label.cancel =Cancelar +label.created =Creado +label.lastModified =\u00daltima modificaci\u00f3n +authoring.msg.cancel.save =\u00bfDesea cerrar ventana sin guardar cambios? +button.try.again =Intentar nuevamente +message.alertContentEdit =Atenci\u00f3n: Uno o mas estudiantes han accedido a esta actividad. Cambiar el contenido de la misma puede resultar en que los estudiantes reciban diferente informaci\u00f3n sobre esta actividad. +error.cantLoadMap =No se puedo cargar el mapa. +error.gmapKeyMissing =Esta actividad no se haya configurada. Necesita el Google Maps API key. Contacte a su administrador de sistema. +label.on =Si +label.off =No +button.refresh =Refrescar Mapa +button.Continue =Continuar +heading.reflection =Reflexi\u00f3n +pageTitle.monitoring.notebook =Ver reflexiones +message.no.reflection.available =Sin anotaciones +monitor.summary.td.addNotebook =Agregar anotaciones/reflexiones al final +monitor.summary.td.notebookInstructions =Instrucciones para la reflexion +pageTitle.admin =Configuracion de Mapas +admin.formError =Faltan algunas entradas. Por favor, asegurese que todos los campos necesarios tengan entradas. +admin.gmapKey =Google Maps API Key +admin.success =Configuraci\u00f3n guardada. +admin.return =Retornar a la p\u00e1gina de mantenimiento +advanced.reflectOnActivity =Agregar reflexi\u00f3n al final de la actividad con las siguientes instrucciones: +button.continue =Continuar +button.placeMarker =Fijar posici\u00f3n +button.finish =Finalizar +button.fitMarkers =Mostrar todos los Puntos en el mapa +label.unsavedMarkers =Atenci\u00f3n: usted tiene uno o m\u00e1s puntos sin t\u00edtulo, si desea continuar estos puntos no ser\u00e1n guardados. \u00bfEsta seguro de continuar? + + +#======= End labels: Exported 113 labels for es ES ===== Index: debian_installer/lams2/lams_tool_gmap/language/ApplicationResources_it_IT.properties =================================================================== diff -u --- debian_installer/lams2/lams_tool_gmap/language/ApplicationResources_it_IT.properties (revision 0) +++ debian_installer/lams2/lams_tool_gmap/language/ApplicationResources_it_IT.properties (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,124 @@ +appName = gmap +#language code: it +#locale code: IT + + # CVS ID: $Id$ Exported from the LAMS Community by Ernie Ghiglione on Mon Dec 01 22:20:47 GMT 2008 + +#=================== labels for Google Maps =================# + +tool.display.name =Gmap +button.basic =Base +button.upload =Carica +label.newInfoWindowText =Testo della finestra Novit\u00e0 +advanced.lockOnFinished =Blocca quando completato +admin.gmapKey =Chiave API per Google Maps. +message.runOfflineSet =Questa attivit\u00e0 non va eseguita sul computer. Consultare l'insegnante per ulteriorii dettagli +pageTitle.monitoring =Monitoraggio Gmap +error.gmapKeyMissing =LAMS non dispone ancora di un chiave API per Google Maps. Contattare l'amministratore di sistema. +message.alertContentEdit =Attenzione: uno o pi\u00f9 studenti hanno effettuato l'accesso a quest'attivit\u00e0. Se si modifica il contenuto gli studenti riceveranno informazioni diverse. +error.cantLoadMap =Impossibile caricare la mappa +pageTitle.authoring =Authoring di Gmap +label.authoring.basic.authored =Creato +label.createdBy =Creato da: +button.fitMarkers =Inserisci tutti i marcatori nella mappa +activity.helptext =Gmap per contrassegnare punti +error.missingMarkerTitle =Necessario un titolo per il marcatore +advanced.allowEditMarkers =Consenti agli studenti di modificare i marcatori salvati +advanced.allowShowAllMarkers =Consenti agli studenti di vedere i marcatori di altri studenti +advanced.allowTerrain =Consenti tipo di mappa +heading.totalFinishedLearnersInGroup =Numero di studenti che hanno terminato +admin.return =Torna a LAMS maintain +pageTitle.monitoring.notebook =Visualizza riflessioni +heading.reflection =Riflessioni +monitor.summary.td.addNotebook =Aggiungi un Blocco Note alla fine di Gmap +monitor.summary.td.notebookInstructions =Istruzioni Blocco Note +message.no.reflection.available =Nessun Blocco Note disponibile +advanced.reflectOnActivity =Aggiungi un Blocco Note alla fine di Gmap con le seguenti istruzioni +tool.description =Strumento di mappatura Google +activity.title =Gmap +activity.description =Strumento di mappatura Google +label.authoring.basic.title =Titolo +label.authoring.basic.content =Contenuto +label.authoring.basic.map =Mappa +button.go =Vai +button.edit =Modifica +label.authoring.basic.instructions =Istruzioni: +button.remove =Rimuovi +advanced.mapOptions =Opzioni Mappa +advanced.allowZoom =Permetti il controllo zoom +instructions.type.online =Online +heading.totalLearnersInGroup =Numero totale di studenti nel gruppo +label.save =Salva +button.ok =Ok +button.done =Fatto +label.on =On +label.off =Off +button.save =Salva +label.cancel =Annulla +button.Continue =Continua +button.refresh =Aggiorna +heading.table.group =Gruppo +message.defineLaterSet =Attendi il docente per completare il contenuto di questa attivit\u00e0 +heading.learner =Studente +label.latitudeLongitude =Latitudine-Longitudine +monitor.summary.title.groups =Gruppi +instructions.type.offline =Offline +label.legend.unsaved =Non salvato +label.legend.saved =Salvato +label.filename =Nome File +label.type =Tipo +label.legend.edited =Modificato +titleHeading.instructions =Istruzioni +link.delete =Elimina +label.legend.userSelected =Utente selezionato +advanced.editingOptions =Modifica Opzioni +instructions.offlineInstructions =Istruzioni Offline +button.summary =Sommario +button.instructions =Istruzioni +message.unsavedChanges =La pagina contiene cambiamenti non salvati +label.notAvailable =Non disponibile +button.cancel =Annulla +button.editActivity =Modifica attivit\u00e0 +button.statistics =Statistiche +label.lastModified =Ultima modifica +button.try.again =Prova ancora +button.continue =Continua +admin.success =Configurazione salvata con successo +label.created =Creato +monitor.summary.title.map =Mappa +titleHeading.exportPortfolio =Esporta il portfolio +titleHeading.summary =Sommario +titleHeading.editActivity =Modifica attivit\u00e0 +instructions.onlineInstructions =Istruzioni online +button.finish =Prossima attivit\u00e0 +button.next =Prossimo +instructions.uploadOnlineInstr =Istruzioni File Online +titleHeading.statistics =Statistiche +authoring.msg.cancel.save =Vuoi chiudere questa finestra senza salvare? +error.cantFindAddress =Impossibile trovare localit\u00e0 +button.advanced =Avanzate +label.authoring.basic.centerMap =Centra la mappa sulla localit\u00e0 +label.attachments =Allegati +link.view =Visualizza +label.view =Visualizza +button.placeMarker =Posiziona marcatore +admin.formError =Valori non validi, assicurati di aver riempito tutti i campi richiesti +label.authoring.authoredMarkers =Marcatori +instructions.uploadOfflineInstr =Istruzioni File Offline +label.learner.markerLimitReached =Hai raggiunto il limite di marcatori, non puoi aggiungerne altri. +advanced.markerLimitsMessage =Limita il numero di marcatori che uno studente pu\u00f2 aggiungere +label.authoring.basic.confirmDelete =Sei sicuro di voler rimuovere questo marcatore? +button.addMarker =Aggiungi un marcatore +advanced.limitMarkers =Limite dei marcatori +advanced.allowSatellite =Permetti il tipo di mappa satellitare +advanced.allowHybrid =Permetti il tipo di mappa ibrida +monitor.summary.title.advanced =Avanzate +monitor.summary.th.advancedSettings =Controlli avanzati +link.download =Download +heading.group =Gruppo {0} +heading.totalLearners =Numero di studenti +label.unsavedMarkers =Hai uno o pi\u00f9 marcatori nella mappa senza titolo, se continui questi marcatori non verranno salvati. Voui continare lo stesso? +pageTitle.admin =Controlli Gmap + + +#======= End labels: Exported 113 labels for it IT ===== Index: debian_installer/lams2/lams_tool_gmap/language/ApplicationResources_no_NO.properties =================================================================== diff -u --- debian_installer/lams2/lams_tool_gmap/language/ApplicationResources_no_NO.properties (revision 0) +++ debian_installer/lams2/lams_tool_gmap/language/ApplicationResources_no_NO.properties (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,124 @@ +appName = gmap +#language code: no +#locale code: NO + + # CVS ID: $Id$ Exported from the LAMS Community by Ernie Ghiglione on Sun Nov 23 05:55:58 GMT 2008 + +#=================== labels for Google Maps =================# + +label.legend.userSelected =Bruker valgt: +link.view =Se p\u00e5 +link.download =Last ned +link.delete =Fjern +button.instructions =Instruksjoner +button.editActivity =Rediger aktivitet +titleHeading.instructions =Instruksjoner +titleHeading.editActivity =Rediger aktivitet +heading.group =Gruppe {0}: +heading.totalLearners =Antall studenter +heading.table.group =Gruppe +label.notAvailable =Ikke tilgjengelig +heading.learner =Student +button.cancel =Angre +button.ok =OK +button.done =Utf\u00f8rt +button.save =Lagre +button.next =Neste +label.save =Lagre +label.cancel =Angre +label.created =Opprettet +label.lastModified =Sist modifisert +button.try.again =Fors\u00f8k igjen +tool.display.name =Gmap +tool.description =Google kartverkt\u00f8y +activity.title =Gmap +activity.description =Google kartverkt\u00f8y +activity.helptext =Gmap for \u00e5 markere kartreferanser +pageTitle.authoring =Gmap forfatter +button.basic =Grunnleggende +button.advanced =Avansert +button.upload =Last opp +label.authoring.basic.title =Tittel: +label.authoring.basic.content =Innhold: +label.authoring.basic.instructions =Instruksjoner: +label.authoring.basic.authored =Forfattet av +label.authoring.basic.map =Kart: +label.authoring.basic.centerMap =Sentrer kartet p\u00e5 sted: +label.authoring.basic.confirmDelete =Vil du virkelig fjerne denne mark\u00f8ren ? +error.missingMarkerTitle =Tittel m\u00e5 tilordnes til en mark\u00f8r. +error.cantFindAddress =Klarar ikke \u00e5 finne stedet: +button.addMarker =Legg til mark\u00f8r +button.fitMarkers =Tilpass mark\u00f8r +button.go =Start ! +label.createdBy =Utformet av: +button.edit =Rediger +button.remove =Fjern +advanced.editingOptions =Rediger alternativer +advanced.lockOnFinished =L\u00e5s n\u00e5r ferdig +advanced.limitMarkers =Mark\u00f8rens begrensninger +advanced.mapOptions =Kartalternativer +advanced.allowZoom =Tillat zoom kontroll +advanced.allowTerrain =Tillat terrengbaserte kart +advanced.allowSatellite =Tillat satelitt baserte kart +advanced.allowHybrid =Tillat hybrid type kart +monitor.summary.title.advanced =Avansert +monitor.summary.title.groups =Grupper +monitor.summary.title.map =Kart +monitor.summary.th.advancedSettings =Avansert innstilling +label.filename =Filnavn +label.type =Type +label.attachments =Vedlegg +label.authoring.authoredMarkers =Mark\u00f8rer +label.legend.unsaved =Ikke lagret: +label.legend.saved =Lagret: +label.legend.edited =Redigert: +label.on =P\u00e5 +label.off =Av +button.refresh =Frisk opp kart +button.Continue =Fortsett +heading.reflection =Refleksjon +pageTitle.monitoring.notebook =Studer p\u00e5 refleksjon +label.latitudeLongitude =Breddegrad-Lengdegrad: +label.newInfoWindowText =Ny tekst for informasjons vinduet: +label.learner.markerLimitReached =Du har brukt opp maks antall mark\u00f8rer og kan ikke legge til flere. +advanced.allowEditMarkers =Tillat studentene \u00e5 redigere egne lagrede mark\u00f8rer +advanced.allowShowAllMarkers =Tillat studentene \u00e5 se andre studenters mark\u00f8rer +advanced.markerLimitsMessage =Begrens antall mark\u00f8rer en student kan legge til +message.unsavedChanges =Siden inneholder endringer sm ikke er lagret +button.summary =Oppsummering +button.statistics =Statistikk +titleHeading.summary =Oppsummering +titleHeading.statistics =Statistikk +titleHeading.exportPortfolio =Eksporter mappe +heading.totalLearnersInGroup =Totalt antall studenter i gruppen: +heading.totalFinishedLearnersInGroup =Antall studenter som er ferdig: +label.view =Se p\u00e5 +authoring.msg.cancel.save =\u00d8nsker du \u00e5 lukke vinduet uten \u00e5 lagre ? +button.finish =Neste aktivitet +error.cantLoadMap =Kunne ikke laste inn kartet +pageTitle.admin =Gmap innstillinger +admin.gmapKey =Google kart API n\u00f8kkel +admin.success =Konfigurasjonen er lagret korrekt +admin.return =Retur for vedlikehold av LAMS +instructions.type.online =On-line +instructions.offlineInstructions =On-line informasjon: +instructions.uploadOnlineInstr =On-line informasjonsfil +instructions.onlineInstructions =Off-line informasjon: +instructions.uploadOfflineInstr =Off-line informasjonsfil: +instructions.type.offline =Off-line +message.alertContentEdit =MERK: En eller flere studenter har p\u00e5begynt denne aktiviteten. Hvis du endrer informasjonen s\u00e5 vil studentene f\u00e5 forskjellig informasjon. +error.gmapKeyMissing =LAMS er ikke satt opp med Google kart API n\u00f8kkel, vennligst kontakt systemadministrator. +label.unsavedMarkers =Du har mark\u00f8rer som ikke er lagret, og disse vil bli slettet om du fortsetter. Vil du fortsette uansett ? +message.defineLaterSet =Vennligst vent til at foreleseren har ferdigstillt innholdet for denne aktiviteten. +message.runOfflineSet =Denne aktiviteten utf\u00f8res ikke ved hjelp av datamaskin. Kontakt foreleseren for informasjon. +pageTitle.monitoring =Gmap foreleser +message.no.reflection.available =Ingen notatbok er tilgjengelig +monitor.summary.td.addNotebook =Legg til en notatbok p\u00e5 slutten av chat. +monitor.summary.td.notebookInstructions =Notatbok infromasjon +admin.formError =Det mangler verdier, vennligst pass p\u00e5 at alle felt er fylt ut. +advanced.reflectOnActivity =Legg til en notatbok p\u00e5 slutten av Google kart og med f\u00f8lgende informasjon +button.continue =Fortsett +button.placeMarker =Plasser mark\u00f8r + + +#======= End labels: Exported 113 labels for no NO ===== Index: debian_installer/lams2/lams_tool_gmap/lib/commons-collections.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_gmap/lib/commons-configuration-1.1.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_gmap/lib/commons-dbutils-1.0.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_gmap/lib/commons-io-1.0.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_gmap/lib/commons-lang-2.0.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_gmap/lib/commons-logging.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_gmap/lib/lams-tool-deploy.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_gmap/lib/mysql-connector-java-3.1.12-bin.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_gmap/lib/xstream-1.1.2.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_gmap/sql/activity_insert.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_gmap/sql/activity_insert.sql (revision 0) +++ debian_installer/lams2/lams_tool_gmap/sql/activity_insert.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,80 @@ +-- CVS ID: $Id$ + +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 +, 'Gmap Tool' +, 'Gmap Tool' +, '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 +, 2 +, NULL +, NULL +, NULL +, NULL +, NULL +, NULL +, 'tool/lagmap10/images/icon_gmap.swf' +, NULL +, NULL +, NULL +, 'org.lamsfoundation.lams.tool.gmap.ApplicationResources' +) Index: debian_installer/lams2/lams_tool_gmap/sql/create_lams_tool_gmap.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_gmap/sql/create_lams_tool_gmap.sql (revision 0) +++ debian_installer/lams2/lams_tool_gmap/sql/create_lams_tool_gmap.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,89 @@ +-- CVS ID: $Id$ + +SET FOREIGN_KEY_CHECKS=0; +drop table if exists tl_lagmap10_attachment; +drop table if exists tl_lagmap10_gmap; +drop table if exists tl_lagmap10_marker; +drop table if exists tl_lagmap10_session; +drop table if exists tl_lagmap10_user; +drop table if exists tl_lagmap10_configuration; +create table tl_lagmap10_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, gmap_uid bigint, primary key (uid))TYPE=InnoDB; +create table tl_lagmap10_gmap (uid bigint not null auto_increment, create_date datetime, update_date datetime, create_by bigint, title varchar(255), instructions text, run_offline bit, lock_on_finished bit, online_instructions text, offline_instructions text, content_in_use bit, define_later bit, tool_content_id bigint, allow_edit_markers bit, show_all_markers bit, limit_markers bit, max_markers integer, allow_zoom bit, allow_terrain bit, allow_satellite bit, allow_hybrid bit, map_center_latitude double precision, map_center_longitude double precision, map_zoom integer, map_type varchar(20), reflect_on_activity bit, reflect_instructions text, default_geocoder_address varchar(255), primary key (uid))TYPE=InnoDB; +create table tl_lagmap10_marker (uid bigint not null auto_increment, longitude double precision, latitude double precision, info_window_message text, create_date datetime, update_date datetime, is_authored bit, gmap_uid bigint, title varchar(55), created_by bigint, updated_by bigint, gmap_session_uid bigint, primary key (uid))TYPE=InnoDB; +create table tl_lagmap10_session (uid bigint not null auto_increment, session_end_date datetime, session_start_date datetime, status integer, session_id bigint, session_name varchar(250), gmap_uid bigint, primary key (uid))TYPE=InnoDB; +create table tl_lagmap10_user (uid bigint not null auto_increment, user_id bigint, last_name varchar(255), login_name varchar(255), first_name varchar(255), finishedActivity bit, gmap_session_uid bigint, primary key (uid))TYPE=InnoDB; +create table tl_lagmap10_configuration (uid bigint not null auto_increment, config_key varchar(30) unique, config_value varchar(255), primary key (uid))TYPE=InnoDB; +alter table tl_lagmap10_attachment add index FKBA2ECCB274028C80 (gmap_uid), add constraint FKBA2ECCB274028C80 foreign key (gmap_uid) references tl_lagmap10_gmap (uid); +alter table tl_lagmap10_marker add index FK10F2274974028C80 (gmap_uid), add constraint FK10F2274974028C80 foreign key (gmap_uid) references tl_lagmap10_gmap (uid); +alter table tl_lagmap10_marker add index FK10F22749C5F056D9 (gmap_session_uid), add constraint FK10F22749C5F056D9 foreign key (gmap_session_uid) references tl_lagmap10_session (uid); +alter table tl_lagmap10_marker add index FK10F22749EF5F6920 (updated_by), add constraint FK10F22749EF5F6920 foreign key (updated_by) references tl_lagmap10_user (uid); +alter table tl_lagmap10_marker add index FK10F22749529F7FD3 (created_by), add constraint FK10F22749529F7FD3 foreign key (created_by) references tl_lagmap10_user (uid); +alter table tl_lagmap10_session add index FK519D516774028C80 (gmap_uid), add constraint FK519D516774028C80 foreign key (gmap_uid) references tl_lagmap10_gmap (uid); +alter table tl_lagmap10_user add index FK7CB3F69AC5F056D9 (gmap_session_uid), add constraint FK7CB3F69AC5F056D9 foreign key (gmap_session_uid) references tl_lagmap10_session (uid); + +-- Inserting the required config item into the config table +-- Gmap API key is added here for shaun so the Gmap works there automatically for each build +INSERT INTO tl_lagmap10_configuration ( + config_key, + config_value +) +VALUES( + "GmapKey", + "ABQIAAAAvPAE96y1iioFQOnrP1RCBxQ3ZLSPwrKlL-Fn7FdXNTuNedFYMRT30phEMjEwUhQPccHtJ9JNU1mknQ" +); + + +INSERT INTO tl_lagmap10_gmap ( + title, + instructions, + online_instructions, + offline_instructions, + tool_content_id, + run_offline, + lock_on_finished, + content_in_use, + define_later, + allow_edit_markers, + show_all_markers, + limit_markers, + max_markers, + allow_zoom, + allow_terrain, + allow_satellite, + allow_hybrid, + map_center_latitude, + map_center_longitude, + map_zoom, + map_type, + reflect_on_activity, + reflect_instructions, + default_geocoder_address +) +VALUES( + "Gmap", + "Instructions", + "", + "", + ${default_content_id}, + 0, + 0, + 0, + 0, + 1, + 1, + 0, + 1, + 1, + 0, + 1, + 1, + -33.774322, + 151.111988, + 13, + "G_NORMAL_MAP", + 0, + "", + "Macquarie University, Sydney NSW" +); + +SET FOREIGN_KEY_CHECKS=1; Index: debian_installer/lams2/lams_tool_gmap/sql/db_version_insert.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_gmap/sql/db_version_insert.sql (revision 0) +++ debian_installer/lams2/lams_tool_gmap/sql/db_version_insert.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,2 @@ +-- $Id$ +INSERT INTO patches VALUES ('lagmap10', '20080521', NOW(), 'F'); \ No newline at end of file Index: debian_installer/lams2/lams_tool_gmap/sql/drop_lams_tool_gmap.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_gmap/sql/drop_lams_tool_gmap.sql (revision 0) +++ debian_installer/lams2/lams_tool_gmap/sql/drop_lams_tool_gmap.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,13 @@ +-- CVS ID: $Id$ + +SET FOREIGN_KEY_CHECKS=0; +DROP TABLE IF EXISTS tl_lagmap10_user; +DROP TABLE IF EXISTS tl_lagmap10_attachment; +DROP TABLE IF EXISTS tl_lagmap10_session; +DROP TABLE IF EXISTS tl_lagmap10_gmap; +SET FOREIGN_KEY_CHECKS=1; + + + + + Index: debian_installer/lams2/lams_tool_gmap/sql/library_insert.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_gmap/sql/library_insert.sql (revision 0) +++ debian_installer/lams2/lams_tool_gmap/sql/library_insert.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,16 @@ +-- CVS ID: $Id$ + +INSERT INTO lams_learning_library +( +description, +title, +valid_flag, +create_date_time +) +VALUES +( +'Gmap Tool', +'Gmap', +0, +NOW() +) Index: debian_installer/lams2/lams_tool_gmap/sql/tool_insert.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_gmap/sql/tool_insert.sql (revision 0) +++ debian_installer/lams2/lams_tool_gmap/sql/tool_insert.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,64 @@ +-- CVS ID: $Id$ + +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, +admin_url +) +VALUES +( +'lagmap10', +'gmapService', +'Gmap', +'Gmap', +'gmap', +'20080521', +NULL, +NULL, +0, +2, +1, +'tool/lagmap10/learning.do?mode=learner', +'tool/lagmap10/learning.do?mode=author', +'tool/lagmap10/learning.do?mode=teacher', +'tool/lagmap10/authoring.do', +'tool/lagmap10/monitoring.do', +'tool/lagmap10/authoring.do?mode=teacher', +'tool/lagmap10/exportPortfolio?mode=learner', +'tool/lagmap10/exportPortfolio?mode=teacher', +'tool/lagmap10/contribute.do', +'tool/lagmap10/moderate.do', +'http://wiki.lamsfoundation.org/display/lamsdocs/lagmap10', +'org.lamsfoundation.lams.tool.gmap.ApplicationResources', +'lams-tool-lagmap10.jar', +'/org/lamsfoundation/lams/tool/gmap/gmapApplicationContext.xml', +NOW(), +NOW(), +'tool/lagmap10/lagmap10admin.do' +) Index: debian_installer/lams2/lams_tool_spreadsheet/deploy.bat =================================================================== diff -u --- debian_installer/lams2/lams_tool_spreadsheet/deploy.bat (revision 0) +++ debian_installer/lams2/lams_tool_spreadsheet/deploy.bat (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -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_spreadsheet/deploy.sh =================================================================== diff -u --- debian_installer/lams2/lams_tool_spreadsheet/deploy.sh (revision 0) +++ debian_installer/lams2/lams_tool_spreadsheet/deploy.sh (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -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_spreadsheet/deploy.xml =================================================================== diff -u --- debian_installer/lams2/lams_tool_spreadsheet/deploy.xml (revision 0) +++ debian_installer/lams2/lams_tool_spreadsheet/deploy.xml (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,33 @@ + + lasprd10 + lams-tool-lasprd10.war + /lams/tool/lasprd10 + /usr/share/lams2/lams_tool_spreadsheet/sql/updatescripts/updateTo20080612.sql + /usr/share/lams2/lams_tool_spreadsheet/sql/tool_insert.sql + /usr/share/lams2/lams_tool_spreadsheet/sql/library_insert.sql + false + /usr/share/lams2/lams_tool_spreadsheet/sql/activity_insert.sql + /usr/share/lams2/lams_tool_spreadsheet/sql/create_lams_tool_spreadsheet.sql + /usr/share/lams2/lams_tool_spreadsheet/sql/drop_lams_tool_spreadsheet.sql + /usr/share/lams2/lams_tool_spreadsheet/sql/db_version_insert.sql + /org/lamsfoundation/lams/tool/spreadsheet/spreadsheetApplicationContext.xml + lams-tool-lasprd10.jar + 2.0 + + /usr/share/lams2/lams_tool_spreadsheet/lams-tool-lasprd10.war + /usr/share/lams2/lams_tool_spreadsheet/lams-tool-lasprd10.jar + + + /usr/share/lams2/lams_tool_spreadsheet/language/ApplicationResources.properties + /usr/share/lams2/lams_tool_spreadsheet/language/ApplicationResources_el_GR.properties + /usr/share/lams2/lams_tool_spreadsheet/language/ApplicationResources_en_AU.properties + /usr/share/lams2/lams_tool_spreadsheet/language/ApplicationResources_no_NO.properties + + 20080612 + com.mysql.jdbc.Driver + jdbc:mysql://localhost/lams_head?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&autoReconnect=true&useUnicode=true + lams + lamsdemo + /usr/share/jboss-4.0.2/server/default/deploy/lams.ear + org.lamsfoundation.lams.tool.spreadsheet + Index: debian_installer/lams2/lams_tool_spreadsheet/lams-tool-lasprd10.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_spreadsheet/lams-tool-lasprd10.war =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_spreadsheet/language/ApplicationResources.properties =================================================================== diff -u --- debian_installer/lams2/lams_tool_spreadsheet/language/ApplicationResources.properties (revision 0) +++ debian_installer/lams2/lams_tool_spreadsheet/language/ApplicationResources.properties (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,138 @@ +appName = spreadsheet +#language code: en +#locale code: AU + + # CVS ID: $Id$ Exported from the LAMS Community by Ernie Ghiglione on Wed Nov 19 18:45:25 GMT 2008 + +#=================== labels for Online Spreadsheet =================# + +label.authoring.heading.basic.desc =Basic input information for spreadsheet +label.authoring.heading.advance.desc =Please input advance options for spreadsheet +label.authoring.advanced.reflectOnActivity =Add Notebook at end of Spreadsheet with the following instructions: +activity.description =Spreadsheet. +activity.helptext =Spreadsheet Tool. +tool.display.name =Spreadsheet Tool +tool.description =Tool for displaying spreadsheets. +appName =Spreadsheet +errorPage.title =Error page +errorPage.heading =Some error occurs when handling your request +label.authoring.heading =Spreadsheet +label.authoring.title =Spreadsheet Authoring +label.authoring.heading.basic =Basic +label.authoring.basic.resource.instructions =Instructions +label.authoring.heading.instructions =Instructions +label.authoring.heading.instructions.desc =Please input online and offline instructions +label.authoring.basic.instruction =Instruction +label.authoring.basic.resource.add.instruction =Add Instruction +label.authoring.online.instruction =Online Instructions +label.authoring.offline.instruction =Offline Instructions +label.authoring.basic.title =Title +label.authoring.basic.spreadsheet =Spreadsheet +label.authoring.advanced.play.only =Play only (learner can only play with the spreadsheet but cannot save) +label.authoring.advanced.learners.are.allowed.to.save =Learners are allowed to submit individual spreadsheets +label.authoring.advanced.enable.spreadsheet.marking =Enable spreadsheet marking +label.authoring.online.file =Upload online file +label.authoring.offline.file =Upload offline file +label.authoring.choosefile.button =Choose file +label.authoring.upload.online.button =Upload Online +label.authoring.upload.offline.button =Upload Offline +label.authoring.online.delete =Delete +label.authoring.offline.delete =Delete +label.authoring.cancel.button =Cancel +label.learning.title =Spreadsheet Learning +label.learning.comments =Comments +label.learning.marks =Marks +label.learning.not.available =Not Available +label.monitoring.summary.advanced.settings =Advanced Settings +label.monitoring.summary.learner =Learner +label.monitoring.summary.marked =Marked? +label.monitoring.summary.lock.when.finished =Lock when finished +label.monitoring.summary.individual.spreadsheets =Learners are allowed to submit individual spreadsheets +label.monitoring.summary.marking.enabled =Spreadsheet marking is enabled +label.monitoring.summary.notebook.reflection =Notebook Reflection +label.monitoring.summary.overall.summary =Overall Summary +label.monitoring.summary.title.reflection =Notebook Entry +label.monitoring.summary.reflection =Notebook Entry +label.monitoring.summary.mark.button =Mark +label.monitoring.summary.user =Learner +label.monitoring.summary.viewAllMarks.button =View All Marks +label.monitoring.summary.releaseMarks.button =Release Marks +label.monitoring.summary.downloadMarks.button =Download Marks +label.monitoring.summary.marking.marking =Marking +label.monitoring.summary.marking.marks =Marks +label.monitoring.summary.marking.comments =Comments +label.monitoring.summary.marking.update.marks =Update Marks +label.monitoring.edit.activity.edit =Edit +label.monitoring.statistics.session.name =Session name +label.monitoring.statistics.marked =Marked spreadsheets +label.monitoring.statistics.not.marked =Not marked spreadsheets +label.monitoring.statistics.total.spreadsheets.sent.by.learners =Total spreadsheets sent by learners +label.monitoring.downloadmarks.learner.name =Learner name +label.monitoring.downloadmarks.marks =Marks +label.monitoring.downloadmarks.comments =Comments +label.monitoring.vieawallmarks.heading.marking =Marking +label.monitoring.vieawallmarks.learner =Learner: +label.monitoring.vieawallmarks.spreadsheet.submitted =Spreadsheet submitted +label.monitoring.vieawallmarks.true =True +label.monitoring.vieawallmarks.false =False +label.monitoring.vieawallmarks.marks =Marks: +label.monitoring.vieawallmarks.comments =Comments: +label.monitoring.vieawallmarks.update.marks =Update Marks +label.reviewitem.spreadsheet.sent.by =Spreadsheet sent by +label.reviewitem.user.hasnot.sent.spreadsheet =User hasn't sent spreadsheet yet. +label.reviewitem.title =Review User's Spreadsheet +label.export.marking.enabled =Spreadsheet marking is enabled +label.export.notebook.reflection.enabled =Notebook Reflection is enabled +error.summary.marks.blank =Marks can not be blank. +error.summary.marks.invalid.number =Mark is in invalid number format. +error.summary.comments.blank =Comments can not be blank. +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.default.content.not.find =Could not retrieve default content record for this tool. +authoring.msg.cancel.save =Do you want to close this window without saving? +monitoring.tab.instructions =Instruction +monitoring.tab.summary =Summary +monitoring.tab.statistics =Statistics +monitoring.tab.edit.activity =Edit Activity +monitoring.label.group =Group +message.monitoring.edit.activity.not.editable =This Activity is no longer editable +label.delete =Delete +label.download =Download +label.view =View +label.edit =Edit +message.monitoring.summary.no.session =No Session Available +label.save =Save +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 +page.title.monitoring.view.reflection =View Notebook Entries +message.no.reflection.available =No notebook available +title.reflection =Notebook Entry +activity.title =Spreadsheet +label.authoring.save.button =Save +label.authoring.advance.lock.on.finished =Lock when finished +label.authoring.heading.advance =Advanced +label.up =Move Up +label.down =Move down +label.continue =Continue +button.close =Close +label.finished =Next Activity +label.finish =Finished +error.msg.repository =A repository error occurred while trying to upload the file. +monitoring.label.attachments =Attachments +message.activityLocked =The instructor has set this activity not to allow you to change spreadsheet after you have finished it. +msg.mark.released =Marks in {0} have been released. +label.export.reflection =Notebook Entries +message.warnLockOnFinish =Note: After you click on \u201cNext Activity\u201d, if you come back to this Spreadsheet, you won\u2019t be able to submit apreadsheet's changes. +label.on =On +label.off =Off +monitoring.summary.note =Note: number of learners is the number of learners who have viewed the spreadsheet. +export.title =Export portfolio of Spreadsheet +message.alertContentEdit =Warning: One of more learners have accessed this activity. Changing this content will result in learners getting different information. + + +#======= End labels: Exported 127 labels for en AU ===== Index: debian_installer/lams2/lams_tool_spreadsheet/language/ApplicationResources_el_GR.properties =================================================================== diff -u --- debian_installer/lams2/lams_tool_spreadsheet/language/ApplicationResources_el_GR.properties (revision 0) +++ debian_installer/lams2/lams_tool_spreadsheet/language/ApplicationResources_el_GR.properties (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,138 @@ +appName = spreadsheet +#language code: el +#locale code: GR + + # CVS ID: $Id$ Exported from the LAMS Community by Ernie Ghiglione on Mon Dec 01 22:21:17 GMT 2008 + +#=================== labels for Online Spreadsheet =================# + +error.msg.io.exception =\u039c\u03b9\u03b1 \u03b5\u03be\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u0395\u03b9\u03c3\u03cc\u03b4\u03bf\u03c5/\u0395\u03be\u03cc\u03b4\u03bf\u03c5 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae (\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7) \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5. +label.authoring.advanced.play.only =\u039c\u03cc\u03bd\u03bf \u03bd\u03b1 "\u03c0\u03b1\u03af\u03be\u03b5\u03b9" (\u03bf \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bc\u03cc\u03bd\u03bf \u03bd\u03b1 \u03c0\u03b1\u03af\u03be\u03b5\u03b9 \u03bc\u03b5 \u03c4\u03bf \u03c5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03c6\u03cd\u03bb\u03bb\u03bf \u03b1\u03bb\u03bb\u03ac \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03b9) +message.activityLocked =\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 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 \u03bd\u03b1 \u03bc\u03b7\u03bd \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03bf\u03bd\u03c4\u03b1\u03b9 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03c3\u03c4\u03bf \u03c5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03c6\u03cd\u03bb\u03bb\u03bf \u03bc\u03b5 \u03c4\u03ac \u03c4\u03b7\u03bd \u03bf\u03bb\u03bf\u03ba\u03bb\u03ae\u03c1\u03c9\u03c3\u03ae \u03c4\u03b7\u03c2 +label.authoring.basic.title =\u03a4\u03af\u03c4\u03bb\u03bf\u03c2 +error.msg.repository =\u0388\u03bd\u03b1 \u03bb\u03ac\u03b8\u03bf\u03c2 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7\u03c2 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b5 \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ce\u03bd\u03c4\u03b1\u03c2 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03c4\u03ce\u03c3\u03b5\u03b9 \u03c4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf. +label.authoring.save.button =\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 +label.save =\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 +label.authoring.advanced.learners.are.allowed.to.save =\u039f\u03b9 \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03b9 \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c5\u03c0\u03bf\u03b2\u03ac\u03bb\u03bb\u03bf\u03c5\u03bd \u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03ac \u03c5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c6\u03cd\u03bb\u03bb\u03b1. +label.monitoring.summary.individual.spreadsheets =\u039f\u03b9 \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03b9 \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c5\u03c0\u03bf\u03b2\u03ac\u03bb\u03bb\u03bf\u03c5\u03bd \u03b1\u03c4\u03bf\u03bc\u03b9\u03ba\u03ac \u03c5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03c6\u03cd\u03bb\u03bb\u03b1 +label.monitoring.downloadmarks.marks =\u0392\u03b1\u03b8\u03bc\u03bf\u03af +label.monitoring.statistics.not.marked =\u039c\u03b7 \u03b2\u03b1\u03b8\u03bc\u03bf\u03bb\u03bf\u03b3\u03b7\u03bc\u03ad\u03bd\u03b1 \u03a5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03a6\u03cd\u03bb\u03bb\u03b1. +error.summary.marks.blank =\u039f\u03b9 \u0392\u03b1\u03b8\u03bc\u03bf\u03af \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b5\u03bd\u03bf\u03af. +label.monitoring.summary.marking.enabled =\u0397 \u0392\u03b1\u03b8\u03bc\u03bf\u03bb\u03cc\u03b3\u03b7\u03c3\u03b7 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03c5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03c6\u03cd\u03bb\u03bb\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03b7 +label.monitoring.statistics.marked =\u0392\u03b1\u03b8\u03bc\u03bf\u03bb\u03bf\u03b3\u03b7\u03bc\u03ad\u03bd\u03b1 \u03a5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac \u03a6\u03cd\u03bb\u03bb\u03b1 +label.monitoring.vieawallmarks.heading.marking =\u0392\u03b1\u03b8\u03bc\u03bf\u03bb\u03cc\u03b3\u03b7\u03c3\u03b7 +label.monitoring.vieawallmarks.marks =\u0392\u03b1\u03b8\u03bc\u03bf\u03af +label.monitoring.vieawallmarks.update.marks =\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u0392\u03b1\u03b8\u03bc\u03ce\u03bd +label.export.notebook.reflection.enabled =\u0397 \u0391\u03bd\u03b1\u03c4\u03c1\u03bf\u03c6\u03bf\u03b4\u03cc\u03c4\u03b7\u03c3\u03b7 \u03a3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03b1\u03c1\u03af\u03bf\u03c5 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03b7. +label.export.marking.enabled =\u0397 \u0392\u03b1\u03b8\u03bc\u03bf\u03bb\u03cc\u03b3\u03b7\u03c3\u03b7 \u03c4\u03c9\u03bd \u03a5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd \u03a6\u03cd\u03bb\u03bb\u03c9\u03bd \u03ad\u03c7\u03b5\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03b5\u03af. +error.summary.marks.invalid.number =\u039f \u0392\u03b1\u03b8\u03bc\u03cc\u03c2 \u03b5\u03af\u03bd\u03b1 \u03c3\u03b5 \u03bc\u03b7 \u03ad\u03b3\u03ba\u03c5\u03c1\u03b7 \u03b1\u03c1\u03b9\u03b8\u03bc\u03b7\u03c4\u03b9\u03ba\u03ae \u03bc\u03bf\u03c1\u03c6\u03ae. +msg.mark.released =\u0388\u03c7\u03bf\u03c5\u03bd \u03b1\u03bd\u03b1\u03ba\u03bf\u03b9\u03bd\u03c9\u03b8\u03b5\u03af \u03bf\u03b9 \u03b2\u03b1\u03b8\u03bc\u03bf\u03af \u03b3\u03b9\u03b1 {0}. +label.learning.marks =\u0392\u03b1\u03b8\u03bc\u03bf\u03af +label.monitoring.summary.marked =\u0392\u03b1\u03b8\u03bc\u03bf\u03bb\u03bf\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5; +label.monitoring.summary.mark.button =\u0392\u03b1\u03b8\u03bc\u03cc\u03c2 +label.monitoring.summary.releaseMarks.button =\u0391\u03bd\u03b1\u03ba\u03bf\u03af\u03bd\u03c9\u03c3\u03b7 \u0392\u03b1\u03b8\u03bc\u03ce\u03bd +label.monitoring.summary.downloadMarks.button =\u039b\u03ae\u03c8\u03b7 \u0392\u03b1\u03b8\u03bc\u03ce\u03bd +label.monitoring.summary.marking.marking =\u0392\u03b1\u03b8\u03bc\u03bf\u03bb\u03cc\u03b3\u03b7\u03c3\u03b7 +label.monitoring.summary.marking.marks =\u0392\u03b1\u03b8\u03bc\u03bf\u03af +label.monitoring.summary.marking.update.marks =\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u0392\u03b1\u03b8\u03bc\u03ce\u03bd +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 \u03b5\u03c0\u03bf\u03c0\u03c4\u03b7 \u03c3\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03bb\u03b5\u03c0\u03c4\u03bf\u03bc\u03ad\u03c1\u03b5\u03b9\u03b5\u03c2. +label.authoring.advanced.enable.spreadsheet.marking =\u0395\u03bd\u03b5\u03c1. \u0392\u03b1\u03b8\u03bc\u03bf\u03bb\u03cc\u03b3\u03b7\u03c3\u03b7\u03c2 \u03a5\u03c0\u03bf\u03bb\u03bf\u03b3. \u03a6\u03cd\u03bb\u03bb\u03bf\u03c5 (Spreadsheet ). +label.monitoring.summary.viewAllMarks.button =\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u038c\u03bb\u03c9\u03bd \u03c4\u03c9\u03bd \u0392\u03b1\u03b8\u03bc\u03ce\u03bd +label.finished =\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u0394\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 +label.authoring.offline.file =\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03b3\u03b9\u03b1 \u03c7\u03c9\u03c1\u03af\u03c2 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 +message.warnLockOnFinish =\u03a3\u03b7\u03bc\u03b5\u03af\u03c9\u03c3\u03b7: \u039c\u03b5\u03c4\u03b1 \u03c4\u03bf \u03ba\u03bb\u03b9\u03ba \u03c3\u03c4\u03b7\u03bd \u201c\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u0394\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u201d, \u03b5\u03ac\u03bd \u03b5\u03c0\u03b9\u03c3\u03c4\u03c1\u03ad\u03c8\u03b5\u03c4\u03b5 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03a5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03a6\u03cd\u03bb\u03bb\u03bf, \u03b4\u03b5\u03bd \u03b8\u03b1 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03ba\u03ac\u03bd\u03b5\u03c4\u03b5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03c4\u03bf \u03c5\u03c0\u03bf\u03b2\u03ac\u03bb\u03bb\u03b5\u03c4\u03b1\u03b9 \u03b1\u03bb\u03bb\u03b1\u03b3\u03bc\u03ad\u03bd\u03bf. +error.msg.invaid.param.upload =\u039c\u03b9\u03b1 \u03b5\u03be\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03bb\u03cc\u03b3\u03c9 \u03bb\u03b1\u03bd\u03b8\u03b1\u03c3\u03bc\u03ad\u03bd\u03b7\u03c2 \u03c0\u03b1\u03c1\u03b1\u03bc\u03ad\u03c4\u03c1\u03bf\u03c5 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5. +error.msg.default.content.not.find =\u0394\u03b5\u03bd \u03b8\u03b1 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03c3\u03b5 \u03bd\u03b1 \u03b1\u03bd\u03b1\u03ba\u03c4\u03ae\u03c3\u03b5\u03b9 \u03c4\u03bf \u03c0\u03c1\u03bf\u03b1\u03ba\u03b8\u03bf\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 \u03b3\u03b9\u03b1 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf. +error.upload.failed =\u0397 \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 {0} \u03b1\u03c0\u03ad\u03c4\u03c5\u03c7\u03b5 +error.msg.file.not.found =\u03a4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b4\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5, \u03bc\u03b9\u03b1 \u03b5\u03be\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b1\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5. +label.export.reflection =\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ad\u03c2 \u03a3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03b1\u03c1\u03af\u03bf\u03c5 +label.on =\u0391\u03bd\u03bf\u03b9\u03ba\u03c4\u03cc +label.off =\u039a\u03bb\u03b5\u03b9\u03c3\u03c4\u03cc +error.summary.comments.blank =\u03a4\u03b1 \u03a3\u03c7\u03cc\u03bb\u03b9\u03b1 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b5\u03bd\u03ac +error.msg.upload.file.not.found =\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b2\u03c1\u03b5\u03b8\u03b5\u03af \u03c4\u03bf \u03b1\u03c0\u03bf\u03c3\u03c4\u03b1\u03bb\u03b8\u03ad\u03bd \u03b1\u03c1\u03c7\u03b5\u03af\u03bf {0}. +monitoring.label.attachments =\u0395\u03c0\u03b9\u03c3\u03c5\u03bd\u03b1\u03c0\u03c4\u03cc\u03bc\u03b5\u03bd\u03b1 +authoring.msg.cancel.save =\u0398\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03ba\u03bb\u03b5\u03af\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03c0\u03b1\u03c1\u03ac\u03b8\u03c5\u03c1\u03bf \u03c7\u03c9\u03c1\u03af\u03c2 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c4\u03b5; +monitoring.tab.instructions =\u039f\u03b4\u03b7\u03b3\u03af\u03b1 +monitoring.tab.summary =\u03a3\u03cd\u03bd\u03bf\u03c8\u03b7 +monitoring.tab.statistics =\u03a3\u03c4\u03b1\u03c4\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac +monitoring.tab.edit.activity =\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u0394\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03b7\u03c4\u03b1\u03c2 +monitoring.label.group =\u039f\u03bc\u03ac\u03b4\u03b1 +monitoring.summary.note =\u03a3\u03b7\u03bc\u03b5\u03af\u03c9\u03c3\u03b7: \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03bf \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c0\u03bf\u03c5 \u03ad\u03c7\u03bf\u03c5\u03bd \u03b4\u03b5\u03b9 \u03c4\u03bf \u03c5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03c6\u03cd\u03bb\u03bb\u03bf (spreadsheet). +message.monitoring.edit.activity.not.editable =\u0391\u03c5\u03c4\u03ae \u03b7 \u0394\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. +export.title =\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae \u03a6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 \u0395\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd \u03c4\u03bf\u03c5 \u03a5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03bf\u03cd \u03a6\u03cd\u03bb\u03bb\u03bf\u03c5 +label.delete =\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae +label.download =\u039c\u03b5\u03c4\u03b1\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b5 +label.view =\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae +label.edit =\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 +message.monitoring.summary.no.session =\u039c\u03b7 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7 \u03a0\u03b5\u03c1\u03af\u03bf\u03b4\u03bf\u03c2 +label.authoring.title =\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03a5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03bf\u03cd \u03a6\u03cd\u03bb\u03bb\u03bf\u03c5 +label.cancel =\u0386\u03ba\u03c5\u03c1\u03bf +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 \u03bd\u03b1 \u03bf\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03c3\u03b5\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03b1\u03c5\u03c4\u03ae\u03c2 \u03c4\u03b7\u03c2 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2. +button.try.again =\u03a0\u03c1\u03bf\u03c3\u03c0\u03ac\u03b8\u03b7\u03c3\u03b5 \u03be\u03b1\u03bd\u03ac +page.title.monitoring.view.reflection =\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ce\u03bd \u03a3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03b1\u03c1\u03af\u03bf\u03c5 +message.no.reflection.available =\u03a4\u03bf \u03a3\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 +title.reflection =\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03a3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03b1\u03c1\u03af\u03bf\u03c5 +activity.title =\u03a5\u03c0\u03bf\u03bb\u03bf\u03b3. \u03a6\u03cd\u03bb\u03bb\u03bf +label.authoring.advance.lock.on.finished =\u039a\u03bb\u03b5\u03af\u03b4\u03c9\u03bc\u03b1 \u03cc\u03c4\u03b1\u03bd \u03bf\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03c9\u03b8\u03b5\u03af +label.up =\u039c\u03b5\u03c4\u03b1\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c0\u03ac\u03bd\u03c9 +label.down =\u039c\u03b5\u03c4\u03b1\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03ba\u03ac\u03c4\u03c9 +label.continue =\u03a3\u03c5\u03bd\u03ad\u03c7\u03b9\u03c3\u03b5 +button.close =\u039a\u03bb\u03b5\u03b9\u03c3\u03c4\u03cc +label.finish =\u039f\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5 +message.alertContentEdit =\u03a0\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 \u03c3\u03c0\u03bf\u03c5\u03b4\u03b1\u03c3\u03c4\u03ad\u03c2 \u03ad\u03c7\u03bf\u03c5\u03bd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03ae\u03bd \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 \u03bf\u03b4\u03b7\u03b3\u03ae\u03c3\u03b5\u03b9 \u03c4\u03bf\u03c5\u03c2 \u03c3\u03c0\u03bf\u03c5\u03b4\u03b1\u03c3\u03c4\u03ad\u03c2 \u03c3\u03b5 \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03b5\u03c4\u03b9\u03ba\u03ad\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2. +label.authoring.choosefile.button =\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u0391\u03c1\u03c7\u03b5\u03af\u03bf +label.authoring.upload.online.button =\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03c3\u03b5 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 +label.authoring.upload.offline.button =\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03b3\u03b9\u03b1 \u03c7\u03c9\u03c1\u03af\u03c2 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 +label.authoring.online.delete =\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae +label.authoring.offline.delete =\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae +label.authoring.cancel.button =\u0386\u03ba\u03c5\u03c1\u03bf +label.learning.title =\u039c\u03ac\u03b8\u03b7\u03c3\u03b7 \u03a5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03bf\u03cd \u03a6\u03cd\u03bb\u03bb\u03bf\u03c5 +label.learning.comments =\u03a3\u03c7\u03cc\u03bb\u03b9\u03b1 +label.learning.not.available =\u039c\u03ae \u0394\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03bf +label.monitoring.summary.learner =\u0395\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 +label.monitoring.summary.lock.when.finished =\u039a\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf \u03cc\u03c4\u03b1\u03bd \u03bf\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03c9\u03b8\u03b5\u03af +label.monitoring.summary.notebook.reflection =\u03a3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03ac\u03c1\u03b9\u03bf \u0391\u03bd\u03b1\u03c4\u03c1\u03bf\u03c6\u03bf\u03b4\u03cc\u03c4\u03b7\u03c3\u03b7\u03c2 +label.monitoring.summary.overall.summary =\u0393\u03b5\u03bd\u03b9\u03ba\u03ae \u0391\u03bd\u03b1\u03ba\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03c9\u03c3\u03b7 +label.monitoring.summary.title.reflection =\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03a3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03b1\u03c1\u03af\u03bf\u03c5 +label.monitoring.summary.reflection =\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03a3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03b1\u03c1\u03af\u03bf\u03c5 +label.monitoring.summary.user =\u0395\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 +label.monitoring.summary.marking.comments =\u03a3\u03c7\u03cc\u03bb\u03b9\u03b1 +label.monitoring.edit.activity.edit =\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 +label.monitoring.statistics.session.name =\u038c\u03bd\u03bf\u03bc\u03b1 \u03a0\u03b5\u03c1\u03b9\u03cc\u03b4\u03bf\u03c5 +label.monitoring.statistics.total.spreadsheets.sent.by.learners =\u03a3\u03cd\u03bd\u03bf\u03bb\u03bf \u03c5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd \u03c6\u03cd\u03bb\u03bb\u03c9\u03bd \u03c0\u03bf\u03c5 \u03c3\u03c4\u03ac\u03bb\u03b8\u03b7\u03ba\u03b1\u03bd \u03b1\u03c0\u03cc \u03c4\u03bf\u03c5\u03c2 \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5\u03c2 +label.monitoring.downloadmarks.learner.name =\u038c\u03bd\u03bf\u03bc\u03b1 \u0395\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 +label.monitoring.downloadmarks.comments =\u03a3\u03c7\u03cc\u03bb\u03b9\u03b1 +label.monitoring.vieawallmarks.learner =\u0395\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 +label.monitoring.vieawallmarks.spreadsheet.submitted =\u03a4\u03bf \u039b\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03a6\u03cd\u03bb\u03bb\u03bf \u03c5\u03c0\u03bf\u03b2\u03bb\u03ae\u03b8\u03b7\u03ba\u03b5 +label.monitoring.vieawallmarks.true =\u0391\u03bb\u03ae\u03b8\u03b5\u03b9\u03b1 +label.monitoring.vieawallmarks.false =\u03a8\u03ad\u03bc\u03b1 +label.monitoring.vieawallmarks.comments =\u03a3\u03c7\u03cc\u03bb\u03b9\u03b1 +label.reviewitem.spreadsheet.sent.by =\u03a4\u03bf \u03a5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03a6\u03cd\u03bb\u03bb\u03bf \u03c3\u03c4\u03ac\u03bb\u03b8\u03b7\u03ba\u03b5 \u03b1\u03c0\u03cc +label.reviewitem.user.hasnot.sent.spreadsheet =\u039f \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 \u03b4\u03b5\u03bd \u03ad\u03c7\u03b5\u03b9 \u03c3\u03c4\u03b5\u03af\u03bb\u03b5\u03b9 \u03c4\u03bf \u03a5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03a6\u03cd\u03bb\u03bb\u03bf \u03b1\u03ba\u03cc\u03bc\u03b7. +label.reviewitem.title =\u0395\u03c0\u03b9\u03c3\u03ba\u03cc\u03c0\u03b7\u03c3\u03b7 \u03c4\u03c9\u03bd \u03a5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd \u03a6\u03cd\u03bb\u03bb\u03c9\u03bd \u03c4\u03bf\u03c5 \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7 +label.authoring.basic.instruction =\u039f\u03b4\u03b7\u03b3\u03af\u03b1 +appName =\u03a5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03a6\u03cd\u03bb\u03bb\u03bf +activity.description =\u03a5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03a6\u03cd\u03bb\u03bb\u03bf. +activity.helptext =\u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf \u03a5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03bf\u03cd \u03a6\u03cd\u03bb\u03bb\u03bf\u03c5. +tool.display.name =\u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf \u03a5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03a6\u03cd\u03bb\u03bb\u03bf +tool.description =\u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf \u03b3\u03b9\u03b1 \u03c0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03c5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03ce\u03bd \u03c6\u03cd\u03bb\u03bb\u03c9\u03bd +errorPage.title =\u03a3\u03b5\u03bb\u03af\u03b4\u03b1 \u039b\u03ac\u03b8\u03bf\u03c5\u03c2 +errorPage.heading =\u039c\u03b5\u03c1\u03b9\u03ba\u03ac \u03bb\u03ac\u03b8\u03b7 \u03b5\u03bc\u03c6\u03b1\u03bd\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03cc\u03c4\u03b1\u03bd \u03b4\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03b7 \u03b1\u03c0\u03b1\u03af\u03c4\u03b7\u03c3\u03ae \u03c3\u03b1\u03c2 +label.authoring.heading =\u03a5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03a6\u03cd\u03bb\u03bb\u03bf +label.authoring.heading.advance.desc =\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03b9\u03c3\u03b1\u03b3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03c4\u03b9\u03c2 \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 \u03c5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03c6\u03cd\u03bb\u03bb\u03bf (spreadsheet) +label.authoring.basic.resource.instructions =\u039f\u03b4\u03b7\u03b3\u03af\u03b5\u03c2 +label.authoring.heading.instructions =\u039f\u03b4\u03b7\u03b3\u03af\u03b5\u03c2 +label.authoring.basic.spreadsheet =\u03a5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03a6\u03cd\u03bb\u03bb\u03bf +label.authoring.advanced.reflectOnActivity =\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03a3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03b1\u03c1\u03af\u03bf\u03c5 \u03c3\u03c4\u03bf \u03c4\u03ad\u03bb\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03c5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03bf\u03cd \u03c6\u03cd\u03bb\u03bb\u03bf\u03c5 \u03bc\u03b5 \u03c4\u03b9\u03c2 \u03b1\u03ba\u03cc\u03bb\u03bf\u03c5\u03b8\u03b5\u03c2 \u03bf\u03b4\u03b7\u03b3\u03af\u03b5\u03c2: +label.authoring.basic.resource.add.instruction =\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u039f\u03b4\u03b7\u03b3\u03af\u03b1\u03c2 +label.authoring.online.file =\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 \u03b3\u03b9\u03b1 \u03b5\u03ba\u03c0\u03cc\u03bd\u03b7\u03c3\u03b7 \u03c3\u03b5 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 +label.authoring.online.instruction =\u039f\u03b4\u03b7\u03b3\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03b5\u03ba\u03c0\u03cc\u03bd\u03b7\u03c3\u03b7 \u03bc\u03b5 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7: +label.authoring.heading.advance =\u03a0\u03c1\u03bf\u03c7\u03c9\u03c1\u03b7\u03bc\u03ad\u03bd\u03b1 +label.monitoring.summary.advanced.settings =\u03a0\u03c1\u03bf\u03c7\u03c9\u03c1\u03b7\u03bc\u03ad\u03bd\u03b5\u03c2 \u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 +label.authoring.heading.instructions.desc =\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03b9\u03c3\u03b1\u03b3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03bf\u03b4\u03b7\u03b3\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03b5\u03ba\u03c0\u03cc\u03bd\u03b7\u03c3\u03b7 \u03c3\u03b5 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03ba\u03b1\u03b9 \u03c7\u03c9\u03c1\u03af\u03c2 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 +label.authoring.offline.instruction =\u039f\u03b4\u03b7\u03b3\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03b5\u03ba\u03c0\u03cc\u03bd\u03b7\u03c3\u03b7 \u03c7\u03c9\u03c1\u03af\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7: +label.authoring.heading.basic.desc =\u0392\u03b1\u03c3\u03b9\u03ba\u03ad\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b5\u03b9\u03c3\u03cc\u03b4\u03bf\u03c5 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03c5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03b9\u03ba\u03cc \u03c6\u03cd\u03bb\u03bb\u03bf (spreadsheet) +label.authoring.heading.basic =\u0392\u03b1\u03c3\u03b9\u03ba\u03ac + + +#======= End labels: Exported 127 labels for el GR ===== Index: debian_installer/lams2/lams_tool_spreadsheet/language/ApplicationResources_en_AU.properties =================================================================== diff -u --- debian_installer/lams2/lams_tool_spreadsheet/language/ApplicationResources_en_AU.properties (revision 0) +++ debian_installer/lams2/lams_tool_spreadsheet/language/ApplicationResources_en_AU.properties (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,138 @@ +appName = spreadsheet +#language code: en +#locale code: AU + + # CVS ID: $Id$ Exported from the LAMS Community by Ernie Ghiglione on Wed Nov 19 18:45:25 GMT 2008 + +#=================== labels for Online Spreadsheet =================# + +label.authoring.heading.basic.desc =Basic input information for spreadsheet +label.authoring.heading.advance.desc =Please input advance options for spreadsheet +label.authoring.advanced.reflectOnActivity =Add Notebook at end of Spreadsheet with the following instructions: +activity.description =Spreadsheet. +activity.helptext =Spreadsheet Tool. +tool.display.name =Spreadsheet Tool +tool.description =Tool for displaying spreadsheets. +appName =Spreadsheet +errorPage.title =Error page +errorPage.heading =Some error occurs when handling your request +label.authoring.heading =Spreadsheet +label.authoring.title =Spreadsheet Authoring +label.authoring.heading.basic =Basic +label.authoring.basic.resource.instructions =Instructions +label.authoring.heading.instructions =Instructions +label.authoring.heading.instructions.desc =Please input online and offline instructions +label.authoring.basic.instruction =Instruction +label.authoring.basic.resource.add.instruction =Add Instruction +label.authoring.online.instruction =Online Instructions +label.authoring.offline.instruction =Offline Instructions +label.authoring.basic.title =Title +label.authoring.basic.spreadsheet =Spreadsheet +label.authoring.advanced.play.only =Play only (learner can only play with the spreadsheet but cannot save) +label.authoring.advanced.learners.are.allowed.to.save =Learners are allowed to submit individual spreadsheets +label.authoring.advanced.enable.spreadsheet.marking =Enable spreadsheet marking +label.authoring.online.file =Upload online file +label.authoring.offline.file =Upload offline file +label.authoring.choosefile.button =Choose file +label.authoring.upload.online.button =Upload Online +label.authoring.upload.offline.button =Upload Offline +label.authoring.online.delete =Delete +label.authoring.offline.delete =Delete +label.authoring.cancel.button =Cancel +label.learning.title =Spreadsheet Learning +label.learning.comments =Comments +label.learning.marks =Marks +label.learning.not.available =Not Available +label.monitoring.summary.advanced.settings =Advanced Settings +label.monitoring.summary.learner =Learner +label.monitoring.summary.marked =Marked? +label.monitoring.summary.lock.when.finished =Lock when finished +label.monitoring.summary.individual.spreadsheets =Learners are allowed to submit individual spreadsheets +label.monitoring.summary.marking.enabled =Spreadsheet marking is enabled +label.monitoring.summary.notebook.reflection =Notebook Reflection +label.monitoring.summary.overall.summary =Overall Summary +label.monitoring.summary.title.reflection =Notebook Entry +label.monitoring.summary.reflection =Notebook Entry +label.monitoring.summary.mark.button =Mark +label.monitoring.summary.user =Learner +label.monitoring.summary.viewAllMarks.button =View All Marks +label.monitoring.summary.releaseMarks.button =Release Marks +label.monitoring.summary.downloadMarks.button =Download Marks +label.monitoring.summary.marking.marking =Marking +label.monitoring.summary.marking.marks =Marks +label.monitoring.summary.marking.comments =Comments +label.monitoring.summary.marking.update.marks =Update Marks +label.monitoring.edit.activity.edit =Edit +label.monitoring.statistics.session.name =Session name +label.monitoring.statistics.marked =Marked spreadsheets +label.monitoring.statistics.not.marked =Not marked spreadsheets +label.monitoring.statistics.total.spreadsheets.sent.by.learners =Total spreadsheets sent by learners +label.monitoring.downloadmarks.learner.name =Learner name +label.monitoring.downloadmarks.marks =Marks +label.monitoring.downloadmarks.comments =Comments +label.monitoring.vieawallmarks.heading.marking =Marking +label.monitoring.vieawallmarks.learner =Learner: +label.monitoring.vieawallmarks.spreadsheet.submitted =Spreadsheet submitted +label.monitoring.vieawallmarks.true =True +label.monitoring.vieawallmarks.false =False +label.monitoring.vieawallmarks.marks =Marks: +label.monitoring.vieawallmarks.comments =Comments: +label.monitoring.vieawallmarks.update.marks =Update Marks +label.reviewitem.spreadsheet.sent.by =Spreadsheet sent by +label.reviewitem.user.hasnot.sent.spreadsheet =User hasn't sent spreadsheet yet. +label.reviewitem.title =Review User's Spreadsheet +label.export.marking.enabled =Spreadsheet marking is enabled +label.export.notebook.reflection.enabled =Notebook Reflection is enabled +error.summary.marks.blank =Marks can not be blank. +error.summary.marks.invalid.number =Mark is in invalid number format. +error.summary.comments.blank =Comments can not be blank. +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.default.content.not.find =Could not retrieve default content record for this tool. +authoring.msg.cancel.save =Do you want to close this window without saving? +monitoring.tab.instructions =Instruction +monitoring.tab.summary =Summary +monitoring.tab.statistics =Statistics +monitoring.tab.edit.activity =Edit Activity +monitoring.label.group =Group +message.monitoring.edit.activity.not.editable =This Activity is no longer editable +label.delete =Delete +label.download =Download +label.view =View +label.edit =Edit +message.monitoring.summary.no.session =No Session Available +label.save =Save +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 +page.title.monitoring.view.reflection =View Notebook Entries +message.no.reflection.available =No notebook available +title.reflection =Notebook Entry +activity.title =Spreadsheet +label.authoring.save.button =Save +label.authoring.advance.lock.on.finished =Lock when finished +label.authoring.heading.advance =Advanced +label.up =Move Up +label.down =Move down +label.continue =Continue +button.close =Close +label.finished =Next Activity +label.finish =Finished +error.msg.repository =A repository error occurred while trying to upload the file. +monitoring.label.attachments =Attachments +message.activityLocked =The instructor has set this activity not to allow you to change spreadsheet after you have finished it. +msg.mark.released =Marks in {0} have been released. +label.export.reflection =Notebook Entries +message.warnLockOnFinish =Note: After you click on \u201cNext Activity\u201d, if you come back to this Spreadsheet, you won\u2019t be able to submit apreadsheet's changes. +label.on =On +label.off =Off +monitoring.summary.note =Note: number of learners is the number of learners who have viewed the spreadsheet. +export.title =Export portfolio of Spreadsheet +message.alertContentEdit =Warning: One of more learners have accessed this activity. Changing this content will result in learners getting different information. + + +#======= End labels: Exported 127 labels for en AU ===== Index: debian_installer/lams2/lams_tool_spreadsheet/language/ApplicationResources_es_ES.properties =================================================================== diff -u --- debian_installer/lams2/lams_tool_spreadsheet/language/ApplicationResources_es_ES.properties (revision 0) +++ debian_installer/lams2/lams_tool_spreadsheet/language/ApplicationResources_es_ES.properties (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,138 @@ +appName = spreadsheet +#language code: es +#locale code: ES + + # CVS ID: $Id$ Exported from the LAMS Community by Ernie Ghiglione on Mon Dec 01 05:24:42 GMT 2008 + +#=================== labels for Online Spreadsheet =================# + +label.monitoring.summary.marked =\u00bfMarcado? +label.monitoring.summary.lock.when.finished =Una ves terminada la actividad, no permitir m\u00e1s cambios. +label.monitoring.summary.reflection =Anotaciones +label.monitoring.summary.individual.spreadsheets =Estudiantes pueden enviar sus propia hoja de c\u00e1lculo +label.monitoring.summary.notebook.reflection =Anotaci\u00f3n al finalizar +label.monitoring.summary.overall.summary =Resumen +label.monitoring.summary.title.reflection =Anotaciones +label.monitoring.summary.mark.button =Notas +label.monitoring.summary.user =Estudiante +label.monitoring.summary.viewAllMarks.button =Ver todas las notas +label.monitoring.summary.releaseMarks.button =Enviar notas a estudiantes +label.monitoring.summary.downloadMarks.button =Bajar Notas +label.monitoring.summary.marking.marking =Corregir +label.monitoring.summary.marking.marks =Notas +label.monitoring.summary.marking.comments =Comentarios +label.monitoring.summary.marking.update.marks =Actualizar Notas +label.monitoring.edit.activity.edit =Editar +label.monitoring.statistics.session.name =Secci\u00f3n +label.monitoring.downloadmarks.learner.name =Nombre del estudiante +label.monitoring.downloadmarks.marks =Notas +label.monitoring.downloadmarks.comments =Comentarios +label.monitoring.vieawallmarks.heading.marking =Correcci\u00f3nes +label.monitoring.vieawallmarks.learner =Estudiante +label.monitoring.vieawallmarks.true =Verdadero +label.monitoring.vieawallmarks.false =Falso +label.monitoring.vieawallmarks.marks =Notas +label.monitoring.vieawallmarks.comments =Comentarios +label.monitoring.vieawallmarks.update.marks =Actualizar Notas +label.reviewitem.spreadsheet.sent.by =Hoja de C\u00e1lculo de +monitoring.tab.instructions =Instrucci\u00f3n +monitoring.tab.summary =Resumen +monitoring.tab.statistics =Estadisticas +monitoring.tab.edit.activity =Editar Actividad +monitoring.label.group =Grupos +monitoring.label.attachments =Archivos adjuntos +label.delete =Borrar +label.download =Bajar +label.view =Ver +label.edit =Editar +label.save =Guardar +label.cancel =Cancelar +button.try.again =Intente nuevamente +page.title.monitoring.view.reflection =Ver Anotaciones +message.no.reflection.available =No hay anotaciones disponibles +title.reflection =Anotaciones +activity.title =Hola de C\u00e1lculo +label.authoring.save.button =Guardar +label.authoring.heading.advance =Avanzado +label.up =Hacia arriba +label.down =Hacia abajo +label.continue =Continuar +button.close =Cerrar +label.finish =Finalizar +label.authoring.online.delete =Borrar +label.export.reflection =Anotaciones +label.authoring.offline.delete =Borrar +label.authoring.choosefile.button =Elija archivo +label.authoring.cancel.button =Cancelar +label.learning.comments =Comentarios +label.authoring.basic.title =T\u00edtulo +label.authoring.advanced.reflectOnActivity =Agregar anotaci\u00f3n al final de la actividad con las siguientes intrucciones: +label.authoring.advanced.play.only =Ver solamente (los estudiantes pueden solo ver la hoja de c\u00e1lculo pero no pueden guardar cambios) +label.authoring.advanced.learners.are.allowed.to.save =Los estudiantes pueden realizar cambios y enviar sus hojas de c\u00e1lculo. +label.learning.marks =Notas +label.learning.not.available =No disponible +label.monitoring.summary.advanced.settings =Opciones Avanzadas +label.monitoring.summary.learner =Estudiante +appName =Hoja de C\u00e1lculo +activity.description =Hoja de C\u00e1lculo +activity.helptext =Hoja de C\u00e1lculo +tool.display.name =Hoja de C\u00e1lculo +tool.description =Herramienta que permite usar una hoja de c\u00e1lculo en linea. +errorPage.title =Error en p\u00e1gina +errorPage.heading =Se ha producido un error al procesar su opci\u00f3n +label.authoring.heading =Hoja de C\u00e1lculo +label.authoring.title =Hoja de C\u00e1lculo +label.authoring.heading.basic =B\u00e1sico +label.authoring.basic.resource.instructions =Instrucciones +label.authoring.heading.instructions =Instrucciones +label.authoring.basic.spreadsheet =Hoja de C\u00e1lculo +label.on =Si +label.off =No +label.finished =Finalizar +label.authoring.heading.basic.desc =Informaci\u00f3n b\u00e1sica de la hoja de c\u00e1lculo +label.authoring.basic.instruction =Instrucciones +label.authoring.basic.resource.add.instruction =A\u00f1adir instrucciones +label.authoring.online.instruction =Instrucciones para modo online +label.authoring.offline.instruction =Instrucciones para modo offline +label.authoring.advanced.enable.spreadsheet.marking =Permiti que la hoja de c\u00e1lculo pueda ser evaluada +label.authoring.online.file =Subir archivo modo online +label.authoring.offline.file =Subir archivo modo offline +label.authoring.upload.online.button =Subir modo online +label.authoring.upload.offline.button =Subir modo offline +label.learning.title =Hoja de C\u00e1lculo +label.monitoring.summary.marking.enabled =Se puede evaluar la hoja de c\u00e1lculo +label.monitoring.statistics.marked =Hojas de c\u00e1lculo evaluadas +label.monitoring.statistics.not.marked =Hojas de c\u00e1lculo no evaluadas +label.monitoring.statistics.total.spreadsheets.sent.by.learners =N\u00famero de hojas de c\u00e1lculo +label.monitoring.vieawallmarks.spreadsheet.submitted =Hojas de c\u00e1lculo enviadas +label.reviewitem.user.hasnot.sent.spreadsheet =El usuario no ha enviado hoja de c\u00e1lculo todavia. +label.reviewitem.title =Revisar la hoja de c\u00e1lculo de usuario +label.export.marking.enabled =Las hojas de c\u00e1lculo se pueden evaluar +label.export.notebook.reflection.enabled =Existe anotador +error.summary.marks.blank =Debe poner una marca +error.summary.marks.invalid.number =La marca/evaluaci\u00f3n debe ser un n\u00famero valido +error.summary.comments.blank =No puede dejar comentarios en blanco +error.upload.failed =El archivo que ha intentado subir a fallado: {0} +error.msg.upload.file.not.found =No se ha podido encontrar el archivo subido: {0} +error.msg.file.not.found =Ha occurrido un error con el archivo subido. +error.msg.io.exception =Error al subir el archivo. +error.msg.invaid.param.upload =Error al subir el archivo. +error.msg.default.content.not.find =No se han podido encontrar el contenido de defecto de estar herramienta. +authoring.msg.cancel.save =\u00bfEsta seguro que desea cerrar sin guardar cambios? +message.monitoring.edit.activity.not.editable =Esta actividad ya no se puede editar +export.title =Exportar portfolio +message.monitoring.summary.no.session =No hay sessiones disponibles. +label.authoring.advance.lock.on.finished =Al terminar esta actividad, no permitir m\u00e1s cambios +error.msg.repository =Ha ocurrido un error con el archivo que ha intentado subir. +message.alertContentEdit =Atenci\u00f3n: uno o mas estudiantes ya han accedido a esta actividad. Cambiar el contenido de la misma resultar\u00e1 en que estudiantes reciban distinta informaci\u00f3n. +message.activityLocked =El instructor ha configurado esta actividad para no permitir cambios una vez finalizada la misma. +msg.mark.released =Las marcas de {0} ya estan disponibles. +message.warnLockOnFinish =Atenci\u00f3n: una vez que presione en "Pr\u00f3xima actividad", si usted vuelve a esta hoja de c\u00e1lculo, no podr\u00e1 efectuar cambios a la misma. +label.authoring.heading.advance.desc =Ingrese informaci\u00f3n avanzada +label.authoring.heading.instructions.desc =Ingrese informaci\u00f3n para modos online y offline. +monitoring.summary.note =Atenci\u00f3n: el n\u00famero de estudiantes significa la cantidad de estos que han visto la hoja de c\u00e1lculo. +define.later.message =Por favor, espere a que el instructor complete el contenido de esta actividad. +run.offline.message =Esta actividad ha sido configurada para no realizarse en el ordenador. Pida m\u00e1s informaci\u00f3n a su instructor. + + +#======= End labels: Exported 127 labels for es ES ===== Index: debian_installer/lams2/lams_tool_spreadsheet/language/ApplicationResources_it_IT.properties =================================================================== diff -u --- debian_installer/lams2/lams_tool_spreadsheet/language/ApplicationResources_it_IT.properties (revision 0) +++ debian_installer/lams2/lams_tool_spreadsheet/language/ApplicationResources_it_IT.properties (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,138 @@ +appName = spreadsheet +#language code: it +#locale code: IT + + # CVS ID: $Id$ Exported from the LAMS Community by Ernie Ghiglione on Mon Dec 01 05:24:38 GMT 2008 + +#=================== labels for Online Spreadsheet =================# + +label.reviewitem.spreadsheet.sent.by =Foglio elettronico inviato da +label.monitoring.statistics.total.spreadsheets.sent.by.learners =Numero totale di fogli elettronici inviati dagli studenti +label.monitoring.vieawallmarks.spreadsheet.submitted =Fogli elettronici presentati +label.monitoring.summary.releaseMarks.button =Pubblica voti +label.reviewitem.user.hasnot.sent.spreadsheet =L'utente non ha ancora inviato un foglio elettronico +label.reviewitem.title =Revisiona il foglio elettronico dell'utente +label.export.marking.enabled =La valutazione dei fogli elettronici \u00e8 abilitata +activity.title =Foglio elettronico +message.activityLocked =L'insegnante ha impostato questa attivit\u00e0 in modo tale da rendere impossibili ulteriori modifiche al foglio elettronico una volta completato. +label.authoring.advanced.play.only =Modalit\u00e0 sola lettura (lo studente pu\u00f2 visualizzare e modificare il foglio elettronico ma non pu\u00f2 salvare) +label.authoring.title =Authoring dei Fogli elettronici +message.no.reflection.available =Nessun Blocco Note disponibile +label.export.reflection =Voci del Blocco Note +label.monitoring.summary.notebook.reflection =Riflessione sul Blocco Note +label.monitoring.summary.title.reflection =Voce del Blocco note +label.monitoring.summary.reflection =Voce del Blocco note +label.export.notebook.reflection.enabled =La riflessione sul Blocco Note \u00e8 abilitata +page.title.monitoring.view.reflection =Visualizza le voci del Blocco Note +title.reflection =Voce del blocco note +label.monitoring.summary.user =Studente +msg.mark.released =I voti in {0} sono stati pubblicati. +label.monitoring.summary.marking.comments =Commenti +label.monitoring.edit.activity.edit =Modifica +label.monitoring.statistics.session.name =Nome della sessione +label.monitoring.downloadmarks.learner.name =Nome dello studente +label.monitoring.downloadmarks.comments =Commenti +label.monitoring.vieawallmarks.learner =Studente +label.monitoring.vieawallmarks.true =Vero +label.monitoring.vieawallmarks.false =Falso +label.monitoring.vieawallmarks.comments =Commenti +error.summary.comments.blank =I commenti non possono essere vuoti +error.upload.failed =Caricamento file fallito: {0} +error.msg.upload.file.not.found =Impossibile trovare il file {0} +error.msg.file.not.found =File non trovato. Errori durante il caricamento del file. +monitoring.tab.statistics =Statistiche +error.msg.io.exception =IOErrore durante il caricamento del file +error.msg.invaid.param.upload =ErroreParametroInvalido durante il caricamento del file +error.msg.default.content.not.find =Impossibile recuperare la voce di contenuto di default per questo strumento +authoring.msg.cancel.save =Chiudere la finestra senza salvare? +monitoring.tab.instructions =Istruzioni +monitoring.tab.summary =Riassunto +monitoring.tab.edit.activity =Modifica attivit\u00e0 +monitoring.label.group =Gruppo +monitoring.label.attachments =Allegati +message.monitoring.edit.activity.not.editable =Non \u00e8 pi\u00f9 possibile modificare questa attivit\u00e0 +label.delete =Elimina +label.download =Scarica +label.view =Visualizza +label.edit =Modifica +message.monitoring.summary.no.session =Nessuna sessione disponibile +label.save =Salva +label.cancel =Annulla +define.later.message =Attendere che l'insegnante completi i contenuto di questa attivit\u00e0 +run.offline.message =Questa attivit\u00e0 non va fatta sul computer. Consultare l'insegnante per ulteriori dettagli. +button.try.again =Riprova +label.authoring.save.button =Salva +label.authoring.advance.lock.on.finished =Blocca quando terminato +label.authoring.heading.advance =Avanzate +label.up =Vai su +label.down =Vai gi\u00f9 +label.continue =Continua +button.close =Chiudi +label.finished =Prossima attivit\u00e0 +label.finish =Finito +error.msg.repository =Si verifica un errore di repository durante il caricamento del file +label.off =Disattiva +message.alertContentEdit =Attenzione: uno o pi\u00f9 studenti hanno effettuato l'accesso a questa attivit\u00e0. Se si modifica il contenuto, gli studenti riceveranno informazioni diverse. +label.on =Attiva +errorPage.title =Pagina di errore +errorPage.heading =Si verificano alcuni errori nel portare avanti la richiesta +label.authoring.heading.basic =Base +label.authoring.basic.resource.instructions =Istruzioni +label.authoring.heading.instructions =Istruzioni +label.authoring.heading.instructions.desc =Inserire istruzioni online e offline +label.authoring.basic.instruction =Istruzioni +label.authoring.basic.resource.add.instruction =Aggiungere istruzioni +label.authoring.online.instruction =Istruzioni online +label.authoring.offline.instruction =Istruzioni offline +label.authoring.basic.title =Titolo +label.authoring.online.file =Carica file online +label.authoring.offline.file =Carica file offline +label.authoring.choosefile.button =Seleziona file +label.authoring.upload.online.button =Carica online +label.authoring.upload.offline.button =Carica offline +label.authoring.online.delete =Elimina +label.authoring.offline.delete =Elimina +label.authoring.cancel.button =Annulla +label.learning.comments =Commenti +label.learning.not.available =Non disponibile +label.monitoring.summary.advanced.settings =Impostazioni avanzate +label.monitoring.summary.learner =Studente +label.monitoring.summary.lock.when.finished =Blocca quando terminato +label.monitoring.summary.overall.summary =Riassunto generale +label.learning.marks =Voti +label.monitoring.summary.marked =Valutato? +label.monitoring.summary.mark.button =Voto +label.monitoring.summary.viewAllMarks.button =Vedi tutti i voti +label.monitoring.summary.downloadMarks.button =Scarica voti +label.monitoring.summary.marking.marking =Valutazione +label.monitoring.summary.marking.marks =Voti +label.monitoring.summary.marking.update.marks =Aggiorna Voti +label.monitoring.downloadmarks.marks =Voti +label.monitoring.vieawallmarks.heading.marking =Valutazione +label.monitoring.vieawallmarks.marks =Voti: +label.monitoring.vieawallmarks.update.marks =Aggiorna voti +error.summary.marks.blank =I voti non possono essere vuoti +error.summary.marks.invalid.number =Il voto \u00e8 in un formato di numero invalido +export.title =Esporta cartella di fogli elettronici +message.warnLockOnFinish =Dopo aver cliccato \u201cProssima Attivit\u00e0\u201d, tornando a questo Foglio elettronico sar\u00e0 impossibile effettuare modifiche +monitoring.summary.note =Nota: il numero di studenti corrisponde al numero di studenti che hanno visualizzato il foglio elettronico +label.authoring.heading.basic.desc =Informazione input di base per il foglio elettronico +label.authoring.heading.advance.desc =Inserire opzioni avanzate per il foglio elettronico +label.authoring.advanced.reflectOnActivity =Aggiungi Blocco Note al termine del foglio elettronico con le seguenti istruzioni: +activity.description =Foglio elettronico +activity.helptext =Strumento Foglio elettronico +tool.display.name =Strumento Foglio elettronico +tool.description =Strumento per la visualizzazione di fogli elettronici. +appName =Foglio elettronico +label.authoring.heading =Foglio elettronico +label.authoring.basic.spreadsheet =Foglio elettronico +label.authoring.advanced.learners.are.allowed.to.save =Gli studenti possono presentare fogli elettronici individuali +label.authoring.advanced.enable.spreadsheet.marking =Abilita valutazione dei fogli elettronici +label.learning.title =Apprendimento foglio elettronico +label.monitoring.summary.individual.spreadsheets =Gli studenti possono presentare fogli elettronici individuali +label.monitoring.summary.marking.enabled =La valutazione dei fogli elettronici \u00e8 abilitata +label.monitoring.statistics.marked =Fogli elettronici valutati +label.monitoring.statistics.not.marked =Fogli elettronici non valutati + + +#======= End labels: Exported 127 labels for it IT ===== Index: debian_installer/lams2/lams_tool_spreadsheet/language/ApplicationResources_no_NO.properties =================================================================== diff -u --- debian_installer/lams2/lams_tool_spreadsheet/language/ApplicationResources_no_NO.properties (revision 0) +++ debian_installer/lams2/lams_tool_spreadsheet/language/ApplicationResources_no_NO.properties (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,138 @@ +appName = spreadsheet +#language code: no +#locale code: NO + + # CVS ID: $Id$ Exported from the LAMS Community by Ernie Ghiglione on Fri Oct 03 00:27:34 BST 2008 + +#=================== labels for Online Spreadsheet =================# + +label.learning.title =Studentens regneark +monitoring.tab.statistics =Statistikk +errorPage.heading =Noen feil oppsto under behandlingen av din foresp\u00f8rsel +label.reviewitem.title =Kontroller brukerens regneark +error.msg.file.not.found =Fil ikke funnet regel oppst\u00e5r n\u00e5r du laster opp filen. +define.later.message =vennligst vent til foreleseren har ferdigstilt innholdet for denne aktiviteten. +message.activityLocked =Foreleseren har definert denne aktiviteten slik at du ikke har mulighet for \u00e5 endre regnearket etter at du har gjort det ferdig. +appName =Regneark +activity.description =Regneark. +activity.helptext =Regneark verkt\u00f8y. +tool.display.name =Regneark verkt\u00f8y +tool.description =Verkt\u00f8y for \u00e5 vise regneark. +errorPage.title =Side for feilmelding +label.authoring.heading =Regneark +label.authoring.basic.resource.instructions =Instruksjoner +label.authoring.heading.instructions =Instruksjoner +label.authoring.basic.instruction =Instruksjon +label.authoring.basic.resource.add.instruction =Legg til instruksjon +label.authoring.basic.title =Tittel +label.authoring.basic.spreadsheet =Regneark +label.authoring.choosefile.button =Velg fil +label.authoring.online.delete =Slett +label.authoring.offline.delete =Slett +label.authoring.cancel.button =Avbryt +label.learning.comments =Kommentarer +label.learning.marks =Karakterer +label.learning.not.available =Ikke tilgjengelig +label.monitoring.summary.advanced.settings =Avanserte innstillinger +label.monitoring.summary.learner =Student +label.monitoring.summary.marked =Karaktersatt? +label.monitoring.summary.lock.when.finished =L\u00e5s n\u00e5r ferdig +label.monitoring.summary.mark.button =Karakter +label.monitoring.summary.user =Student +label.monitoring.summary.viewAllMarks.button =Se alle karakterer +label.monitoring.summary.releaseMarks.button =Frigi karakterer +label.monitoring.summary.downloadMarks.button =Last ned karakterer +label.monitoring.summary.marking.marking =Sett karakterer +label.monitoring.summary.marking.marks =Karakterer +label.monitoring.summary.marking.comments =Kommentarer +label.monitoring.summary.marking.update.marks =Oppdater karakterer +label.monitoring.edit.activity.edit =Rediger +label.monitoring.statistics.session.name =Sesjons navn +label.monitoring.downloadmarks.learner.name =Studentens navn: +label.monitoring.downloadmarks.marks =Karakterer +label.monitoring.downloadmarks.comments =Komentarer +label.monitoring.vieawallmarks.heading.marking =Sett karakterer +label.monitoring.vieawallmarks.learner =Student: +label.monitoring.vieawallmarks.true =Riktig +label.monitoring.vieawallmarks.false =Galt +label.monitoring.vieawallmarks.marks =Karakter: +label.monitoring.vieawallmarks.comments =Kommentarer: +label.monitoring.vieawallmarks.update.marks =Oppdater karakter +label.reviewitem.spreadsheet.sent.by =Regnearket er sendt av +label.reviewitem.user.hasnot.sent.spreadsheet =Brukeren har enda ikke oversendt regnearket +monitoring.tab.instructions =Instruksjon +monitoring.tab.edit.activity =Rediger aktivitet +monitoring.label.group =Gruppe +monitoring.label.attachments =Vedlegg +label.delete =Slett +label.download =Last ned +label.view =Se p\u00e5 +label.edit =Rediger +label.save =lagre +label.cancel =Angre +button.try.again =Fors\u00f8k igjen +activity.title =regneark +label.authoring.save.button =Lagre +label.authoring.advance.lock.on.finished =L\u00e5s n\u00e5r ferdig +label.authoring.heading.advance =Avansert +label.up =Flytt opp +label.down =Flytt ned +label.continue =Fortsett +button.close =Lukk +label.finished =Neste aktivitet +label.finish =Avsluttet +label.on =P\u00e5 +label.off =Av +label.authoring.heading.instructions.desc =Vennligst skriv on-line og off-line informasjon +label.authoring.online.instruction =On-line informasjon +label.authoring.online.file =Last opp on-line fil +label.authoring.upload.online.button =Last opp on-line +label.authoring.offline.instruction =Off-line informasjon +label.authoring.offline.file =Last opp off-line fil +label.authoring.upload.offline.button =Last opp off-line +label.monitoring.vieawallmarks.spreadsheet.submitted =Regneark er innsendt +label.authoring.title =Regneark forfater +label.export.notebook.reflection.enabled =Notatbok refleksjoner er tilkoblet +error.summary.marks.blank =Karakterer kan ikke v\u00e6re tomme. +error.summary.marks.invalid.number =Karakter har et ugyldig tall format. +error.summary.comments.blank =Kommentarer kan ikke v\u00e6re tomme. +error.upload.failed =Opplasting av fil er mislykket:{0} +error.msg.upload.file.not.found =Kunne ikke finne fil for opplasting: {0} +label.authoring.heading.basic =Grunnleggende +label.monitoring.summary.notebook.reflection =Notatbok refleksjon +label.monitoring.summary.title.reflection =Notatbok inngang +label.monitoring.summary.reflection =Notatbok inngang +label.monitoring.statistics.total.spreadsheets.sent.by.learners =Totalt antall regneark innsendt av studentene +authoring.msg.cancel.save =\u00d8nsker du \u00e5 lukke vinduet uten \u00e5 lagre ? +monitoring.tab.summary =Oppsummering +message.monitoring.edit.activity.not.editable =Denne aktiviteten kan ikke lengere redigeres +export.title =Eksport mappe for regneark +message.monitoring.summary.no.session =Ingen sesjoner er tilgjengelig +page.title.monitoring.view.reflection =Se p\u00e5 notatbok innhold +message.no.reflection.available =Ingen notatbok er tilgjengelig +title.reflection =Notatbok inngang +label.export.reflection =Notatbok inngang +label.authoring.advanced.play.only =Kun test (studenten kan leke med regnearket men kan ikke lagre) +label.monitoring.summary.individual.spreadsheets =Studentene har tillatelse til \u00e5 sende inn egne, individuelle, regneark +label.monitoring.summary.overall.summary =Generell oppsummering +error.msg.repository =En database feil oppst\u00e5 ved opplastingen av filen +message.warnLockOnFinish =Merk: Etter at du har klikket p\u00e5 \u201cNeste Aktivitet\u201d, og deretter kommer tilbake til dette regnearket, s\u00e5 kan du ikke endre dette. +label.export.marking.enabled =Betegnelser for regneark er aktivert +label.authoring.advanced.enable.spreadsheet.marking =Tillat \u00e5 gi regneark betegnelser +label.monitoring.summary.marking.enabled =Betegnelser for regneark er aktivert +label.monitoring.statistics.marked =Regneark med betegnelser +label.monitoring.statistics.not.marked =Regneark uten betegnelser +error.msg.io.exception =IOException oppst\u00e5r ved opplasting av filen. +error.msg.invaid.param.upload =Invalid ParameterException oppst\u00e5r n\u00e5r du fors\u00f8ker \u00e5 laste opp filen +error.msg.default.content.not.find =Kunne ikke hente ut standard innhold for dette verkt\u00f8yet. +label.authoring.heading.basic.desc =Grunnleggende inngangsdata informasjon for regneark. +label.authoring.heading.advance.desc =vennligst legg inn avanserte alternativer for regneark. +label.authoring.advanced.reflectOnActivity =Legg til en notatblokk p\u00e5 slutten av regnearket, med f\u00f8lgende informasjon +label.authoring.advanced.learners.are.allowed.to.save =Studentene tillates \u00e5 sende inn individuelle regneark. +monitoring.summary.note =Merk: Antall studenter er antall studenter som har sett p\u00e5 regnearket. +run.offline.message =Denne aktiviteten utf\u00f8res ikke ved hjelp avdatamaskin. vennligst konferer foreleseren +message.alertContentEdit =Advarsel. En eller flere studenter har p\u00e5begynt denne aktiviteten. Hvis du endrer innholdet vil studentene se forskjellig innhold. +msg.mark.released =Karakterer i {0} er publisert. + + +#======= End labels: Exported 127 labels for no NO ===== Index: debian_installer/lams2/lams_tool_spreadsheet/lib/commons-collections.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_spreadsheet/lib/commons-configuration-1.1.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_spreadsheet/lib/commons-dbutils-1.0.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_spreadsheet/lib/commons-io-1.0.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_spreadsheet/lib/commons-lang-2.0.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_spreadsheet/lib/commons-logging.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_spreadsheet/lib/lams-tool-deploy.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_spreadsheet/lib/mysql-connector-java-3.1.12-bin.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_spreadsheet/lib/xstream-1.1.2.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_spreadsheet/sql/activity_insert.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_spreadsheet/sql/activity_insert.sql (revision 0) +++ debian_installer/lams2/lams_tool_spreadsheet/sql/activity_insert.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -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 +, 'Spreadsheet' +, 'Spreadsheet' +, '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/lasprd10/images/icon_spreadsheet.swf' +, NULL +, NULL +, NULL +, 'org.lamsfoundation.lams.tool.spreadsheet.ApplicationResources' +) Index: debian_installer/lams2/lams_tool_spreadsheet/sql/create_lams_tool_spreadsheet.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_spreadsheet/sql/create_lams_tool_spreadsheet.sql (revision 0) +++ debian_installer/lams2/lams_tool_spreadsheet/sql/create_lams_tool_spreadsheet.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,88 @@ +SET FOREIGN_KEY_CHECKS=0; +drop table if exists tl_lasprd10_attachment; +drop table if exists tl_lasprd10_spreadsheet; +drop table if exists tl_lasprd10_user_modified_spreadsheet; +drop table if exists tl_lasprd10_session; +drop table if exists tl_lasprd10_user; +create table tl_lasprd10_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, + spreadsheet_uid bigint, + primary key (uid) +)type=innodb; +create table tl_lasprd10_spreadsheet ( + uid bigint not null auto_increment, + create_date datetime, + update_date datetime, + create_by bigint, + title varchar(255), + run_offline tinyint, + is_learner_allowed_to_save tinyint, + is_marking_enabled tinyint, + lock_on_finished tinyint, + instructions text, + code text, + online_instructions text, + offline_instructions text, + content_in_use tinyint, + define_later tinyint, + content_id bigint unique, + reflect_instructions varchar(255), + reflect_on_activity smallint, + primary key (uid) +)type=innodb; +create table tl_lasprd10_user_modified_spreadsheet ( + uid bigint not null auto_increment, + user_modified_spreadsheet text, + mark_id bigint, + primary key (uid) +)type=innodb; +create table tl_lasprd10_spreadsheet_mark ( + uid bigint not null auto_increment, + marks varchar(255), + comments text, + date_marks_released datetime, + primary key (uid) +)type=innodb; +create table tl_lasprd10_session ( + uid bigint not null auto_increment, + session_end_date datetime, + session_start_date datetime, + status integer, + spreadsheet_uid bigint, + session_id bigint, + session_name varchar(250), + primary key (uid) +)type=innodb; +create table tl_lasprd10_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, + spreadsheet_uid bigint, + user_modified_spreadsheet_uid bigint, + primary key (uid) +)type=innodb; +alter table tl_lasprd10_attachment add index FK_NEW_2065267438_1E7009430E79035 (spreadsheet_uid), add constraint FK_NEW_2065267438_1E7009430E79035 foreign key (spreadsheet_uid) references tl_lasprd10_spreadsheet (uid); +alter table tl_lasprd10_spreadsheet add index FK_NEW_2065267438_89093BF758092FB (create_by), add constraint FK_NEW_2065267438_89093BF758092FB foreign key (create_by) references tl_lasprd10_user (uid); +alter table tl_lasprd10_session add index FK_NEW_2065267438_24AA78C530E79035 (spreadsheet_uid), add constraint FK_NEW_2065267438_24AA78C530E79035 foreign key (spreadsheet_uid) references tl_lasprd10_spreadsheet (uid); +alter table tl_lasprd10_user add index FK_NEW_2065267438_30113BFCEC0D3147 (session_uid), add constraint FK_NEW_2065267438_30113BFCEC0D3147 foreign key (session_uid) references tl_lasprd10_session (uid); +alter table tl_lasprd10_user add index FK_NEW_2065267438_30113BFC309ED320 (spreadsheet_uid), add constraint FK_NEW_2065267438_30113BFC309ED320 foreign key (spreadsheet_uid) references tl_lasprd10_spreadsheet (uid); +alter table tl_lasprd10_user add index FK_NEW_2065267438_693580A441F9365D (user_modified_spreadsheet_uid), add constraint FK_NEW_2065267438_693580A441F9365D foreign key (user_modified_spreadsheet_uid) references tl_lasprd10_user_modified_spreadsheet (uid); +alter table tl_lasprd10_user_modified_spreadsheet add index FK_tl_lasprd10_user_modified_spreadsheet_1 (mark_id), add constraint FK_tl_lasprd10_user_modified_spreadsheet_1 foreign key (mark_id) references tl_lasprd10_spreadsheet_mark (uid); + + + +INSERT INTO `tl_lasprd10_spreadsheet` (`uid`, `create_date`, `update_date`, `create_by`, `title`, `run_offline`, `is_learner_allowed_to_save`, + `is_marking_enabled`, `lock_on_finished`, `instructions`, `code`, `online_instructions`, `offline_instructions`, `content_in_use`, `define_later`, + `content_id`, `reflect_on_activity`) VALUES + (1,NULL,NULL,NULL,'Spreadsheet','0','1','0','0','Instructions ','',null,null,0,0,${default_content_id},0); + +SET FOREIGN_KEY_CHECKS=1; Index: debian_installer/lams2/lams_tool_spreadsheet/sql/db_version_insert.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_spreadsheet/sql/db_version_insert.sql (revision 0) +++ debian_installer/lams2/lams_tool_spreadsheet/sql/db_version_insert.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,2 @@ +-- $Id$ +INSERT INTO patches VALUES ('lasprd10', '20080612', NOW(), 'F'); \ No newline at end of file Index: debian_installer/lams2/lams_tool_spreadsheet/sql/drop_lams_tool_spreadsheet.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_spreadsheet/sql/drop_lams_tool_spreadsheet.sql (revision 0) +++ debian_installer/lams2/lams_tool_spreadsheet/sql/drop_lams_tool_spreadsheet.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,13 @@ +SET FOREIGN_KEY_CHECKS=0; +drop table if exists tl_lasprd10_attachment; +drop table if exists tl_lasprd10_spreadsheet; +drop table if exists tl_lasprd10_user_modified_spreadsheet; +drop table if exists tl_lasprd10_spreadsheet_mark; +drop table if exists tl_lasprd10_session; +drop table if exists tl_lasprd10_user; +SET FOREIGN_KEY_CHECKS=1; + + + + + Index: debian_installer/lams2/lams_tool_spreadsheet/sql/library_insert.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_spreadsheet/sql/library_insert.sql (revision 0) +++ debian_installer/lams2/lams_tool_spreadsheet/sql/library_insert.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -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 +( +'Spreadsheet Tool', +'Spreadsheet', +0, +NOW() +) Index: debian_installer/lams2/lams_tool_spreadsheet/sql/tool_insert.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_spreadsheet/sql/tool_insert.sql (revision 0) +++ debian_installer/lams2/lams_tool_spreadsheet/sql/tool_insert.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,64 @@ +# 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 +) +VALUES +( +'lasprd10', +'spreadsheetService', +'Spreadsheet Tool', +'Spreadsheet Tool', +'spreadsheet', +'20080612', +NULL, +NULL, +0, +2, +1, +'tool/lasprd10/learning/start.do?mode=learner', +'tool/lasprd10/learning/start.do?mode=author', +'tool/lasprd10/learning/start.do?mode=teacher', +'tool/lasprd10/authoring/start.do', +'tool/lasprd10/monitoring/summary.do', +'tool/lasprd10/definelater.do', +'tool/lasprd10/exportPortfolio?mode=learner', +'tool/lasprd10/exportPortfolio?mode=teacher', +'tool/lasprd10/contribute.do', +'tool/lasprd10/moderate.do', +'http://wiki.lamsfoundation.org/display/lamsdocs/lasprd10', +'org.lamsfoundation.lams.tool.spreadsheet.ApplicationResources', +'lams-tool-lasprd10.jar', +'/org/lamsfoundation/lams/tool/spreadsheet/spreadsheetApplicationContext.xml', +NOW(), +NOW() +) Index: debian_installer/lams2/lams_tool_spreadsheet/sql/updatescripts/updateTo20070227.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_spreadsheet/sql/updatescripts/updateTo20070227.sql (revision 0) +++ debian_installer/lams2/lams_tool_spreadsheet/sql/updatescripts/updateTo20070227.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,4 @@ +-- Update the Spreadsheet tables to 20070227 +-- This is for the LAMS 2.0.1 release. + +UPDATE lams_tool set modified_date_time = now(), classpath_addition = 'lams-tool-lasprd10.jar', context_file = '/org/lamsfoundation/lams/tool/spreadsheet/spreadsheetApplicationContext.xml' where tool_signature = 'lasprd10'; Index: debian_installer/lams2/lams_tool_spreadsheet/sql/updatescripts/updateTo20080229.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_spreadsheet/sql/updatescripts/updateTo20080229.sql (revision 0) +++ debian_installer/lams2/lams_tool_spreadsheet/sql/updatescripts/updateTo20080229.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,23 @@ +-- LDEV1511 make tables InnoDB +ALTER TABLE tl_lasprd10_attachment ENGINE=InnoDB; +ALTER TABLE tl_lasprd10_item_instruction ENGINE=InnoDB; +ALTER TABLE tl_lasprd10_item_log ENGINE=InnoDB; +ALTER TABLE tl_lasprd10_spreadsheet ENGINE=InnoDB; +ALTER TABLE tl_lasprd10_spreadsheet_item ENGINE=InnoDB; +ALTER TABLE tl_lasprd10_session ENGINE=InnoDB; +ALTER TABLE tl_lasprd10_user ENGINE=InnoDB; + +alter table tl_lasprd10_attachment add constraint FK_NEW_2065267438_1E7009430E79035 foreign key (spreadsheet_uid) references tl_lasprd10_spreadsheet (uid); +alter table tl_lasprd10_item_instruction add constraint FK_NEW_2065267438_A5665013980570ED foreign key (item_uid) references tl_lasprd10_spreadsheet_item (uid); +alter table tl_lasprd10_spreadsheet add constraint FK_NEW_2065267438_89093BF758092FB foreign key (create_by) references tl_lasprd10_user (uid); +alter table tl_lasprd10_spreadsheet_item add constraint FK_NEW_2065267438_F52D1F93758092FB foreign key (create_by) references tl_lasprd10_user (uid); +alter table tl_lasprd10_spreadsheet_item add constraint FK_NEW_2065267438_F52D1F9330E79035 foreign key (spreadsheet_uid) references tl_lasprd10_spreadsheet (uid); +alter table tl_lasprd10_spreadsheet_item add constraint FK_NEW_2065267438_F52D1F93EC0D3147 foreign key (session_uid) references tl_lasprd10_session (uid); +alter table tl_lasprd10_item_log add constraint FK_NEW_2065267438_693580A438BF8DFE foreign key (spreadsheet_item_uid) references tl_lasprd10_spreadsheet_item (uid); +alter table tl_lasprd10_item_log add constraint FK_NEW_2065267438_693580A441F9365D foreign key (user_uid) references tl_lasprd10_user (uid); +alter table tl_lasprd10_session add constraint FK_NEW_2065267438_24AA78C530E79035 foreign key (spreadsheet_uid) references tl_lasprd10_spreadsheet (uid); +alter table tl_lasprd10_user add constraint FK_NEW_2065267438_30113BFCEC0D3147 foreign key (session_uid) references tl_lasprd10_session (uid); +alter table tl_lasprd10_user add constraint FK_NEW_2065267438_30113BFC309ED320 foreign key (spreadsheet_uid) references tl_lasprd10_spreadsheet (uid); + +UPDATE lams_tool SET modified_date_time = NOW() WHERE tool_signature = "lasprd10"; +UPDATE lams_tool SET tool_version = "20080229" WHERE tool_signature = "lasprd10"; Index: debian_installer/lams2/lams_tool_wiki/deploy.bat =================================================================== diff -u --- debian_installer/lams2/lams_tool_wiki/deploy.bat (revision 0) +++ debian_installer/lams2/lams_tool_wiki/deploy.bat (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -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_wiki/deploy.sh =================================================================== diff -u --- debian_installer/lams2/lams_tool_wiki/deploy.sh (revision 0) +++ debian_installer/lams2/lams_tool_wiki/deploy.sh (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -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_wiki/deploy.xml =================================================================== diff -u --- debian_installer/lams2/lams_tool_wiki/deploy.xml (revision 0) +++ debian_installer/lams2/lams_tool_wiki/deploy.xml (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,34 @@ + + lawiki10 + lams-tool-lawiki10.war + /lams/tool/lawiki10 + /usr/share/lams2/lams_tool_wiki/sql/updateTo20080929.sql + /usr/share/lams2/lams_tool_wiki/sql/tool_insert.sql + /usr/share/lams2/lams_tool_wiki/sql/library_insert.sql + false + /usr/share/lams2/lams_tool_wiki/sql/activity_insert.sql + /usr/share/lams2/lams_tool_wiki/sql/create_lams_tool_wiki.sql + /usr/share/lams2/lams_tool_wiki/sql/drop_lams_tool_wiki.sql + /usr/share/lams2/lams_tool_wiki/sql/db_version_insert.sql + /org/lamsfoundation/lams/tool/wiki/wikiApplicationContext.xml + lams-tool-lawiki10.jar + 2.0 + + /usr/share/lams2/lams_tool_wiki/lams-tool-lawiki10.war + /usr/share/lams2/lams_tool_wiki/lams-tool-lawiki10.jar + + + /usr/share/lams2/lams_tool_wiki/language/ApplicationResources.properties + /usr/share/lams2/lams_tool_wiki/language/ApplicationResources_el_GR.properties + /usr/share/lams2/lams_tool_wiki/language/ApplicationResources_en_AU.properties + /usr/share/lams2/lams_tool_wiki/language/ApplicationResources_es_ES.properties + /usr/share/lams2/lams_tool_wiki/language/ApplicationResources_no_NO.properties + + 20080929 + com.mysql.jdbc.Driver + jdbc:mysql://localhost/lams_head?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&autoReconnect=true&useUnicode=true + lams + lamsdemo + /usr/share/jboss-4.0.2/server/default/deploy/lams.ear + org.lamsfoundation.lams.tool.wiki + Index: debian_installer/lams2/lams_tool_wiki/lams-tool-lawiki10.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_wiki/lams-tool-lawiki10.war =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_wiki/language/ApplicationResources.properties =================================================================== diff -u --- debian_installer/lams2/lams_tool_wiki/language/ApplicationResources.properties (revision 0) +++ debian_installer/lams2/lams_tool_wiki/language/ApplicationResources.properties (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,162 @@ +appName = wiki +#language code: en +#locale code: AU + + # CVS ID: $Id$ Exported from the LAMS Community by Ernie Ghiglione on Tue Nov 25 00:25:39 GMT 2008 + +#=================== labels for Wiki =================# + +label.authoring.basic.wikipagevisible =Allow editing of this page +appName =wiki +error.contentrepository =An error has occurred when saving/deleting instruction file {0}. The files may not be saved correctly. +button.instructions =Instructions +instructions.uploadOfflineInstr =Offline Instructions File: +instructions.uploadOnlineInstr =Online Instructions File: +instructions.offlineInstructions =Offline Instructions: +instructions.onlineInstructions =Online Instructions: +activity.helptext =Wiki tool for creating wiki pages +error.content.locked =The content has been locked since it is being used by one or more learners. The modification of the content is not allowed. +tool.display.name =Wiki +tool.description =Wiki Tool +activity.title =Wiki +activity.description =Wiki Tool +pageTitle.authoring =Wiki Authoring +button.basic =Basic +button.advanced =Advanced +button.upload =Upload +button.continue =Continue +button.edit =Edit +label.authoring.basic.title =Title: +label.authoring.basic.content =Content: +advanced.lockOnFinished =Lock when finished +advanced.allowLearnerCreatePages =Allow learners to create new Wiki pages +advanced.allowLearnerInsertLinks =Allow learners to insert external links into Wiki +advanced.allowLearnerAttachImages =Allow learners to attach images to Wiki +advanced.notifyChange =Send email notification to monitors when the Wiki is changed +advanced.reflectOnActivity =Add Notebook at end of Wiki with the following instructions: +message.no.reflection.available =No notebook available +advanced.editingLimits =Editing Limits +advanced.editingLimits.prompt =Number of times a learner can edit a page +advanced.editingLimits.minimum =Minimum: +advanced.editingLimits.maximum =Maximum: +advanced.editingLimits.nominimum =No minimum +advanced.editingLimits.nomaximum =No maximum +advanced.editingLimits.error =Maximum edits must be larger or equal to minimum. +instructions.type.online =Online +instructions.type.offline =Offline +label.filename =Filename +label.type =Type +label.attachments =Attachments +link.view =View +link.download =Download +link.delete =Delete +message.updateSuccess =Changes saved +message.unsavedChanges =Page contains unsaved changes +pageTitle.learning =Wiki +message.defineLaterSet =Please wait for the teacher to complete the contents of this activity +message.runOfflineSet =This activity is not being done on the computer. Please see your instructor for details. +pageTitle.monitoring =Wiki Monitoring +button.summary =Summary +button.editActivity =Edit Activity +button.statistics =Statistics +titleHeading.summary =Summary +titleHeading.statistics =Statistics +titleHeading.editActivity =Edit Activity +titleHeading.exportPortfolio =Export Portfolio +heading.group =Group {0}: +heading.totalLearners =Number of Learners: +heading.totalLearnersInGroup =Total Number of Learners in Group: +heading.totalFinishedLearnersInGroup =Number of Finished Learners: +message.summary =There is no summary available for this tool. +label.view =View +label.notAvailable =Not Available +heading.learner =Learner +heading.notebookEntry =Notebook Entry +button.cancel =Cancel +button.close =Close +button.ok =OK +button.done =Done +button.save =Save +button.next =Next +label.created =Created +label.lastModified =Last modified +label.notebookEntry =Notebook entry +error.missingParam =Unable to continue. {0} is missing. +error.exceedMaxFileSize =File size exceeded +error.exception.NbApplication =An internal error has occurred with the Wiki Tool. If reporting this error, please report:
{0} +error.defineLater =Sorry, the activity is not ready yet. Please wait for the teacher to finishing defining the activity. +errors.maxfilesize =The uploaded file has exceeded the maximum file size limit of {0} bytes +error.mandatoryField ={0} field is mandatory. +error.mark.invalid.number ={0} field must be a valid number. Decimal points are not allowed. +error.mark.invalid.decimal.number ={0} field must be a valid decimal number. +authoring.msg.cancel.save =Do you want to close this window without saving? +button.try.again =Try Again +message.learner.blank.input =You have not written anything. Are you sure this is correct? +button.finish =Next Activity +message.warnLockOnFinish =Note: After you click on "Next Activity" and you come back to this Wiki, you won't be able to continue editing. +message.activityLocked =The instructor has set this activity not to allow editing after you have finished it. As you are returning to this Wiki, you are able to see your Wiki but not allowed to edit it. +message.minumumEditsNotReached =Note: You have not yet reached the required number of edits, you must complete {0} edits before continuing to the next activity. +message.warnMaxEdits =Note: You are only allowed to do {0} more edits before this Wiki will be locked. After that you wont be able to continue editing. +message.maxEditsReached =You have reached the maximum number of edits for this Wiki activity so it has been locked. +message.pageNotEditable =This page has been set to locked by your instructor, so you cannot edit it. +titleHeading.instructions =Instructions +label.authoring.basic.instructions =Instructions: +label.wiki.body =Wiki Body +label.wiki.edit =Edit +label.wiki.edit.toolTip =Edit the current Wiki page +label.wiki.add =Add +label.wiki.add.toolTip =Add a new Wiki page to this Wiki +label.wiki.add.title.exists =A Wiki page with title "{0}" already exists, please choose a different title. +label.wiki.add.title.required =A title is required for the Wiki page. +label.wiki.last.edit =Last edited by {0}, at {1} +label.wiki.refresh =Refresh +label.wiki.refresh.toolTip =Refresh the page to get the current content +label.wiki.view =View +label.wiki.view.toolTip =View this Wiki page +label.wiki.remove =Remove +label.wiki.remove.toolTip =Remove this Wiki page +label.wiki.pages =Wiki Pages +label.wiki.savechanges =Save changes +label.wiki.remove.confirm =Are you sure you want to delete this Wiki page? This action cannot be undone. +label.wiki.history =History +label.wiki.history.toolTip =View previous versions of this Wiki page +label.wiki.history.version =Version +label.wiki.history.empty =There are no previous versions of this Wiki page. +label.wiki.history.date =Edit Date +label.wiki.history.editor =Edit By +label.wiki.history.editor.author =Author +label.wiki.history.actions =Actions +label.wiki.history.actions.revert =Revert +label.wiki.history.actions.revert.tooltip =Revert back to this version +label.wiki.history.actions.compare =Compare +label.wiki.history.actions.view =View +label.wiki.history.actions.view.tooltip =View page version +label.wiki.history.actions.compare.tooltip =Compare current version to this version +label.wiki.compare =Comparing versions {0} +label.wiki.compare.added.line =Added lines +label.wiki.compare.removed.line =Removed lines +label.on =On +label.off =Off +monitor.summary.th.advancedSettings =Advanced Settings +monitor.th.sessions =Wiki Sessions +monitor.th.numlearners =Number of Learners +monitor.summary.td.addNotebook =Add Notebook at end of Wiki +monitor.summary.td.notebookInstructions =Notebook instructions +monitor.nosessions =There are no sessions running yet for this Wiki. +monitor.notebooks =Notebook Reflections +output.learner.number.of.edits =Number of page edits +output.learner.number.of.add =Number of pages added +notify.pageEdited.subject =LAMS Wiki page has been edited for {0}. +notify.pageAdded.subject =LAMS Wiki page has been added for {0}. +notify.pageRemoved.subject =LAMS Wiki page has been removed for {0}. +notify.pageEdited.body =A Wiki page has been edited by {0} for {1}. To see the page, go to {2} +notify.pageAdded.body =A Wiki page has been added by {0} for {1}. To see the page, go to {2} +notify.pageRemoved.body =A Wiki page has been removed by {0} for {1}. To see the Wiki, go to {2} +notify.learner.subscribe =Subscribe +notify.learner.unsubscribe =Unsubscribe +notify.learner.query ={0} to notifications by email each time the Wiki is edited. +message.contentInUseSet =Modification of content is not allowed since one or more learners has attempted the activity. +message.alertContentEdit =Warning: One of more learners have accessed this activity. Changing this content will result in learners getting different information. + + +#======= End labels: Exported 151 labels for en AU ===== Index: debian_installer/lams2/lams_tool_wiki/language/ApplicationResources_el_GR.properties =================================================================== diff -u --- debian_installer/lams2/lams_tool_wiki/language/ApplicationResources_el_GR.properties (revision 0) +++ debian_installer/lams2/lams_tool_wiki/language/ApplicationResources_el_GR.properties (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,162 @@ +appName = wiki +#language code: el +#locale code: GR + + # CVS ID: $Id$ Exported from the LAMS Community by Ernie Ghiglione on Mon Dec 01 22:21:59 GMT 2008 + +#=================== labels for Wiki =================# + +advanced.allowLearnerCreatePages =\u039f\u03b9 \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03b9 \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03bf\u03cd\u03bd \u03bd\u03ad\u03b5\u03c2 \u03c3\u03b5\u03bb\u03af\u03b4\u03b5\u03c2 Wiki +advanced.allowLearnerInsertLinks =\u039f\u03b9 \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03b9 \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03b9\u03c3\u03ac\u03b3\u03bf\u03c5\u03bd \u03b5\u03be\u03c9\u03c4\u03b5\u03c1\u03b9\u03ba\u03bf\u03cd\u03c2 \u03c3\u03c5\u03bd\u03b4\u03ad\u03c3\u03bc\u03bf\u03c5\u03c2 \u03c3\u03c4\u03bf Wiki +advanced.allowLearnerAttachImages =\u039f\u03b9 \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03b9 \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03c0\u03b9\u03c3\u03c5\u03bd\u03ac\u03c0\u03c4\u03bf\u03c5\u03bd \u03b5\u03b9\u03ba\u03cc\u03bd\u03b5\u03c2 \u03c3\u03c4\u03bf Wiki +pageTitle.monitoring =\u0395\u03c0\u03bf\u03c0\u03c4\u03b5\u03af\u03b1 Wiki +message.runOfflineSet =\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 \u03b5\u03c0\u03bf\u03c0\u03c4\u03b7 \u03c3\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03bb\u03b5\u03c0\u03c4\u03bf\u03bc\u03ad\u03c1\u03b5\u03b9\u03b5\u03c2. +label.authoring.basic.title =\u03a4\u03af\u03c4\u03bb\u03bf\u03c2 +button.save =\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 +label.wiki.add.title.required =\u039f \u03c4\u03af\u03c4\u03bb\u03bf\u03c2 \u03b1\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 Wiki. +label.wiki.savechanges =\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ce\u03bd +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; +advanced.notifyChange =\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae \u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2 \u03bc\u03b5 e-mail \u03c3\u03c4\u03bf\u03c5\u03c2 \u03b5\u03c0\u03cc\u03c0\u03c4\u03b5\u03c2 \u03cc\u03c4\u03b1\u03bd \u03b3\u03af\u03bd\u03b5\u03c4\u03b1\u03b9 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ae \u03c3\u03c4\u03bf Wiki +error.contentrepository =\u0388\u03bd\u03b1 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03c0\u03b1\u03c1\u03bf\u03c5\u03c3\u03b9\u03ac\u03c3\u03c4\u03b7\u03ba\u03b5 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7/\u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 \u03bf\u03b4\u03b7\u03b3\u03b9\u03ce\u03bd {0}. \u03a4\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03b8\u03bf\u03cd\u03bd \u03c3\u03c9\u03c3\u03c4\u03ac. +label.wiki.add.title.exists =\u039c\u03b9\u03b1 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 Wiki \u03bc\u03b5 \u03c4\u03af\u03c4\u03bb\u03bf "{0}" \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03ae\u03b4\u03b7, \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03b5\u03c4\u03b9\u03ba\u03cc \u03c4\u03af\u03c4\u03bb\u03bf. +notify.learner.subscribe =\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae +notify.pageAdded.subject =\u0397 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 LAMS Wiki \u03ad\u03c7\u03b5\u03b9 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03b5\u03af \u03b3\u03b9\u03b1 {0} +notify.pageRemoved.subject =\u0397 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 LAMS Wiki \u03ad\u03c7\u03b5\u03b9 \u03b1\u03c6\u03b1\u03b9\u03c1\u03b5\u03b8\u03b5\u03af \u03b3\u03b9\u03b1 {0} +notify.learner.unsubscribe =\u039c\u03b7 \u0395\u03b3\u03b3\u03b5\u03b3\u03c1\u03b1\u03bc\u03ad\u03bd\u03bf\u03c2 +notify.learner.query ={0} \u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9\u03c2 \u03bc\u03ad\u03c3\u03c9 email \u03b3\u03b9\u03b1 \u03ba\u03ac\u03b8\u03b5 \u03c6\u03bf\u03c1\u03ac \u03c0\u03bf\u03c5 \u03c3\u03c4\u03bf Wiki \u03ad\u03b3\u03b9\u03bd\u03b5 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1. +notify.pageEdited.body =\u039c\u03af\u03b1 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 Wiki \u03ad\u03c7\u03b5\u03b9 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03b5\u03af \u03b1\u03c0\u03cc {0} \u03b3\u03b9\u03b1 {1} . \u0393\u03b9\u03b1 \u03bd\u03b1 \u03b4\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf Wiki, \u03c0\u03b7\u03b3\u03b1\u03af\u03bd\u03b5\u03c4\u03b5 \u03c3\u03c4\u03bf {2} +label.authoring.basic.instructions =\u039f\u03b4\u03b7\u03b3\u03af\u03b5\u03c2: +label.wiki.body =\u03a3\u03ce\u03bc\u03b1 Wiki +notify.pageAdded.body =\u039c\u03af\u03b1 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 Wiki \u03ad\u03c7\u03b5\u03b9 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03b5\u03af \u03b1\u03c0\u03cc {0} \u03b3\u03b9\u03b1 {1} . \u0393\u03b9\u03b1 \u03bd\u03b1 \u03b4\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf Wiki, \u03c0\u03b7\u03b3\u03b1\u03af\u03bd\u03b5\u03c4\u03b5 \u03c3\u03c4\u03bf {2} +notify.pageRemoved.body =\u039c\u03af\u03b1 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 Wiki \u03ad\u03c7\u03b5\u03b9 \u03b1\u03c6\u03b1\u03b9\u03c1\u03b5\u03b8\u03b5\u03af \u03b1\u03c0\u03cc {0} \u03b3\u03b9\u03b1 {1} . \u0393\u03b9\u03b1 \u03bd\u03b1 \u03b4\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf Wiki, \u03c0\u03b7\u03b3\u03b1\u03af\u03bd\u03b5\u03c4\u03b5 \u03c3\u03c4\u03bf {2} +label.wiki.edit =\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 +label.wiki.add =\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c3\u03b5 +label.wiki.edit.toolTip =\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03c4\u03b7\u03c2 \u03c4\u03c1\u03ad\u03c7\u03bf\u03c5\u03c3\u03b1\u03c2 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1\u03c2 wiki +label.wiki.last.edit ={0} {1} +message.warnMaxEdits =\u03a3\u03b7\u03bc\u03b5\u03af\u03c9\u03c3\u03b7: \u0395\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03ba\u03ac\u03bd\u03b5\u03c4\u03b5 \u03bc\u03cc\u03bd\u03bf {0} \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03c0\u03c1\u03b9\u03bd \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf wiki \u03bd\u03b1 \u03ba\u03bb\u03b5\u03b9\u03b4\u03c9\u03b8\u03b5\u03af. \u039c\u03b5\u03c4\u03ac \u03b1\u03c0\u03cc \u03b1\u03c5\u03c4\u03cc \u03b4\u03b5\u03bd \u03b8\u03b1 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03c3\u03c5\u03bd\u03b5\u03c7\u03af\u03c3\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1. +message.maxEditsReached =\u0388\u03c7\u03b5\u03c4\u03b5 \u03c6\u03c4\u03ac\u03c3\u03b5\u03b9 \u03c3\u03c4\u03bf \u03bc\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc \u03c4\u03c9\u03bd \u03b5\u03c0\u03b9\u03c4\u03c1\u03b5\u03c0\u03cc\u03bc\u03b5\u03bd\u03c9\u03bd \u03b1\u03bb\u03bb\u03b1\u03b3\u03ce\u03bd \u03c3\u03c4\u03bf Wiki \u03b1\u03c5\u03c4\u03ae\u03c2 \u03c4\u03b7\u03c2 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 \u03ad\u03c4\u03c3\u03b9 \u03b1\u03c5\u03c4\u03cc \u03ad\u03c7\u03b5\u03b9 \u03ba\u03bb\u03b5\u03b9\u03b4\u03c9\u03b8\u03b5\u03af. +message.pageNotEditable =\u0397 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 \u03b1\u03c5\u03c4\u03ae \u03ad\u03c7\u03b5\u03b9 \u03bf\u03c1\u03b9\u03c3\u03c4\u03b5\u03af \u03bd\u03b1 \u03ba\u03bb\u03b5\u03b9\u03b4\u03c9\u03b8\u03b5\u03af \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03c4\u03ae, \u03bf\u03c0\u03cc\u03c4\u03b5 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03c4\u03b7\u03bd \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03b5\u03af\u03c4\u03b5. +titleHeading.instructions =\u039f\u03b4\u03b7\u03b3\u03af\u03b5\u03c2 +label.wiki.add.toolTip =\u03a0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03bd\u03ad\u03b1 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 Wiki \u03c3\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf Wiki +label.wiki.refresh =\u0391\u03bd\u03b1\u03bd\u03ad\u03c9\u03c3\u03b7 +label.wiki.refresh.toolTip =A +label.wiki.view =\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae +label.wiki.view.toolTip =\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b1\u03c5\u03c4\u03ae\u03c2 \u03c4\u03b7\u03c2 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1\u03c2 Wiki +label.wiki.remove =\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae +label.wiki.remove.toolTip =\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b1\u03c5\u03c4\u03ae\u03c2 \u03c4\u03b7\u03c2 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1\u03c2 Wiki +label.wiki.history.empty =\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03c5\u03bd \u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03b5\u03c2 \u03b5\u03ba\u03b4\u03cc\u03c3\u03b5\u03b9\u03c2 \u03b1\u03c5\u03c4\u03ae\u03c2 \u03c4\u03b7\u03c2 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1\u03c2 Wiki. +label.wiki.remove.confirm =\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9 \u03cc\u03c4\u03b9 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 wiki; \u0391\u03c5\u03c4\u03ae \u03b7 \u03b5\u03bd\u03ad\u03c1\u03b3\u03b5\u03b9\u03b1 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b1\u03bd\u03b1\u03b9\u03c1\u03b5\u03b8\u03b5\u03af. +label.wiki.pages =\u03a3\u03b5\u03bb\u03af\u03b4\u03b5\u03c2 Wiki +label.wiki.history =\u0399\u03c3\u03c4\u03bf\u03c1\u03af\u03b1 +label.wiki.history.toolTip =\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03c4\u03c9\u03bd \u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03c9\u03bd \u03b5\u03ba\u03b4\u03cc\u03c3\u03b5\u03c9\u03bd \u03b1\u03c5\u03c4\u03ae\u03c2 \u03c4\u03b7\u03c2 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1\u03c2 Wiki +label.wiki.history.version =\u0388\u03ba\u03b4\u03bf\u03c3\u03b7 +label.wiki.history.date =\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1\u03c2 +label.wiki.history.editor =\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03b1\u03c0\u03cc +label.wiki.history.editor.author =\u03a3\u03c5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ad\u03b1\u03c2 +label.wiki.history.actions =\u03a0\u03c1\u03ac\u03be\u03b5\u03b9\u03c2 +label.wiki.history.actions.revert =\u0395\u03c0\u03b1\u03bd\u03ad\u03c6\u03b5\u03c1\u03b5 +label.wiki.history.actions.revert.tooltip =\u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03c0\u03af\u03c3\u03c9 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7\u03bd \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 +error.mark.invalid.number ={0} +label.wiki.history.actions.compare =\u03a3\u03cd\u03b3\u03ba\u03c1\u03b9\u03bd\u03b5 +label.wiki.history.actions.view =\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae +label.wiki.history.actions.view.tooltip =\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7\u03c2 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1\u03c2 +monitor.th.sessions =\u03a3\u03c5\u03bd\u03b5\u03b4\u03c1\u03af\u03b5\u03c2 \u03bc\u03b5 Wiki +label.wiki.history.actions.compare.tooltip =\u03a3\u03cd\u03b3\u03ba\u03c1\u03b9\u03bd\u03b5 \u03c4\u03b7\u03bd \u03c4\u03c1\u03ad\u03c7\u03bf\u03c5\u03c3\u03b1 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 \u03bc\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7\u03bd \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 +label.wiki.compare =\u03a3\u03cd\u03b3\u03ba\u03c1\u03b9\u03c3\u03b7 \u03b5\u03ba\u03b4\u03cc\u03c3\u03b5\u03c9\u03bd {0} +button.finish =\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u0394\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 +label.wiki.compare.added.line =\u03a0\u03c1\u03bf\u03c3\u03c4\u03ad\u03b8\u03b7\u03ba\u03b1\u03bd \u03b3\u03c1\u03b1\u03bc\u03bc\u03ad\u03c2 +label.wiki.compare.removed.line =\u0394\u03b9\u03b1\u03b3\u03c1\u03ac\u03c6\u03b7\u03ba\u03b1\u03bd \u03b3\u03c1\u03b1\u03bc\u03bc\u03ad\u03c2 +label.on =\u0391\u03bd\u03bf\u03b9\u03ba\u03c4\u03cc +label.off =\u039a\u03bb\u03b5\u03b9\u03c3\u03c4\u03cc +error.mark.invalid.decimal.number ={0} +monitor.th.numlearners =\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c4\u03c9\u03bd \u0395\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd +monitor.summary.td.addNotebook =\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03a3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03b1\u03c1\u03af\u03bf\u03c5 \u03c3\u03c4\u03bf \u03c4\u03ad\u03bb\u03bf\u03c2 \u03c4\u03bf\u03c5 Wiki +monitor.summary.td.notebookInstructions =\u039f\u03b4\u03b7\u03b3\u03af\u03b5\u03c2 \u03a3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03b1\u03c1\u03af\u03bf\u03c5 +monitor.nosessions =\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03ba\u03b1\u03bc\u03bc\u03af\u03b1 \u03c3\u03c5\u03bd\u03b5\u03b4\u03c1\u03af\u03b1 \u03c0\u03bf\u03c5 \u03bd\u03b1 \u03c4\u03c1\u03ad\u03c7\u03b5\u03b9 \u03b1\u03ba\u03cc\u03bc\u03b7 \u03b3\u03b9\u03b1 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf Wiki +monitor.notebooks =\u0391\u03bd\u03b1\u03c4\u03c1\u03bf\u03c6\u03bf\u03b4\u03bf\u03c4\u03ae\u03c3\u03b5\u03b9\u03c2 \u03a3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03b1\u03c1\u03af\u03bf\u03c5 +output.learner.number.of.edits =\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c3\u03b5\u03bb\u03b9\u03b4\u03c9\u03bd \u03c0\u03bf\u03c5 \u03b1\u03bb\u03bb\u03ac\u03c7\u03b8\u03b7\u03ba\u03b1\u03bd +output.learner.number.of.add =\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c3\u03b5\u03bb\u03af\u03b4\u03c9\u03bd \u03c0\u03bf\u03c5 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03b8\u03b7\u03ba\u03b1\u03bd +notify.pageEdited.subject = \u0391\u03c5\u03c4\u03ae \u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1\u03c4\u03bf\u03c5 LAMS Wiki \u03ad\u03c7\u03b5\u03b9 \u03c5\u03c0\u03bf\u03c3\u03c4\u03b5\u03af \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03b3\u03b9\u03b1 {0} \u03c6\u03bf\u03c1\u03ad\u03c2. +message.defineLaterSet =\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 \u03bd\u03b1 \u03c3\u03c5\u03bc\u03c0\u03bb\u03b7\u03c1\u03ce\u03c3\u03b5\u03b9 \u03c4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03c4\u03b7\u03c2 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 +button.summary =\u03a3\u03cd\u03bd\u03bf\u03c8\u03b7 +button.editActivity =\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 +button.statistics =\u03a3\u03c4\u03b1\u03c4\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac +titleHeading.summary =\u03a3\u03cd\u03bd\u03bf\u03c8\u03b7 +titleHeading.statistics =\u03a3\u03c4\u03b1\u03c4\u03b9\u03c3\u03c4\u03b9\u03ba\u03ac +titleHeading.editActivity =\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af \u0394\u03c1\u03b1\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 +titleHeading.exportPortfolio =\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae \u03a6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 \u0395\u03c1\u03b3\u03b1\u03c3\u03b9\u03ce\u03bd +heading.group =\u039f\u03bc\u03ac\u03b4\u03b1 {0}: +button.try.again =\u03a0\u03c1\u03bf\u03c3\u03c0\u03ac\u03b8\u03b7\u03c3\u03b5 \u03be\u03b1\u03bd\u03ac +heading.totalLearners =\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u0395\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd +heading.totalLearnersInGroup =\u03a3\u03c5\u03bd\u03bf\u03bb\u03b9\u03ba\u03cc\u03c2 \u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u0395\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c3\u03c4\u03b7\u03bd \u039f\u03bc\u03ac\u03b4\u03b1: +heading.totalFinishedLearnersInGroup =\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u0395\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c0\u03bf\u03c5 \u03ad\u03c7\u03bf\u03c5\u03bd \u03c4\u03b5\u03bb\u03b5\u03b9\u03ce\u03c3\u03b5\u03b9: +message.summary =\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7 \u03c0\u03b5\u03c1\u03af\u03bb\u03b7\u03c8\u03b7 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf \u03b1\u03c5\u03c4\u03cc. +label.view =\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae +label.notAvailable =\u039c\u03b7 \u0394\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03bf +heading.learner =\u0395\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 +heading.notebookEntry =\u039a\u03b1\u03c4\u03b1\u03c7\u03ce\u03c1\u03b7\u03c3\u03b7 \u03a3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03b1\u03c1\u03af\u03bf\u03c5 +button.cancel =\u0386\u03ba\u03c5\u03c1\u03bf +button.close =\u039a\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf +button.ok =\u0395\u03bd\u03c4\u03ac\u03be\u03b5\u03b9 +button.done =\u0388\u03b3\u03b9\u03bd\u03b5 +button.next =\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf +label.created =\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5 +label.lastModified =\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03c4\u03c1\u03bf\u03c0\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 +label.notebookEntry =\u039a\u03b1\u03c4\u03b1\u03c7\u03ce\u03c1\u03b7\u03c3\u03b7 \u03a3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03b1\u03c1\u03af\u03bf\u03c5 +error.missingParam =\u0391\u03b4\u03c5\u03bd\u03b1\u03c4\u03b5\u03af \u03bd\u03b1 \u03c3\u03c5\u03bd\u03b5\u03c7\u03af\u03c3\u03b5\u03b9. \u03a4\u03bf {0} \u03bb\u03b5\u03af\u03c0\u03b5\u03b9. +error.exceedMaxFileSize =\u03a4\u03bf \u03bc\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 \u03ad\u03c7\u03b5\u03b9 \u03c5\u03c0\u03b5\u03c1\u03b2\u03b5\u03af \u03c4\u03bf \u03cc\u03c1\u03b9\u03bf +error.mandatoryField =\u03a4\u03bf {0} \u03c0\u03b5\u03b4\u03af\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 \u03c5\u03c0\u03bf\u03c7\u03c1\u03b5\u03c9\u03c4\u03b9\u03ba\u03cc. +error.exception.NbApplication =\u03a0\u03b1\u03c1\u03bf\u03c5\u03c3\u03b9\u03ac\u03c3\u03c4\u03b7\u03ba\u03b5 \u03b5\u03c3\u03c9\u03c4\u03b5\u03c1\u03b9\u03ba\u03cc \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03bc\u03b5 \u03c4\u03bf Wiki Tool. \u0391\u03bd \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03ba\u03ac\u03bd\u03b5\u03c4\u03b5 \u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03c4\u03bf\u03c5\u03c2 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1\u03c4\u03bf\u03c2, \u03c0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b1\u03bd\u03b1\u03c6\u03ad\u03c1\u03b5\u03c4\u03b5: +error.defineLater =\u0394\u03c5\u03c3\u03c4\u03c5\u03c7\u03ce\u03c2, \u03b7 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03c4\u03bf\u03b9\u03bc\u03b7 \u03b1\u03ba\u03cc\u03bc\u03b1. \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 \u03bd\u03b1 \u03bf\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03c3\u03b5\u03b9 \u03c4\u03bf\u03bd \u03bf\u03c1\u03b9\u03c3\u03bc\u03cc \u03c4\u03b7\u03c2 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2. +errors.maxfilesize =\u03a4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03ad\u03c7\u03b5\u03b9 \u03c5\u03c0\u03b5\u03c1\u03b2\u03b5\u03af \u03c4\u03bf \u03bc\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf \u03cc\u03c1\u03b9\u03bf \u03bc\u03b5\u03b3\u03ad\u03b8\u03bf\u03c5\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 \u03c4\u03c9\u03bd {0} bytes +message.learner.blank.input =\u0394\u03b5\u03bd \u03ad\u03c7\u03b5\u03c4\u03b5 \u03b3\u03c1\u03ac\u03c8\u03b5\u03b9 \u03c4\u03af\u03c0\u03bf\u03c4\u03b1. \u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9 \u03cc\u03c4\u03b9 \u03b1\u03c5\u03c4\u03cc \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03bf \u03c3\u03c9\u03c3\u03c4\u03cc; +link.download =\u039b\u03ae\u03c8\u03b7 +message.alertContentEdit =\u03a0\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\u03bf\u03c5\u03bd \u03c0\u03c1\u03b1\u03b3\u03bc\u03b1\u03c4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1. \u0397 \u03c4\u03c1\u03bf\u03c0\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \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\u03bf\u03bc\u03b5\u03bd\u03bf\u03b9 \u03bd\u03b1 \u03bb\u03ac\u03b2\u03bf\u03c5\u03bd \u03b4\u03b9\u03b1\u03c6\u03bf\u03b5\u03c1\u03b5\u03c4\u03b9\u03ba\u03ad\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2. +message.warnLockOnFinish =\u03a3\u03b7\u03bc\u03b5\u03af\u03c9\u03c3\u03b7: \u0391\u03c6\u03bf\u03cd \u03ba\u03ac\u03bd\u03b5\u03c4\u03b5 \u03ba\u03bb\u03b9\u03ba \u03c3\u03c4\u03bf "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7" \u03ba\u03b1\u03b9 \u03b5\u03c0\u03b9\u03c3\u03c4\u03c1\u03ad\u03c8\u03b5\u03c4\u03b5 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf wiki, \u03b4\u03b5\u03bd \u03b8\u03b1 \u03bc\u03c0\u03bf\u03c1\u03ad\u03c3\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03c3\u03c5\u03bd\u03b5\u03c7\u03af\u03c3\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1. +message.activityLocked =\u039f \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03c4\u03ae\u03c2 \u03ad\u03c7\u03b5\u03b9 \u03bf\u03c1\u03af\u03c3\u03b5\u03b9 \u03b7 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 \u03b1\u03c5\u03c4\u03ae \u03bd\u03b1 \u03bc\u03b7\u03bd \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03b9 \u03c4\u03b7\u03bd \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1, \u03b1\u03c6\u03bf\u03cd \u03ad\u03c7\u03b5\u03b9 \u03bf\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03c9\u03b8\u03b5\u03af. \u038c\u03c4\u03b1\u03bd \u03b8\u03b1 \u03b5\u03c0\u03b9\u03c3\u03c4\u03c1\u03ad\u03c6\u03b5\u03c4\u03b5 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf Wiki, \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03b4\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf Wiki \u03b1\u03bb\u03bb\u03ac \u03b4\u03b5\u03bd \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03c4\u03bf \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03b5\u03af\u03c4\u03b5. +message.minumumEditsNotReached =\u03a3\u03b7\u03bc\u03b5\u03af\u03c9\u03c3\u03b7: \u0394\u03b5\u03bd \u03ad\u03c7\u03bf\u03c5\u03bd \u03b1\u03ba\u03cc\u03bc\u03b7 \u03b5\u03c0\u03b9\u03c4\u03cd\u03c7\u03b5\u03b9 \u03c4\u03bf\u03bd \u03b1\u03c0\u03b1\u03b9\u03c4\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc \u03c4\u03c9\u03bd \u03b1\u03bb\u03bb\u03b1\u03b3\u03ce\u03bd, \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c3\u03c5\u03bc\u03c0\u03bb\u03b7\u03c1\u03ce\u03c3\u03b5\u03c4\u03b5 {0} \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03c0\u03c1\u03b9\u03bd \u03c3\u03c5\u03bd\u03b5\u03c7\u03af\u03c3\u03b5\u03c4\u03b5 \u03c3\u03c4\u03b7\u03bd \u03b5\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1. +button.upload =\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae +button.continue =\u03a3\u03c5\u03bd\u03ad\u03c7\u03b9\u03c3\u03b5 +appName =wiki +button.instructions =\u039f\u03b4\u03b7\u03b3\u03af\u03b5\u03c2 +activity.helptext =\u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf \u0399\u03c3\u03c4\u03bf\u03c7\u03ce\u03c1\u03bf\u03c5 Wiki \u03b3\u03b9\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c3\u03b5\u03bb\u03af\u03b4\u03c9\u03bd wiki +message.contentInUseSet =\u0397 \u03c4\u03c1\u03bf\u03c0\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03b4\u03b5\u03bd \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c4\u03b7 \u03c3\u03c4\u03b9\u03b3\u03bc\u03ae \u03c0\u03bf\u03c5 \u03ad\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\u03bf\u03c5\u03bd \u03c0\u03c1\u03b1\u03b3\u03bc\u03b1\u03c4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9 \u03c4\u03b7 \u03b4\u03c1\u03b1\u03c3\u03c4\u03b7\u03c1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 +error.content.locked =\u03a4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03ad\u03c7\u03b5\u03b9 \u03ba\u03bb\u03b5\u03b9\u03b4\u03c9\u03b8\u03b5\u03af \u03b1\u03c0\u03cc \u03c4\u03b7 \u03c3\u03c4\u03b9\u03b3\u03bc\u03bc\u03ae \u03c0\u03bf\u03c5 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03b8\u03b7\u03ba\u03b5 \u03b1\u03c0\u03cc \u03ad\u03bd\u03b1\u03bd \u03ae \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03bf\u03c5\u03c2 \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03bf\u03bc\u03b5\u03bd\u03bf\u03c5\u03c2. \u0397 \u03c4\u03c1\u03bf\u03c0\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03b4\u03b5\u03bd \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03c4\u03b1\u03b9. +tool.display.name =Wiki +tool.description =\u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf Wiki +activity.title =\u0399\u03c3\u03c4\u03cc\u03c4\u03bf\u03c0\u03bf\u03c2 Wiki +activity.description =\u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf Wiki +pageTitle.authoring =\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 Wiki +button.edit =\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 +label.authoring.basic.content =\u03a0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf +label.authoring.basic.wikipagevisible =\u039a\u03ac\u03bd\u03b5 \u03c4\u03b9\u03c2 \u03c3\u03b5\u03bb\u03af\u03b4\u03b5\u03c2 Wiki \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03ac\u03c3\u03b9\u03bc\u03b5\u03c2 +advanced.lockOnFinished =\u039a\u03bb\u03b5\u03af\u03b4\u03c9\u03c3\u03b5 \u03cc\u03c4\u03b1\u03bd \u03ad\u03c7\u03b5\u03b9 \u03bf\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03c9\u03b8\u03b5\u03af +link.view =\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae +advanced.reflectOnActivity =\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03a3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03b1\u03c1\u03af\u03bf\u03c5 \u03c3\u03c4\u03bf \u03c4\u03ad\u03bb\u03bf\u03c2 \u03c4\u03bf\u03c5\u03c2 Wiki \u03bc\u03b5 \u03c4\u03b9\u03c2 \u03b1\u03ba\u03cc\u03bb\u03bf\u03c5\u03b8\u03b5\u03c2 \u03bf\u03b4\u03b7\u03b3\u03af\u03b5\u03c2 +message.no.reflection.available =\u0394\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03bf \u03c4\u03bf \u03c3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03b1\u03c4\u03ac\u03c1\u03b9\u03bf +advanced.editingLimits =\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u039f\u03c1\u03af\u03c9\u03bd +advanced.editingLimits.prompt =\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c6\u03bf\u03c1\u03ce\u03bd \u03c0\u03bf\u03c5 \u03bf \u03b5\u03ba\u03c0\u03b1\u03b9\u03b4\u03b5\u03c5\u03cc\u03bc\u03b5\u03bd\u03bf\u03c2 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03b5\u03af \u03bc\u03b9\u03b1 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 +advanced.editingLimits.minimum =\u0395\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf\u03c2: +advanced.editingLimits.maximum =\u039c\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf\u03c2: +advanced.editingLimits.nominimum =\u038c\u03c7\u03b9 \u03b5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf\u03c2 +advanced.editingLimits.nomaximum =\u039c\u03b7 \u039c\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf\u03c2 +advanced.editingLimits.error =\u039f \u039c\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf\u03c2 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c6\u03bf\u03c1\u03ce\u03bd \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf\u03c2 \u03ae \u03af\u03c3\u03bf\u03c2 \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03b5\u03bb\u03ac\u03c7\u03b9\u03c3\u03c4\u03bf. +instructions.type.online =\u03a3\u03b5 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 +instructions.type.offline =\u03a7\u03c9\u03c1\u03af\u03c2 \u0391\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03a3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 +label.filename =\u038c\u03bd\u03bf\u03bc\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 +label.type =\u03a4\u03cd\u03c0\u03bf\u03c2 +label.attachments =\u0395\u03c0\u03b9\u03c3\u03c5\u03bd\u03b1\u03c0\u03c4\u03cc\u03bc\u03b5\u03bd\u03b1 +link.delete =\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae +message.updateSuccess =\u039f\u03b9 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03b8\u03b7\u03ba\u03b1\u03bd +message.unsavedChanges =\u0397 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03c0\u03bf\u03c5 \u03b4\u03b5\u03bd \u03ad\u03c7\u03bf\u03c5\u03bd \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03b8\u03b5\u03af +pageTitle.learning =Wiki +instructions.uploadOnlineInstr =\u039f\u03b4\u03b7\u03b3\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03b5\u03ba\u03c0\u03cc\u03bd\u03b7\u03c3\u03b7 \u03bc\u03b5 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7: +instructions.onlineInstructions =\u039f\u03b4\u03b7\u03b3\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03b5\u03ba\u03c0\u03cc\u03bd\u03b7\u03c3\u03b7 \u03bc\u03b5 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7: +instructions.uploadOfflineInstr =\u0391\u03c1\u03c7\u03b5\u03af\u03bf \u039f\u03b4\u03b7\u03b3\u03b9\u03ce\u03bd \u03b3\u03b9\u03b1 \u03b5\u03ba\u03c0\u03cc\u03bd\u03b7\u03c3\u03b7 \u03c7\u03c9\u03c1\u03af\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7: +instructions.offlineInstructions =\u039f\u03b4\u03b7\u03b3\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03b5\u03ba\u03c0\u03cc\u03bd\u03b7\u03c3\u03b7 \u03c7\u03c9\u03c1\u03af\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7: +button.basic =\u0392\u03b1\u03c3\u03b9\u03ba\u03ac +button.advanced =\u03a0\u03c1\u03bf\u03c7\u03c9\u03c1\u03b7\u03bc\u03ad\u03bd\u03b1 +monitor.summary.th.advancedSettings =\u03a0\u03c1\u03bf\u03c7\u03c9\u03c1\u03b7\u03bc\u03ad\u03bd\u03b5\u03c2 \u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 + + +#======= End labels: Exported 151 labels for el GR ===== Index: debian_installer/lams2/lams_tool_wiki/language/ApplicationResources_en_AU.properties =================================================================== diff -u --- debian_installer/lams2/lams_tool_wiki/language/ApplicationResources_en_AU.properties (revision 0) +++ debian_installer/lams2/lams_tool_wiki/language/ApplicationResources_en_AU.properties (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,162 @@ +appName = wiki +#language code: en +#locale code: AU + + # CVS ID: $Id$ Exported from the LAMS Community by Ernie Ghiglione on Tue Nov 25 00:25:39 GMT 2008 + +#=================== labels for Wiki =================# + +label.authoring.basic.wikipagevisible =Allow editing of this page +appName =wiki +error.contentrepository =An error has occurred when saving/deleting instruction file {0}. The files may not be saved correctly. +button.instructions =Instructions +instructions.uploadOfflineInstr =Offline Instructions File: +instructions.uploadOnlineInstr =Online Instructions File: +instructions.offlineInstructions =Offline Instructions: +instructions.onlineInstructions =Online Instructions: +activity.helptext =Wiki tool for creating wiki pages +error.content.locked =The content has been locked since it is being used by one or more learners. The modification of the content is not allowed. +tool.display.name =Wiki +tool.description =Wiki Tool +activity.title =Wiki +activity.description =Wiki Tool +pageTitle.authoring =Wiki Authoring +button.basic =Basic +button.advanced =Advanced +button.upload =Upload +button.continue =Continue +button.edit =Edit +label.authoring.basic.title =Title: +label.authoring.basic.content =Content: +advanced.lockOnFinished =Lock when finished +advanced.allowLearnerCreatePages =Allow learners to create new Wiki pages +advanced.allowLearnerInsertLinks =Allow learners to insert external links into Wiki +advanced.allowLearnerAttachImages =Allow learners to attach images to Wiki +advanced.notifyChange =Send email notification to monitors when the Wiki is changed +advanced.reflectOnActivity =Add Notebook at end of Wiki with the following instructions: +message.no.reflection.available =No notebook available +advanced.editingLimits =Editing Limits +advanced.editingLimits.prompt =Number of times a learner can edit a page +advanced.editingLimits.minimum =Minimum: +advanced.editingLimits.maximum =Maximum: +advanced.editingLimits.nominimum =No minimum +advanced.editingLimits.nomaximum =No maximum +advanced.editingLimits.error =Maximum edits must be larger or equal to minimum. +instructions.type.online =Online +instructions.type.offline =Offline +label.filename =Filename +label.type =Type +label.attachments =Attachments +link.view =View +link.download =Download +link.delete =Delete +message.updateSuccess =Changes saved +message.unsavedChanges =Page contains unsaved changes +pageTitle.learning =Wiki +message.defineLaterSet =Please wait for the teacher to complete the contents of this activity +message.runOfflineSet =This activity is not being done on the computer. Please see your instructor for details. +pageTitle.monitoring =Wiki Monitoring +button.summary =Summary +button.editActivity =Edit Activity +button.statistics =Statistics +titleHeading.summary =Summary +titleHeading.statistics =Statistics +titleHeading.editActivity =Edit Activity +titleHeading.exportPortfolio =Export Portfolio +heading.group =Group {0}: +heading.totalLearners =Number of Learners: +heading.totalLearnersInGroup =Total Number of Learners in Group: +heading.totalFinishedLearnersInGroup =Number of Finished Learners: +message.summary =There is no summary available for this tool. +label.view =View +label.notAvailable =Not Available +heading.learner =Learner +heading.notebookEntry =Notebook Entry +button.cancel =Cancel +button.close =Close +button.ok =OK +button.done =Done +button.save =Save +button.next =Next +label.created =Created +label.lastModified =Last modified +label.notebookEntry =Notebook entry +error.missingParam =Unable to continue. {0} is missing. +error.exceedMaxFileSize =File size exceeded +error.exception.NbApplication =An internal error has occurred with the Wiki Tool. If reporting this error, please report:
{0} +error.defineLater =Sorry, the activity is not ready yet. Please wait for the teacher to finishing defining the activity. +errors.maxfilesize =The uploaded file has exceeded the maximum file size limit of {0} bytes +error.mandatoryField ={0} field is mandatory. +error.mark.invalid.number ={0} field must be a valid number. Decimal points are not allowed. +error.mark.invalid.decimal.number ={0} field must be a valid decimal number. +authoring.msg.cancel.save =Do you want to close this window without saving? +button.try.again =Try Again +message.learner.blank.input =You have not written anything. Are you sure this is correct? +button.finish =Next Activity +message.warnLockOnFinish =Note: After you click on "Next Activity" and you come back to this Wiki, you won't be able to continue editing. +message.activityLocked =The instructor has set this activity not to allow editing after you have finished it. As you are returning to this Wiki, you are able to see your Wiki but not allowed to edit it. +message.minumumEditsNotReached =Note: You have not yet reached the required number of edits, you must complete {0} edits before continuing to the next activity. +message.warnMaxEdits =Note: You are only allowed to do {0} more edits before this Wiki will be locked. After that you wont be able to continue editing. +message.maxEditsReached =You have reached the maximum number of edits for this Wiki activity so it has been locked. +message.pageNotEditable =This page has been set to locked by your instructor, so you cannot edit it. +titleHeading.instructions =Instructions +label.authoring.basic.instructions =Instructions: +label.wiki.body =Wiki Body +label.wiki.edit =Edit +label.wiki.edit.toolTip =Edit the current Wiki page +label.wiki.add =Add +label.wiki.add.toolTip =Add a new Wiki page to this Wiki +label.wiki.add.title.exists =A Wiki page with title "{0}" already exists, please choose a different title. +label.wiki.add.title.required =A title is required for the Wiki page. +label.wiki.last.edit =Last edited by {0}, at {1} +label.wiki.refresh =Refresh +label.wiki.refresh.toolTip =Refresh the page to get the current content +label.wiki.view =View +label.wiki.view.toolTip =View this Wiki page +label.wiki.remove =Remove +label.wiki.remove.toolTip =Remove this Wiki page +label.wiki.pages =Wiki Pages +label.wiki.savechanges =Save changes +label.wiki.remove.confirm =Are you sure you want to delete this Wiki page? This action cannot be undone. +label.wiki.history =History +label.wiki.history.toolTip =View previous versions of this Wiki page +label.wiki.history.version =Version +label.wiki.history.empty =There are no previous versions of this Wiki page. +label.wiki.history.date =Edit Date +label.wiki.history.editor =Edit By +label.wiki.history.editor.author =Author +label.wiki.history.actions =Actions +label.wiki.history.actions.revert =Revert +label.wiki.history.actions.revert.tooltip =Revert back to this version +label.wiki.history.actions.compare =Compare +label.wiki.history.actions.view =View +label.wiki.history.actions.view.tooltip =View page version +label.wiki.history.actions.compare.tooltip =Compare current version to this version +label.wiki.compare =Comparing versions {0} +label.wiki.compare.added.line =Added lines +label.wiki.compare.removed.line =Removed lines +label.on =On +label.off =Off +monitor.summary.th.advancedSettings =Advanced Settings +monitor.th.sessions =Wiki Sessions +monitor.th.numlearners =Number of Learners +monitor.summary.td.addNotebook =Add Notebook at end of Wiki +monitor.summary.td.notebookInstructions =Notebook instructions +monitor.nosessions =There are no sessions running yet for this Wiki. +monitor.notebooks =Notebook Reflections +output.learner.number.of.edits =Number of page edits +output.learner.number.of.add =Number of pages added +notify.pageEdited.subject =LAMS Wiki page has been edited for {0}. +notify.pageAdded.subject =LAMS Wiki page has been added for {0}. +notify.pageRemoved.subject =LAMS Wiki page has been removed for {0}. +notify.pageEdited.body =A Wiki page has been edited by {0} for {1}. To see the page, go to {2} +notify.pageAdded.body =A Wiki page has been added by {0} for {1}. To see the page, go to {2} +notify.pageRemoved.body =A Wiki page has been removed by {0} for {1}. To see the Wiki, go to {2} +notify.learner.subscribe =Subscribe +notify.learner.unsubscribe =Unsubscribe +notify.learner.query ={0} to notifications by email each time the Wiki is edited. +message.contentInUseSet =Modification of content is not allowed since one or more learners has attempted the activity. +message.alertContentEdit =Warning: One of more learners have accessed this activity. Changing this content will result in learners getting different information. + + +#======= End labels: Exported 151 labels for en AU ===== Index: debian_installer/lams2/lams_tool_wiki/language/ApplicationResources_es_ES.properties =================================================================== diff -u --- debian_installer/lams2/lams_tool_wiki/language/ApplicationResources_es_ES.properties (revision 0) +++ debian_installer/lams2/lams_tool_wiki/language/ApplicationResources_es_ES.properties (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,162 @@ +appName = wiki +#language code: es +#locale code: ES + + # CVS ID: $Id$ Exported from the LAMS Community by Ernie Ghiglione on Wed Nov 19 19:28:30 GMT 2008 + +#=================== labels for Wiki =================# + +notify.pageAdded.body =Una p\u00e1gina del Wiki ha sido agregada por {0} de {1} Para ver esta p\u00e1gina vaya a {2} +notify.pageRemoved.body =Una p\u00e1gina del Wiki ha sido borrada por {0} de {1}. Para ver el Wiki vaya a {2} +notify.learner.query ={0} para notificaciones por email cada vez que se edite una p\u00e1gina del Wiki. +appName =wiki +error.contentrepository =Ha ocurrido un error al guardar/borrar el archivo {0}. Es posible que el archivo no se haya guardado correctamente. +button.instructions =Instrucciones +instructions.uploadOfflineInstr =Archivo de Intrucciones Modo Offline: +instructions.uploadOnlineInstr =Archivo de Intrucciones Modo Online: +instructions.offlineInstructions =Intrucciones Modo Offline: +instructions.onlineInstructions =Intrucciones Modo Online: +activity.helptext =Herramienta para creaci\u00f3n colaborativa de documentos +message.contentInUseSet =Modificaciones al contenido no esta permitidas ya que por lo menos un estudiante ha accedido al material +error.content.locked =El contenido ha sido bloqueado ya que por lo menos uno estudiante lo ha accedido. +tool.display.name =Wiki +tool.description =Herramiente Wiki +activity.title =Wiki +activity.description =Herramienta Wiki +pageTitle.authoring =Autor\u00eda de Wiki +button.basic =B\u00e1sico +button.advanced =Avanzado +button.upload =Subir +button.continue =Continuar +button.edit =Editar +label.authoring.basic.title =T\u00edtulo: +label.authoring.basic.content =Contenido: +label.authoring.basic.wikipagevisible =\u00bfPueden los estudiante editar esta p\u00e1gina? +advanced.lockOnFinished =Despues de finalizado, bloquear el contenido +advanced.allowLearnerCreatePages =Permitir a los estudiantes crear p\u00e1ginas en el wiki +advanced.allowLearnerInsertLinks =Los estudiantes pueden insertar enlaces a contenido externo +advanced.allowLearnerAttachImages =Los estudiantes pueden adjuntar im\u00e1genes +advanced.notifyChange =Enviar notificacion a los tutores cada vez que el wiki sea modificado +advanced.reflectOnActivity =A\u00f1adir anotaci\u00f3n aal final del wiki con las siguientes instrucciones: +message.no.reflection.available =No hay anotaci\u00f3n dispo +advanced.editingLimits =Editar limites +advanced.editingLimits.prompt =N\u00famero de veces que un estudiante puede editar el wiki +advanced.editingLimits.minimum =M\u00ednimo: +advanced.editingLimits.maximum =M\u00e1ximo: +advanced.editingLimits.nominimum =Sin m\u00ednimo +advanced.editingLimits.nomaximum =Sin m\u00e1ximo +advanced.editingLimits.error =El n\u00famero m\u00e1ximo de ediciones debe ser mayor o igual que el m\u00ednimo. +instructions.type.online =Online +instructions.type.offline =Offline +label.filename =Nombre de archivo +label.type =Tipo +label.attachments =Archivos adjuntos +link.view =Ver +link.download =Descargar +link.delete =Borrar +message.updateSuccess =Guardar Cambios +message.unsavedChanges =La p\u00e1gina contiene cambios que no han sido guardados +pageTitle.learning =Wiki +message.defineLaterSet =Por favor, espere a que el instructor complete el contenido de esta actividad. +message.runOfflineSet =Esta actividad ha sido marcada para realizarse en modo offline. Por favor, pida m\u00e1s informaci\u00f3n al instructor. +pageTitle.monitoring =Wiki Seguimiento +button.summary =Resumen +button.editActivity =Editar Actividad +button.statistics =Estad\u00edsticas +titleHeading.summary =Resumen +titleHeading.statistics =Estad\u00edsticas +titleHeading.editActivity =Editar Actividad +titleHeading.exportPortfolio =Exportar Portfolio +heading.group =Grupo {0}: +heading.totalLearners =N\u00famero de estudiantes: +heading.totalLearnersInGroup =N\u00famero total de estudiantes en el grupo: +heading.totalFinishedLearnersInGroup =N\u00famero de estudiantes que han finalizado actividad: +message.summary =No hay resumen disponible para actividad. +label.view =Ver +label.notAvailable =No disponible +heading.learner =Estudiante +heading.notebookEntry =Anotaciones +button.cancel =Cancelar +button.close =Cerrar +button.ok =OK +button.done =Listo +button.save =Guardar +button.next =Siguiente +label.created =Creado +label.lastModified =\u00daltima modificaci\u00f3n +label.notebookEntry =Anotaciones +error.missingParam =No se ha podido continuar. {0} no se encuentra. +error.exceedMaxFileSize =El tama\u00f1o del archivo excede lo permitido +error.exception.NbApplication =Ha ocurrido un error en la herramienta Wiki. Por favor reporte el error a su administrador de sistema. Error: {0} +error.defineLater =Disculpe, la actividad no se encuentra disponible. Por favor, espere a que el instructor complete su contenido +errors.maxfilesize =El archivo que ha subido excede el tama\u00f1o m\u00e1ximo de {0} bytes. +error.mandatoryField =El campo {0} debe completarse. +error.mark.invalid.number ={0} +button.try.again =Intente nuevamente +message.learner.blank.input =No ha completado nada todav\u00eda. \u00bfEsta seghuro que esto es correcto? +titleHeading.instructions =Intrucciones +label.authoring.basic.instructions =Instrucciones: +label.wiki.body =Cuerpo del documento +label.wiki.edit =Editar +label.wiki.edit.toolTip =Editar esta p\u00e1gina +label.wiki.add =A\u00f1adir +label.wiki.add.toolTip =A\u00f1adir una nueva p\u00e1gina al Wiki +label.wiki.add.title.exists =Ya existe una p\u00e1gina con nombre {0}, Eliga un nuevo nombre +label.wiki.add.title.required =El t\u00edtulo de la p\u00e1gina no puede ser dejado en blanco. +label.wiki.last.edit =\u00daltima vez editado por {0}, el {1} +label.wiki.refresh =Refrescar +label.wiki.refresh.toolTip =Refrescar la p\u00e1gina y obtener nuevo contenido +label.wiki.view =Ver +label.wiki.view.toolTip =Ver esta p\u00e1gina +label.wiki.remove =Borrar +label.wiki.remove.toolTip =Borrar p\u00e1gina +label.wiki.remove.confirm =\u00bfEsta seguro que quier borrar esta p\u00e1gina? Una vez borrada NO se puede recuperar. +label.wiki.pages =P\u00e1ginas +label.wiki.savechanges =Guardar Cambios +label.wiki.history =Historial +label.wiki.history.toolTip =Ver las diferentes versiones de esta p\u00e1gina +label.wiki.history.version =Versi\u00f3n +label.wiki.history.empty =No hay versiones de esta p\u00e1gina +label.wiki.history.date =Fecha de Edici\u00f3n +label.wiki.history.editor =Editado por +label.wiki.history.editor.author =Autor +label.wiki.history.actions =Acciones +label.wiki.history.actions.revert =Revertir +label.wiki.history.actions.revert.tooltip =Revertir de nuevo a esta versi\u00f3n +label.wiki.history.actions.compare =Comparar +label.wiki.history.actions.view =Ver +label.wiki.history.actions.view.tooltip =Ver p\u00e1gina +label.wiki.history.actions.compare.tooltip =Comparar la versi\u00f3n actual con esta versi\u00f3n +label.wiki.compare =Comparando versiones {0} +label.wiki.compare.added.line =Lineas a\u00f1adidas +label.wiki.compare.removed.line =Lineas removidas +label.on =Si +label.off =No +monitor.summary.th.advancedSettings =Opciones Avanzadas +monitor.th.sessions =Sessiones +monitor.th.numlearners =N\u00famero de estudiantes +monitor.summary.td.addNotebook =A\u00f1adir anotaci\u00f3n al finalizar +monitor.summary.td.notebookInstructions =Instrucciones para anotaci\u00f3n +monitor.nosessions =Todavia no hay seciones para este Wiki. +monitor.notebooks =Anotaciones +output.learner.number.of.edits =N\u00famero de ediciones +output.learner.number.of.add =N\u00famero de p\u00e1ginas a\u00f1adidas +notify.learner.subscribe =Subscribir +notify.learner.unsubscribe =Dessubscribir +button.finish =Finalizar +error.mark.invalid.decimal.number =El campo {0} debe ser un valor decimal. +authoring.msg.cancel.save =\u00bfEst seguro que quiere cerrar esta ventana sin guardar los cambios? +message.alertContentEdit =Atenci\u00f3n: uno o m\u00e1s estudiantes ya han accedido esta actividad. Cambiar el contenido de la actividad ahora resultar\u00e1 en que estudiantes reciban diferente informaci\u00f3n. +message.warnLockOnFinish =Atenci\u00f3n: una vez finalizada esta actividad no podr\u00e1 hacer cambios. +message.activityLocked =El profesor ha configurado esta actividad para que una vez finalizada no se puedan efectuar m\u00e1s cambios. Dado que usted a regresado al Wiki, puede ver el contenido pero no podr\u00e1 modificarlo. +message.minumumEditsNotReached =Atenci\u00f3n: Usted no ha alcanzado el n\u00famero de ediciones que se requiere. Debe completar {0} ediciones antes de finalizar esta actividad. +message.warnMaxEdits =Atenci\u00f3n: usted solo puede hacer {0} ediciones m\u00e1s. Una vez realizadas estas ediciones, no podr\u00e1 continuar editando el contenido. +message.maxEditsReached =Se han realizado el m\u00e1ximo n\u00famero de ediciones. De ahora en adelante el contenido no puede ser editado. +message.pageNotEditable =El profesor ha cambiado la configuraci\u00f3n de manera que no se pueda editar el contenido. +notify.pageEdited.subject =P\u00e1gina editada por {0}. +notify.pageAdded.subject =P\u00e1gina agregada por {0}. +notify.pageRemoved.subject =P\u00e1gina removida por {0}. +notify.pageEdited.body =Una p\u00e1gina del Wiki ha sido editada por {0} de {1}. Para ver esta p\u00e1gina vaya a {2} + + +#======= End labels: Exported 151 labels for es ES ===== Index: debian_installer/lams2/lams_tool_wiki/language/ApplicationResources_it_IT.properties =================================================================== diff -u --- debian_installer/lams2/lams_tool_wiki/language/ApplicationResources_it_IT.properties (revision 0) +++ debian_installer/lams2/lams_tool_wiki/language/ApplicationResources_it_IT.properties (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,162 @@ +appName = wiki +#language code: it +#locale code: IT + + # CVS ID: $Id$ Exported from the LAMS Community by Ernie Ghiglione on Mon Dec 01 22:21:55 GMT 2008 + +#=================== labels for Wiki =================# + +appName =wiki +button.instructions =Istruzioni +label.wiki.history.actions.compare.tooltip =Confronta la corrente versione con questa +label.wiki.compare =Confronto versioni {0} +label.wiki.compare.added.line =Linee aggiunte +label.wiki.compare.removed.line =Linee rimosse +label.on =Attivato +label.off =Disattivato +monitor.summary.th.advancedSettings =Configurazioni avanzate +monitor.th.sessions =Sessioni Wiki +monitor.th.numlearners =Numero di Studenti +monitor.nosessions =Non ci sono ancora sessioni attive per questo Wiki +output.learner.number.of.edits =Numero di pagine modificate +output.learner.number.of.add =Numero di pagine aggiunte +notify.pageEdited.subject =Pagine WIKI LAMS modificate per {0}. +notify.pageAdded.subject =Pagine WIKI LAMS aggiunte per {0}. +label.wiki.remove =Rimuovi +notify.pageRemoved.subject =Pagine WIKI LAMS rimosse per {0}. +notify.pageEdited.body =Pagine WIKI LAMS modificate da {0} per {1}. Per vedere la pagina, vai a {2} +notify.pageAdded.body =Pagine WIKI LAMS aggiunte da {0} per {1}. Per vedere la pagina, vai a {2} +notify.pageRemoved.body =Pagine WIKI LAMSrimosse da {0} per {1}. Per vedere la pagina, vai a {2} +notify.learner.subscribe =Iscriviti +notify.learner.unsubscribe =Disiscriviti +label.wiki.history.version =Versione +monitor.summary.td.notebookInstructions =Istruzioni Blocco Note +monitor.notebooks =Riflessioni sul Blocco Note +titleHeading.instructions =Istruzioni +monitor.summary.td.addNotebook =Aggiungi Blocco Note al termine del Wiki +instructions.uploadOfflineInstr =File Istruzioni offline +instructions.uploadOnlineInstr =File Istruzioni online +instructions.offlineInstructions =Istruzioni offline +instructions.onlineInstructions =Istruzioni on line +activity.helptext =Strumento per creare pagine wiki +label.authoring.basic.instructions =Istruzioni +label.notebookEntry =Annotazione in Blocco Note +message.maxEditsReached =Hai raggiunto il massimo numero di modifiche per quest'attivit\u00e0 cos\u00ec il Wiki \u00e8 stato chiuso. +message.pageNotEditable =Questa pagina \u00e8 stata configurata come bloccata dal docente, non puoi modificarla. +label.wiki.body =Wiki body +label.wiki.edit =Modifica +label.wiki.edit.toolTip =Modifica la pagina corrente del Wiki +label.wiki.add =Aggiungi +label.wiki.add.toolTip =Aggiungi una nuova pagina a questo Wiki +label.wiki.add.title.exists =Una pagina Wiki dal titolo {0} esiste gi\u00e0, scegli un titolo differente. +label.wiki.add.title.required =Un titolo \u00e8 necessario per la pagina Wiki +label.wiki.last.edit =Ultima modifica di {0}, il {1} +label.wiki.refresh =Aggiorna +label.wiki.refresh.toolTip =Aggiorna la pagina per avere il contenuto corrente +label.wiki.view =Vedi +label.wiki.view.toolTip =Vedi questa pagina wiki +label.wiki.remove.toolTip =Rimuovi questa pagina wiki +label.wiki.remove.confirm =SEi sicuro di voler cancellare questa pagine Wiki? Ques'azione non pu\u00f2 essere annullata. +label.wiki.pages =Pagine Wiki +label.wiki.savechanges =Salva i cambiamenti +label.wiki.history =Storia +pageTitle.authoring =Authoring del Wiki +label.wiki.history.toolTip =Vedi la precedente versione di questa pagina Wiki +label.wiki.history.empty =Non ci sono precedenti versione di questa pagina wiki. +label.wiki.history.date =Modifica data +label.wiki.history.editor =Modificato da +label.wiki.history.editor.author =Autore +label.wiki.history.actions =Azioni +label.wiki.history.actions.revert =Torna alla precedente +label.wiki.history.actions.revert.tooltip =Torna a questa versione +label.wiki.history.actions.compare =Confronta +label.wiki.history.actions.view =Vedi +label.wiki.history.actions.view.tooltip =Vedi versione pagina +notify.learner.query ={0} da notificare via email ogni volta che il Wiki viene modificato. +advanced.reflectOnActivity =Aggiungi Blocco Note al termine del Wiki con le seguenti istruzioni: +advanced.notifyChange =Invia una notifica via mail ai Monitor quando il Wiki viene modificato +label.type =Tipo +error.contentrepository =Si \u00e8 verificato un errore nel salvare/cancellare il file istruzioni {0}. Il file non pu\u00f2 essere salvato correttamente. +advanced.editingLimits.error =Il numero massimo di revisioni deve essere maggiore o uguale al minimo. +instructions.type.online =Online +instructions.type.offline =Offline +label.filename =Nome del file +label.attachments =Allegati +link.view =Vedi +link.download =Download +link.delete =Cancella +message.updateSuccess =Modifiche salvate +message.unsavedChanges =La pagina contiente modifiche non salvate +pageTitle.learning =Wiki +message.defineLaterSet =Attendi che il docente completi il contenuto di quest'ativit\u00e0 +message.runOfflineSet =Quest'attivit\u00e0 non viene svolta al computer. Contatta il tuo docente per i dettagli. +pageTitle.monitoring =Monitoraggio Wiki +button.summary =Sommario +button.editActivity =Modifica attivit\u00e0 +button.cancel =Annulla +button.close =Chiudi +button.ok =OK +button.done =Fatto +button.save =Salva +button.next =Successivo +label.created =Creato +label.lastModified =Ultima modifica +errors.maxfilesize =Il file caricato eccede la dimensione massima di {0} bytes +error.mandatoryField =Il campo {0} \u00e8 obbligatorio. +tool.display.name =Wiki +tool.description =Strumento Wiki +activity.title =Wiki +activity.description =Strumento Wiki +button.basic =Base +button.advanced =Avanzate +button.upload =Upload +button.continue =Continua +button.edit =Modifica +label.authoring.basic.title =Titolo +label.authoring.basic.content =Contenuto +label.authoring.basic.wikipagevisible =Consenti la modifica di questa pagina +advanced.lockOnFinished =Blocca una volta terminato +advanced.allowLearnerCreatePages =Consenti agli studenti dii creare nuove pagine Wiki +error.missingParam =Non \u00e8 possibile continuare. Mancante/i {0}. +error.exceedMaxFileSize =Dimensione del file eccessiva +error.exception.NbApplication =Si \u00e8 verificato un errore interno con lo strumento Wiki. In caso di report di questo errore: {0} +error.defineLater =Spiacente, l'attivit\u00e0 non \u00e8 ancora pronta. Aspetta che il docente finisca di definire l'attivit\u00e0. +message.activityLocked =Il docente ha configurato quest'attivit\u00f2 in modo da non consentire pi\u00f9 modifiche dopo che hai terminato. Se ritorni al Wiki, potrai vedere le tue pagine, ma non potrai modificarle. +message.minumumEditsNotReached =Non hai ancora raggiunto il richiesto numero di modifche, devi completarne {} prima di passare all'attivit\u00e0 successiva. +message.warnMaxEdits =Puoi effettuare solo {0} modifiche prima che il Wiki sia bloccato. Dopo non potrai pi\u00f9 fare modifiche. +message.contentInUseSet =Non sono consentite modificazioni del contenuto dopo che uno o pi\u00f9 studenti hanno affrontato l'attivit\u00e0. +error.content.locked =Il contenuto \u00e8 stato bloccato dopo che \u00e8 stato usato da uno o pi\u00f9 studenti. Non \u00e8 consentito modificare il contenuto. +error.mark.invalid.number =Il campo {0} deve essere un numero valido. Non sono ammessi i decimali. +error.mark.invalid.decimal.number =Il campo {0} deve essere un numero decimale valido. +authoring.msg.cancel.save =Vuoi chiudere questa finestra senza salvare? +button.try.again =Prova ancora +advanced.allowLearnerInsertLinks =Consenti agli studenti di inserire nel Wiki link esterni +message.learner.blank.input =Non hai scrito nulla. Sei sicuro cje sia corretto? +button.finish =Attivit\u00e0 successiva +message.alertContentEdit =Attenzione: uno o pi\u00f9 studenti hanno avuto acesso a quest'attivit\u00e0. Cambiarne il contenuto comporter\u00e0 per gli studenti avere differenti informazioni. +advanced.allowLearnerAttachImages =Consenti agli studenti di allegare immagini al Wiki +message.warnLockOnFinish =Nota bene: dopo aver cliccato su "Attivit\u00e0 successiva", quando torni a questo Wiki non puoi continuarne l'editing. +advanced.editingLimits =Restrizioni alle modifiche +advanced.editingLimits.prompt =Numero di volte che uno studente pu\u00f2 modificare una pagina +advanced.editingLimits.minimum =Minimo: +advanced.editingLimits.maximum =Massimo: +advanced.editingLimits.nominimum =Nessun minimo +advanced.editingLimits.nomaximum =Nessun massimo +button.statistics =Statistiche +titleHeading.summary =Sommario +titleHeading.statistics =Statistiche +titleHeading.editActivity =m +titleHeading.exportPortfolio =Esporta Porfolio +heading.group =Gruppo {0}: +heading.totalLearners =Numero di studenti +heading.totalLearnersInGroup =Numero totale di studenti nel Gruppo: +heading.totalFinishedLearnersInGroup =Numero di Studenti che hanno terminato +message.summary =Non c'\u00e8 un sommario disponibile per questo strumento +label.view =Vedi +label.notAvailable =Non disponibile +heading.learner =Studente +message.no.reflection.available =Nessun Blocco Note disponibile +heading.notebookEntry =Voce del Blocco Note + + +#======= End labels: Exported 151 labels for it IT ===== Index: debian_installer/lams2/lams_tool_wiki/language/ApplicationResources_no_NO.properties =================================================================== diff -u --- debian_installer/lams2/lams_tool_wiki/language/ApplicationResources_no_NO.properties (revision 0) +++ debian_installer/lams2/lams_tool_wiki/language/ApplicationResources_no_NO.properties (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,162 @@ +appName = wiki +#language code: no +#locale code: NO + + # CVS ID: $Id$ Exported from the LAMS Community by Ernie Ghiglione on Wed Nov 19 19:28:30 GMT 2008 + +#=================== labels for Wiki =================# + +monitor.th.sessions =Wiki sesjoner +instructions.onlineInstructions =On-line instruksjoner: +error.defineLater =beklager, denne aktiviteten er enda ikke ferdig. Vennligst vent til at foreleseren har ferdigstilt aktiviteten +message.learner.blank.input =Du har ikke skrevet noe. Er dette riktig ? +message.alertContentEdit =Merk ! En eller flere studenter har begynt p\u00e5 denne aktiviteten. Hvis du endrer innholdet vil studentene motta forskjellig innhold +message.warnLockOnFinish =Merk ! Etter at du har klikket p\u00e5 Neste Aktivitet og du kommer tilbake til denne Wiki, s\u00e5 kan du ikke fortsette med redigering. +message.pageNotEditable =Denne siden er l\u00e5st av foreleseren og du kan ikke redigere denne. +label.wiki.refresh.toolTip =Frisk opp siden for \u00e5 vise det aktuelle innholdet. +label.wiki.remove.confirm =Er du sikker p\u00e5 at du vil fjerne denne Wiki siden ? Dette valget kan ikke endres. +monitor.th.numlearners =Antall studenter +error.contentrepository =En feil oppsto under lagring/sletting av instruksjons fil {0}. Filen er ikke lagret korrekt. +instructions.uploadOfflineInstr =Off-line instruksjons fil: +instructions.uploadOnlineInstr =On-line instruksjons fil: +instructions.offlineInstructions =Off-line instruksjoner +heading.notebookEntry =Skriv notat +label.notebookEntry =Skriv notat +error.mandatoryField ={0} feltet m\u00e5 fylles ut +error.exception.NbApplication =En feil er oppst\u00e5tt med Wiki verkt\u00f8yet. Hvis du raporterer feilen, s\u00e5 rapporter {0} +errors.maxfilesize =Filen som lastes opp overskrider maksimal filst\u00f8rrelse som er {0} +error.mark.invalid.number ={0} feltet m\u00e5 ha en gyldig tallverdi. desimaltal kan ikke benyttes. +error.mark.invalid.decimal.number ={0} feltet m\u00e5 ha et gyldig desimaltall. +label.wiki.body =Wiki stamme +label.wiki.add.title.exists =En Wiki side med tittelen {0} ekstisterer allerede, vennligst benytt en annen tittel. +label.wiki.history.actions.compare.tooltip =Samenlign den gyldige versjon med denne versjon +label.wiki.compare =Sammenlign versjoner {0} +message.maxEditsReached =Du har n\u00e5dd maksimalt antall redigeringer som kan gj\u00f8res for denne Wiki og denne er derfor l\u00e5st. +monitor.nosessions =Det er ingen sesjoner som er aktive enda for denne Wiki. +notify.pageEdited.subject =LAMS Wiki sider er editerta for {0}. +notify.pageAdded.subject =LAMS Wiki sider har blitt lagt til for {0}. +notify.pageRemoved.subject =LAMS Wiki sider er fjernet for {0}. +notify.pageEdited.body =En Wiki side er blitt redigert av{0} for {1}. For \u00e5 se siden, g\u00e5 til {2} +notify.pageAdded.body =En Wiki side er blitt lagt til av {0} for {1}. For \u00e5 se siden, g\u00e5 til {2}. +notify.pageRemoved.body =En Wiki side har blitt fjernet av {0} for {1}. For \u00e5 se p\u00e5 Wiki, g\u00e5 til {2}. +message.activityLocked =Foreleseren har satt opp denne aktiviteten slik at du ikke kan redigere innholdet etter at du er ferdig. Kommer du tilbake til denne Wiki s\u00e5 kan du se innholdet, men ikke redigere dette. +message.minumumEditsNotReached =Merk: Du har enda ikke n\u00e5dd maksimalt antall redigereinger som skal utf\u00f8res, du m\u00e5 gj\u00f8re ytligere {0} redigeringer f\u00f8r du kan fortsette til neste aktivitet. +message.warnMaxEdits =Merk: Du har kun tillatelse til \u00e5 utf\u00f8re {0} redigeringer f\u00f8r denne Wiki l\u00e5ses. Etter dette f\u00e5r du ikke utf\u00f8rt redigeringer. +notify.learner.query ={0} meldinger via e-post hver gang Wiki redigeres. +output.learner.number.of.edits =Antall sider som er editert +output.learner.number.of.add =Antall sider som er lagt til +appName =wiki +activity.helptext =Wiki verkt\u00f8y for \u00e5 lage wiki sider +tool.display.name =Wiki +tool.description =Wiki verkt\u00f8y +activity.title =Wiki +activity.description =Wiki verkt\u00f8y +button.basic =Grunnleggende +button.advanced =Avansert +button.upload =Last opp +button.continue =Fortsett +button.edit =Rediger +label.authoring.basic.title =Tittel: +label.authoring.basic.content =Innhold: +label.authoring.basic.wikipagevisible =Gj\u00f8r Wiki siden redigerbart +advanced.lockOnFinished =L\u00e5s n\u00e5r ferdig +advanced.allowLearnerCreatePages =Tillat studentene \u00e5 lage nye Wiki sider +advanced.allowLearnerInsertLinks =Tillat studentene \u00e5 koble ekstrne linker til Wiki sidene +advanced.allowLearnerAttachImages =Tillat studentene \u00e5 koble bilder til Wiki sidene +advanced.editingLimits.minimum =Minimum: +advanced.editingLimits.maximum =Maksimum: +advanced.editingLimits.nominimum =Intet minimum +advanced.editingLimits.nomaximum =ntet maksimum +label.filename =Filnavn +label.type =Type +label.attachments =Vedlegg +link.download =Last ned +link.delete =Slett +message.updateSuccess =Endringene er lagret +pageTitle.learning =Wiki +button.editActivity =Rediger aktivitet +titleHeading.editActivity =Rediger aktivitet +heading.totalLearners =Antall studenter: +label.notAvailable =Ikke tilgjengelig +heading.learner =Student +button.close =Lukk +button.ok =OK +button.done =Utf\u00f8rt +button.save =Lagre +button.next =Neste +label.created =Utf\u00f8rt +label.lastModified =Sist endret +authoring.msg.cancel.save =Vil du lukke dette vinduet uten \u00e5 lagre ? +button.try.again =Fors\u00f8k igjen +button.finish =Neste aktivitet +label.wiki.edit =Rediger +label.wiki.add =Legg til +label.wiki.add.toolTip =Legg til en ny Wiki side til denne Wiki +label.wiki.refresh =Frisk opp +label.wiki.remove =Fjern +label.wiki.remove.toolTip =Fjern denne Wiki siden +label.wiki.pages =Wiki sider +label.wiki.savechanges =Lagre endringer +label.wiki.history =Historie +label.wiki.history.version =Versjon +label.wiki.history.date =Rediger dato +label.wiki.history.editor =Redigert av +label.wiki.history.actions.compare =Sammenlign +label.wiki.compare.added.line =Linjer som er lagt til +label.wiki.compare.removed.line =Linker som er fjernet +label.on =P\u00e5 +label.off =Av +monitor.summary.th.advancedSettings =Avanserte innstillinger +button.instructions =Instruksjoner +message.contentInUseSet =Det er ikke tillatt \u00e5 modfisere innholdet fordi en eller fler studenter har p\u00e5beynt aktiviteten +error.content.locked =Innholdet er l\u00e5st fordi dette benyttes av en eller flere studenter. Det er ikke tillatt \u00e5 endre innholdet +pageTitle.authoring =Wiki godkjenning +advanced.notifyChange =Send e-post til kontrollantene n\u00e5r Wiki er endret +advanced.reflectOnActivity =Legg til etnotat p\u00e5 slutten av Wiki med f\u00f8lgende instriksjoner: +message.no.reflection.available =Ingen notat er tilgjengelig +advanced.editingLimits =Rediger begrensningene +advanced.editingLimits.prompt =Antall ganger en student kan redigere en side +advanced.editingLimits.error =maksimalt antall redigeringer m\u00e5 v\u00e6re mer enn eller lik minimum +instructions.type.online =P\u00e5koblet +instructions.type.offline =Frakoblet +link.view =Se p\u00e5 +message.unsavedChanges =Siden inneholder endringer som ikke er lagret +message.defineLaterSet =Vennligst vent p\u00e5 at foreleseren skal ferdigstille innholdet for denne aktiviteten +message.runOfflineSet =Denne aktiviteten skal ikke gjennomf\u00f8res med hjelp av data. Kontakt foreleseren. +pageTitle.monitoring =Wiki kontrollmodus +button.summary =Oppsummering +button.statistics =Statistikk +titleHeading.summary =Oppsummering +titleHeading.statistics =Statistikk +titleHeading.exportPortfolio =Eksporter mappe +heading.group =gruppe {0}: +heading.totalLearnersInGroup =Totalt antall studenter i gruppen: +heading.totalFinishedLearnersInGroup =Antall studenter som er ferdig: +message.summary =Det er ikke tilgjeneglig noen oppsummering for dette verkt\u00f8yet. +label.view =Se p\u00e5 +button.cancel =Avbryt +error.missingParam =Kan ikke fortsette. {0} mangler +error.exceedMaxFileSize =Filst\u00f8rrelse er for stor +titleHeading.instructions =Instruksjoner +label.authoring.basic.instructions =Instruksjoner: +label.wiki.edit.toolTip =Rediger den aktive Wiki siden +label.wiki.add.title.required =En tittel m\u00e5 skrives for en Wiki side. +label.wiki.last.edit =Sist redigert av {0}, dato {1} +label.wiki.view =Se p\u00e5 +label.wiki.view.toolTip =Se p\u00e5 denne Wiki siden +label.wiki.history.toolTip =Se p\u00e5 foreg\u00e5ende versjon av denne Wiki siden +label.wiki.history.empty =Det er ingen tidligere versjoner av denne Wiki siden. +label.wiki.history.editor.author =Forfatter +label.wiki.history.actions =Aksjoner +label.wiki.history.actions.revert =Reverser +label.wiki.history.actions.revert.tooltip =reverser tilbake til denne versjonen. +label.wiki.history.actions.view =Se p\u00e5 +label.wiki.history.actions.view.tooltip =Se p\u00e5 denne versjon av siden +monitor.summary.td.addNotebook =Legg til notat p\u00e5 slutten av Wiki +monitor.summary.td.notebookInstructions =Instruksjon for notater +monitor.notebooks =refleksjons notater +notify.learner.subscribe =Aboner +notify.learner.unsubscribe =Si opp abonement + + +#======= End labels: Exported 151 labels for no NO ===== Index: debian_installer/lams2/lams_tool_wiki/lib/commons-collections.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_wiki/lib/commons-configuration-1.1.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_wiki/lib/commons-dbutils-1.0.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_wiki/lib/commons-io-1.0.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_wiki/lib/commons-lang-2.0.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_wiki/lib/commons-logging.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_wiki/lib/lams-tool-deploy.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_wiki/lib/mysql-connector-java-3.1.12-bin.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_wiki/lib/xstream-1.1.2.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lams_tool_wiki/sql/activity_insert.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_wiki/sql/activity_insert.sql (revision 0) +++ debian_installer/lams2/lams_tool_wiki/sql/activity_insert.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,80 @@ +-- CVS ID: $Id$ + +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 +, 'Wiki Tool' +, 'Wiki Tool' +, '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 +, 2 +, NULL +, NULL +, NULL +, NULL +, NULL +, NULL +, 'tool/lawiki10/images/icon_wiki.swf' +, NULL +, NULL +, NULL +, 'org.lamsfoundation.lams.tool.wiki.ApplicationResources' +) Index: debian_installer/lams2/lams_tool_wiki/sql/create_lams_tool_wiki.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_wiki/sql/create_lams_tool_wiki.sql (revision 0) +++ debian_installer/lams2/lams_tool_wiki/sql/create_lams_tool_wiki.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,99 @@ +-- CVS ID: $Id$ + +SET FOREIGN_KEY_CHECKS=0; +drop table if exists tl_lawiki10_attachment; +drop table if exists tl_lawiki10_session; +drop table if exists tl_lawiki10_user; +drop table if exists tl_lawiki10_wiki; +drop table if exists tl_lawiki10_wiki_page; +drop table if exists tl_lawiki10_wiki_page_content; +create table tl_lawiki10_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, wiki_uid bigint, primary key (uid))TYPE=InnoDB; +create table tl_lawiki10_session (uid bigint not null auto_increment, session_end_date datetime, session_start_date datetime, status integer, session_id bigint, session_name varchar(250), wiki_uid bigint, wiki_main_page_uid bigint, content_folder_id varchar(255), primary key (uid))TYPE=InnoDB; +create table tl_lawiki10_user (uid bigint not null auto_increment, user_id bigint, last_name varchar(255), login_name varchar(255), first_name varchar(255), finishedActivity bit, wiki_session_uid bigint, entry_uid bigint, wiki_edits integer, primary key (uid))TYPE=InnoDB; +create table tl_lawiki10_wiki (uid bigint not null auto_increment, create_date datetime, update_date datetime, create_by bigint, title varchar(255), instructions text, run_offline bit, lock_on_finished bit, allow_learner_create_pages bit, allow_learner_insert_links bit, allow_learner_attach_images bit, notify_updates bit, reflect_on_activity bit, reflect_instructions text, minimum_edits integer, maximum_edits integer, online_instructions text, offline_instructions text, content_in_use bit, define_later bit, tool_content_id bigint, wiki_main_page_uid bigint, primary key (uid))TYPE=InnoDB; +create table tl_lawiki10_wiki_page (uid bigint not null auto_increment, wiki_uid bigint, title varchar(255), editable bit, wiki_current_content bigint, added_by bigint, wiki_session_uid bigint, primary key (uid), unique key (title, wiki_session_uid))TYPE=InnoDB; +create table tl_lawiki10_wiki_page_content (uid bigint not null auto_increment, wiki_page_uid bigint, body text, editor bigint, edit_date datetime, version bigint, primary key (uid))TYPE=InnoDB; +alter table tl_lawiki10_attachment add index FK9406D87760B3B03B (wiki_uid), add constraint FK9406D87760B3B03B foreign key (wiki_uid) references tl_lawiki10_wiki (uid); +alter table tl_lawiki10_session add index FKF01D63C260B3B03B (wiki_uid), add constraint FKF01D63C260B3B03B foreign key (wiki_uid) references tl_lawiki10_wiki (uid); +alter table tl_lawiki10_session add index FKF01D63C2A3FF7EC0 (wiki_main_page_uid), add constraint FKF01D63C2A3FF7EC0 foreign key (wiki_main_page_uid) references tl_lawiki10_wiki_page (uid); +alter table tl_lawiki10_user add index FKED5D7A1FD8004954 (wiki_session_uid), add constraint FKED5D7A1FD8004954 foreign key (wiki_session_uid) references tl_lawiki10_session (uid); +alter table tl_lawiki10_wiki add index FKED5E3E04A3FF7EC0 (wiki_main_page_uid), add constraint FKED5E3E04A3FF7EC0 foreign key (wiki_main_page_uid) references tl_lawiki10_wiki_page (uid); +alter table tl_lawiki10_wiki_page add index FK961AFFEAD8004954 (wiki_session_uid), add constraint FK961AFFEAD8004954 foreign key (wiki_session_uid) references tl_lawiki10_session (uid); +alter table tl_lawiki10_wiki_page add index FK961AFFEA60B3B03B (wiki_uid), add constraint FK961AFFEA60B3B03B foreign key (wiki_uid) references tl_lawiki10_wiki (uid); +alter table tl_lawiki10_wiki_page add index FK961AFFEA36CBA7DB (added_by), add constraint FK961AFFEA36CBA7DB foreign key (added_by) references tl_lawiki10_user (uid); +alter table tl_lawiki10_wiki_page add index FK961AFFEAE48332B4 (wiki_current_content), add constraint FK961AFFEAE48332B4 foreign key (wiki_current_content) references tl_lawiki10_wiki_page_content (uid); +alter table tl_lawiki10_wiki_page_content add index FK528051242D44CCF8 (wiki_page_uid), add constraint FK528051242D44CCF8 foreign key (wiki_page_uid) references tl_lawiki10_wiki_page (uid); +alter table tl_lawiki10_wiki_page_content add index FK528051243233D952 (editor), add constraint FK528051243233D952 foreign key (editor) references tl_lawiki10_user (uid); + +INSERT INTO tl_lawiki10_wiki +( + title, + instructions, + online_instructions, + offline_instructions, + tool_content_id, + run_offline, + lock_on_finished, + content_in_use, + define_later, + allow_learner_create_pages, + allow_learner_insert_links, + allow_learner_attach_images, + notify_updates, + reflect_on_activity, + reflect_instructions, + minimum_edits, + maximum_edits +) +VALUES +( + "Wiki", + "Instructions", + "", + "", + ${default_content_id}, + 0, + 0, + 0, + 0, + 1, + 1, + 1, + 0, + 0, + "", + 0, + 0 +); + +INSERT INTO tl_lawiki10_wiki_page +( + wiki_uid, + title, + editable +) +VALUES +( + 1, + "Wiki Main Page", + 1 +); + +INSERT INTO tl_lawiki10_wiki_page_content +( + wiki_page_uid, + body, + version +) +VALUES +( + 1, + "
Wiki Body
", + 0 +); + +UPDATE tl_lawiki10_wiki_page SET wiki_current_content=1 where uid=1; +UPDATE tl_lawiki10_wiki SET wiki_main_page_uid=1 where uid=1; + + +SET FOREIGN_KEY_CHECKS=1; Index: debian_installer/lams2/lams_tool_wiki/sql/db_version_insert.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_wiki/sql/db_version_insert.sql (revision 0) +++ debian_installer/lams2/lams_tool_wiki/sql/db_version_insert.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,2 @@ +-- $Id$ +INSERT INTO patches VALUES ('lawiki10', '20080929', NOW(), 'F'); Index: debian_installer/lams2/lams_tool_wiki/sql/drop_lams_tool_wiki.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_wiki/sql/drop_lams_tool_wiki.sql (revision 0) +++ debian_installer/lams2/lams_tool_wiki/sql/drop_lams_tool_wiki.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,13 @@ +-- CVS ID: $Id$ + +SET FOREIGN_KEY_CHECKS=0; +DROP TABLE IF EXISTS tl_lawiki10_user; +DROP TABLE IF EXISTS tl_lawiki10_attachment; +DROP TABLE IF EXISTS tl_lawiki10_session; +DROP TABLE IF EXISTS tl_lawiki10_wiki; +SET FOREIGN_KEY_CHECKS=1; + + + + + Index: debian_installer/lams2/lams_tool_wiki/sql/library_insert.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_wiki/sql/library_insert.sql (revision 0) +++ debian_installer/lams2/lams_tool_wiki/sql/library_insert.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,16 @@ +-- CVS ID: $Id$ + +INSERT INTO lams_learning_library +( +description, +title, +valid_flag, +create_date_time +) +VALUES +( +'Wiki Tool', +'Wiki', +0, +NOW() +) Index: debian_installer/lams2/lams_tool_wiki/sql/tool_insert.sql =================================================================== diff -u --- debian_installer/lams2/lams_tool_wiki/sql/tool_insert.sql (revision 0) +++ debian_installer/lams2/lams_tool_wiki/sql/tool_insert.sql (revision 4fabe05a8702229c06ceee3f2a2d3a5580fe8302) @@ -0,0 +1,64 @@ +-- CVS ID: $Id$ + +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 +( +'lawiki10', +'wikiService', +'Wiki', +'Wiki', +'wiki', +'20080929', +NULL, +NULL, +0, +2, +1, +'tool/lawiki10/learning.do?mode=learner', +'tool/lawiki10/learning.do?mode=author', +'tool/lawiki10/learning.do?mode=teacher', +'tool/lawiki10/authoring.do', +'tool/lawiki10/monitoring.do', +'tool/lawiki10/authoring.do?mode=teacher', +'tool/lawiki10/exportPortfolio?mode=learner', +'tool/lawiki10/exportPortfolio?mode=teacher', +'tool/lawiki10/contribute.do', +'tool/lawiki10/moderate.do', +'http://wiki.lamsfoundation.org/display/lamsdocs/lawiki10', +'org.lamsfoundation.lams.tool.wiki.ApplicationResources', +'lams-tool-lawiki10.jar', +'/org/lamsfoundation/lams/tool/wiki/wikiApplicationContext.xml', +NOW(), +NOW(), +1 +) Index: debian_installer/lams2/lib/jboss-cache.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lib/jboss-serialization.jar =================================================================== diff -u Binary files differ Index: debian_installer/lams2/lib/jgroups.jar =================================================================== diff -u Binary files differ